@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');
        
        .font-playfair { font-family: 'Playfair Display', serif; }
        .font-inter { font-family: 'Inter', sans-serif; }
        
        .hero-gradient {
            background: linear-gradient(135deg, #f6f3e7 0%, #e8dcc6 100%);
        }
        
        .testimonial-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .testimonial-card {
            min-width: 33.333%;
            padding: 0 1rem;
        }
        
        @media (max-width: 768px) {
            .testimonial-card {
                min-width: 100%;
            }
        }
        
        .rice-card {
            transition: all 0.3s ease;
        }
        
        .rice-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        .grain-pattern {
            background-image: radial-gradient(circle at 2px 2px, rgba(139, 69, 19, 0.1) 1px, transparent 0);
            background-size: 20px 20px;
        }

        .nav-icon {
            transition: all 0.3s ease;
        }

        .nav-icon:hover {
            transform: scale(1.1);
        }
        
      

        /* Mobile Navigation Styles */
        .mobile-menu-button {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #1c4b3c;
            cursor: pointer;
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 400px;
            height: 100vh;
            background: white;
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
            z-index: 1001;
            padding: 2rem;
            transition: right 0.4s ease;
            display: flex;
            flex-direction: column;
        }
        
        .mobile-nav.active {
            right: 0;
        }
        
        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #eee;
        }
        
        .close-menu {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #333;
        }
        
        .mobile-nav-menu {
            list-style: none;
            flex-grow: 1;
        }
        
        .mobile-nav-menu li {
            margin-bottom: 1.5rem;
        }
        
        .mobile-nav-menu li a {
            color: #333;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            display: block;
            padding: 0.5rem 0;
            transition: color 0.3s;
        }
        
        .mobile-nav-menu li a:hover {
            color: #1c4b3c;
        }
        
        .mobile-nav-footer {
            margin-top: auto;
            padding-top: 1rem;
            border-top: 1px solid #eee;
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }
        
        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        @media (max-width: 768px) {
            .mobile-menu-button {
                display: block;
            }
            
            .desktop-nav {
                display: none;
            }
        }

        .font-playfair { font-family: 'Playfair Display', serif; }
        .font-inter { font-family: 'Inter', sans-serif; }
        
        .hero-gradient {
            background: linear-gradient(135deg, #f6f3e7 0%, #e8dcc6 100%);
        }
        
        .grain-pattern {
            background-image: radial-gradient(circle at 2px 2px, rgba(139, 69, 19, 0.1) 1px, transparent 0);
            background-size: 20px 20px;
        }

        .rotating-message {
            min-height: 180px;
            position: relative;
            overflow: hidden;
        }
        
        .message {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease;
        }
        
        .message.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        .ambassador-image {
            width: 100%;
            height: 80vh;
            overflow: hidden;
            position: relative;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .ambassador-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .message-indicators {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }
        
        .indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #c1c1c1;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .indicator.active {
            background: #1c4b3c;
            transform: scale(1.2);
        }
        
        @media (max-width: 768px) {
            .rotating-message {
                min-height: 220px;
            }
            
            .ambassador-image {
                height: 50vh;
                margin-top: 2rem;
            }
        }
        .custom-btn {
  background-color: #1c4b3c;
  transition: background-color 0.3s ease;
}
.custom-btn:hover {
  background-color: #163a30; /* darker hover shade */
}