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

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Syne";
  background: #f0f8ff;
  /* overflow: hidden; */
}

.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: darkgreen;
  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: darkgreen;
  transform: translateY(-2px);
}

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

.banner1-text > h2 {
  font-weight: 600;
  font-size: 45px;
  text-align: center;
  color: #122732;
}

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

.banner-1 {
  margin-top: 50px;
  display: flex;
  /* flex-wrap: wrap; */
  /* gap: 24px; */
  justify-content: space-between;
}

.banner1-card {
  padding: 16px 16px;
  max-width: 456px;
  min-height: 460px;
  border-radius: 25px;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background-color: white;
}

.banner1-card-img {
  max-width: 424px;
  min-height: 252px;
  border-radius: 13px;
  width: 100%;
}
.banner1-card-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.location1 {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.location1 > p {
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #616066;
  /* flex-direction: nowrap; */
}

.villa {
  margin-top: 15px;
  font-weight: 600;
  font-size: 30px;
  color: #123344;
}

.rate {
  font-weight: 500;
  font-size: 25px;
  color: #123344;
  margin-top: 15px;
}

.banner1-btn {
  margin-top: 15px;
  display: flex;
  gap: 24px;
}

.view-btn1 {
  padding: 14px 58px;
  background-color: #122732;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  text-wrap: nowrap;
}

.view-btn1:hover{
  background-color: darkgreen;
   transform: translateY(-2px);
}
.col-60{
   padding: 0 15px; 
}

.view-btn2 {
  padding: 14px 54px;
  border: 1px solid #122732;
  border-radius: 8px;
  color: #122732;
  font-weight: 600;
  font-size: 15px;
  text-wrap: nowrap;
}
.view-btn2:hover{
  background-color: cornflowerblue;
   transform: translateY(-2px);
}
.shower {
  max-width: 81px;
  min-height: 18px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* section2 */
.section-2 {
  margin-top: 75px;
}

.text-section2 > h2 {
  font-weight: 600;
  font-size: 45px;
  color: #123344;
}

.col-6 {
  width: 50%;
}

.commom-section-2 {
  display: flex;
  padding: 0 15px;
  gap: 24px;
  /* flex-wrap: wrap; */
}
.right {
  max-width: 696px;
  height: 515px;
  border-radius: 25px;
}

.right > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.text-section2 {
  margin-top: 19px;
}

.text-section2 > p {
  font-weight: 400;
  font-size: 20px;
  margin-top: 45px;
  color: #616066;
}

.btn {
  margin-top: 30px;
  padding: 10px 30px;
  background: #122732;
  display: inline-block;
  color: white;
  border-radius: 8px;
}
.btn:hover{
  background-color: cornflowerblue;
   transform: translateY(-2px);
}
/* section3 */
.section-3 {
  margin-top: 75px;
}
.col-12 {
  width: 100%;
}
.banner-3 {
  display: flex;
  margin-top: 50px;
  gap: 14px;
  /* flex-wrap: wrap; */
  /* justify-content: space-around; */
}

.banner3-image {
  padding: 10px 12px;
  background: #123344;
  max-width: 50px;
  min-height: 50px;
  /* top: 194px; */
  /* left: 20px; */
  border-radius: 15px;
  margin-top: 20px;
}

.col-10 {
  max-width: 336px;
  min-height: 242px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 25px;
}

.arow {
  max-width: 183px;
  border-width: 2px;
  margin-top: 105px;
}

.arow > img {
  width: 100%;
}

.banner3-text > h2 {
  font-weight: 600;
  font-size: 45px;
  text-align: center;
  color: #122732;
}

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

.col-10 > h4 {
  margin-top: 25px;
  font-weight: 500;
  font-size: 25px;
  color: #000000;
}

.col-10 > p {
  font-weight: 400;
  font-size: 18px;
  margin-top: 25px;
  color: #616066;
}

/* 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;
  font-size: 2rem;
}

.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);
  }
}

/* section5 */

.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-btn1:hover{
  background-color: cornflowerblue;
   transform: translateY(-2px);
}

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

.card6{
  margin-top: 45px;
}


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

.banner-6 {
  display: flex;
  justify-content: space-around;
  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%;
}

/* section7 */

.section-7 {
  margin-top: 75px;
  padding: 0 20px;
}
.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: 21px;
  min-height: 21px;
  width: 100%; */
  max-width: 120px;
  min-height: 22px;
  width: 100%;
  display: flex;
}

.image-2 > img {
  max-width: 21px;
  min-height: 20px;
  width: 100%;
  height: 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;
}

/* section8 */
.section-8 {
  margin-top: 75px;
  padding: 0 20px;
}


.col-12 {
  width: 100%;
}

.col-4 {
  width: 33.33%;
}
.banner-8 {
  display: flex;
  gap: 24px;
  margin-top: 50px;
  /* justify-content: space-around; */
  /* flex-wrap: wrap; */
}
.banner8-text > h2 {
  font-weight: 600;
  font-size: 45px;
  text-align: center;
  color: #122732;
}

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

.banner8-card {
  max-width: 456px;
  min-height: 435px;
  border-radius: 25px;
  /* /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
  /* box-shadow: 0px 10px 20px 0px #1A1A1A0D; */
  box-shadow: 0px 10px -1px 0px #1a1a1a0d;

  /* border: 2px solid black; */
  padding: 16px 16px;
  background-color: white;
}

.banner8-card > h4 {
  font-weight: 500;
  font-size: 20px;
  color: #000000;
  margin-top: 10px;
}
.banner8-card > p {
  font-weight: 400;
  font-size: 15px;
  margin-top: 20px;
  color: #616066;
}
.banner8-image {
  max-width: 424px;
  min-height: 224px;
  width: 100%;
  /* top: 159px; */
  /* left: 16px; */
  border-radius: 25px;
}
.read {
  display: flex;
  margin-top: 20px;
  font-family: Syne;
  font-weight: 500;
  font-size: 20px;
  color: #252525;
  gap: 5px;
}
.read > img {
  max-width: 24px;
  min-height: 24px;
  object-fit: contain;
  width: 100%;
}

a {
  text-decoration: none;
}
.banner8-image > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 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;
  text-decoration: none;
}

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.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  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) {
  /* section1 */
  .banner1-btn {
    flex-wrap: wrap;
    gap: 10px;
  }
  .view-btn1 {
    width: 100%;
    text-align: center;
  }
  .view-btn2 {
    width: 100%;
    text-align: center;
  }
  .banner1-card-img {
    min-height: 230px;
  }

  /* section5 */
  .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;
  }

  .card6{
    margin-top: 30px;
  }

  .banner6-card > h4{
    font-size: 40px;
  }

   .both-6 > p{
    font-size: 18px;
   }
  
}

@media screen and (max-width: 1200px) {
  /* section1 */

  .section-2 {
    margin-top: 50px;
  }
  .banner-1 {
    padding: 0 20px;
  }

  .banner1-card-img {
    min-height: 185px;
  }
  .banner1-card {
    min-height: 450px;
  }
  .villa {
    font-size: 16px;
    font-weight: 600;
  }
  .location1 > p {
    font-size: 10px;
  }
  .rate {
    font-size: 20px;
    margin-top: 10px;
  }
  /* .location1 {
    gap: 40px;
  } */
  .section-1 {
    margin-top: 50px;
  }
  /* section2 */

  .col-6 {
    width: 100% !important;
  }
  .text-section2 > h2 {
    font-size: 30px;
  }
  .btn {
    margin-top: 10px;
  }
  .text-section2 > p {
    margin-top: 10px;
  }
  .text-section2 {
    margin-top: 75px;
  }
  .text-section2 > p {
    font-size: 17px;
  }

  /* section3 */
  .section-3 {
    margin-top: 50px;
  }

  .banner-3 {
    padding: 0 20px;
  }
  .arow {
    display: none;
  }

  /* 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;
  }

  .banner6-card > h4{
    text-align: center;
  }

  .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;
  }
  .banner-6 {
    gap: 15px;
    flex-wrap: wrap;
  }
  /* 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;
  }

  /* section8 */

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

  .banner-8 {
    padding: 0 20px;
  }

  .banner8-card {
    margin: auto;
  }
  .banner-8 {
    margin-top: 20px;
  }

  .col-4 {
    width: 100%;
  }
  .banner8-image {
    min-height: 170px;
  }
  .banner8-card > p {
    margin-top: 15px;
  }

  .banner8-card {
    min-height: 385px;
  }

  .banner8-text > h2 {
    font-size: 35px;
  }

  .banner8-text > p {
    font-size: 15px;
  }

  /* 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;
  }

       .commom-section-2{
        /* flex-wrap: wrap; */
      } 
      /* .righ{
        width: 50%;
      } */
}

@media screen and (max-width: 992px) {
  /* section5 */
  .banner5-image {
    min-height: 275px;
  }
  .banner5-card {
    min-height: 360px;
  }
  .banner1-card-img {
    min-height: 130px;
  }
  .location1 > p {
    font-size: 9px;
  }
  /* .location1 {
    margin-top: 6px;
  } */
  .rate {
    font-size: 15px;
    margin-top: 6px;
  }
  .banner1-card {
    min-height: 380px;
  }

  .banner-1{
    flex-wrap: wrap;
    justify-content: center;
    /* gap: 20px; */
    /* margin-top: 10px; */
  }
  .banner1-card{
    margin-bottom: 15px;
  }

  .col-60{
    width: 50%;

  }
  /* section8 */

  .banner8-image {
    min-height: 138px;
  }

  .banner8-card {
    min-height: 360px;
  }

  .read {
    margin-top: 10px;
  }
  .banner8-card > p {
    margin-top: 10px;
  }

  .hamburger span {
    display: block;
  }
  /* .hamburger {
    display: flex;
    flex-direction: column;
    /* display: block; */

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

  div::{ch

  /* .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) {
  /* nav and banner */
  /* .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  } */

      
  .mobile-nav {
    display: flex;
  }
  .hero-text > h1 {
    font-size: 2.5rem;
  }

  .hero-text > p {
    font-size: 16px;
  }
  /* section1 */

  .view-btn1 {
    width: 100%;
    text-align: center;
    padding: 13px 20px;
  }
  .view-btn2 {
    width: 100%;
    text-align: center;
    padding: 13px 20px;
  }

  .section-1 {
    margin-top: 30px;
  }
  .banner1-card-img {
    min-height: 102px;
  }
  .banner1-card {
    min-height: 340px;
  }
.banner-1{
  display: flex;
  flex-wrap: wrap;
}
  .location1 {
    gap: 6px;
  }
  .banner1-text > h2 {
    font-size: 40px;
  }

  .banner1-text > p {
    font-size: 15px;
  }

  /* section2 */
  .section-2 {
    margin-top: 30px;
  }
  .right {
    max-width: 600px;
    height: 400px;
    margin: auto;
  }

  .right > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .text-section2 > p {
    margin-top: 10px;
    font-size: 11px;
  }
  .text-section2 > h2 {
    font-size: 22px;
  }
  .text-section2 {
    margin-top: 65px;
  }

  /* section3 */
  .section-3 {
    margin-top: 30px;
  }
  .banner-3 {
    padding: 0 15px;
  }

  .col-10 > p {
    margin-top: 10px;
    font-size: 15px;
  }

  .banner3-image {
    margin-top: 5px;
  }
  .col-10 > h4 {
    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;
  }

  /* section8 */
  .section-8 {
    margin-top: 30px;
  }

  .banner8-image {
    min-height: 114px;
  }

  /* 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;
  }

  .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;
  }
  /* .hamburger {
    display: flex;
    flex-direction: column;
  } */

  .btn1 {
    display: none;
  }
  footer {
    margin-top: 20px;
  }
}

/* .hamburger span{
    display: block;
  }

} */

/* @media screen and ( max-width:700px ){

.banner-1{
    display: flex;
    flex-wrap: wrap;
    margin-top: 2px;
    padding: 20px 20px;
    gap: 10px;
}
 .banner-7 {
    display: flex;
    margin-top: 0px;
    padding: 15px 15px;
    gap: 10px;
  }
} */

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

  
  /* nav and banner */
  .nav-menu {
    display: none;
  }
  .cta-btn {
    padding: 13px 18px;
    font-weight: 500;
    font-size: 12px;
  }

  .mobile-nav ul {
    margin-bottom: 10px;
  }

  .btn1 {
    display: none;
  }

  .mobile-nav .contact-btn {
    font-size: 12px;
    padding: 13px 18px;
    /* border: 2px solid black; */
  }
  /* .hamburger {
    display: flex;
    flex-direction: column;
  } */

  .hamburger span {
    display: block;
  }

  .hero-text > h1 {
    font-size: 20px;
    line-height: 25px;
  }

  .hero-text > p {
    font-size: 12px;
    line-height: 20px;
    /* line-height: 15px; */
  }
  /* .container {
    padding: 0 15px;
  }  */

  .hero-content {
    padding-top: 80px;
  }

  .banner-1 {
    display: flex;
    flex-wrap: wrap;
    margin-top: 2px;
    padding: 20px 20px;
    gap: 10px;
  }

  .banner1-card {
    min-height: 332px;
  }

  .col-60{
    width: 100%;
  }

  .banner1-text > h2 {
    font-size: 30px;
  }
  .location1 {
    justify-content: space-between;
  }

  .location1 > p {
    font-size: 10px;
  }

  .section-1 {
    margin-top: 20px;
  }
  .view-btn1 {
    padding: 6px 18px;
    font-size: 10px;
  }
  .view-btn2 {
    padding: 6px 18px;
    font-size: 10px;
  }

  .villa {
    margin-top: 10px;
  }

  .shower {
    max-width: 56px;
    min-height: 14px;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* section2 */

  .commom-section-2 {
    flex-wrap: wrap;
  }
  .right {
    /* max-width: 600px; */
    height: 185px !important;
    /* margin: auto; */
  }

  .commom-section-2 {
    gap: 0px;
  }

  .text-section2 {
    margin-top: 10px;
  }

  .text-section2 > h2 {
    font-size: 25px;
  }
  .text-section2 > p {
    font-size: 15px;
    margin-top: 10px;
  }
  .btn {
    margin-top: 15px;
  }
  .section-2 {
    margin-top: 10px;
    /* padding: 20px 20px; */
  }
  .left {
    margin: 15px;
  }

  /* section3 */
  .section-3 {
    margin-top: 20px;
  }
  .banner-3 {
    margin-top: 10px;
    padding: 20px 20px;
  }
  .banner3-text > h2 {
    font-size: 30px;
  }

  .banner3-text > p {
    font-size: 15px;
  }
  .banner-3 {
    flex-wrap: wrap;
    justify-content: center;
  }
  .banner3-image {
    margin-top: 0px;
  }
  .col-10 > p {
    margin-top: 10px;
  }
  .col-10 > h4 {
    margin-top: 10px;
  }

  .col-10 {
    min-height: 210px;
  }

  /* 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;
  }
  /* section8 */

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

  .banner-8 {
    flex-wrap: wrap;
    gap: 10px;
    padding: 0px 0px;
  }
  .banner8-text > h2 {
    font-size: 20px;
  }
  .banner8-text > p {
    font-size: 15px;
  }

  .banner8-image {
    min-height: 130px;
  }
  .banner8-card {
    min-height: 145px;
    /* padding: 20px 20px; */
  }
  .banner8-card > p {
    margin-top: 5px;
    font-size: 10px;
  }
  .banner8-card > h4 {
    margin-top: 0px;
    font-size: 12px;
  }
  .read {
    margin-top: 5px;
    font-size: 14px;
  }
  .read > img {
    max-width: 15px;
    min-height: 15px;
  }
  .section-8 {
    padding: 20px 20px;
  }
  .banner8-text > p {
    margin-top: 10px;
    font-size: 12px;
  }

  /* 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;
  }
}

/* Ken Burns Effect for Background Images */
/* @keyframes kenBurns1 {
  0% {
    transform: scale(1) translateX(0);
  }
  100% {
    transform: scale(1.1) translateX(-2%);
  }
}

@keyframes kenBurns2 {
  0% {
    transform: scale(1.1) translateY(-2%);
  }
  100% {
    transform: scale(1) translateY(2%);
  }
}*/

@keyframes kenBurns3 {
  0% {
    transform: scale(1) translateX(2%);
  }
  100% {
    transform: scale(1.1) translateX(-1%);
  }
}

.carousel-slide.active.slide-1 {
  animation: kenBurns1 5s ease-out forwards;
}

.carousel-slide.active.slide-2 {
  animation: kenBurns2 5s ease-out forwards;
} 
/* .carousel-slide.active.slide-3 {
  animation: kenBurns3 0s ease-out forwards;
}  */

.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 */
}
