﻿.container{
   max-width: 1140px; 
}
section{
    overflow:hidden;
}
/*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:120px;
}
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: 768px) {
    .logos{
    width:110px;
}
    nav{
        justify-content:space-between !important;
    }
    .navlink {
        position: fixed;
        width: 300px;
        height: 100vh;
        top: 0;
        right: -500px;
        background-color: var(--secondary-color);
        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: beige;
    }

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

    .ftr-img img {
        width: 20px;
        height: 20px;
        margin-right: 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;
     
 
    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:600;
     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:600;
     font-size:18px !important;
}
/*.logos{
    background:white;
}*/
header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  
       
       display:block;
}
header.sticky nav{
      
      background:#FF6F00;
      border-radius:10px;
}
header.sticky nav .navlink-inner a{
    color:white;
    font-weight:900;
}
header.sticky nav .dropdown-inner a{
    color:black;
}
.d-dsplay{
    display:none;
}

@media (max-width:768px){

 header.sticky {
    display:block !important;
        top: 0px;
}
 .d-mobile{
     display:none;
 }
  .navfrt{
      align-items:unset !important;
  }
  .dropdown-inner{
      padding-left:0px !important;
  }
  .creative-fullpage--slider .slider-inner{
      height:60vh !important;
  }
  .creative-fullpage--slider{
       height:60vh !important;
  }
  .creative-fullpage--slider .swiper-slide .slider-inner img{
      height:60vh !important;
  }
  .nav-logo1{
      display:block !important;
  }
  .gaperss{
      display:flex;
    gap:170px;

  }
  .hamberg span{
      background-color: black !important;
  }
}
/* 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:#042544;
        color: white;
    }

    .bg-footer p {
        color: white;
    }

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

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

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

    .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-size:100%;
           width:100%;
           height:100%;
          
           position:relative;
           z-index:1;
       }
       /*footer::before{
         content: "";
  background-color: #02170BA9;
  --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*/
        .tz-gallery .row > div {
            padding: 2px;
        }

        .tz-gallery .lightbox img {
            width: 100%;
            border-radius: 0;
      
        }
        .tab-content p{
            max-width:500px !important;
        }
.tz-gallery .lightbox:before {
    position: absolute;
    top: 40%;
    left: 40%;
    margin-top: -13px;
    margin-left: -13px;
    opacity: 0;
    color: #fff;
    font-size: 26px;
    font-family: 'Glyphicons Halflings';
    content: '';
    pointer-events: none;
    z-index: 9000;
    transition: 0.4s;
    background: url('../img/right-1.png');

    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    width: 100px;
    height: 100px;
}

        .tz-gallery .lightbox:after {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            background-color: rgba(46, 132, 206, 0.7);
            content: '';
            transition: 0.4s;
        }
        .tz-gallery .lightbox{
            position:relative;
             display: block;
        }
        .higer1{
            position:relative;
        }
        .tz-gallery .lightbox:hover:after,
        .tz-gallery .lightbox:hover:before {
            opacity: 1;
        }
           .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;
        }
        .form-control{
            min-height:57px !important;
        }
        /* coantus*/
       .image-box {
  width: 50px; /* Set the width to 30px */
  height: 50px; /* Set the height to 30px */
  overflow: hidden;
  position: relative;
    display: flex;
  justify-content: center;
  align-items: center;

}

 .toper{
          background:#ffb840;
      }
      .toper p{
          margin-bottom:0px;
          color:white
      }
      .toper p a{
    color:white;
      }
      .tz-gallery .lightbox {
  position: relative; /* Ensure the pseudo-element is positioned relative to this element */
}
      section{
          overflow:hidden;
      }
      .bg-topeer {
  height: 120px;
  background:#FF6F00;
  align-content: center;
}
      .nmers {
  border: 1px dashed black;
  width: 30%;
  height: 130px;
}
      .gapes {
  gap: 15px;
}
      .stret span {
  width: 50px;
  height: 45px;
  align-content: center;
}
      .nav-logo1 {
  display: none;
}
      
