﻿.container{
   max-width: 1140px; 
}
section{
    overflow-x:hidden;
}
h1,h2,h3,h4,h5{
 font-family:   "Playfair Display", serif;


}
p,a,button,li{
  font-family:  "Josefin Sans", sans-serif;
  color:black;
}
/*p{
     color: var(--text-color);
}*/
:root {
     --primary-color: #E5530A;
  --secondary-color: #FFD7A5;
  --accent-color: #4CAF50;
  --background-light: #FFFAF3;
  --background-neutral: #F5F5F5;
  --text-dark: #333333;
  --text-light: #FFFFFF;
   
}
.bg-secd{
     background-color: var(--secondary-color);
}
.slider_text_con{
    padding-top:50px;
}
h1 {
  font-size: 45px;   /* Main heading */
  font-weight: 700;  /* Bold font weight */
    
}
.heder-second{
    font-size:56px;
    font-weight: 700;
  line-height: 55px;
  color: #0d401c;
}
h2 {
  font-size: 35px;   /* Sub-heading */
  
}

h3 {
  font-size: 30px;   /* Smaller heading */
  font-weight: 700;
}
h4 {
  font-size: 25px;   /* Smaller heading */
  font-weight: 700;
}
h5 {
  font-size: 20px;   /* Smaller heading */
  font-weight: 700;
  color: #800000;
}

p {
  font-size: 16px;   /* Body text size */
  font-weight: 400;
  line-height: 1.6;  /* Better readability */
}


a {
  font-size: 18px;   /* Same size as paragraphs */
  font-weight: 400;
  text-decoration: none;  /* No underline */
}

.hilight{
    color:#F4A261;
}
/*animation*/
@keyframes customAnimation {
  0% {
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg);
  }
  100% {
    transform: translate3d(0px, 92.8774px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg);
  }
}

.element {
  animation: customAnimation 2s ease-in-out infinite;
  transform-style: preserve-3d;
  will-change: transform;
}
@keyframes upAndDown {
  0% {
    transform: translate3d(0px, 0px, 0px);
  }
  50% {
    transform: translate3d(0px, 92.8774px, 0px); /* Move down */
  }
  100% {
    transform: translate3d(0px, 0px, 0px); /* Move back up */
  }
}

.element1 {
  animation: upAndDown 2s ease-in-out infinite;
  transform-style: preserve-3d;
  will-change: transform;
}

@keyframes leftToRight {
  0% {
    transform: translate3d(0px, 0px, 0px);
  }
  50% {
    transform: translate3d(92.8774px, 0px, 0px); /* Move right */
  }
  100% {
    transform: translate3d(0px, 0px, 0px); /* Move back to the start */
  }
}

.element2 {
  animation: leftToRight 2s ease-in-out infinite;
  transform-style: preserve-3d;
  will-change: transform;
}
.spaces{
 
    /* Replace with your image URL */
    background-size:40%; /* Ensures the image covers the container */
    background-image: url('../img/bubbles.png');
    background-position:left top ;
    background-repeat: no-repeat;

}
.background-image {
    animation: zoomInAndOut 5s ease-in-out infinite; /* Adjust timing as needed */
    /* Replace with your image URL */
    background-size:contain; /* Ensures the image covers the container */
    background-image: url('../img/ihes.png');
    background-position: right 80%;
    background-repeat: no-repeat;

}

@keyframes zoomInAndOut {
  0% {
    background-size: 10px; /* Initial size */
  }
  50% {
    background-size:    50px; /* Zoom in */
  }
  100% {
    background-size:100px; /* Return to original size */
  }
}
  /* Circular Image Styling */
        .rotating-img {
         
            border-radius: 50%; /* Makes the image circular */
            animation: rotate 3s linear infinite;
        }

        /* Keyframes for rotation */
        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

/*animation end*/.gapes{
                     gap:15px;
                 }
/* Header start */
.logos{
    width:70px;
}
nav {
    display: flex;
    justify-content:center;
    align-items: center;
    /*padding: 25px 0px;*/
}

.navlink .navlink-inner {
    list-style: none;
    margin-left: 40px;
}

.navlink .navlink-inner  {

    font-weight: 450;
    color: white;
    padding:8px 10px;
}
/*.navlink .navlink-inner:hover{
    background-color:#FF8C00;
    border-radius:50px;
    color:white;

}*/

 .navlink-inner .nav-links.active {
        background-color:#253e3e;
  padding: 10px 24px;
  border-radius: 40px;
  color: white;
      }
.navlink {
    position: relative;
}

.navlink-inner:hover .dropdown-inner {
    display: block;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
    padding-left: 0px;
    border-radius: 4px;
}

.navlink .dropdown.active .dropdown-inner {
    display: block;
}

.dropdown-inner {
    display: none; /* Hidden by default */
    position:absolute;/* Position it relative to its parent */
    top: 100%; /* Position it directly below the parent */
    left: 0;
    background-color: white; /* Ensure background color */
    width: 285px; /* Set a fixed width or adjust as needed */
    z-index: 1000; /* Ensure it stays on top of other content */
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    border-top: 5px solid black;
}

.dropdown-inner li {
    display: flex;
    align-items: center; /* Align icon and text vertically */
    padding: 10px 15px;
    color: black;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    background-color: white;
}

.dropdown-inner li:hover {
    background-color: #f0f0f0; /* Adds a hover effect */
}

.dropdown-inner img {
    width: 15px;
    margin-right: 10px; /* Add space between icon and text */
    transform: rotate(-90deg);
}

.hamberg {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;

   
  }


.hamberg span {
    display: block;
    width: 100%;
    height: 2px;
    margin-top: 6px;
    background-color: white !important;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 25px;
    color: white;
    cursor: pointer;
    display: none; /* Hidden initially */
}

.mbmenu {
    display: none;
}

.gry1 {
    height: 493px;
}

.gry2 {
    width: 250px;
    height: 165px;
}







.inner-imgs {
    width: 20px;
    height: 20px;
    margin-left: 5px;
}

.inner-imgs:hover {
    transform: rotate(90deg);
}

@media (max-width: 850px) {
    .logos{
    width:110px;
}
    .navlink .navlink-inner{
        color:white;
    }
    nav{
        justify-content:space-between !important;
    }
    .navlink {
        position: fixed;
        width: 300px;
        height: 100vh;
        top: 0;
        right: -500px;
        background-color:#107634;
        transition: 0.5s;
    }
    .dropdown-inner{
        position :relative !important;
    top: 10%;
    left: 0;
  
    width: 100%;
    z-index: 1
    }
    .ab-wth{
        width:100px !important;
    }
    .ab-wth img{
        padding:3px;
    }
    .navlink.active {
        right: 0 !important;
        z-index: 999999999999999;
    }

    .navfrt {
        flex-direction: column;
        padding-left: 0px;
    }

    .bg-footer {
        background-color:black;
        color: white;
    }

    .bg-footer p {
        color: white;
    }

    .bg-footer li {
        list-style: none;
        color: white;
        margin-bottom: 15px;
        font-weight: 800;
    }

    .bg-footer li a {
        padding-left: 10px;
        color: white;
        text-decoration: none;
        font-weight:900;
    }

    .bg-footer li a:hover {
        color: #800000;
    }

    .bg-footer ul {
        padding-left: 0px !important;
    }

    .ftr-img img {
        width: 20px;
        height: 20px;
        margin-right: 6px;
        margin-bottom: 6px;
    }

    h4 {
        font-size: 20px;
        font-weight: 600;
    }

    .glly-mobile {
        flex-direction: column;
    }

    .gry1 {
        height: 200px;
    }

    .gry2 {
        width: 100% !important;
    }

    .send-column {
        display: none !important;
    }

    .hamberg {
        display: flex;
         background: #0d401c;
    width: 40px;
    height: 30px;
    padding:1px 2px 1px ;
    }

    .navlink .navlink-inner {
        padding: 20px 0;
        border-bottom: 1px solid white;
    }

    .close-btn {
        display: block; /* Show the close button on mobile view */
    }

    .navlink-inner.destop {
        display: block !important;
    }

    .mobile {
        display: none;
    }

    .dropdown-inner {
       
        top: 21px;
        left: 0;
        width: 100%;
    }

    .mbmenu {
        border: none !important;
        display: block;
    }
    .navlink .navlink-inner a{
     color:white !important;
     font-weight:800;
     font-size:18px !important;
}
    .navlink-inner .dropdown-inner li a{
        color:black !important;
    }
    .bg-inner .d-flex{
        flex-direction:column;
    }
    .video-container {
        margin-bottom:50px;
    }
}
header {
    position: relative;
    width: 100%;
    z-index: 999;
  /* Background color */
    padding: 10px 0;
    transition: top 0.5s ease, background-color 0.3s ease; /* Adjust transition speed */
     /*background:  #E5530A; /* Gradient */*/
    color:black;

}
.navlink .navlink-inner a{
     color: black;
     font-weight:800;
     font-size:18px !important;
}

.sticky .navlink .navlink-inner a img
{

	filter:invert(1);
}

/*.logos{
    background:white;
}*/
header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #0D401C;
       display:block;
}
.d-dsplay{
    display:none;
}

@media (max-width:768px){

 header.sticky {
    display:block !important;
        top: 0px;
}
 .d-mobile{
     display:none;
 }
}
/* Header end */

    /* Header end */
   /*contact*/
    .p-relative{
            position:relative;

        }
        .p-absolute{
              position:absolute;
        }
        .box-contact{
           box-shadow: -3px 0px 30px 0px rgba(0,0,0,0.1);
            padding:50px 20px 25px;
            text-align:center;
            border-radius:5px;
        }
        .ovelap{
            top:50px;
          width:100%;
          margin: 0 auto;
            z-index:-1;
            opacity:0;
            color: #f6f6f6;
  margin-bottom: 0;
  font-weight: bold;
  z-index: -1;
  font-size: 75px;
  transition: all 300ms ease-in-out;
  left:0;
        }
        .box-contact:hover   .ovelap {
               opacity:1;
        }
        .imge-container{
            width:75px; height:75px; border-radius:50px;background:#F8B88B;
            position:absolute;
            top:-40px;
            left:40%;
        }
        .contact-detail{
            padding:30px 30px;
            border:1px solid #F4F1EE;
        }
        .inner-p{
            padding:10px 20px;
        }
         .bg-footer {
        background-color:;
        color: white;
    }

    .bg-footer p {
        color: white;
        padding-top: 20px;
    }

    .bg-footer li {
        list-style: none;
        color: white;
        margin-bottom: 15px;
        font-weight: 800;
    }

    .bg-footer li a {
        padding-left: 10px;
        color: white;
        text-decoration: none;
        font-weight:900;
    }

    .bg-footer li a:hover {
        color: #800000;
    }

    .bg-footer ul {
        padding-left: 0px !important;
    }

    .ftr-img img {
        width: 20px;
        height: 20px;
        margin-right: 6px;
    }
      
        .p-relative {
            position: relative;
        }

        .p-absolute {
            position: absolute;
        }

       .font-color{
           font-family:'Great Vibes', cursive;
           font-size:30px;
           color:#d53f34;
         
       }
footer {
    background: url('../../pics/f6.png')  center;
    /*background-size: 100%;*/
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}
       footer::before{
         content: "";
  background-color: ;
  --background-overlay: '';
  position: absolute;
  top: 10px;
  left: 0px;
  z-index:-1;
  width: 100%;
  height: 100%;
  
       }
       .topper a{
           color:white!important;
       }
       .nmes{
           column-gap:50px;
       }
       /**home*/
       