@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1446px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

html,
body {
    overflow-x: hidden;
    /* scroll-behavior: smooth; */
}
/* .center{
    display: flex;
    justify-content: center;
} */
body {
    font-family: "Syne";
    background: #F0F8FF;
}


ul li {
    list-style: none;
}

a {
    text-decoration: none;
    display: inline-block;
}

span {
    display: inline-block;
}
.container {
  max-width: 1446px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.swiper-slide {
  width: auto;
}

li {
  list-style: none;
  text-wrap: nowrap;
}

a {
  text-decoration: none;
}
span {
  display: inline-block;
}
/* nav and banner */

.col {
  padding: 0 15px;
}

/* Header Styles */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  /* background: rgba(0, 0, 0, 0.1);
     backdrop-filter: blur(10px);  */
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  max-width: 81px;
  min-height: 36px;
  width: 100%;
}

.nav-logo > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo::before {
  content: "🏠";
  margin-right: 8px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 85px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: #ff6b35;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: #ff6b35;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-menu a:hover::before {
  transform: scaleX(1);
}

.contact-btn {
  background: #122732;
  color: white;
  padding: 18px 35px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  /* position: relative; */
  /* position: absolute; */
  text-wrap: nowrap;
  font-family:Syne ;
}
.contact-btn:hover {
  background: #1b92d2;
  transform: translateY(-2px);
}

/* From Uiverse.io by vikiWayne 
 .contact-btn{
  paddin: 18px 35px;
  border: none;
  border-radius: 8px;
  font-weight: bold; 
   letter-spacing: 5px; */
/* text-transform: uppercase; */
/* cursor: pointer;
   color: #2c9caf;
  transition: all 1000ms;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  background-color: #122732;
   outline: 2px solid #2c9caf;
}   */
*/
/*  
.contact-btn:hover{
  color: #ffffff;
  transform: scale(1.1);
  outline: 2px solid #70bdca;
   box-shadow: 4px 5px 17px -4px #268391; 
}

.contact-btn::before{
  content: "";
   position: absolute; 
   position: relative; */
   /* left: -50px; */
  /* top: 0;
  width: 0;
  height: 100%;
  background-color: #2c9caf;
   transform: skewX(45deg); 
   z-index: -1; 
   transition: width 1000ms; 
} 

  .contact-btn:hover::before {
  /* width: 250px; */
 */ */
  */



/* Hamburger Menu */
  /* .hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  z-index: 1000;
  /* position: relative; */
 */

.hamburger{
    display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  z-index: 1000;
  }

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
  position: relative;
  display: none;
  /* display: flex; */
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #268391;
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav.active {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.mobile-nav ul {
  list-style: none;
  text-align: center;
  margin-bottom: 30px;
}

.mobile-nav ul li {
  margin: 20px 0;
}

.mobile-nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 10px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.mobile-nav ul li a:hover {
  color: #ff6b35;
}

.mobile-nav .contact-btn {
  font-size: 18px;
  padding: 15px 30px;
  /* border: 2px solid black; */
}

/* Carousel Styles */
.carousel-container {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  /* position: relative; */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 1.5s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  /* margin-top: 150px; */
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
}

.carousel-slide::before {
  content: "";
  position: absolute;
  /* top: 0;
  left: 0;
  right: 0;
  bottom: 0; */
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

/* Slide 1 - Modern House */
.slide-1 {
  background-image: url("./asstes/hero-bg.svg");
}

/* Slide 2 - Luxury Villa */
.slide-2 {
  background-image: url("./asstes/her-bg-2.svg");
}

/* Slide 3 - Contemporary Home */
.slide-3 {
  background-image: url("./asstes/hero-bg-3.svg");
}

/* Hero Content */
.hero-content {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  z-index: 11;
  padding: 100px 0;
  /* margin-top: 50px; */
}

.hero-text {
  /* max-width: 700px;  */
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-out;
  margin-top: 150px;
}

.carousel-slide.active .hero-text {
  opacity: 1;
  transform: translateY(0);
}

.hero-text > h1 {
  /* font-family: Syne; */
  font-weight: 700;
  font-size: 68px;
  /* line-height: 81px; */
  letter-spacing: 0%;

  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1.2s ease-out 0.3s;
}

.carousel-slide.active .hero-text > h1 {
  opacity: 1;
  transform: translateX(0);
}

.hero-text > p {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0%;
  /* text-wrap: wrap; */
  margin-top: 32px;
  /* max-width: 650px; */
  /* text-align: center; */

  /* font-weight: 400;
  font-size: 20px; */
  /* min-width: 650px; */
  /* margin-bottom: 32px; */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1.2s ease-out 0.6s;
}

.carousel-slide.active .hero-text > p {
  opacity: 1;
  transform: translateX(0);
}

.cta-btn {
  background-color: #122732;
  color: white;
  padding: 18px 35px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 30px;
  font-family: Syne;
  /* text-transform: uppercase; */
  letter-spacing: 1px;
  /* box-shadow: 0 8px 32px rgba(255, 107, 53, 0.3); */
  opacity: 0;
  /* transform: translateY(30px) scale(0.9); */
  transition: all 1.2s ease-out 0.9s;
}

.carousel-slide.active .cta-btn {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cta-btn:hover {
  /* transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4); */
  background-color: #1b92d2;
  transform: translateY(-2px);
}

 


.banner2-section {
    padding: 168px 0 !important;
    background: url("./asstes/hero-bg-3.svg") no-repeat center/cover;
}



.banner-content h1 {
    font-size: 68px;
    line-height: 81px;
    font-weight: 700;
    color: #FFFFFF;
}



/* section */

 .col-12{
  width: 100%;
}

.section-5{
    margin-top: 75px;
}

.col-4{
  width: 33%;
}
.banner-5{
    display: flex;
    margin-top: 50px;
    /* justify-content: space-around; */
    gap: 24px;
    padding: 0 15px;
    /* border: 1px solid black; */
}
.banner5-text>h2{
font-weight: 600;
font-size: 45px;
text-align: center;
color: #122732;

}
.banner5-text>p{
font-weight: 400;
font-size: 20px;
text-align: center;
color: #616066;
margin-top: 15px;

}

.banner5-card{
    max-width:456px;
    min-height: 511px;
border-radius: 25px;

}

.banner5-image{
max-width: 456px;
min-height: 406px;
border-radius: 25px;

}

.banner5-image>img{
  width: 100%;
  object-fit: contain;
  height: 100%;
}
.banner5-btn{
    margin-top: 50px;
    display: flex;
    justify-content: center;
}
.banner5-btn1{
    padding: 11px 21px;
    border-radius: 8px;
    background-color:#122732 ;
    color: #FFFFFF;
}

.banner5-text1>h4{
font-weight: 600;
font-size: 35px;
color: #122732;
margin-top: 20px;


}

.banner5-text1>p{
font-weight: 500;
font-size: 20px;
color: #616066;
margin-top: 15px;

}


/* section6 */
.section-6{
  margin-top: 75px;
}

.col-12 {
  width: 100%;
}
.col-6 {
  width: 50%;
}

.banner-6 {
  display: flex;
  gap: 144px;
  padding: 0 15px;
  /* flex-wrap: wrap; */
}

.banner6-card > h4 {
  font-weight: 600;
  font-size: 45px;
  text-align: center;
  color: #000000;
}

.both-6 > p {
  font-size: 20px;
  font-weight: 400;
  color:#616066;
}

.banner6-image {
  max-width: 696px;
  min-height: 411px;
  border-radius: 25px;
  width: 100%;
}

.banner6-image > img {
  width: 100%;
  object-fit: contain;
  height: 100%;
}

.both-6 > img {
  padding: 11px 13px;
  width: 50px;
  height: 50px;
  /* top: 210px; */
  border-radius: 15px;

  background: #122732;
}

.both-6 {
  display: flex;
  /* gap: 46px; */
  margin-top: 35px;
  max-width: 576px;
  gap: 46px;
  min-height: 72px;
  width: 100%;
}


/* section-4 */

 .section-4{
            margin-top: 75px;
        }
        .line4{
         max-width: 1416px;
          height: 1px;
          width: 100%;
         background-color: #122732;
          margin-bottom: 10px;

        }
        

        
        .stats-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            /* gap: 2rem; */
            margin-bottom: 3rem;
        }

        .stat-card {
            /* background: rgba(255, 255, 255, 0.1); */
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 3rem 2rem;
            text-align: center;
            /* border: 1px solid rgba(255, 255, 255, 0.2); */
            transform: translateY(50px);
            opacity: 0;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            flex: 1;
            min-width: 250px;
            max-width: 300px;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.6s;
        }

        .stat-card:hover::before {
            left: 100%;
        }


        .stat-number {
            font-size: 4rem;
            font-weight: 600;
            margin-bottom: 1rem;
            background: linear-gradient(45deg,  #122732);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
            color: #122732;
        }

        .stat-label {
            font-size: 1.1rem;
            font-weight: 500;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #122732;
        }

        

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #fff, #f0f0f0);
            border-radius: 2px;
            width: 0%;
            transition: width 2s ease;
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            width: 60px;
            height: 60px;
            top: 20%;
            right: 15%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            width: 100px;
            height: 100px;
            bottom: 15%;
            left: 20%;
            animation-delay: 4s;
        }

        .floating-element:nth-child(4) {
            width: 40px;
            height: 40px;
            bottom: 30%;
            right: 25%;
            animation-delay: 1s;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }
        
/* section7 */


.section-7{
  margin-top: 75px;
}
.col-12 {
  width: 100%;
}

.col-4 {
  width: 33%;
}
.banner-7 {
  display: flex;
  margin-top: 50px;
  padding: 0 15px;
  gap: 12px;
}
.banner7-text > h2 {
  font-weight: 600;
  font-size: 45px;
  text-align: center;
  color: #000000;
}

.banner7-text > p {
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  color: #616066;
  margin-top: 15px;
}

.banner7-card {
  min-height: 277px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  /* border: 2px solid black; */
  padding: 29px 15px;
  background-color: white;
}
.banner7-image {
  display: flex;
  justify-content: space-between;
}

.image-1{
  max-width: 66px;
min-height: 66px;
width: 100%;
object-fit: contain;

}
.image-2 {
  max-width: 118px;
  min-height: 21px;
  width: 100%;
  object-fit: contain;
}

.banner7-card-text > h4 {
  font-weight: 500;
  font-size: 20px;
  color: #000000;
  margin-top: 10px;
}

.banner7-card-text > p {
  font-weight: 400;
  font-size: 15px;
  color: #252525B2;
  margin-top: 10px;
}


/* footer */


 footer {
    padding: 50px 0;
    background-color: #122732;
    color: white;
    margin-top: 75px;
}

footer a {
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}  


footer a:hover {
    transform: scale(1.2);
}

.child-foot a:hover {
    color: #268391;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.footer-top h2 {
    font-weight: 600;
    font-size: 32px;
    color: #FFFFFF;
}

.footer-top p {
    max-width: 263px;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 18px;
    margin-top: 20px;
}

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 20px;
}

.newsletter-form input {
    padding: 17px 30px;
    max-width: 289px;
    width: 100%;
    border-radius: 8px;
    background-color: #123344;
    color: white;
    outline: none;
    border: none;
}

.newsletter-form input::placeholder {
    color: #ffffff;
    opacity: 0.6;
    font-size: 14px;
}

.bttn {
    padding: 14.5px 30px;
    max-width: 158px;
    border-radius: 10px;
    color: #fff;
    border: none;
    background-color: #000000;
    font-weight: 500;
    font-size: 18px;
    position: relative;
    overflow: hidden;
    background-size: 400%;
}

.bttn:hover::before {
    transform: scaleX(1);
}

.button-content {
    position: relative;
    z-index: 1;
    text-align: center;
    right: 10px;
}

.bttn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: 0 50%;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: #123344;
    transition: all 0.475s;
}



footer .row {
    border-top: 1px solid rgba(255, 255, 255, 0.60);
    border-bottom: 1px solid rgba(255, 255, 255, 0.60);
    padding: 50px 0;
}

.phone {
    display: flex;
    align-items: center;
    gap: 15px;
}

.foot-1 p {
    font-size: 18px;
    font-weight: 700;
}

.email {
    display: flex;
    align-items: center;
    gap: 15px;
}

.col-25 {
    width: 25%;
    padding: 0 15px;
}

.child-foot h3 {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 15px;
}

.location {
    display: flex;
    align-items: center;
    gap: 15px
}

.location p {
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;
    margin-top: 20px;
    color: white;
}

.foot-images {
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
}

.img>img {
    max-width: 96px;
    object-fit: contain;
    width: 100%;
}

.foot-1 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.child-foot ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 17px;
}

.child-foot ul li a {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 18px;
}

.bottom-foot {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 50px;
}

.bottom-right-foot {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bottom-right-foot p {
    font-weight: 500;
    font-size: 18px;
}

.foot-txt {
    font-weight: 700;
    font-size: 20px;
}

.fa-brands {
    display: inline-block;
    font-size: 25px;
    border-radius: 50%;
    padding: 13px;
    background-color: #123344;
    transition: all 0.4s cubic-bezier(0.15, 0.83, 0.66, 1);
}

.fa-brands:hover {
    transform: scale(1.2);
    border-radius: 15px;
}

.fa-facebook:hover {
    background-color: #1877F2;
}

.fa-x-twitter:hover {
    background-color: #000000;
}

.fa-instagram:hover {
    background-color: #d62976;
}

.fa-linkedin:hover {
    background-color: #0072b1;


} 




@media screen and ( max-width : 1330px ){
 .banner-5{
    /* display: flex; */
    /* flex-wrap: wrap; */
    /* flex-direction: column; */
    margin-top: 30px;

  }

  .col-4{
    width: 100%;
  }
  .banner5-image{
    min-height: 370px;
  }
  .banner5-text1>p{
    font-size: 15px;
    margin-top: 5px;
  }
  .banner5-card{
    min-height: 475px;
  }

  .banner5-text1>h4{
    margin-top: 10px;
    
  }
}


@media screen and ( max-width : 1200px ){
    /* section5 */
  .section-5{
  margin-top: 50px;
}
  .banner5-image{
    min-height: 285px;
  }
      .banner5-card{
        min-height: 370px;
      }
      .banner5-text1>h4{
        font-size: 30px;
      }
      .banner5-text>p{
        font-size: 18px;
      }
      .banner5-text>h2{
        font-size: 35px;
      }
      .banner5-btn{
        margin-top: 25px;
      }

       /* section6 */

  .section-6{
  margin-top: 50px;
}

  .col-6 {
    width: 100%;
  }

.both-6{
  margin: auto;
}
  .banner-6 {
     flex-wrap: wrap; 
    /* flex-direction: column; */
    gap: 20px;
  }
  .banner6-image {
    margin: auto;
    min-height: 290px;
  }
  .banner6-image > img {
    /* display: flex; */
  }
  .banner6-image{
    max-width: 585px;
  }
  .icon-6>div{
    margin-top: 15px;
  }
  .banner6-card>h4{
    font-size: 35px;
  }
  /* section7 */
   .section-7{
  margin-top: 50px;
}
  .banner-7 {
    margin-top: 20px;
  }
  .col-4 {
    width: 100%;
  }
  .banner7-text>h2{
    font-size: 30px;
  }
  .banner7-text>p{
    font-size: 15px;
  }
   footer {
    padding: 50px 0;
  }

  .footer-top {
    margin-bottom: 40px;
  }

  .footer-top h2 {
    font-weight: 600;
    font-size: 30px;
    color: #ffffff;
  }

  .footer-top p {
    font-size: 16px;
    margin-top: 18px;
  }

  .newsletter-form {
    gap: 6px;
    margin-top: 18px;
  }

  .newsletter-form input {
    padding: 16px 29px;
  }

  .newsletter-form input::placeholder {
    font-size: 14px;
  }

  .newsletter-form button {
    padding: 14px 29px;
    font-size: 17px;
  }

  footer .row {
    padding: 45px 0;
  }

  .phone {
    gap: 14px;
  }

  .foot-1 p {
    font-size: 11px;
  }

  .email {
    gap: 14px;
  }

  .child-foot h3 {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .location {
    gap: 14px;
  }

  .location p {
    font-size: 13px;
    line-height: 23px;
  }

  .foot-images {
    gap: 18px;
  }

  .foot-images img {
    max-width: 70px;
  }

  .foot-1 {
    gap: 29px;
  }

  .child-foot ul {
    gap: 16px;
  }

  .child-foot ul li a {
    font-size: 13px;
  }

  .bottom-foot {
    padding-top: 45px;
  }

  .bottom-right-foot {
    display: flex;
    align-items: center;
    gap: 19px;
  }

  .bottom-right-foot p {
    font-size: 16px;
  }

  .foot-txt {
    font-size: 18px;
  }

  .fa-brands {
    font-size: 24px;
    padding: 12px;
  }
    
}


@media screen and ( max-width:992px ){
    /* section5 */
    .banner5-image{
  min-height: 275px;
}
.banner5-card{
  min-height: 360px;
}
    .banner1-card-img{
    min-height: 150px;
}
.location1>p{
    font-size: 9px;
}
.location1{
    margin-top: 6px;
}
.rate{
    font-size: 15px;
    margin-top: 6px;
}
.banner1-card{
    min-height: 400px;
}
    .banner-content h1 {
        font-size: 40px;
        line-height: 60px;
    }

  


}
/* Always show hamburger on mobile */
@media screen and (max-width: 992px) {
.hamburger span {
    display: block;
  }
  /* .hamburger {
    display: flex;
    flex-direction: column;
    /* display: block; */

  .nav-menu {
    /* display: none; */
  }
  .btn1 {
    display: none;
  }
  .nav-menu {
    display: none;
  }

  /* .hamburger {
    display: flex;
  } */
  .mobile-nav {
    display: flex;
  }
      .text-section2 > p{
        font-size: 15px;
      }

      .hamburger{
        display: flex;
        flex-direction: column;
      }
}


@media screen and ( max-width : 768px ){

    footer {
    margin-top: 10px;
  }
/* section-4 */

  .stat-number {
                font-size: 2rem;
            }
                .stat-card {
        padding: 1rem 0.5rem;
    }

    .section-4{
        margin-top: 30px;
    }

    /* section5 */
  .section-5{
  margin-top: 30px;
}
.banner5-image{
  min-height: 210px;
}
.banner5-card{
  min-height: 290px;
}
.banner5-text1>h4{
  font-size: 20px;
}
.banner5-text>h2{
  font-size: 26px;
}
.banner5-text>p{
  font-size: 14px;
}
.banner-5 {
gap: 10px;
}

.banner5-btn{
    margin-top: 15px;
}
/* section6 */
  .section-6{
  margin-top: 30px;
}

  .banner6-image {
    max-width: 500px;
  }
  .both-6 {
    display: flex
;
    /* gap: 46px; */
    margin-top: 0px;
    max-width: 490px;
    gap: 20px;
    min-height: 65px;
    width: 100%;
    margin: auto;
}
.banner6-card>h4{
  font-size: 30px;
}
.both-6 >p{
font-size: 15px;
}
.banner-6{
  gap: 10px;
}

.icon-6>div{
  margin-top: 10px;
}
/* footer */

 .footer {
    padding: 25px 0;
  }

  .footer-top {
    margin-bottom: 30px;
  }

  .footer-top h2 {
    font-size: 25px;
  }

  .footer-top p {
    font-size: 14px;
    margin-top: 15px;
  }

  .newsletter-form {
    gap: 5px;
    margin-top: 15px;
  }

  .newsletter-form input {
    padding: 15px 25px;
  }

  .newsletter-form input::placeholder {
    font-size: 12px;
  }

  .newsletter-form button {
    padding: 12px 25px;
    font-size: 14px;
  }

  footer .row {
    padding: 35px 0;
  }

  .phone {
    gap: 12px;
  }

  .foot-1 p {
    font-size: 9px;
    text-wrap: nowrap;
  }

  .email {
    gap: 10px;
  }

  .col-25 {
    width: 50%;
  }

  .child-foot h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .location {
    gap: 10px;
  }

  .location p {
    font-size: 14px;
    line-height: 20px;
  }

  .foot-images {
    gap: 15px;
  }

  .foot-images img {
    max-width: 60px;
  }

  .foot-1 {
    gap: 20px;
  }

  .child-foot ul {
    gap: 12px;
  }

  .child-foot ul li a {
    font-size: 14px;
  }

  .bottom-foot {
    padding-top: 45px;
  }

  .bottom-right-foot {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .bottom-right-foot p {
    font-size: 14px;
  }

  .foot-txt {
    font-size: 14px;
  }

  .fa-brands {
    font-size: 20px;
    padding: 10px;
  }

  footer .row {
    row-gap: 20px;
  }

    
}

@media screen and ( max-width : 576px ){
    .banner-content h1 {
        font-size: 20px;
        /* line-height: 60px; */
    }
/* section4 */

.stat-number{
    font-weight: 600;
}
/* section5 */

.section-5{
  margin-top: 20px;
  padding: 20px 20px;
}
  .banner-5{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    
    margin-top: 15px;
  }

  .banner5-text>h2{
    font-size: 20px;
  }
.banner5-text>p{
  font-size: 12px;
  margin-top: 10px;
}
.banner5-image{
  min-height: 235px;
}
.banner5-text1>p{
  margin-top: 0px;
  font-size: 10px;
}
.banner5-text1>h4{
  margin-top: 0px;
  font-size: 15px;
}
/* .banner5-card {
  min-height: 290px;
} */
.banner5-card {
  min-height: 265px;
   /* padding: 30px 30px;  */
}
.banner5-btn{
    margin-top: 10px;
}


  /* section6 */

  .section-6{
  margin-top: 20px;
}

  .both-6 {
    display: flex
;
    /* gap: 46px; */
    margin-top: 35px;
    max-width: 265px;
    gap: 10px;
    min-height: 45px;
    width: 100%;
    margin-top: 7px;
  }
  .banner6-card > h4 {
    /* font-family: Syne; */
    font-weight: 600;
    font-size: 20px;
    /* line-height: 30px; */
    /* letter-spacing: 0%; */
    text-align: center;
    color: var(--secondary-color);
}
.banner-6{
  gap: 15px;
  flex-wrap: wrap;
}
.both-6 > p{
  font-size: 10px;
}

.both-6 > img {
    padding: 11px 13px;
    width: 40px;
    height: 40px;
    border-radius: 15px;
}

    
.banner6-image{
  max-width: 275px;
  min-height: 166px;
}
/* section7 */


    .section-7{
  margin-top: 10px;
  padding: 10px 10px;
}
    .banner7-text > p {
      font-size: 12px;
      line-height: 1.5;
      margin-top: 10px;
    }
    .banner7-text > h2 {
      font-size: 20px;
    }
    .banner7-card-text > h4 {
      font-size: 15px;
    }
    .banner7-card-text > p {
      font-size: 12px;
      /* margin-top: 10px; */
    }
    
    .banner7-card{
      padding: 10px 10px;
      min-height: 185px;
      margin-top: 20px;
    }
     .banner-7 {
    display: flex;
    flex-wrap: wrap;
    margin-top: 0px;
    padding: 15px 15px;
    gap: 10px;
  } 
  
  /* footer */
 footer .row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* padding: 30px 0; */
    /* row-gap: 15px; */
    text-align: center;
  }

  .phone,
  .email,
  .location,
  .foot-images,
  .bottom-right-foot {
    gap: 8px;
  }

  .location {
    justify-content: center;
  }

  .foot-images {
    justify-content: space-evenly;
  }

  .foot-images img,
  .foot-1 img {
    max-width: 35px;
  }

  .fa-brands {
    font-size: 15px;
    padding: 8px;
  }

  .child-foot h3 {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .child-foot ul {
    gap: 10px;
  }

  .bottom-foot {
    padding-top: 35px;
  }

  .foot-1 {
    /* flex-direction: row; */
    /* flex-wrap: wrap; */
    align-items: center;
    /* justify-content: space-between; */
    gap: 18px;
  }
}



@media screen and (max-width : 576px) {
  .footer {
    margin-top: 10px;
  }
     .mobile-nav .contact-btn {
        font-size: 12px;
        padding: 13px 18px;
        /* border: 2px solid black; */
    }
    
}
.swiper-pagination {
  position: relative !important;
  margin-top: 20px;
}

.swiper-pagination-bullet {
  background: #ddd;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #your-brand-color; /* Replace with your brand color */
}