@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;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 75px;
    
}

.pagination .active {
    padding: 8.5px 14px;
    background-color: #7080D0;
    color: #FFFFFF;
    border-radius: 8px;
}

.pagination a {
    font-family: "Poppins", sans-serif;
    font-size: 15.26px;
    font-weight: 600;
    color: #333333;
    padding: 8.5px 14px;
    background-color: #F1F1F1;
    border-radius: 8px;
}





@media screen and (max-width : 992px) {
 .banner-content h1 {
        font-size: 40px;
        line-height: 60px;
    }

    
  .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) {

    .cmn-head {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .cmn-para {
        font-size: 14px;
    }

    .testimonials {
        padding-top: 30px;
    }

    .navbar-collapse,
    .navbar-collapse ul {
        gap: 6px;
    }

    .navbar-collapse ul li a {
        font-size: 14px;
    }

    .nav-btn .btn-hover-effect {
        font-size: 14px;
        padding: 16px 25px;
    }
}

@media screen and (max-width : 576px) {
    
        .mobile-nav .contact-btn {
        font-size: 12px;
        padding: 13px 18px;
        /* border: 2px solid black; */
    }
    
    
    .cmn-head {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .cmn-para {
        font-size: 13px;
    }

    .navbar-collapse,
    .navbar-collapse ul {
        gap: 4px;
    }

    .navbar-collapse {
        width: 100%;
    }

    .navbar-collapse ul li a {
        font-size: 10px;
    }

    .nav-btn .btn-hover-effect {
        font-size: 10px;
        padding: 13px 18px;
    }

    .banner-content h1{
        font-size: 20px;
    }

    .pagination{
        margin-top: 10px;
    }
    

}


/* section8 */
.section-8{
  margin-top: 75px;
}
.col-33 {
    width: 33%;
    padding: 0 15px;
}




.blog {
    padding: 75px 0;
}

.blog-card {
    width: 100%;
}
.blog-image {
    width: 100%;
}
.blog .row {
    row-gap: 46px;
}

.blogs-top {
    text-align: center;
    margin-bottom: 50px;
}

.blogs-top h2 {
    margin-bottom: 15px;
}

.blogs-top p {
    font-size: 20px;
    color: #616066;
}

.blog-card {
  margin: 15px;
    padding: 16px;
    background: #FFFFFF;
    border-radius: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}


.blog-image>img {
    max-width: 424px;
    border-radius: 25px;
    width: 100%;
    object-fit: contain;
}

.cmn-blog-txt {
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
    max-width: 401px;
    margin-bottom: 20px;
}

.blog-txt p {
    font-size: 15px;
    color: #616066;
}

.blog-txt a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    font-size: 20px;
    color: #252525;
    margin-top: 20px;
}

.blog .row:hover>.col-33 .blog-card {
    transition: 0.3s ease;
}

/* .blog .row:hover>.col-33:not(:hover) .blog-card {
    filter: blur(4px);
    transform: scaleX(0.95);
}

.blog .col-33:hover .blog-card {
    transform: scaleX(1.05);
    z-index: 2;
} */

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 75px;
}

.pagination .active {
    padding: 8.5px 14px;
    background-color: #7080D0;
    color: #FFFFFF;
    border-radius: 8px;
}

.pagination a {
    font-family: "Poppins", sans-serif;
    font-size: 15.26px;
    font-weight: 600;
    color: #333333;
    padding: 8.5px 14px;
    background-color: #F1F1F1;
    border-radius: 8px;
}



/* 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:1200px ){


  
   /* footer */ 

    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 ){
    /* section8 */


}


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


/* 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 ){
     /* section8 */

 /* 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 : 768px) {

    .col-33 {
        width: 50%;
    }

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

    .pagination {
        margin-top: 40px;
    }

    .blog {
        padding: 50px 0;
    }
    footer {
      margin-top: 15px;
    }
}

@media screen and (max-width : 576px) {
    .col-33 {
        width: 93%;
    }

    .cmn-blog-txt{
      font-size: 15px;
      margin-bottom: 5px;
      line-height: 20px;
    }
    .blog-txt>p{
      font-size: 10px;
    }
.blog-txt>a{
  font-size: 15px;
  margin-top: 5px;
}
    .pagination {
        margin-top: 20px;
    }

    .blog {
        padding: 30px 0;
    }

    .blog-image>img {
        max-width: 100%;
    }
    .blogs-top {
    text-align: center;
    margin-bottom: 10px;
}
    .blog .row {
        row-gap: 10px;
    }

    .footer {
      margin-top: 10px;
    }
}