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


}
p,a,button,li{
  font-family:  "Inter", 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 */
    
}

h2 {
  font-size: 35px;   /* Sub-heading */
  font-weight: 700;
}

h3 {
  font-size: 30px;   /* Smaller heading */
  font-weight: 700;
}
h4 {
  font-size: 25px;   /* Smaller heading */
  font-weight: 700;
  color: #3d498d;
}
h5 {
  font-size: 20px;   /* Smaller heading */
  font-weight: 700;
}

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:150px;
}
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-evenly;
    width: 30px;
    height: 20px;
    cursor: pointer;
    margin-top: -20px;
   
  }


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

.close-btn {
    position: absolute;
    top: 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: navy;
        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: red;
    }

    .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;
         background: navy;
    width: 40px;
    height: 40px;
    padding:1px 2px 1px ;
    border-radius: 10px;
    }

    .navlink .navlink-inner {
        padding: 25px 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;
}
/*.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: aliceblue;
       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:#D6DFFF;
        color: white;
    }

    .bg-footer p {
        color: black;
    }

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

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

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

    .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:navy;
         
       }
       /**home*/
         .larger{
           height:500px;
       }
       .gallery-grid .img-fluid{
           height:237px;
       }
       .galle@keyframes zoomin {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.gallery-item {
  display: block;
}
ry-item img {
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.2s;
}

.gallery-item:hover img {
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.35);
}

.lightbox-modal .modal-content {
  background-color: var(--lightbox);
}

.lightbox-modal .btn-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.25rem;
  z-index: 10;
  filter: invert(1) grayscale(100);
}

.lightbox-modal .modal-body {
  display: flex;
  align-items: center;
  padding: 0;
}

.lightbox-modal .lightbox-content {
  width: 100%;
}

.lightbox-modal .carousel-indicators {
  margin-bottom: 0;
}

.lightbox-modal .carousel-indicators [data-bs-target] {
  background-color: var(--carousel-text) !important;
}

.lightbox-modal .carousel-inner {
  width: 75%;
}

.lightbox-modal .carousel-inner img {
  animation: zoomin 10s linear infinite;
}

.lightbox-modal .carousel-item .carousel-caption {
  right: 0;
  bottom: 0;
  left: 0;
  padding-bottom: 2rem;
  background-color: var(--lightbox);
  color: var(--carousel-text) !important;
}

.lightbox-modal .carousel-control-prev,
.lightbox-modal .carousel-control-next {
  width: auto;
}

.lightbox-modal .carousel-control-prev {
  left: 1.25rem;
}

.lightbox-modal .carousel-control-next {
  right: 1.25rem;
}

@media (min-width: 1400px) {
  .lightbox-modal .carousel-inner {
    max-width: 60%;
  }
}

[data-bs-theme = "dark"] .lightbox-modal .carousel-control-next-icon,
[data-bs-theme = "dark"] .lightbox-modal .carousel-control-prev-icon {
    filter: none;
}

.btn-fullscreen-enlarge,
.btn-fullscreen-exit {
  position: absolute;
  top: 1.25rem;
  right: 3.5rem;
  z-index: 10;
  border: 0;
  background: transparent;
  opacity: .6;
  font-size: 1.25rem;
}

.bi {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.035em;
  fill: currentcolor;
}
@media (max-width: 768px) {
 .larger{
           height:220px !important;
       }
}
/*.gallery-item{
    width:100%;
    height:100%;
}
.gallery-item::before {
  content: "";
  height: 100%;
  width: 100%;
  background-color: #ffd739;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.gallery-item :hover::before {
  opacity: 0.9;
}*/
.bg-imges{
        background-image: url('../img/bg-pattren-3.png');
}
        /*home*/
            .service-inner {
  -webkit-transition: .5s;
  transition: .5s;
  box-shadow: 0 5px 10px 0 rgba(50, 65, 141, .07);
  position: relative;
  overflow: hidden;
  margin: 5px;
  border-radius: 10px;

}
        .service-content {
  padding: 20px 30px;
    padding-top: 20px;
}
     .flexer{
         flex-basis:50%;
     }
      .paddes{
          padding-top:50px;
          padding-left:50px;
      }
       .paddes-down{
               padding-bottom:50px;
          padding-right:50px;
       }
       .position-relative {
  position: relative !important;
}

        .rnds {
            width: 170px;
            height: 170px;
         
            border-radius: 50%;
            text-align: center;
            position: relative;
            -webkit-transition: all 0.3s linear;
            transition: all 0.3s linear;
            align-content:center;
            text-align:center;
             margin: -84px 0px 0px 0px;
            z-index:99999;

        }

        .rnds::before {
            position: absolute;
            top: 10px;
            left: 10px;
            width: 150px;
            height: 150px;
            -webkit-animation: spin 9s linear infinite;
            animation: spin 9s linear infinite;
            content: "";
            border: 1px dashed black;
            border-radius: 50%;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }
            50%{
                transform: rotate(180deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        /* For cross-browser compatibility */
        @-webkit-keyframes spin {
            0% {
                -webkit-transform: rotate(0deg);
            }
            100% {
                -webkit-transform: rotate(360deg);
            }
        }
       .rnds img{
           width:60%;
       }
       .flex-direction{
           flex-direction:column;
           align-items:center;
           border-style: solid;
  border-width: 3px 3px 3px 3px;
  border-color: #F7F7F7;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  margin: 0px 15px 0px 0px;
 
  padding: 0px 40px 0px 40px;


  position:relative;
  z-index:1;
       }
       .fristes{
           background-color: #FFD6E7;
  color: #000000;
       }
       .second{
           background-color: #D6FFD8;
  color: #000000;
       }
       .third{
           background-color: #D6DFFF;
  color: #000000;
       }
       .one:hover{
            background-color: #FFD6E7;


              box-shadow: 0px 6px 8px 0px #00000012;
              transform: translate(0px, -3px);
       }
       .one:hover .rnds {
             box-shadow: 0px 6px 8px 0px #00000012;
       }
     .two:hover{
            background-color:  #D6FFD8;


              box-shadow: 0px 6px 8px 0px #00000012;
              transform: translate(0px, -3px);
       }
       .two:hover .rnds {
             box-shadow: 0px 6px 8px 0px #00000012;
       }
       .three:hover{
            background-color: #D6DFFF;


              box-shadow: 0px 6px 8px 0px #00000012;
              transform: translate(0px, -3px);
       }
       .three:hover .rnds {
             box-shadow: 0px 6px 8px 0px #00000012;
       }
       .ovelp{
           position: absolute;
  background-color: #D6DFFF;
  padding: 30px 30px 30px 50px;
  transform: translateX(0px);
  bottom: 30px;
  width: 95%;
  transition: all 0.35s cubic-bezier(0, 0.93, 1, 1);
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 0.35s cubic-bezier(0, 0.93, 1, 1);
}
         .ovelp1{
             padding: 40px 35px 35px;
  position: absolute;
  transform: translateX(-104%);
  bottom: 0;
  transition: all 0.35s cubic-bezier(0, 0.93, 1, 1);
  -webkit-transition: all 0.35s cubic-bezier(0, 0.93, 1, 1);
    transition-delay: 0s;
  -moz-transition: all 0.35s cubic-bezier(0, 0.93, 1, 1);
  transition-delay: 0.2s;
  overflow: hidden;
  width: 95%;
  background:#D6FFD8;
   opacity: 0;
         }
         .ovelp1::before {
  content: "";
  left: 10px;
  right: 10px;
  bottom: 10px;
  position: absolute;
  opacity: 1;
  height: 100%;
  transition: all 0.35s cubic-bezier(0, 0.93, 1, 1);
  -webkit-transition: all 0.35s cubic-bezier(0, 0.93, 1, 1);
    transition-delay: 0s;
  -moz-transition: all 0.35s cubic-bezier(0, 0.93, 1, 1);
  transition-delay: 0.2s;
}
         .boxess:hover .ovelp1::before{
             opacity: 2;
  visibility: visible;
         }
          .boxess:hover .ovelp1{
              transform: translateY(-5%);
               opacity: 2;
               margin-left:10px;    

          }
          .boxess:hover .ovelp{
              transform: translateX(-100%);
  opacity: 0;
}
          .upper-contnet{
              position:absolute;
              bottom:-32px;
              width: 240px;
              background:white;
              left:12px;
              border-radius:10px;
              overflow-x:hidden;
              box-shadow: 2px 2px 2px 2px rgba(0,0,0,0.5);
              background-color: #ffffff;
  transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  padding:15px 0px 4px;
          }
          
          .img-content:hover .upper-contnet{
  bottom: -150px;
  opacity:0;
}
        .overlay-box {
  position: absolute;
  left: 20px;
  top: 20px;
  right: 20px;
  bottom: 20px;
  text-align: center;
  color: #ffffff;
  border: 1px solid #1dacf4;
  transition: all 900ms ease;
 
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transition-delay: 0s, 0s;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
  background-color: rgba(255,255,255,0.65);
color:black;
  align-content:center;
}
 .img-content:hover .overlay-box {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition-delay: 300ms;
  -moz-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
}
 .overlay-box a{
     font-family: 'Great Vibes', cursive !important;
     font-size:30px;

 }
 section{
     overflow:hidden;
 }


   
    .nav-logo1{
        position: relative;
  display: block;
  padding: 19px 10px 13px;
  text-align: center;
  border-radius: 0 0 20px 0;
  background-color: white;
    }
    
    .nav-logo1 img{
        position:relative;
        z-index:9999;
    }
    .nav-logo1::before {
  position: absolute;
  /*right: 3px;
  top: 102%;
  margin-top: -50px;
  height: 60px;
  width: 100%;*/
  content: "";
  -webkit-transform: rotate(-8deg);
  -ms-transform: rotate(-8deg);
  transform: rotate(-8deg);
  border-radius: 20px;
  background: white;
}
    .logo-inner1{
        position: absolute;
  float: left;
  left: 0;
  top: -50px;
  width: 200px;
  height: 233px;
  overflow: hidden;
  z-index: 10;
    }
    body{
        overflow-x:hidden;
    }
    .bg-section{
        background:#ffffff;
    }
    .ovelp h5{
        color:black;
    }
    a.theme-btn {
  font-size: 16px;
  fill: #ffffff;
  color: #ffffff !important;
  background-color: #3d498d;
  border-radius: 0px 0px 0px 0px !important;
  padding: 15px 37px 15px 37px !important;
  position: relative !important;
  border: none;
  overflow: visible !important;
}
        a.theme-btn:hover::before {
  top: 0;
  left: 0;
}
       .theme-btn:hover{
           background:#3d498d54;
       }
       a.theme-btn::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #3d498d54;
  z-index: -1;
  transition: 0.3s ease-in-out;
}
   
/*profile*/
.aftr img {
  margin-bottom: 50px;
  width: 70%;
  height: 400px;
}
.aftr::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 303px;
  bottom: -22px;
  right: 0;
  background: var(--secondary-color);
  z-index: -1;
}
.iges-box {
  position: absolute;
  background: #3D498D;
  padding: 10px;
  border-radius: 10px;
  bottom: 30px;
  right: 30px;
  color: white;
  transform: translateX(-30px);
}
.p-relative {
  position: relative;
}