   /* Reset */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    html,body {
      font-family: 'Poppins', sans-serif;
      background: #fff;
      overflow-x: hidden;
    }

    /* Header */
    header {
      position: sticky;
      top: 0;
      background: white;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      padding: 15px;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    /* Logo and Store Name */
    .logo-container {
      display: flex;
      align-items: center;
      cursor: pointer;
      text-decoration: none;
      color: black;
    }
    .logo-container img {
      height: 100px;
      width: auto;
      margin-right: 10px;
      transition: transform 0.3s ease;
    }
    .logo-container:hover img {
      transform: scale(1.1);
    }
    .store-name {
      font-weight: 700;
      font-size: 1.5rem;
      user-select: none;
    }

    /* Navigation */
    nav {
      display: flex;
      gap: 24px;
      font-weight: 500;
    }
    nav a {
      text-decoration: none;
      color: black;
      font-size: 1rem;
      position: relative;
      transition: color 0.3s ease;
    }
    nav a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      background: #f5c518; /* Yellow underline */
      left: 0;
      bottom: -6px;
      transition: width 0.3s ease;
    }
    nav a:hover,
    nav a:focus {
      color: #f5c518;
    }
    nav a:hover::after,
    nav a:focus::after {
      width: 100%;
    }

    /* Right section */
    .header-right {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    /* Search */
    .search-box {
      position: relative;
    }
    .search-box input[type='search'] {
      padding: 6px 12px;
      border-radius: 20px;
      border: 1.5px solid #ccc;
      width: 180px;
      transition: transform 0.3s ease, border-color 0.3s ease;
      font-size: 0.9rem;
    }
    .search-box input[type='search']:focus {
      outline: none;
      border-color: #f5c518;
      transform: scale(1.1);
    }

    /* Call Now Button */
    .call-btn {
      background: #f5c518;
      border: none;
      padding: 8px 16px;
      border-radius: 30px;
      color: black;
      font-weight: 600;
      cursor: pointer;
      font-size: 1rem;
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: flex;
      align-items: center;
      gap: 6px;
      user-select: none;
      text-decoration: none;
    }
    .call-btn:hover,
    .call-btn:focus {
      background-color: #d4b80c;
      transform: scale(1.1);
      color: black;
    }

    /* Cart Icon */
    .cart-icon {
      position: relative;
      font-size: 1.5rem;
      color: black;
      cursor: pointer;
      transition: transform 0.3s ease;
    }
    .cart-icon:hover,
    .cart-icon:focus {
      transform: scale(1.1);
    }
    .cart-badge {
      position: absolute;
      top: -6px;
      right: -8px;
      background: red;
      color: white;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 2px 6px;
      border-radius: 12px;
      animation: pulse 2s infinite;
      user-select: none;
    }
    @keyframes pulse {
      0%, 100% {
        transform: scale(1);
        opacity: 1;
      }
      50% {
        transform: scale(1.2);
        opacity: 0.7;
      }
    }

    /* Hamburger Menu (Mobile) */
    .hamburger {
      display: none;
      font-size: 1.8rem;
      cursor: pointer;
      border: none;
      background: none;
      color: black;
      transition: transform 0.3s ease;
    }
    .hamburger:hover,
    .hamburger:focus {
      transform: scale(1.1);
    }

    /* Mobile menu (hidden by default) */
 .mobile-menu {
    display: none;
    position: absolute;
    top: 85px;
    text-align: center;
    left: 0;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 12px 20px;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    z-index: 9999;
}
    .mobile-menu a {
      color: black;
      font-weight: 600;
      font-size: 1.1rem;
      text-decoration: none;
      padding: 6px 0;
      border-bottom: 1px solid #eee;
      transition: color 0.3s ease;
    }
    .mobile-menu a:last-child {
      border-bottom: none;
    }
    .mobile-menu a:hover,
    .mobile-menu a:focus {
      color: #f5c518;
    }

    /* Responsive Styles */
    @media (max-width: 992px) {
      nav {
        display: none;
      }
      .search-box input[type='search'] {
        width: 120px;
      }
      .call-btn {
        display: none;
      }
      .hamburger {
        display: block;
      }
        .header{
        padding: 15px !important;
      }
    }

    @media (max-width: 576px) {
      .search-box {
        display: none;
      }
      .header{
        padding: 15px !important;
      }
    }





    /* ====== Footer Styles ====== */
    .footer-section {
      background-color: black;
      color:white;
      padding: 40px 20px 25px 20px;
      font-size: 0.9rem;
    }
    .footer-section h5 {
      font-weight: 700;
      color: var(--primary-yellow);
      margin-bottom: 15px;
      font-size: 1.2rem;
    }
    .footer-section p,
    .footer-section li,
    .footer-section a {
      color: var(--text-light);
    }
    .footer-section ul {
      padding-left: 0;
      list-style: none;
    }
    .footer-section ul li {
      margin-bottom: 8px;
    }
    /* Footer links zoom on hover */
    .footer-section ul li a {
      transition: color 0.3s ease, transform 0.3s ease;
      text-decoration: none;
      display: inline-block;
      padding: 4px 0;
    }
    .footer-section ul li a:hover {
      color: lightgoldenrodyellow !important;
      text-decoration: wavy !important;
      transform: scale(1.1);
      text-decoration: none;
    }
    .footer-section p i {
      color: var(--primary-yellow);
      margin-right: 6px;
    }
    .footer-section hr {
      border-color: rgba(255, 235, 59, 0.4);
      margin-top: 25px;
      margin-bottom: 20px;
    }

    /* Footer social icons moved below contact info */
    .footer-contact-social {
      margin-top: 10px;
    }
    .footer-contact-social a {
      background: transparent;
      padding: 0;
      margin-right: 15px;
      font-size: 1.6rem;
      color: var(--primary-yellow);
      transition: transform 0.3s ease, color 0.3s ease;
      box-shadow: none;
    }
    .footer-contact-social a:hover {
      color: var(--primary-green);
      transform: scale(1.3);
      text-decoration: none;
    }

    .footer-bottom {
      display: flex;
      justify-content: center; /* Center align copyright */
      align-items: center;
      font-weight: 500;
      font-size: 0.9rem;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 20px;
    }

    /* ====== Zoom hover class for general use ====== */
    .zoom-hover {
      transition: transform 0.3s ease;
      cursor: pointer;
      display: inline-block;
    }
    .zoom-hover:hover {
      transform: scale(1.1);
    }

    /* ====== Responsive ====== */
    @media (max-width: 991px) {
      .header-contact {
        display: none; /* Hide contact info on tablet and smaller */
      }
    }
    @media (max-width: 576px) {
      .navbar-nav {
        background: var(--header-bg);
        padding: 10px 20px;
        border-radius: 8px;
      }
      .navbar-nav .nav-link {
        padding: 10px 12px;
        font-size: 1.1rem;
      }
    }

    /* hero section */

  /* Hero Section Container */
  .hero-section-freshnest {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* margin-bottom: 10px; */
  }

  /* Banner container with zoom on hover */
  .hero-banner-freshnest {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 18px;
  }
  .zoom-hover-freshnest:hover .hero-image-freshnest {
    transform: scale(1.1);
  }

  /* Banner image with rounded corners */
  .hero-image-freshnest {
    width: 100%;
    height: 460px;
    object-fit: cover;
    transition: transform 0.7s ease;
    border-radius: 18px;
    display: block;
  }

  /* Gradient overlay for warmth & softness */
  .hero-overlay-freshnest {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 460px;
    background: linear-gradient(
      180deg,
      rgba(76, 175, 80, 0.65) 0%,
      rgba(255, 235, 59, 0.5) 100%
    );
    border-radius: 18px;
    pointer-events: none;
    z-index: 1;
  }

  /* Text container - centered and layered on top */
  .hero-content-freshnest {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    max-width: 90%;
    width: 620px;
    animation: fadeInUp-freshnest 1.3s ease forwards;
  }

  /* Logo styling */
  .hero-logo-freshnest {
    height: 90px;
    background: #f5f5f5;
    border-radius: 30px;
    margin-bottom: 20px;
    filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.45));
  }

  /* Main headline */
  .hero-title-freshnest {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: 1.3px;
    text-shadow: 0 0 12px rgba(0, 0, 0, 0.7);
  }
  /* Highlight brand name */
  .hero-title-freshnest span {
    color: #ffeb3b; /* Bright yellow */
    text-shadow: 0 0 15px #ffeb3baa;
  }

  /* Subheading */
  .hero-subtitle-freshnest {
    font-size: 1.5rem;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  }

  /* Fade-in animation */
  @keyframes fadeInUp-freshnest {
    0% {
      opacity: 0;
      transform: translate(-50%, -30%);
    }
    100% {
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .hero-image-freshnest,
    .hero-overlay-freshnest {
      height: 340px;
      border-radius: 14px;
    }
    .hero-content-freshnest {
      max-width: 95%;
      width: 90%;
    }
    .hero-title-freshnest {
      font-size: 2.3rem;
    }
    .hero-subtitle-freshnest {
      font-size: 1.2rem;
    }
    .hero-logo-freshnest {
      height: 55px;
      margin-bottom: 16px;
    }
  }

  @media (max-width: 480px) {
    .hero-image-freshnest,
    .hero-overlay-freshnest {
      height: 270px;
      border-radius: 12px;
    }
    .hero-title-freshnest {
      font-size: 1.9rem;
    }
    .hero-subtitle-freshnest {
      font-size: 1rem;
    }
    .hero-logo-freshnest {
      height: 45px;
      margin-bottom: 12px;
    }
  }

  /* intro-section */

    /* Container setup */
  .intro-section {
    padding: 40px 20px;
    background: #fff8dc; /* Light warm yellow */
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .intro-content {
    max-width: 900px;
    display: flex;
    align-items: center;
    gap: 25px;
    background: white;
    padding: 25px 35px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: default;
    animation: fadeInUp 1s ease forwards;
  }

  /* Zoom effect on hover */
  .intro-content:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  }

  /* Icon styling */
  .intro-icon {
    font-size: 64px;
    color: #f5c518; /* KiranaStore Yellow */
    flex-shrink: 0;
  }

  /* Text styling */
  .intro-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #222;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
  }

  .intro-text p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: 6px;
    font-family: 'Open Sans', sans-serif;
  }

  .intro-text strong {
    color: #f5c518;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .intro-content {
      flex-direction: column;
      text-align: center;
      padding: 30px 20px;
    }
    .intro-icon {
      font-size: 48px;
      margin-bottom: 20px;
    }
  }

  /* Fade-in animation */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* categories section */

   /* Section container */
  .categories-section {
    padding: 40px 20px;
    background: #fff;
  }

  .section-title {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #222;
  }

  /* Grid */
  .categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    perspective: 1200px; /* for 3D flip */
  }

  /* Card Container */
  .category-card {
    width: 100%;
    height: 280px;
    perspective: 1200px;
  }

  /* Inner container to hold front and back */
  .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    box-shadow: 0 8px 15px rgba(245, 197, 24, 0.2);
    border-radius: 15px;
    cursor: pointer;
  }
  .category-card:hover .card-inner {
    transform: rotateY(180deg);
    box-shadow: 0 12px 25px rgba(245, 197, 24, 0.6);
  }

  /* Front and back faces */
  .card-front,
  .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  /* Front */
  .card-front {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
  }
  .category-card:hover .card-front img {
    transform: scale(1.1);
  }

  /* Back */
  .card-back {
    background: #f5c518; /* KiranaStore Yellow */
    color: #222;
    transform: rotateY(180deg);
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  .card-back h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
  .card-back p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.4;
  }

  /* Responsive */
  @media (max-width: 992px) {
    .categories-grid {
      grid-template-columns: repeat(2, 1fr);
      max-width: 700px;
    }
  }
  @media (max-width: 576px) {
    .categories-grid {
      grid-template-columns: 1fr;
      max-width: 350px;
    }
    .category-card {
      height: 320px;
    }
  }

  /* featured products */

 .featured-products-section {
    padding: 40px 20px;
    background: #fff;
  }

  .section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 35px;
    color: #222;
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .product-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 20px;
    text-align: center;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }

  .product-card:hover {
    box-shadow: 0 12px 30px rgba(245, 197, 24, 0.5);
    background-color: #fff9e6;
  }

  .product-image {
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 15px;
  }

  .product-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .product-card:hover .product-image img {
    transform: scale(1.1);
  }

  .product-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #111;
    margin-bottom: 8px;
  }

  .product-price {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #f5c518;
    margin-bottom: 15px;
  }

  .shop-now-btn {
    background-color: #f5c518;
    border: none;
    padding: 12px 0;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    color: black;
    transition: background-color 0.3s ease, transform 0.3s ease;
    user-select: none;
  }

  .shop-now-btn:hover,
  .shop-now-btn:focus {
    background-color: #d4b80c;
    transform: scale(1.05);
    outline: none;
  }

  /* Responsive */

  @media (max-width: 1024px) {
    .products-grid {
      grid-template-columns: repeat(2, 1fr);
      max-width: 700px;
    }
  }

  @media (max-width: 600px) {
    .products-grid {
      grid-template-columns: 1fr;
      max-width: 320px;
    }
    .product-image img {
      height: 220px;
    }
  }

  /* cta section */

  .cta-section {
    background: linear-gradient(90deg, #fff9e6, #fff);
    padding: 50px 20px;
    text-align: center;
    animation: fadeInUp 1s ease forwards;
  }

  .cta-container {
    max-width: 700px;
    margin: 0 auto;
  }

  .cta-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: #222;
    margin-bottom: 12px;
  }

  .cta-subtext {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
  }

  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    user-select: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  }

  .btn-primary {
    background-color: #f5c518;
    color: black;
    border: none;
  }

  .btn-primary:hover,
  .btn-primary:focus {
    background-color: #d4b80c;
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(212, 184, 12, 0.6);
    outline: none;
  }

  .btn-secondary {
    background-color: #222;
    color: white;
    border: none;
  }

  .btn-secondary:hover,
  .btn-secondary:focus {
    background-color: #444;
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(68, 68, 68, 0.6);
    outline: none;
  }

  .btn i {
    font-size: 1.2rem;
  }

  /* Responsive */
  @media (max-width: 480px) {
    .cta-buttons {
      flex-direction: column;
      gap: 15px;
    }
  }

  /* Fade-in Animation */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* whychooseus section */

 .whychoose-section {
    padding: 60px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .whychoose-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 40px;
  }

  .whychoose-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
  }

  .benefit-card {
    background: white;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 6px 14px rgba(76, 175, 80, 0.15);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }

  .benefit-card::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    background: radial-gradient(circle at center, rgba(76, 175, 80, 0.3), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
  }

  .benefit-card:hover {
    transform: translateY(-10px) scale(1.08);
    box-shadow:
      0 0 8px 3px rgba(76, 175, 80, 0.6),
      0 12px 20px rgba(76, 175, 80, 0.3);
    z-index: 5;
  }

  .benefit-card:hover::before {
    opacity: 1;
  }

  .benefit-card > * {
    position: relative;
    z-index: 1;
  }

  .icon-wrapper {
    font-size: 56px;
    color: var(--primary-green);
    margin: 0 auto 20px;
    transition: transform 0.6s ease;
    opacity: 0.6;
  }

  .benefit-card.visible .icon-wrapper {
    animation: zoomIn 0.6s forwards;
    opacity: 1;
  }

  @keyframes zoomIn {
    from {
      transform: scale(0.7);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }

  .benefit-card h3 {
    margin-bottom: 12px;
    font-size: 1.5rem;
    color: var(--primary-brown);
  }

  .benefit-card p {
    color: #444;
    font-size: 1rem;
    line-height: 1.5;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .whychoose-title {
      font-size: 2rem;
      margin-bottom: 30px;
    }

    .benefit-card {
      padding: 25px 15px;
    }
  }

  /* testimonial section */

     /* ====== Testimonials Section Styles ====== */
.testimonials-section {
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
  background-color: #f9fef6;
  color: #6d4c41;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  overflow: hidden;
}

.testimonials-section .testimonials-title {
  font-size: 2.8rem;
  color: #4caf50;
  font-weight: 700;
  margin-bottom: 40px;
}

/* Container for cards */
.testimonials-slider {
  position: relative;
  height: 320px; /* fixed height to prevent layout jump */
}

/* Individual testimonial cards */
.testimonials-slider .testimonial-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 600px;
  padding: 25px 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 6px 14px rgba(76, 175, 80, 0.15);
  opacity: 0;
  transform: translateX(-50%) scale(0.85);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
  cursor: default;
  user-select: none;
}

/* Active card visible in center */
.testimonials-slider .testimonial-card.active {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  pointer-events: auto;
  user-select: text;
  z-index: 10;
}

/* Hover effect on active card */
.testimonials-slider .testimonial-card.active:hover {
  transform: translateX(-50%) scale(1.05);
  box-shadow: 0 12px 25px rgba(76, 175, 80, 0.3);
  z-index: 20;
}

/* Testimonial photo */
.testimonial-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
  border: 3px solid #4caf50;
  user-select: none;
}

/* Name & text */
.testimonial-name {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: #6d4c41;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 40px 15px;
  }
  .testimonials-section .testimonials-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .testimonials-slider {
    height: auto;
    min-height: 360px;
  }
  .testimonials-slider .testimonial-card {
    position: relative;
    left: 0 !important;
    opacity: 1 !important;
    transform: translateX(0) scale(1) !important;
    max-width: 100%;
    box-shadow: 0 6px 14px rgba(76, 175, 80, 0.15);
    margin-bottom: 30px;
    pointer-events: auto !important;
    user-select: text !important;
  }
  .testimonials-slider .testimonial-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(76, 175, 80, 0.3);
  }
}


/* newsletter section */

.newsletter-section {
  margin: 10px auto;
  padding: 40px 20px;
  background: #f9fef6;
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(76, 175, 80, 0.15);
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #6d4c41;
}

.newsletter-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #4caf50;
  margin-bottom: 10px;
}

.newsletter-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.4;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  padding: 14px 20px;
  font-size: 1rem;
  border: 2px solid #4caf50;
  border-radius: 40px;
  outline-offset: 2px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  min-width: 100px;
}

.newsletter-form input[type="email"]:focus {
  border-color: #ffeb3b;
  box-shadow: 0 0 8px #ffeb3b;
}

.newsletter-btn {
  background-color: #4caf50;
  color: white;
  border: none;
  padding: 14px 36px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 40px;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 15px rgba(76, 175, 80, 0.4);
  min-width: 140px;
}

.newsletter-btn:hover,
.newsletter-btn:focus {
  background-color: #ffeb3b;
  color: #4caf50;
  transform: scale(1.1);
  outline: none;
  box-shadow: 0 0 12px #ffeb3b;
}

/* Accessibility helper */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.newsletter-message {
  margin-top: 20px;
  font-size: 1rem;
  color: #6d4c41;
  min-height: 1.2em;
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .newsletter-form input[type="email"],
  .newsletter-btn {
    flex: 1 1 100%;
    min-width: 0;
  }

  .newsletter-btn {
    padding: 14px;
    font-size: 1rem;
  }
}

/* specialoffers-banner section */

.specialoffers-banner {
    background-color: lightgoldenrodyellow; /* Bright yellow */
    padding: 10px;
    text-align: center;
    border-radius: 12px;
    margin: 40px auto;
    box-shadow: 0 6px 15px rgba(255, 235, 59, 0.4);
  }

  .specialoffers-content {
    max-width: 600px;
    margin: 0 auto;
  }

  .specialoffers-title {
    font-size: 2.5rem;
    color: #4caf50; /* Warm green */
    font-weight: 800;
    margin-bottom: 15px;
  }

  .specialoffers-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 30px;
  }

  .specialoffers-btn {
    background-color: #4caf50; /* Warm green */
    color: white;
    border: none;
    padding: 14px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 40px;
    cursor: pointer;
    box-shadow: 0 0 0 rgba(76, 175, 80, 0.7);
    animation: pulse 2.5s infinite;
    transition: background-color 0.3s ease;
  }

  .specialoffers-btn:hover,
  .specialoffers-btn:focus {
    background-color: #388e3c;
    outline: none;
    animation-play-state: paused;
  }

  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    50% {
      box-shadow: 0 0 15px 10px rgba(76, 175, 80, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
  }

  /* Responsive */
  @media (max-width: 600px) {
    .specialoffers-title {
      font-size: 2rem;
    }
    .specialoffers-subtitle {
      font-size: 1rem;
    }
    .specialoffers-btn {
      padding: 12px 30px;
      font-size: 1rem;
    }
  }