/* ============================================
   FIZZY BEVERAGES - CUSTOM STYLES
   ============================================ */

/* Root Variables */
:root {
    --primary-color: #00e676;
    --primary-dark: #00c853;
    --primary-light: #69f0ae;
    --secondary-color: #ffeb3b;
    --yellow-accent: #ffd700;
    --yellow-bright: #ffeb3b;
    --accent-color: #00bcd4;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.3);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, #00e676 0%, #00c853 50%, #ffeb3b 100%);
    --gradient-hero: linear-gradient(90deg, #00e676 0%, #00c853 25%, #ffeb3b 75%, #ffd700 100%);
    --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Poppins', 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
    padding-top: 0;
}

html {
    scroll-padding-top: 100px;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-title {
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
}

/* Navigation */
.navbar {
    height: 80px;
    max-height: 80px;
    padding: 0;
    transition: var(--transition);
    z-index: 1030;
    overflow: visible;
    display: flex;
    align-items: center;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.navbar-brand {
    font-size: 1.75rem;
    color: var(--text-dark) !important;
    font-weight: 800;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    height: auto;
    margin: 0;
    margin-right: auto;
    margin-left: -50px;
    line-height: 1;
}

.navbar-logo {
    height: 240px;
    max-height: 240px;
    width: auto;
    min-width: 800px;
    object-fit: contain;
    transition: var(--transition);
    display: block;
    margin-top: 0;
    margin-bottom: -60px;
    margin-left: -160px;
    position: relative;
    z-index: 1031;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
}

.brand-text {
    color: #00e676;
}

.brand-accent {
    color: var(--text-dark);
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #00e676 !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00e676 0%, #ffeb3b 100%);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background-image: url('../images/hero/fizzy-wallpaper-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
    margin-bottom: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
    z-index: 1;
}


.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.25) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.5);
    margin-top: 0;
    padding: 2rem 0;
}

.hero-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: rgba(0, 230, 118, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 230, 118, 0.4);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-family: 'Inter', 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 2.5rem 0;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.feature-tag:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.feature-tag i {
    color: #00e676;
    font-size: 1.1rem;
}

.made-in-india-hero {
    background: rgba(0, 230, 118, 0.2) !important;
    border: 1px solid rgba(0, 230, 118, 0.4) !important;
}

.made-in-india-hero:hover {
    background: rgba(0, 230, 118, 0.3) !important;
    border-color: rgba(255, 235, 59, 0.6) !important;
    box-shadow: 0 10px 25px rgba(0, 230, 118, 0.4) !important;
}

.made-in-india-hero .india-flag {
    font-size: 1.3rem;
    animation: wave 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 4px 4px 20px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 0, 0, 0.6), 2px 2px 10px rgba(0, 0, 0, 0.8);
    letter-spacing: -0.5px;
    font-family: 'Outfit', 'Poppins', sans-serif;
}

.hero-title .text-primary {
    color: #ffffff !important;
    text-shadow: 4px 4px 20px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 230, 118, 0.6), 0 0 60px rgba(0, 200, 83, 0.5), 2px 2px 10px rgba(0, 0, 0, 0.8);
    font-weight: 900;
    display: inline-block;
    position: relative;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 1;
    font-weight: 400;
    line-height: 1.9;
    color: #ffffff;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.9), 0 0 25px rgba(0, 0, 0, 0.6), 1px 1px 5px rgba(0, 0, 0, 0.8);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Inter', 'Poppins', sans-serif;
    letter-spacing: 0.3px;
}

.hero-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #00e676 0%, #00c853 100%);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: var(--white);
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0, 230, 118, 0.4);
    font-family: 'Inter', 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

.hero-buttons .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.hero-buttons .btn-primary:hover::before {
    left: 100%;
}

.hero-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #00c853 0%, #00e676 100%);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 230, 118, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-buttons .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-family: 'Inter', 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.hero-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
    border-color: rgba(255, 255, 255, 1);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
}

/* Floating Bubbles Animation */
.floating-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float-bubble 15s infinite ease-in-out;
}

.bubble-1 {
    width: 80px;
    height: 80px;
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.bubble-2 {
    width: 60px;
    height: 60px;
    left: 80%;
    top: 30%;
    animation-delay: 2s;
}

.bubble-3 {
    width: 100px;
    height: 100px;
    left: 70%;
    top: 60%;
    animation-delay: 4s;
}

.bubble-4 {
    width: 50px;
    height: 50px;
    left: 20%;
    top: 70%;
    animation-delay: 1s;
}

.bubble-5 {
    width: 70px;
    height: 70px;
    left: 50%;
    top: 10%;
    animation-delay: 3s;
}

.bubble-6 {
    width: 90px;
    height: 90px;
    left: 30%;
    top: 50%;
    animation-delay: 5s;
}

.bubble-7 {
    width: 55px;
    height: 55px;
    left: 85%;
    top: 75%;
    animation-delay: 2.5s;
}

.bubble-8 {
    width: 65px;
    height: 65px;
    left: 15%;
    top: 40%;
    animation-delay: 4.5s;
}

@keyframes float-bubble {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-30px) translateX(20px) scale(1.1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-60px) translateX(-15px) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-30px) translateX(10px) scale(1.05);
        opacity: 0.5;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotateY(0deg);
    }
    50% {
        transform: translateY(-20px) rotateY(10deg);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 2rem;
    animation: bounce 2s infinite;
    z-index: 2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-in;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s both;
}

.animate-slide-in {
    animation: slideInRight 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Features Section */
.features-section {
    background: var(--white);
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.feature-card {
    padding: 2.5rem;
    border-radius: 20px;
    transition: var(--transition);
    height: 100%;
    background: var(--white);
    border: 2px solid transparent;
    box-shadow: var(--shadow);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
    border-color: #ffeb3b;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 235, 59, 0.05) 100%);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #00e676 0%, #00c853 50%, #ffeb3b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--white);
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(0, 230, 118, 0.5);
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    filter: blur(10px);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 35px rgba(255, 235, 59, 0.5);
}

.feature-card:hover .feature-icon::after {
    opacity: 0.5;
}

.feature-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
}

/* Section Badge */
.section-badge {
    display: inline-block;
    padding: 0.6rem 2rem;
    background: linear-gradient(135deg, #00e676 0%, #00c853 50%, #ffeb3b 100%);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 230, 118, 0.5);
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.section-title {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Speciality Section */
.speciality-section {
    background: #f8f9fa;
    padding: 6rem 0;
    scroll-margin-top: 100px;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.speciality-content {
    padding: 2rem 0;
    position: relative;
}

.benefits-list {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: 15px;
    transition: var(--transition);
    border-left: 4px solid #00e676;
    box-shadow: var(--shadow);
}

.benefit-item:hover {
    transform: translateX(15px);
    box-shadow: var(--shadow-lg);
    border-left-width: 6px;
    border-left-color: #ffeb3b;
    background: linear-gradient(90deg, rgba(255, 235, 59, 0.1) 0%, var(--white) 10%);
}

.benefit-item i {
    color: #00e676;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.benefit-item span {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.speciality-image {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.amla-featured-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    animation: float 3s ease-in-out infinite;
    transition: var(--transition);
    filter: drop-shadow(0 15px 30px rgba(0, 230, 118, 0.4));
}

.amla-featured-img:hover {
    transform: translateY(-15px) scale(1.08);
    box-shadow: 0 30px 70px rgba(0, 230, 118, 0.5);
    filter: drop-shadow(0 20px 40px rgba(0, 230, 118, 0.5));
}

.amla-bottle {
    width: 200px;
    height: 350px;
    background: linear-gradient(180deg, #4caf50 0%, #2e7d32 100%);
    border-radius: 30px 30px 10px 10px;
    position: relative;
    animation: float 3s ease-in-out infinite;
    box-shadow: var(--shadow-lg);
}

.bottle-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Product Box Section */
.product-label-section {
    padding: 3rem 0;
    background: transparent;
    scroll-margin-top: 100px;
    position: relative;
    z-index: 1;
}

.product-box-container {
    background: var(--white);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 230, 118, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    max-width: 600px;
    margin: 0 auto;
}

.product-box-container:hover {
    box-shadow: 0 20px 50px rgba(0, 230, 118, 0.2);
    border-color: rgba(0, 230, 118, 0.3);
    transform: translateY(-5px);
}

.product-box-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

@media (max-width: 768px) {
    .product-box-container {
        padding: 1rem;
    }
    
    .product-box-img {
        border-radius: 10px;
    }
}

.pdf-actions .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.pdf-actions .btn-primary {
    background: linear-gradient(135deg, #00e676 0%, #00c853 50%, #ffeb3b 100%);
    border: none;
    color: var(--white);
}

.pdf-actions .btn-primary:hover {
    background: linear-gradient(135deg, #00c853 0%, #00e676 50%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 230, 118, 0.4);
}

.pdf-actions .btn-outline-primary {
    border: 2px solid #00e676;
    color: #00e676;
}

.pdf-actions .btn-outline-primary:hover {
    background: #00e676;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 230, 118, 0.4);
}

/* Products Section */
.products-section {
    padding: 6rem 0;
    background: transparent;
    scroll-margin-top: 100px;
    position: relative;
    z-index: 1;
}

.product-card {
    background: transparent;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: none;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #00e676 0%, #ffeb3b 100%);
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: #ffeb3b;
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    height: 320px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
    border-radius: 20px 20px 0 0;
    padding: 0.1rem;
}

.product-img {
    width: 100%;
    height: 98%;
    max-width: 98%;
    object-fit: contain;
    object-position: bottom center;
    transition: var(--transition);
    filter: brightness(1.05);
    padding: 0;
    margin: 0 auto;
}

.product-card:hover .product-img {
    transform: scale(1.03);
    filter: brightness(1.15);
}

.orange-product .product-img,
.watermelon-product .product-img {
    height: 98%;
    max-width: 98%;
    padding: 0;
}

.orange-product:hover .product-img,
.watermelon-product:hover .product-img {
    transform: scale(1.06);
}

.amla-product .product-img,
.mineral-product .product-img,
.jeera-product .product-img,
.cola-product .product-img,
.lambda-product .product-img,
.jayaka-product .product-img {
    height: 98%;
    max-width: 98%;
    padding: 0;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #00e676 0%, #ffeb3b 100%);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.5);
}

/* Product Colors */
.amla-product {
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
}

.jeera-product {
    background: linear-gradient(135deg, #8d6e63 0%, #5d4037 100%);
}

.orange-product {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}

.cola-product {
    background: linear-gradient(135deg, #3e2723 0%, #1b0000 100%);
}

.lambda-product {
    background: linear-gradient(135deg, #8bc34a 0%, #cddc39 50%, #ffeb3b 100%);
}

.jayaka-product {
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 50%, #8d6e63 100%);
}

.litchi-product {
    background: linear-gradient(135deg, #f8bbd0 0%, #f48fb1 100%);
}

.watermelon-product {
    background: linear-gradient(135deg, #ef5350 0%, #c62828 100%);
}

.soda-product {
    background: linear-gradient(135deg, #e0e0e0 0%, #bdbdbd 100%);
}

.mineral-product {
    background: linear-gradient(135deg, #e3f2fd 0%, #90caf9 100%);
}

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 0 0 20px 20px;
}

.product-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.product-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.product-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: #00e676;
    font-family: 'Montserrat', sans-serif;
    margin-top: auto;
}

/* Why Choose Section */
.why-choose-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.why-choose-image {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 400px;
}

.grid-bottle {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, #00e676, #69f0ae);
    border-radius: 15px;
    animation: float 3s ease-in-out infinite;
}

.grid-bottle:nth-child(2) {
    animation-delay: 0.3s;
    background: linear-gradient(135deg, #ffeb3b, #ffd700);
}

.grid-bottle:nth-child(3) {
    animation-delay: 0.6s;
    background: linear-gradient(135deg, #2196f3, #1976d2);
}

.grid-bottle:nth-child(4) {
    animation-delay: 0.9s;
    background: linear-gradient(135deg, #ef5350, #c62828);
}

.why-item {
    display: flex;
    margin-bottom: 2rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.why-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(90deg, rgba(255, 235, 59, 0.05) 0%, var(--white) 5%);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00e676 0%, #00c853 50%, #ffeb3b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 230, 118, 0.5);
    transition: var(--transition);
}

.why-item:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(255, 235, 59, 0.5);
}

.why-text h5 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
}

.why-text p {
    color: var(--text-light);
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(90deg, #00e676 0%, #00c853 25%, #4caf50 50%, #ffeb3b 75%, #ffd700 100%);
    color: var(--white);
    padding: 6rem 0;
    position: relative;
    z-index: 1;
    margin-top: 0;
}

.cta-box {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.cta-box h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-box .lead {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-box .btn-light {
    background: var(--white);
    color: #00e676;
    font-weight: 700;
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.cta-box .btn-light:hover {
    background: #ffeb3b;
    color: #00e676;
    border-color: #ffeb3b;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 235, 59, 0.5);
}

/* Page Header */
.page-header {
    background-image: url('../images/hero/fizzy-wallpaper-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--white);
    padding: 8rem 0 4rem;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 800;
    font-family: 'Outfit', 'Poppins', sans-serif;
    text-shadow: 4px 4px 20px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.5px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0, 230, 118, 0.5);
}

.breadcrumb-item.active {
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* About Page Styles */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem;
}

.feature-box {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.1) 0%, rgba(255, 235, 59, 0.1) 100%);
    border-radius: 20px;
    border: 2px solid rgba(0, 230, 118, 0.2);
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 230, 118, 0.3);
    border-color: var(--primary-color);
}

.feature-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #00e676 0%, #00c853 50%, #ffeb3b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 230, 118, 0.4);
    transition: var(--transition);
}

.feature-box:hover .feature-icon-box {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 230, 118, 0.5);
}

.feature-box h4 {
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.feature-box p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .feature-box {
        padding: 1.5rem 1rem;
    }
    
    .feature-icon-box {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--white);
}

.mission-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #00e676 0%, #00c853 100%);
    transform: scaleX(0);
    transition: var(--transition);
}

.mission-card:hover::before {
    transform: scaleX(1);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 230, 118, 0.2);
    border-color: #00e676;
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00e676, #00c853);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 230, 118, 0.3);
}

.mission-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
}

.mission-card p {
    color: var(--text-light);
}

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    border: 2px solid rgba(0, 230, 118, 0.1);
    position: relative;
}

.value-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #00e676 0%, #00c853 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
}

.value-card:hover::after {
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 230, 118, 0.2);
    border-color: #00e676;
}

.value-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #00e676 0%, #00c853 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 0 10px 25px rgba(0, 230, 118, 0.3);
    transition: var(--transition);
    position: relative;
}

.value-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0;
    filter: blur(8px);
    transition: var(--transition);
    z-index: -1;
}

.value-card:hover .value-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 35px rgba(0, 230, 118, 0.5);
}

.value-card:hover .value-icon::before {
    opacity: 0.6;
}

.value-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.value-card p {
    color: var(--text-light);
}

.amla-info-image {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
}

.amla-benefit-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    filter: drop-shadow(0 10px 20px rgba(76, 175, 80, 0.3));
}

.amla-benefit-img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.amla-visual {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--white);
    animation: pulse 2s ease-in-out infinite;
    box-shadow: var(--shadow-lg);
}

.amla-benefits {
    margin-top: 2rem;
}

.benefit-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    transition: var(--transition);
}

.benefit-row:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.benefit-content h5 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
}

.benefit-content p {
    color: var(--text-light);
    margin: 0;
}

.certification-box {
    background: rgba(0, 230, 118, 0.1);
    color: var(--text-dark);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(0, 230, 118, 0.2);
    position: relative;
    overflow: hidden;
}

.certification-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #00e676 0%, #00c853 100%);
}

.certification-box > * {
    position: relative;
    z-index: 1;
}

.cert-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #00e676;
}

.certification-box h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Outfit', 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
}

.certification-box .lead {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cert-number {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    padding: 1rem;
    background: rgba(0, 230, 118, 0.15);
    border-radius: 10px;
    display: inline-block;
    margin-top: 1rem;
    border: 1px solid rgba(0, 230, 118, 0.3);
}

/* Contact Page Styles */
.contact-info-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    border: 2px solid rgba(0, 230, 118, 0.1);
    transition: var(--transition);
}

.contact-info-card:hover {
    box-shadow: 0 15px 40px rgba(0, 230, 118, 0.15);
    border-color: rgba(0, 230, 118, 0.3);
    transform: translateY(-5px);
}

.contact-info-card h3,
.contact-form-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
}

.contact-info-card .lead {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00e676 0%, #00c853 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 230, 118, 0.3);
}

.contact-details h5 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
}

.contact-details p {
    color: var(--text-light);
    margin: 0;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    color: var(--white);
}

.contact-form-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 230, 118, 0.1);
    transition: var(--transition);
}

.contact-form-card:hover {
    box-shadow: 0 15px 40px rgba(0, 230, 118, 0.15);
    border-color: rgba(0, 230, 118, 0.3);
}

.contact-form-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-form-card > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 168, 89, 0.25);
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, #00e676 0%, #00c853 100%);
    border: none;
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    font-family: 'Inter', 'Poppins', sans-serif;
    box-shadow: 0 8px 25px rgba(0, 230, 118, 0.4);
}

.contact-form .btn-primary:hover {
    background: linear-gradient(135deg, #00c853 0%, #00e676 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 230, 118, 0.5);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 15px;
    display: block;
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #e3f2fd, #90caf9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.5rem;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%2300a859" opacity="0.3"/><circle cx="30" cy="30" r="1.5" fill="%2300a859" opacity="0.2"/><circle cx="70" cy="70" r="1.5" fill="%2300a859" opacity="0.2"/></svg>') repeat;
    opacity: 0.3;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.map-placeholder p {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hours-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 230, 118, 0.1);
    transition: var(--transition);
}

.hours-card:hover {
    box-shadow: 0 15px 40px rgba(0, 230, 118, 0.15);
    border-color: rgba(0, 230, 118, 0.3);
    transform: translateY(-5px);
}

.hours-card h3 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.hour-item .day {
    font-weight: 600;
    color: var(--text-dark);
}

.hour-item .time {
    color: var(--primary-color);
    font-weight: 600;
}

/* Footer */
.footer {
    background: #1a1a1a !important;
    padding: 3rem 0 1.5rem;
}

.footer-brand {
    font-size: 1.5rem;
    color: #00e676;
    margin-bottom: 1rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.footer h5 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #ffeb3b;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    color: #ffeb3b;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: linear-gradient(135deg, #00e676 0%, #ffeb3b 100%);
    transform: translateY(-3px);
}

.made-in-india-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.15) 0%, rgba(255, 235, 59, 0.15) 100%);
    border: 2px solid rgba(0, 230, 118, 0.3);
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 1.5rem 0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.made-in-india-badge::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;
}

.made-in-india-badge:hover::before {
    left: 100%;
}

.made-in-india-badge:hover {
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.25) 0%, rgba(255, 235, 59, 0.25) 100%);
    border-color: rgba(0, 230, 118, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 230, 118, 0.3);
}

.india-flag {
    font-size: 1.5rem;
    display: inline-block;
    animation: wave 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes wave {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(-8deg) scale(1.05);
    }
    75% {
        transform: rotate(8deg) scale(1.05);
    }
}

.made-in-india-badge span {
    font-family: 'Inter', 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Enhanced Typography */
.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
    font-family: 'Montserrat', sans-serif;
}

p {
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        height: 75px;
        max-height: 75px;
        padding: 0;
    }
    
    .navbar-logo {
        height: 140px;
        max-height: 140px;
        min-width: 450px;
        margin-top: -20px;
        margin-bottom: -40px;
        margin-left: -80px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .bottle-showcase {
        flex-direction: column;
        gap: 1rem;
    }
    
    .bottle, .hero-bottle-img {
        width: 100px;
        height: 160px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-badge {
        font-size: 0.9rem;
        padding: 0.6rem 1.5rem;
    }
    
    .hero-features {
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .feature-tag {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .bubble {
        opacity: 0.2;
    }
    
    .speciality-image {
        height: 400px;
        padding: 1rem;
        margin-top: 2rem;
    }
    
    .amla-featured-img {
        max-width: 100%;
        border-radius: 20px;
    }
}

/* Smooth Scroll - Already defined above */

/* Loading Animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

