.swiper-button-next,
.swiper-button-prev {
  display: none !important;
}


/* background scrolling */

/* .navbar.scrolled {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.navbar.scrolled a {
    color: black;
} */



html, body {
    overflow-x: hidden;
    width: 100%;
max-width: 100%;

}

img, video {
    max-width: 100%;
    height: auto;
}


/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    
    color: #333;
    line-height: 1.6;
}

/* Promo Banner */
/* .promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #c1a564;
    color: white;
    padding: 12px 50px 12px 20px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
} */

.promo-banner {
  background: #c1a564; /* Golden shade */
  color: white;
  text-align: center;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 600;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}


.promo-banner p {
    margin-right: 20px;
}

.promo-banner span {
    font-weight: 400;
}

.close-banner {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0 10px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
    padding: 15px 50px;
    z-index: 1000;

        
    /* Background blur effect */
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    
    /* Border bottom */
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);

    /* 3D Shadow Effect */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, box-shadow 0.3s ease;

}

/* Hamburger Lines */
.scrolled .navbar .menu-icon span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #000; /* Default White */
  transition: background-color 0.3s ease;
} 



.scrolled .navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}



.navbar.scrolled {
    background: #c1a564; /* White background on scroll */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Smooth shadow */
    padding: 10px 50px; /* Reduce padding on scroll */
}

.navbar a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.navbar.scrolled a {
    color: #000; /* Dark text on white background */
}

.navbar.scrolled .cta-nav{
  border: 2px solid black;
  color: black;
}

.cta-nav:hover{
  background-color: white;
}
.logo {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    transition: color 0.3s ease;
}

.navbar.scrolled .logo {
    color: white /* Golden */
}

/* .navbar {
   
} */


.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.nav-links {
    
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: black;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-nav {
    border: 2px solid white;
    padding: 8px 20px;
    border-radius: 20px;
}

.menu-icon {
    display: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero h1 span {
    display: block;
    margin-left: 20px;
}

.cta-button {
    background-color: #c1a564;
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 30px;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #a88c4f;
    transform: translateY(-3px);
}

/* Badge */
.badge {
    position: absolute;
    bottom: 50px;
    left: 50px;
    background-color: white;
    color: #333;
    padding: 20px 25px;
    text-align: center;
    border-radius: 5px;
}

.badge-number {
    font-size: 36px;
    font-weight: 700;
    color: #c1a564;
    margin-bottom: 5px;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 3px 0;
}




/* Video Section Styles */
/* .video-section {
    padding: 80px 20px;
    background-color: #fff;
    text-align: center;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.section-header .subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.video-container {
    max-width: 1000px;
    margin: 0 auto 40px;
    position: relative;
}
*/
/* .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
} 

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-brand {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0,0,0,0.7);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

.deal-button {
    background-color: #c1a564;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 40px;
}

.deal-button:hover {
    background-color: #a88c4f;
    transform: translateY(-3px);
}

.promo-footer {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.promo-footer a {
    color: #c1a564;
    text-decoration: none;
    font-weight: 600;
}

.promo-footer a:hover {
    text-decoration: underline;
} */
.video-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #fff;
}

.video-heading h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.video-heading p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 40px;
    font-style: italic;
}



.video-card:hover {
    transform: translateY(-5px);
}
.video-grid {
    display: flex;
    gap: 15px;
    overflow-x: auto; /* Enable horizontal swipe */
    overflow-y: hidden; /* Hide vertical overflow */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; /* Smooth for iOS */
    padding-bottom: 10px;
    scrollbar-width: none; /* Hide scrollbar in Firefox */
}

.video-grid::-webkit-scrollbar {
    display: none; /* Hide scrollbar in Chrome/Safari */
}

.video-card {
    flex: 0 0 calc(33.333% - 10px); /* Default: 3 videos visible */
    scroll-snap-align: center;
    box-sizing: border-box;
}

.video-card video {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

/* ✅ Tablet: 2 videos */
@media (max-width: 992px) {
    .video-card {
        flex: 0 0 calc(50% - 10px);
    }
}

/* ✅ Mobile: 1 video */
@media (max-width: 576px) {
    .video-card {
        flex: 0 0 100%;
    }
}



/* Designers Section Styles */
.designers-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.designers-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.designers-section .section-header .subtitle {
    font-family: 'Pacifico', cursive;
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: brightness(0) saturate(100%) invert(71%) sepia(15%) saturate(1222%) hue-rotate(6deg) brightness(91%) contrast(85%);
}

.feature-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}


/* Before/After Section */
/* .before-after-modern {
  padding: 60px 20px;
  background: #fff;
}

.ba-modern-content {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
    flex-direction: column;
}

.ba-modern-image {
  flex: 1;
  position: relative;
}

.ba-modern-image .tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.ba-modern-image .tab {
  background: none;
  border: none;
  font-weight: 600;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  position: relative;
}

.ba-modern-image .tab.active {
  color: #000;
}

.ba-modern-image .tab.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #d4af37;
}

.tab-content {
  position: relative;
}

.tab-pane {
  display: none;
  width: 100%;
  border-radius: 12px;
}

.tab-pane.active {
  display: block;
}

.ba-modern-details {
  flex: 1;
}

.ba-modern-details .title {
  font-size: 22px;
  margin-bottom: 20px;
}

.ba-modern-details h4 {
  font-size: 16px;
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 600;
}

.ba-modern-details blockquote {
  font-style: italic;
  color: #555;
  margin: 10px 0;
}

.client {
  font-weight: bold;
  margin: 8px 0;
}

.rating {
  font-size: 20px;
  color: #d4af37;
  margin-bottom: 15px;
}

.details-btn {
  display: inline-block;
  padding: 10px 20px;
  background: none;
  color: #000;
  font-weight: bold;
  border-bottom: 2px solid #000;
  text-transform: uppercase;
  font-size: 14px;
}

.swiper-button-prev, .swiper-button-next {
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  color: #000;
}

.swiper-pagination {
  margin-top: 20px;
} */

.before-after-section {
    padding: 50px 5%;
    overflow: hidden;
}

.before-after-slider {
    width: 100%;
}

.before-after-slider .swiper-wrapper {
    overflow: visible;
}

.before-after-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: nowrap;
    width: 100%;
    min-width: 0; /* Prevent flexbox overflow issues */
}

.image-side {
    flex: 1 1 50%;
    min-width: 0; /* Prevent flexbox overflow */
}

.image-side img {
    width: 90%;
    height: 50%;
    border-radius: 12px;
    object-fit: cover;
}

.text-side {
    flex: 1 1 45%;
    min-width: 0; /* Prevent flexbox overflow */
    padding: 0 20px;
    box-sizing: border-box;
}

.tab-header {
    display: flex;
    gap: 15px;
    font-weight: bold;
    margin-bottom: 10px;
}

.tab {
    color: #999;
    cursor: pointer;
}

.tab.active {
    color: #333;
    border-bottom: 2px solid #a68b5b; /* accent color */
}

.text-side h3 {
    margin: 10px 0 5px;
    font-size: 18px;
    color: #333;
}

.text-side p {
    color: #555;
    margin-bottom: 10px;
    line-height: 1.5;
}

.rating {
    color: #a68b5b;
    font-size: 20px;
    margin: 10px 0;
}

.details-link {
    text-transform: uppercase;
    color: #a68b5b;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 1px solid #a68b5b;
    display: inline-block;
    margin-top: 10px;
}

/* Ensure swiper slides have proper width */
.before-after-slider .swiper-slide {
    width: 95% !important;
    box-sizing: border-box;
}

/* Responsive adjustments for before-after section */
@media (max-width: 768px) {
    .before-after-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .image-side,
    .text-side {
        flex: 1 1 100%;
        width: 100%;
    }
    
    .text-side {
        padding: 0 10px;
    }

    .before-after-slider .swiper-slide {
    width: 105% !important;
    box-sizing: border-box;
  }
}


/* blog section  */

.category-slider-section {
    padding: 40px 0;
    text-align: center;
    background: #fff;
}

.category-slider-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.category-tabs .tab {
    background: none;
    border: none;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    position: relative;
    padding-bottom: 8px;
}

.category-tabs .tab.active {
    font-weight: bold;
    color: #a68b5b;
}

.category-tabs .tab.active::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: #a68b5b;
    left: 0;
    bottom: 0;
}

/* Slider Full Width */
.swiper-slide {
    display: flex;
    justify-content: center;
}

.swiper-slide img {
    width: 95%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

/* Pagination Dots */
.swiper-pagination {
    margin-top: 15px;
}

/* owner section */

.owner-section {
  background-color: #f8f8f8;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
}

.owner-container {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 1000px;
  width: 100%;
}

.owner-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}

.owner-content {
  max-width: 700px;
}

.owner-text {
  font-size: 18px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 15px;
}

.owner-author {
  font-size: 22px;
  font-weight: 700;
  color: #222;
}

/* Responsive */
@media (max-width: 768px) {
  .owner-container {
    flex-direction: column;
    text-align: center;
  }
}




/* Testimonial Section */
/* Section Styling */
.testimonial-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fafafa, #f3f3f3);
  font-family: 'Playfair Display', serif;
  color: #333;
}

/* Container */
.container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Testimonial Block */
.testimonial-block {
  margin-bottom: 40px;
  padding: 30px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Testimonial Quote */
.testimonial-quote p {
  font-size: 20px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 18px;
  font-style: italic;
  position: relative;
  padding-left: 20px;
}

.testimonial-quote p::before {
  content: "“";
  font-size: 36px;
  color: #c1a564;
  position: absolute;
  left: 0;
  top: -10px;
}

/* Author Info */
.testimonial-author {
  font-size: 16px;
  color: #777;
}

.testimonial-author strong {
  font-weight: 700;
  color: #333;
}

/* Offer Banner */
.offer-banner {
  background: #c1a564;
  color: #fff;
  padding: 30px;
  text-align: center;
  margin: 50px auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.offer-banner h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.offer-banner p {
  font-size: 18px;
  margin-bottom: 0;
}

/* CTA Section */
.testimonial-cta {
  text-align: center;
  margin-top: 40px;
}

.deal-button {
  background: #c1a564;
  color: #fff;
  border: none;
  padding: 16px 45px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.deal-button:hover {
  background: #a88c4f;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .testimonial-quote p {
    font-size: 18px;
  }

  .offer-banner h3 {
    font-size: 22px;
  }

  .offer-banner p {
    font-size: 14px;
  }

  .deal-button {
    width: 100%;
    font-size: 16px;
    padding: 14px;
  }
}

@media (max-width: 480px) {
  .testimonial-section {
    padding: 50px 15px;
  }

  .testimonial-quote p {
    font-size: 16px;
  }
}


/* Responsive Styles */


/* Responsive Styles */



@media (max-width: 1024px) {

  .hero-content{
   margin-left: 7%;
  }
    .hero h1 {
        font-size: 60px;
        width: 300px;
        text-align: center;
        line-height:1.2em;
        color: white;
    }
    
    .navbar {
        padding: 0 30px;
        /* background-color: ; */
    }
    
    .nav-links {
        gap: 15px;
    }
    .hero-content{
      display: flex;
      justify-content: center;
      flex-direction: column;
    }
    .badge{
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 40px;
        display: inline-block;
        visibility: visible;
    }

    .ba-modern-details h4{
      display: none;
    }

    .ba-modern-details p{
      display: none;
    }  
    .ba-modern-details .blockqua{
      display: none;
    }
}

@media (max-width: 768px) {
  .menu-icon {
    display: block;
    font-size: 28px;
    cursor: pointer;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px; /* navbar ke niche */
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    box-shadow: 0px 5px 10px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    height: 100vh;
  }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .promo-banner {
      width: 100%;
      height: 8%;
      display: flex;
      justify-content: space-between;
      flex-direction: column;
      align-items: center;
      flex-wrap: wrap;

    }

    .promo-banner p{
      width: 50%;
      /* margin-top: 3px; */
      font-size:12px;
      
    }
    
    .promo-banner button{
      margin-right: 20px;
    }
  
    
    .badge {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 40px;
        display: inline-block;
    }
    
    .navbar {
      /* position: fixed; */
        top: 0;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-header .subtitle {
        font-size: 16px;
    }
    
    .deal-button {
        padding: 12px 30px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .video-section {
        padding: 60px 15px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .video-brand {
        font-size: 16px;
        padding: 6px 15px;
    }
    
    .promo-footer {
        font-size: 13px;
    }
}


@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 20px;
    }
}
.layout-section {
    padding: 80px 20px;
    background-color: #fff;
    text-align: center;
}

.layout-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.layout-section .section-header .subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: brightness(0) saturate(100%) invert(71%) sepia(15%) saturate(1222%) hue-rotate(6deg) brightness(91%) contrast(85%);
}

.feature-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .layout-section .section-header h2 {
        font-size: 28px;
    }
    
    .layout-section .section-header .subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .designers-section {
        padding: 60px 15px;
    }
    
    .designers-section .section-header h2 {
        font-size: 24px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-item h3 {
        font-size: 15px;
    }
}
@media (max-width: 1024px) {
    .ba-content {
        flex-direction: column;
    }
    
    .ba-images {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .swiper-nav {
        align-self: flex-end;
    }
    
    .before-image img,
    .after-image img {
        height: 400px;
    }
}

/* Background Image Section */
.testimonial-section {
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') no-repeat center center/cover;
  padding: 60px 20px;
  position: relative;
  font-family: 'Helvetica', sans-serif;
}

/* Testimonial Container */
.testimonial-container {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(350px,1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Testimonial Cards */
.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  font-style: italic;
  transition: 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Author Section */
.author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.author h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #333;
}

.author span {
  font-size: 14px;
  color: #777;
}

/* Offer Banner */
.offer-banner {
  background: #c1a564;
  color: #fff;
  text-align: center;
  padding: 25px 20px;
  margin-top: 40px;
  border-radius: 10px;
}

.offer-banner p {
  margin: 8px 0;
  font-size: 16px;
}

.offer-banner a {
  color: #fff;
  text-decoration: underline;
  font-weight: bold;
}

/* CTA Button */
.deal-btn {
  background: #fff;
  color: #c1a564;
  border: none;
  padding: 12px 30px;
  font-size: 15px;
  font-weight: bold;
  border-radius: 30px;
  margin-top: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.deal-btn:hover {
  background: #f1f1f1;
}

/* Responsive */
@media (max-width:768px){
  .testimonial-container{
    grid-template-columns: 1fr;
  }
}


/* Feature Section */
.feature-section {
  padding: 80px 20px;
  background: #fff;
  font-family: 'Georgia', serif;
}

.feature-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: #fff;
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  flex: 1 1 300px;
  max-width: 350px;
}

.feature-icon {
  font-size: 40px;
  color: #c1a564;  /* Golden color */
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #333;
}

.feature-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* Responsive */
@media(max-width:600px){
  .feature-container {
    flex-direction: column;
    align-items: center;
  }
}
/* Base */
:root{
  --gold:#c1a564;         /* warm gold like screenshot */
  --bg:#f4f3ef;           /* light warm grey right side */
  --text:#2b2b2b;
}
*{box-sizing:border-box}
body{margin:0}

/* Wrapper */
.split-cta{
  display:grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;                 /* close to screenshot height */
  width:100%;
  background: var(--bg);
  font-family: 'Inter', system-ui, Arial, sans-serif;
}

/* Left image — full bleed */
.split-cta__image{
  position:relative;
  overflow:hidden;
}
.split-cta__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* Right side */
.split-cta__content{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:64px 24px;
}

/* Headline — elegant serif like screenshot */
.split-cta h2{
  font-family:'Playfair Display', serif;
  font-weight:400;
  font-size: clamp(26px, 2.4vw + 8px, 40px); /* scales nicely */
  line-height:1.45;
  color: var(--text);
  letter-spacing:.2px;
  margin:0 0 28px;
}

/* Button — pill gold */
.split-cta__btn{
  display:inline-block;
  background: var(--gold);
  color:#fff;
  text-decoration:none;
  font-weight:700;
  letter-spacing:.8px;
  padding:16px 28px;
  border-radius:999px;
  box-shadow: 0 1px 0 rgba(0,0,0,.15);
  transition: transform .15s ease, background .2s ease;
}
.split-cta__btn:hover{
  background:#c1a564;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 600px){
  .split-cta{
    grid-template-columns:1fr;
  }
  .split-cta__image{
    height: 46vh;                 /* nice top image height on mobile */
    min-height: 260px;
  }
  .split-cta__image img{ height:100% }
  .split-cta__content{ padding:44px 18px }
}

.trusted{
  text-align:center;
  padding:60px 20px;
  background:#fff;
}

.trusted h2{
  font-family:'Playfair Display', serif;
  font-weight:400;
  font-size:28px;
  margin-bottom:40px;
  color:#222;
}

.trusted__logos{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:50px;
}

.trusted__logos img{
  max-height:50px;       /* logo height similar to screenshot */
  object-fit:contain;
  filter:grayscale(100%);  /* logos black/grey look */
  opacity:.9;
  transition:opacity .3s ease;
}

.trusted__logos img:hover{
  opacity:1;
  filter:none;
}

.footer {
  background: #111;
  color: #fff;
  padding: 60px 80px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color .3s ease;
}

.footer-col ul li a:hover {
  color: #fff;
}

.newsletter input {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #555;
  background: transparent;
  color: #fff;
  margin-bottom: 25px;
  outline: none;
}

.newsletter input::placeholder {
  color: #aaa;
}

.social-icons a {
  display: inline-block;
  margin-right: 15px;
  font-size: 18px;
  color: #ccc;
  transition: color .3s ease;
}

.social-icons a:hover {
  color: #fff;
}

/* Message Bar */
.message-bar {
  background: #c1a564; 
  color: #222;
  padding: 15px 30px;
  position: relative;
  font-family: Arial, sans-serif;
  font-size: 15px;
}

.message-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.message-content a {
  color: #000;
  font-weight: bold;
  text-decoration: underline;
}

.close-btn {
  background: transparent;
  border: none;
  font-size: 20px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  margin-left: 20px;
  transition: transform 0.2s;
}

.close-btn:hover {
  transform: scale(1.2);
}

/* Responsive */
@media(max-width: 600){
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

}

@media(max-width: 600px){
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .message-content {
    flex-direction: column;
    gap: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
    flex-wrap: wrap;
  }
  .message-content span{
    width: 70%;
    font-size: 12px;
  }
}



/* Shared Section Styling */
.services-section {
  background-color: #ffffff; /* White background */
  padding-top: 0;
  margin: 0;
}

.services-section h1 {
  font-size: 2.5em;
  font-weight: bold;
  color: #c1a564; /* Golden tone */
  text-shadow: 1px 1px 2px #ffffff;
  text-align: center;
  margin-top: 0;
  padding: 30px 20px 10px;
}

/* GRID STYLING */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  max-width: 1400px;
  padding: 20px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e6e6e6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-card img {
  width: 100%;
  height: auto;
  display: block;
}

.service-description {
  background-color: #ffffff; /* White background for text area */
  color: #333; /* Neutral text */
  padding: 25px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-grow: 1;
  border-top: 3px solid #c1a564; /* Golden accent divider */
}

.service-description h3 {
  font-size: 1.5em;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: #c1a564; /* Golden title */
}

.service-description p {
  font-size: 1em;
  line-height: 1.7;
  flex-grow: 1;
  color: #444; /* Softer text color */
}


.trusted {
  background: linear-gradient(180deg, #ffffff, #f9f9f9);
  text-align: center;
  padding: 70px 20px;
}

.trusted h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.trusted h2::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background: #c1a564;
  margin: 12px auto 0;
  border-radius: 2px;
}

.trusted__brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.trusted__brands span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: #444;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 50px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.trusted__brands span:hover {
  color: #c1a564;
  border-color: #c1a564;
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px; /* space between image and text */
  font-size: 24px;
  font-weight: bold;
}

.logo img {
  width: 80px;  /* adjust size */
  height: auto;
}
