 body {
    font-family: 'Manrope', sans-serif;
    overflow-x: hidden;
  }

  /* Top Bar Styling */
  .top-bar {
    background-color: #d1b166;
    color: white;
    font-size: 14px;
    padding: 8px 0;
    transition: all 0.3s ease;
  }

  .top-bar a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }

  .top-bar a:hover {
    opacity: 0.8;
  }

  /* Main Header Styling */
  .main-header {
    background-color: white;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }

  .nav-link {
    color: #222 !important;
    font-weight: 600;
    padding: 8px 16px !important;
    transition: all 0.3s ease;
    position: relative;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #d1b166;
    transition: width 0.3s ease;
  }

  .nav-link:hover::after {
    width: 70%;
  }

  .btn-warning {
    background: #d1b166;
    border-color: #d1b166;
    padding: 10px 25px;
    transition: all 0.3s ease;
  }

  .btn-warning:hover {
    background: #c19f55;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(209,177,102,0.2);
  }

  /* Highlight Box Styling */
  .highlight-box {
    background-color: #f8f8f8;
    font-size: 14px;
    padding: 25px 0;
  }

  .highlight-box i {
    color: #d1b166;
    font-size: 18px;
    transition: transform 0.3s ease;
  }

  .highlight-box div:hover i {
    transform: scale(1.2);
  }

  /* Hero Section Styling */
  .hero-section {
    position: relative;
    background: url('/assets/20651.png?a') center center/cover no-repeat;
    color: white;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .hero-overlay {
    background: linear-gradient(45deg, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .hero-content {
    position: relative;
    z-index: 1;
    padding: 40px 0;
  }

  .hero-btn {
    background-color: #d1b166;
    color: white;
    font-weight: 600;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(209,177,102,0.3);
  }

  .banner-product-card {
    background-color: white;
    color: #222;
    border-left: 4px solid #d1b166;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
  }

  .banner-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  }

  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .navbar-collapse {
      background: white;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      margin-top: 10px;
    }

    .nav-link {
      padding: 12px !important;
    }

    .banner-product-card {
      margin-top: 30px;
    }
  }

  @media (max-width: 768px) {
    .top-bar {
      font-size: 12px;
      text-align: center;
    }

    .top-bar .container > div {
      width: 100%;
      margin: 5px 0;
    }

    .display-4 {
      font-size: 3rem;
    }

    .highlight-box .container > div {
      width: 50%;
      margin: 10px 0;
    }

    .hero-content {
      text-align: center;
    }

    .banner-product-card {
      max-width: 100%;
      margin: 30px auto;
    }
  }

  @media (max-width: 576px) {
    .highlight-box .container > div {
      width: 100%;
      margin: 8px 0;
    }
    
    .highlight-box {
      display:none;
    }
    .getqbtn {
      display:none!important;
    }
  }
  
    .category-section{
        padding-top:8%;
        padding-bottom:8%;
    }
    
      .dot {
  height: 10px;
  width: 10px;
  margin: 0 4px;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.about-section {
  background-color: #fff;
  padding: 80px 0;
  overflow: hidden;
}

/* Left Image Block */
.about-section .position-relative {
  position: relative;
  padding: 20px;
}

.about-section .position-relative::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 80%;
  background-color: #fefaf0;
  z-index: -1;
  border-radius: 20px;
}

.about-section .img-fluid {
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.about-section .img-fluid:hover {
  transform: translateY(-10px);
}

/* Center Content */
.about-section .fw-medium {
  color: #d1b166;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.about-section h2 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #333;
}

.about-section .text-muted {
  font-size: 16px;
  line-height: 1.6;
  color: #666 !important;
  margin-bottom: 25px;
}

.about-section .btn-warning {
  background-color: #d1b166;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.about-section .btn-warning:hover {
  background-color: #c19f55;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(209,177,102,0.3);
}

/* Right Timeline Cards */
.about-section .bg-light {
  background-color: #fefaf0 !important;
  border-radius: 15px;
  transition: all 0.3s ease;
  border-left: 4px solid #d1b166;
}

.about-section .bg-light:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.about-section h6 {
  color: #333;
  margin-bottom: 10px;
  font-size: 18px;
}

.about-section .small {
  font-size: 14px;
  line-height: 1.6;
}

.about-section .color-primary {
  color: #d1b166;
  font-size: 14px;
  transition: color 0.3s ease;
}

.about-section .color-primary:hover {
  color: #c19f55;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .about-section {
    padding: 60px 0;
  }

  .about-section h2 {
    font-size: 30px;
  }

  .about-section .col-lg-4:not(:last-child) {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 40px 0;
    text-align: center;
  }

  .about-section .position-relative::before {
    width: 100%;
  }

  .about-section .btn-warning {
    width: 100%;
    max-width: 300px;
  }

  .about-section .bg-light {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    max-width: 400px;
  }
}

@media (max-width: 576px) {
  .about-section h2 {
    font-size: 26px;
  }

  .about-section .py-5 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
}

 .trending-section {
  padding: 60px 0;
  background-color: #fefaf0;
  font-family: 'Poppins', sans-serif;
}

.trending-section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}

.product-tabs {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.product-tabs span {
  cursor: pointer;
  color: #333;
  font-weight: 500;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}

.product-tabs .active {
  color: #d1b166;
  border-color: #d1b166;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 0 20px;
  margin-bottom:30px;
}

.product-card {
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.banner-product-card {
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.product-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}
.banner-product-card img {
  max-width: 80%;
  height: auto;
  margin-bottom: 15px;
}
.product-card h4 {
  font-size: 16px;
  color: #333;
  margin-bottom: 8px;
}

.price {
  font-size: 14px;
  color: #d1b166;
}

.price .original {
  color: #999;
  text-decoration: line-through;
  margin-left: 6px;
  font-weight: 400;
}

.offers-section {
  padding: 80px 0;
  background-color: #fff;
  overflow: hidden;
}

.offers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  padding: 20px;
}

.offer-card {
  display: flex;
  width: 100%;
  max-width: 580px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.offer-image {
  width: 45%;
  position: relative;
  overflow: hidden;
}

.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.offer-card:hover .offer-image img {
  transform: scale(1.1);
}

.offer-info {
  padding: 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.offer-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 15px;
}

.offer-info h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #fff;
  line-height: 1.3;
}

.offer-info p {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 25px;
  line-height: 1.6;
}

.offer-btn {
  padding: 12px 25px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.offer-btn.gold {
  background-color: #d1b166;
  color: #fff;
}

.offer-btn.dark {
  background-color: #2e3b50;
  color: #fff;
}

.offer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.offer-card.dark {
  background: linear-gradient(135deg, #2e3b50, #1a2436);
}

.offer-card.gold {
  background: linear-gradient(135deg, #d1b166, #b89344);
}

@media screen and (max-width: 991px) {
  .offer-card {
    max-width: 500px;
  }
  
  .offer-info {
    padding: 30px;
  }
  
  .offer-info h3 {
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  .offers-section {
    padding: 60px 0;
  }

  .offers-grid {
    gap: 30px;
  }

  .offer-card {
    flex-direction: column;
  }

  .offer-image {
    width: 100%;
    height: 250px;
  }

  .offer-info {
    text-align: center;
  }

  .offer-btn {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .offer-image {
    height: 200px;
  }

  .offer-info {
    padding: 25px;
  }

  .offer-info h3 {
    font-size: 22px;
  }
}

.featured-collections {
  background-color: #fcfaf5;
}

.collections-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.collection-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-5px);
}

.collection-image {
  position: relative;
  overflow: hidden;
}

.collection-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.collection-card:hover .collection-image img {
  transform: scale(1.1);
}

.collection-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(209, 177, 102, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.collection-card:hover .collection-overlay {
  opacity: 1;
}

.collection-overlay .btn {
  padding: 10px 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.collection-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
}

.collection-info h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

.collection-info p {
  font-size: 14px;
  margin: 0;
  opacity: 0.8;
}

@media (max-width: 991px) {
  .collections-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .collection-card.large {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .collections-grid {
    grid-template-columns: 1fr;
  }
  
  .collection-card.large {
    grid-column: span 1;
  }
  
  .collection-image img {
    height: 300px;
  }
}

.blog-section {
  background-color: #fff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.blog-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-date {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #d1b166;
  color: #fff;
  padding: 10px;
  text-align: center;
  border-radius: 8px;
  min-width: 60px;
}

.blog-date .day {
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.blog-date .month {
  display: block;
  font-size: 12px;
  margin-top: 2px;
}

.blog-content {
  padding: 25px;
}

.blog-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: #666;
  margin-bottom: 15px;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-meta i {
  color: #d1b166;
}

.blog-content h3 {
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1.4;
  font-weight: 600;
}

.blog-content p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more {
  color: #d1b166;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.3s ease;
}

.read-more:hover {
  gap: 10px;
  color: #333;
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }
  
  .blog-image {
    height: 180px;
  }
}

.faq-section {
  background-color: #fefaf0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #d1b166;
}

.faq-question i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.faq-question.active {
  color: #d1b166;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 20px 20px;
  margin: 0;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .faq-container {
    padding: 0 15px;
  }
  
  .faq-question {
    font-size: 15px;
    padding: 15px;
  }
}

.testimonial-section {
  padding: 100px 20px;
  text-align: center;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 36px;
  color: #333;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #d1b166;
}

.testimonial-rating {
  margin: 30px 0;
}

.stars-container {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background-color: #fefaf0;
  border-radius: 30px;
}

.stars {
  color: #d1b166;
  font-size: 20px;
  letter-spacing: 2px;
}

.comments {
  color: #666;
  font-size: 14px;
  font-weight: 500;
}

.testimonial-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.quote-icon {
  font-size: 60px;
  color: #d1b166;
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
}

.quote-icon.closing {
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
  transform: translateY(50%);
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.testimonial-avatars {
  margin: 40px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.testimonial-avatars img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  opacity: 0.6;
  transition: all 0.4s ease;
  cursor: pointer;
  border: 3px solid transparent;
}

.testimonial-avatars img.active {
  border-color: #d1b166;
  opacity: 1;
  transform: scale(1.1);
}

.testimonial-avatars img:hover {
  opacity: 0.8;
  transform: translateY(-3px);
}

.client-info {
  text-align: center;
}

.client-info h4 {
  color: #d1b166;
  font-size: 24px;
  margin: 0;
  font-weight: 600;
}

.client-designation {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .testimonial-section {
    padding: 60px 15px;
  }

  .section-title {
    font-size: 28px;
  }

  .testimonial-text {
    font-size: 16px;
    padding: 0 15px;
  }

  .testimonial-avatars img {
    width: 70px;
    height: 70px;
  }

  .quote-icon {
    font-size: 40px;
  }

  .stars {
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  .section-title {
    font-size: 24px;
  }

  .testimonial-content {
    padding: 30px 10px;
  }

  .stars-container {
    padding: 6px 15px;
  }
}

.newsletter-section {
  padding: 80px 0;
  background: linear-gradient(45deg, rgba(209, 177, 102, 0.1), rgba(209, 177, 102, 0.05));
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(209,177,102,0.1)"/></svg>') repeat;
  opacity: 0.5;
}

.newsletter-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.newsletter-text h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 15px;
}

.newsletter-text p {
  color: #666;
  font-size: 16px;
  margin-bottom: 30px;
}

.newsletter-form .input-group {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #d1b166;
  box-shadow: 0 0 0 3px rgba(209, 177, 102, 0.1);
}

.subscribe-btn {
  background: #d1b166;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subscribe-btn:hover {
  background: #c4a459;
  transform: translateY(-2px);
}

.subscribe-btn i {
  font-size: 14px;
}

@media (max-width: 768px) {
  .newsletter-section {
    padding: 60px 20px;
  }

  .newsletter-text h2 {
    font-size: 28px;
  }

  .newsletter-form .input-group {
    flex-direction: column;
  }

  .subscribe-btn {
    width: 100%;
    justify-content: center;
  }
}

.cta-banner {
  background: linear-gradient(135deg, #d1b166, #b89344);
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
  opacity: 0.3;
}

.cta-container {
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  z-index: 1;
}

.cta-img {
  flex: 0 0 250px;
  position: relative;
}

.cta-img img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.cta-img img:hover {
  transform: translateY(-5px);
}

.cta-content {
  text-align: center;
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.offer-label {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 6px 15px;
  border-radius: 20px;
  color: #fff;
  font-size: 14px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-content h2 {
  font-size: 42px;
  color: #fff;
  margin: 0;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cta-content p {
  font-size: 22px;
  color: #fff;
  margin: 10px 0 25px;
  opacity: 0.9;
}

.cta-code-box {
  display: inline-flex;
  align-items: center;
  background: rgba(0,0,0,0.2);
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  gap: 15px;
  font-size: 16px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.1);
}

.cta-code-box strong {
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 4px 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
}

.copy-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  padding: 5px;
  transition: transform 0.2s ease;
}

.copy-btn:hover {
  transform: scale(1.1);
}

@media screen and (max-width: 991px) {
  .cta-img {
    flex: 0 0 200px;
  }
  
  .cta-content h2 {
    font-size: 36px;
  }
}

@media screen and (max-width: 768px) {
  .cta-banner {
    padding: 40px 15px;
  }

  .cta-container {
    justify-content: center;
  }

  .cta-img.right {
    display: none;
  }

  .cta-content {
    order: -1;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .cta-content p {
    font-size: 18px;
  }
}

@media screen and (max-width: 480px) {
  .cta-img {
    display: none;
  }

  .cta-content {
    padding: 10px;
  }

  .cta-code-box {
    padding: 10px 15px;
    font-size: 14px;
  }
}


.site-footer {
  background-color: #fff;
  padding: 80px 20px 30px;
  border-top: 1px solid #eee;
  font-family: 'Manrope', sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #333;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #d1b166;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col ul li a:hover {
  color: #d1b166;
  transform: translateX(5px);
}

.footer-col ul li a i {
  color: #d1b166;
  font-size: 14px;
}

.footer-col.center {
  text-align: center;
}

.footer-logo {
  height: 70px;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 14px;
  color: #777;
  margin-bottom: 25px;
  line-height: 1.6;
}

.newsletter-form {
  margin-top: 20px;
}

.newsletter-form h5 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #333;
}

.input-group {
  display: flex;
  gap: 10px;
}

.input-group input {
  padding: 10px 15px;
  border: 1px solid #eee;
  border-radius: 4px;
  flex: 1;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f5f5f5;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #d1b166;
  color: #fff;
  transform: translateY(-3px);
}

.payment-methods {
  margin-top: 30px;
}

.payment-methods h5 {
  font-size: 14px;
  margin-bottom: 10px;
  color: #333;
}

.payment-methods img {
  max-width: 200px;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  text-align: center;
  color: #666;
  font-size: 14px;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 60px 15px 20px;
  }

  .footer-col {
    text-align: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-col ul li a {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  .input-group {
    flex-direction: column;
  }
}