:root {
        --dark-bg: #0f0f0f;
        --card-bg: #1a1a1a;
        --accent: #d4a76a;
        --accent-dark: #b88d5a;
        --text-light: #e8e6e3;
        --text-muted: #e5e3e3;
        --border: #2a2a2a;
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Inter", sans-serif;
        background-color: var(--dark-bg);
        color: var(--text-light);
        overflow-x: hidden;
      }
      .header-bg{
         background-color: var(--dark-bg) !important;
        z-index: 1112 !important;
        position: sticky;
        top: 0;
      }
    
      .custom-container{
        width: 90%;
        margin: auto;
      }


      h1,
      h2,
      h3,
      h4,
      h5,
      h6 {
        font-family: "Playfair Display", serif;
        font-weight: 600;
        color: var(--accent);
      }

      /* Custom Scrollbar */
      ::-webkit-scrollbar {
        width: 8px;
      }

      ::-webkit-scrollbar-track {
        background: var(--dark-bg);
      }

      ::-webkit-scrollbar-thumb {
        background: var(--accent);
        border-radius: 4px;
      }

      /* Navigation */
      .navbar {
        /* background-color: rgba(15, 15, 15, 0.95); */
        backdrop-filter: blur(10px);
        /* border-bottom: 1px solid var(--border); */
        padding: 1.1rem 0;
        transition: all 0.3s ease;
      }

      .navbar-nav {
        gap: 1.2rem;
      }

      .navbar-icons .icon {
  color: var(--text-light);
  font-size: 1.5rem;
  margin-left: 18px;
  transition: 0.3s ease;
}

.navbar-icons .icon:hover {
  color: var(--accent);
}

/* When in mobile view */
.navbar-icons {
  margin-left: auto;
}
      .navbar-brand {
        font-family: "Playfair Display", serif;
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--accent) !important;
        letter-spacing: 1px;
      }

      .nav-link {
        color: var(--text-light) !important;
        font-weight: 700;
        margin: 0 0.5rem;
        position: relative;
        padding: 0.5rem 0.9rem !important;
      }

      .nav-link::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--accent);
        transition: width 0.3s ease;
      }

      .nav-link:hover::after {
        width: 100%;
      }


      .nav-link.active {
  color: var(--accent) !important;
}

.nav-link.active::after {
  width: 100%;
}

      /* Hero Section */
    #hero {
  min-height: 90vh;
  display: flex;                     /* center children */
  justify-content: center;           /* horizontal center */
  align-items: center;               /* vertical center */
  position: relative;
  background: linear-gradient(
      135deg,
      rgba(15, 15, 15, 0.9) 0%,
      rgba(26, 26, 26, 0.8) 100%
    ),
    url("dryfruit.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  padding: 0; /* remove top space */
}

      .hero-content {
        text-align: center;
        margin: 0 auto;
      }

      .hero-title {
        font-size: 4rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        line-height: 1.1;
        background: linear-gradient(90deg, var(--accent) 0%, #f5d6a6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .hero-subtitle {
        font-size: 1.2rem;
        color: var(--text-muted);
        margin-bottom: 2.5rem;
        line-height: 1.6;
      }

      .hero-cta {
       justify-content: center;
      }

      /* Buttons */
      .btn-primary {
        background-color: var(--accent);
        border: none;
        color: var(--dark-bg);
        font-weight: 600;
        padding: 0.8rem 2rem;
        border-radius: 2px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }

      .btn-primary::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.2),
          transparent
        );
        transition: left 0.5s ease;
      }

      .btn-primary:hover::before {
        left: 100%;
      }

      .btn-primary:hover {
        background-color: var(--accent-dark);
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(212, 167, 106, 0.2);
      }

      .btn-outline {
        background-color: transparent;
        border: 2px solid var(--accent);
        color: var(--accent);
        font-weight: 600;
        padding: 0.8rem 1rem;
        border-radius: 2px;
        transition: all 0.3s ease;
      }

      .btn-outline:hover {
        background-color: rgba(212, 167, 106, 0.1);
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(212, 167, 106, 0.1);
      }

      /* Section Styling */
      section {
        padding: 80px 0;
      }

      .section-title {
        text-align: center;
        margin-bottom: 70px;
        position: relative;
      }

      .section-title h2 {
        font-size: 2.8rem;
        margin-bottom: 1rem;
        display: inline-block;
      }

      .section-title .divider {
        height: 3px;
        width: 80px;
        background-color: var(--accent);
        margin: 0 auto;
      }

      /* About Section */
      #about {
        position: relative;
        overflow: hidden;
      }

      .about-image {
        height: 500px;
        border-radius: 4px;
        overflow: hidden;
        position: relative;
      }

      .about-image::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(15, 15, 15, 0.5), transparent);
      }

      .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s ease;
      }

      .about-image:hover img {
        transform: scale(1.05);
      }

      .about-content {
        padding-left: 3rem;
      }

      .about-content p{
        font-size: 1.2rem;
      }

      /* Products Section */
      #products {
        background-color: var(--card-bg);
      }

      .product-card {
        background-color: var(--dark-bg);
        border-radius: 4px;
        overflow: hidden;
        height: 100%;
        border: 1px solid var(--border);
        transition: all 0.4s ease;
        position: relative;
      }

      .product-card:hover {
        transform: translateY(-10px);
        border-color: var(--accent);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
      }

      .product-img {
        height: 250px;
        width: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
      }

      .product-card:hover .product-img {
        transform: scale(1.05);
      }

      .product-body {
        padding: 1.5rem;
      }

      .product-title {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .product-origin {
        font-size: 0.8rem;
        color: var(--accent);
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
      }

      .product-price {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--accent);
        margin-top: 1rem;
      }

      /* Features Section */
      .feature-icon {
        width: 70px;
        height: 70px;
        background-color: var(--card-bg);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        color: var(--accent);
        font-size: 1.8rem;
        border: 1px solid var(--border);
        transition: all 0.3s ease;
      }

      .feature-card:hover .feature-icon {
        background-color: var(--accent);
        color: var(--dark-bg);
        transform: rotate(10deg);
      }

      .feature-card {
        text-align: center;
        padding: 2rem;
        border-radius: 4px;
        transition: all 0.3s ease;
      }

      .feature-card:hover {
        background-color: var(--card-bg);
        transform: translateY(-5px);
      }

      /* Testimonials */
       header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        h1 {
            font-size: 2.8rem;
            font-weight: 300;
            letter-spacing: -0.5px;
            margin-bottom: 15px;
            background: linear-gradient(to right, #fff, #aaa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .subtitle {
            font-size: 1.1rem;
            color: #aaa;
            font-weight: 300;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        /* Testimonial Grid */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        /* Card Styles */
        .testimonial-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 30px;
            position: relative;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            overflow: hidden;
        }
        
        /* Floating Animation */
        @keyframes float {
            0%, 100% { 
                transform: translateY(0px); 
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            }
            50% { 
                transform: translateY(-10px); 
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.05);
            }
        }
        
        /* Apply floating animation with delays */
        .testimonial-card:nth-child(1) {
            animation: float 6s ease-in-out infinite;
        }
        
        .testimonial-card:nth-child(2) {
            animation: float 7s ease-in-out infinite 0.5s;
        }
        
        .testimonial-card:nth-child(3) {
            animation: float 6.5s ease-in-out infinite 1s;
        }
        
        .testimonial-card:nth-child(4) {
            animation: float 7.5s ease-in-out infinite 1.5s;
        }
        
        .testimonial-card:nth-child(5) {
            animation: float 6.8s ease-in-out infinite 0.8s;
        }
        
        .testimonial-card:nth-child(6) {
            animation: float 7.2s ease-in-out infinite 1.2s;
        }
        
        /* Hover Effects */
        .testimonial-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.15);
            animation-play-state: paused;
        }

        .testimonial-card:hover .rating .star i {
    color: var(--accent); /* change to any color you want */
}
        
        /* Circular Cards */
        .circular-card {
            border-radius: 50px 16px 16px 16px;
        }
        
        /* Profile Section */
        .profile {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        /* Circular Profile Images */
        .profile-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }
        
        .testimonial-card:hover .profile-img {
            filter: grayscale(0%);
        }
        
        /* Profile Info */
        .profile-info h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 5px;
            color: #fff;
        }
        
        .profile-info p {
            font-size: 0.9rem;
            color: #aaa;
            font-weight: 300;
        }
        
        /* Rating Stars */
        .rating {
            margin-bottom: 20px;
            display: flex;
        }
        
        .star {
            color: rgba(255, 255, 255, 0.3);
            font-size: 1.1rem;
            margin-right: 3px;
        }
        
        .star.filled {
            color: #fff;
        }
        
        /* Testimonial Text */
        .testimonial-text {
            font-size: 1rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.85);
            font-weight: 300;
            font-style: italic;
            position: relative;
            padding-left: 20px;
        }
        
        .testimonial-text::before {
            content: "“";
            font-size: 3rem;
            color: rgba(255, 255, 255, 0.2);
            position: absolute;
            left: -10px;
            top: -15px;
            font-family: Georgia, serif;
        }
        
        /* Quote icon on hover */
        .testimonial-card:hover .testimonial-text::before {
            color: rgba(255, 255, 255, 0.4);
        }
     
        
        /* Layout variations */
        .wide-card {
            grid-column: span 2;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .wide-card {
                grid-column: span 2;
            }
        }
        
        @media (max-width: 768px) {
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .wide-card {
                grid-column: span 1;
            }
            
            h1 {
                font-size: 2.2rem;
            }
            
            .testimonial-card {
                padding: 25px;
            }
        }
      /* Contact Section */
      #contact {
        background: linear-gradient(
          135deg,
          var(--dark-bg) 0%,
          var(--card-bg) 100%
        );
      }

      .contact-form {
        background-color: var(--card-bg);
        padding: 3rem;
        border-radius: 4px;
        border: 1px solid var(--border);
      }

      .form-control {
        background-color: var(--dark-bg);
        border: 1px solid var(--border);
        color: white;
        padding: 0.8rem 1rem;
        border-radius: 2px;
        margin-bottom: 1.5rem;
      }

      .form-control:focus {
        background-color: var(--dark-bg);
        border-color: var(--accent);
        color: white;
        box-shadow: 0 0 0 0.25rem rgba(212, 167, 106, 0.25);
      }

      .form-control::placeholder {
  color: #848383; /* change to your color */
  opacity: 4;     /* makes sure color is visible */
}


      .whatsapp-btn {
        background-color: #25d366;
        color: white;
        padding: 1rem 2rem;
        border-radius: 2px;
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
      }

      .whatsapp-btn:hover {
        background-color: #128c7e;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
      }

      /* Footer */
      footer {
        background-color: var(--card-bg);
        padding: 4rem 0 2rem;
        border-top: 1px solid var(--border);
      }

      .footer-logo {
        font-family: "Playfair Display", serif;
        font-size: 2rem;
        font-weight: 700;
        color: var(--accent);
        margin-bottom: 1.5rem;
        display: inline-block;
      }

      .social-links {
        display: flex;
        gap: 1rem;
        margin-top: 1.5rem;
      }

      .social-link {
        width: 40px;
        height: 40px;
        background-color: var(--dark-bg);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent);
        text-decoration: none;
        transition: all 0.3s ease;
        border: 1px solid var(--border);
      }

      .social-link:hover {
        background-color: var(--accent);
        color: var(--dark-bg);
        transform: translateY(-3px);
      }

      .footer-heading {
        color: var(--accent);
        margin-bottom: 1.5rem;
        font-size: 1.2rem;
      }

      .footer-links {
        list-style: none;
        padding: 0;
      }

      .footer-links li {
        margin-bottom: 0.8rem;
      }

      .footer-links a {
        color: var(--text-muted);
        text-decoration: none;
        transition: color 0.3s ease;
      }

      .footer-links a:hover {
        color: var(--accent);
      }

      .copyright {
        text-align: center;
        padding-top: 2rem;
        margin-top: 3rem;
        border-top: 1px solid var(--border);
        color: var(--text-muted);
      }

      /* Responsive */
      @media (max-width: 992px) {
        .hero-title {
          font-size: 3rem;
        }

        .about-content {
          padding-left: 0;
          margin-top: 3rem;
        }
      }

      @media (max-width: 768px) {
        .hero-title {
          font-size: 2.5rem;
        }

        section {
          padding: 45px 0;
        }

        .contact-form {
          padding: 2rem;
        }
      }

 @media (max-width: 576px) {
    #about .section-title h2 {
      font-size: 2rem !important;
    }

    #about h3 {
      font-size: 1.3rem !important;
    }

    #products  .section-title h2,
     #features  .section-title h2,
     #testimonials .section-title h2,
     #contact .section-title h2{
        font-size: 2rem !important;
    }
  }
      /* Animation Classes */
      .fade-in {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease, transform 0.6s ease;
      }

      .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* Floating Animation */
      @keyframes float {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-10px);
        }
      }

      .floating {
        animation: float 5s ease-in-out infinite;
      }
