/* ===================================
   MANOVASTRA - REPUBLIC DAY 2026 THEME
   Complete CSS Styling with Indian Tricolor
   Date: January 26, 2026
   ==================================== */

/* ===================================
   ROOT VARIABLES & CUSTOM PROPERTIES
   ==================================== */
:root {
    /* Republic Day Color Palette */
    --saffron: #FF9933;
    --white: #FFFFFF;
    --green: #138807;
    --green-alt: #128807;
    --navy-blue: #000080;
    --gold-accent: #FFD700;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.6s ease;
    --transition-fast: all 0.15s ease;
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

/* ===================================
   KEYFRAME ANIMATIONS
   ==================================== */

/* Tricolor Wave Animation */
@keyframes tricolorWave {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Ashoka Chakra Rotation */
@keyframes rotateChakra {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Glowing Patriotic Effect */
@keyframes glowPatriotic {
    0%, 100% {
        text-shadow: 
            0 0 10px var(--saffron),
            0 0 20px var(--saffron),
            0 0 30px var(--saffron);
    }
    50% {
        text-shadow: 
            0 0 10px var(--green),
            0 0 20px var(--green),
            0 0 30px var(--green);
    }
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Shimmer Effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Flag Wave Effect */
@keyframes flagWave {
    0%, 100% {
        transform: translateY(0) scaleY(1);
    }
    25% {
        transform: translateY(-3px) scaleY(0.98);
    }
    75% {
        transform: translateY(3px) scaleY(1.02);
    }
}

/* Gradient Shift */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Border Glow Animation */
@keyframes borderGlow {
    0%, 100% {
        border-color: var(--saffron);
        box-shadow: 0 0 15px var(--saffron);
    }
    33% {
        border-color: var(--white);
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    }
    66% {
        border-color: var(--green);
        box-shadow: 0 0 15px var(--green);
    }
}

/* Tricolor Text Shimmer */
@keyframes tricolorShimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Golden Glow Effect */
@keyframes goldenGlow {
    0%, 100% {
        text-shadow: 
            0 0 10px var(--gold-accent),
            0 0 20px var(--gold-accent);
    }
    50% {
        text-shadow: 
            0 0 20px var(--gold-accent),
            0 0 30px var(--gold-accent),
            0 0 40px var(--gold-accent);
    }
}

/* Underline Tricolor Animation */
@keyframes tricolorUnderline {
    0% {
        background: linear-gradient(90deg, var(--saffron) 0%, var(--saffron) 100%);
    }
    33% {
        background: linear-gradient(90deg, var(--saffron) 0%, var(--white) 50%, var(--saffron) 100%);
    }
    66% {
        background: linear-gradient(90deg, var(--white) 0%, var(--green) 50%, var(--white) 100%);
    }
    100% {
        background: linear-gradient(90deg, var(--green) 0%, var(--green) 100%);
    }
}

/* Pulsating Saffron Glow */
@keyframes pulsateSaffron {
    0%, 100% {
        box-shadow: 
            0 0 5px var(--saffron),
            0 0 10px var(--saffron),
            0 0 15px var(--saffron);
    }
    50% {
        box-shadow: 
            0 0 10px var(--saffron),
            0 0 20px var(--saffron),
            0 0 30px var(--saffron),
            0 0 40px var(--saffron);
    }
}

/* Fade In Slide Up */
@keyframes fadeInSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scale Glow */
@keyframes scaleGlow {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(255, 153, 51, 0.3);
    }
    100% {
        transform: scale(1.05);
        box-shadow: 
            0 8px 24px rgba(255, 153, 51, 0.5),
            0 0 30px rgba(255, 153, 51, 0.4);
    }
}

/* ===================================
   1. ANNOUNCEMENT BAR
   ==================================== */
.announcement-bar {
    background: linear-gradient(
        90deg,
        var(--saffron) 0%,
        var(--saffron) 25%,
        var(--white) 25%,
        var(--white) 50%,
        var(--white) 50%,
        var(--white) 75%,
        var(--green) 75%,
        var(--green) 100%
    );
    background-size: 400% 100%;
    animation: tricolorWave 10s ease-in-out infinite;
    padding: 12px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--navy-blue);
}

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

.announcement-bar::after {
    content: '🇮🇳';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    animation: flagWave 2s ease-in-out infinite;
}

.announcement-bar p {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(0, 0, 128, 0.8);
    animation: pulse 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
    margin: 0;
}

/* ===================================
   2. HEADER SECTION
   ==================================== */
.header-main {
    background: linear-gradient(
        180deg,
        rgba(255, 153, 51, 0.08) 0%,
        rgba(255, 255, 255, 1) 50%,
        rgba(19, 136, 7, 0.08) 100%
    );
    border-bottom: 5px solid transparent;
    border-image: linear-gradient(
        90deg,
        var(--saffron) 0%,
        var(--white) 50%,
        var(--green) 100%
    ) 1;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 128, 0.1);
}

.header-main::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(
        90deg,
        var(--saffron) 0%,
        var(--saffron) 33%,
        var(--white) 33%,
        var(--white) 66%,
        var(--green) 66%,
        var(--green) 100%
    );
    animation: tricolorWave 6s ease-in-out infinite;
    background-size: 200% 100%;
}

/* Logo Styling */
.logo a {
    text-decoration: none;
    display: block;
}

.brand-name {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(
        135deg,
        var(--saffron) 0%,
        var(--navy-blue) 30%,
        var(--green) 60%,
        var(--gold-accent) 100%
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
    position: relative;
    text-shadow: none;
}

.brand-name::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--saffron),
        var(--green)
    );
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--navy-blue);
    font-style: italic;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(
        90deg,
        var(--saffron),
        var(--green)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-image {
    max-height: 60px;
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 128, 0.2));
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.logo-image:hover {
    transform: scale(1.05);
    filter: 
        drop-shadow(3px 3px 8px var(--saffron))
        drop-shadow(-3px -3px 8px var(--green));
    border-color: var(--gold-accent);
}

/* Search Bar */
.search-bar {
    position: relative;
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 128, 0.15);
    border-top: 3px solid var(--saffron);
    border-bottom: 3px solid var(--green);
    border-left: 2px solid var(--white);
    border-right: 2px solid var(--white);
    transition: var(--transition-base);
}

.search-bar:focus-within {
    box-shadow: 
        0 0 0 4px rgba(255, 153, 51, 0.3),
        0 6px 16px rgba(0, 0, 128, 0.2);
    animation: borderGlow 3s infinite;
}

.search-input {
    flex: 1;
    border: none;
    padding: 12px 20px;
    font-size: 0.95rem;
    outline: none;
    font-family: var(--font-primary);
    background: rgba(255, 255, 255, 0.95);
}

.search-input::placeholder {
    color: #999;
}

.btn-search {
    background: linear-gradient(
        135deg,
        var(--saffron) 0%,
        var(--green) 100%
    );
    border: none;
    padding: 12px 24px;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-search:hover {
    background: linear-gradient(
        135deg,
        var(--green) 0%,
        var(--saffron) 100%
    );
    transform: scale(1.05);
}

.btn-search i {
    font-size: 1.1rem;
    filter: drop-shadow(0 0 5px var(--gold-accent));
}

/* Header Icons */
.header-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
}

.icon-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--navy-blue);
    font-weight: 500;
    transition: var(--transition-base);
    position: relative;
    padding: 8px 12px;
    border-radius: 8px;
}

.icon-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--saffron),
        var(--green)
    );
    transform: translateX(-50%);
    transition: var(--transition-base);
}

.icon-link:hover::before {
    width: 100%;
}

.icon-link:hover {
    color: var(--saffron);
    transform: translateY(-2px);
}

.icon-link i {
    font-size: 1.5rem;
    transition: var(--transition-base);
}

.icon-link:hover i {
    filter: drop-shadow(0 0 8px var(--saffron))
            drop-shadow(0 0 12px var(--green));
    animation: glowPatriotic 2s ease-in-out infinite;
}

/* Dropdown Menu */
.dropdown-menu {
    border: 2px solid var(--saffron);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 128, 0.15);
    padding: 0.5rem 0;
    background: linear-gradient(
        180deg,
        rgba(255, 153, 51, 0.05),
        rgba(255, 255, 255, 1),
        rgba(19, 136, 7, 0.05)
    );
}

.dropdown-item {
    padding: 10px 20px;
    transition: var(--transition-base);
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(
        180deg,
        var(--saffron),
        var(--green)
    );
    transition: var(--transition-base);
}

.dropdown-item:hover::before {
    height: 100%;
}

.dropdown-item:hover {
    background: linear-gradient(
        90deg,
        rgba(255, 153, 51, 0.15),
        rgba(255, 255, 255, 0.8),
        rgba(19, 136, 7, 0.15)
    );
    color: var(--navy-blue);
    padding-left: 30px;
}

.dropdown-item i {
    color: var(--saffron);
    transition: var(--transition-base);
}

.dropdown-item:hover i {
    color: var(--green);
    transform: scale(1.2);
}

.dropdown-divider {
    border-top: 2px solid transparent;
    border-image: linear-gradient(
        90deg,
        var(--saffron),
        var(--white),
        var(--green)
    ) 1;
}

/* Cart & Wishlist Badges */
.wishlist-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(
        135deg,
        var(--saffron),
        var(--gold-accent)
    );
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    border: 2px solid var(--white);
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px var(--saffron);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(
        135deg,
        var(--green),
        var(--green-alt)
    );
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    border: 2px solid var(--white);
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px var(--green);
}

/* ===================================
   3. NAVIGATION BAR
   ==================================== */
.navbar-main {
    background: linear-gradient(
        135deg,
        rgba(255, 153, 51, 0.1) 0%,
        rgba(255, 255, 255, 0.98) 30%,
        rgba(255, 255, 255, 0.98) 70%,
        rgba(19, 136, 7, 0.1) 100%
    );
    border-bottom: 4px solid transparent;
    border-image: linear-gradient(
        90deg,
        var(--saffron) 0%,
        var(--white) 50%,
        var(--green) 100%
    ) 1;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 128, 0.1);
}

.navbar-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--saffron) 0%,
        var(--white) 50%,
        var(--green) 100%
    );
}

.navbar-main::after {
    content: '☸';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--navy-blue);
    animation: rotateChakra 20s linear infinite;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.nav-item {
    position: relative;
}

/* Ashoka Chakra Icon Before Special Items */
.nav-item:nth-child(2)::before,
.nav-item:nth-child(5)::before {
    content: '☸';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--navy-blue);
    font-size: 0.8rem;
    opacity: 0;
    transition: var(--transition-base);
}

.nav-item:nth-child(2):hover::before,
.nav-item:nth-child(5):hover::before {
    opacity: 1;
    left: -10px;
    animation: rotateChakra 3s linear infinite;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(255, 153, 51, 0.2)
    );
    transition: var(--transition-base);
    z-index: -1;
}

.nav-link:hover::before {
    height: 100%;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--saffron) 0%,
        var(--white) 50%,
        var(--green) 100%
    );
    background-size: 200% 100%;
    transform: translateX(-50%);
    transition: var(--transition-base);
    animation: tricolorUnderline 3s ease-in-out infinite;
}

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

.nav-link:hover {
    color: var(--saffron);
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--navy-blue);
    font-weight: 700;
    background: linear-gradient(
        135deg,
        rgba(255, 153, 51, 0.15),
        rgba(255, 255, 255, 0.5),
        rgba(19, 136, 7, 0.15)
    );
}

.nav-link i {
    font-size: 1.1rem;
    transition: var(--transition-base);
    color: var(--navy-blue);
}

.nav-link:hover i {
    color: var(--green);
    transform: scale(1.3) rotate(10deg);
}

/* Special Offers Link with Pulsating Glow */
.nav-link.special {
    background: linear-gradient(
        135deg,
        var(--saffron) 0%,
        var(--gold-accent) 50%,
        var(--saffron) 100%
    );
    background-size: 200% 200%;
    color: var(--white);
    font-weight: 700;
    animation: 
        pulsateSaffron 2s ease-in-out infinite,
        gradientShift 3s ease infinite;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-link.special:hover {
    transform: translateY(-4px) scale(1.05);
    color: var(--white);
    box-shadow: 
        0 8px 20px rgba(255, 153, 51, 0.6),
        0 0 40px rgba(255, 153, 51, 0.5);
}

.nav-link.special i {
    color: var(--white);
    filter: drop-shadow(0 0 5px var(--gold-accent));
}

.nav-link.special::after {
    display: none;
}

/* ===================================
   4. HERO BANNER CAROUSEL
   ==================================== */
.hero-banner {
    position: relative;
    overflow: hidden;
}

.carousel-item {
    height: 600px;
    position: relative;
}

.hero-content {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Tricolor Gradient Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 153, 51, 0.7) 0%,
        rgba(255, 255, 255, 0.3) 30%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.3) 70%,
        rgba(19, 136, 7, 0.7) 100%
    );
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: 1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 153, 51, 0.05) 2px,
            rgba(255, 153, 51, 0.05) 4px
        );
    animation: flagWave 3s ease-in-out infinite;
}

.hero-overlay::after {
    content: '☸';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 300px;
    color: rgba(0, 0, 128, 0.08);
    animation: rotateChakra 30s linear infinite;
    z-index: -1;
}

/* Hero Text Container */
.hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

/* Hero Subtitle */
.hero-subtitle {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--saffron);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    animation: goldenGlow 3s ease-in-out infinite;
    text-shadow: 
        0 0 10px var(--gold-accent),
        2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}

.hero-subtitle::before,
.hero-subtitle::after {
    content: '★';
    color: var(--gold-accent);
    margin: 0 15px;
    animation: pulse 2s ease-in-out infinite;
}

/* Hero Title with Tricolor Gradient */
.hero-title {
    font-family: var(--font-secondary);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(
        135deg,
        var(--saffron) 0%,
        var(--white) 25%,
        var(--navy-blue) 50%,
        var(--white) 75%,
        var(--green) 100%
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: tricolorShimmer 5s linear infinite;
    text-shadow: none;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.3));
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--saffron) 0%,
        var(--white) 50%,
        var(--green) 100%
    );
    border-radius: 2px;
}

/* Hero Description */
.hero-description {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.8;
    text-shadow: 
        2px 2px 6px rgba(0, 0, 0, 0.7),
        0 0 20px rgba(255, 153, 51, 0.3);
    background: linear-gradient(
        90deg,
        rgba(255, 153, 51, 0.1),
        rgba(255, 255, 255, 0.1),
        rgba(19, 136, 7, 0.1)
    );
    padding: 1rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

/* Hero Buttons Container */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   5. CAROUSEL CONTROLS & INDICATORS
   ==================================== */

/* Carousel Indicators (Dots) */
.carousel-indicators {
    bottom: 20px;
    margin-bottom: 0;
    z-index: 3;
}

.carousel-indicators [data-bs-target] {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background-color: transparent;
    opacity: 0.5;
    transition: var(--transition-base);
    margin: 0 5px;
    position: relative;
}

.carousel-indicators [data-bs-target]:nth-child(1) {
    background-color: var(--saffron);
}

.carousel-indicators [data-bs-target]:nth-child(2) {
    background-color: var(--white);
    border-color: var(--navy-blue);
}

.carousel-indicators [data-bs-target]:nth-child(3) {
    background-color: var(--green);
}

.carousel-indicators [data-bs-target].active {
    opacity: 1;
    transform: scale(1.3);
    box-shadow: 
        0 0 15px currentColor,
        0 0 25px currentColor;
}

.carousel-indicators [data-bs-target]:hover {
    opacity: 0.8;
    transform: scale(1.2);
}

/* Carousel Control Buttons - Ashoka Chakra Inspired */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--saffron),
        var(--green)
    );
    border: 3px solid var(--white);
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: var(--transition-base);
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 
        0 0 20px var(--saffron),
        0 0 30px var(--green),
        0 6px 20px rgba(0, 0, 0, 0.4);
    animation: borderGlow 2s infinite;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 30px;
    height: 30px;
    background-size: 100% 100%;
    filter: drop-shadow(0 0 5px var(--white));
}

.carousel-control-prev::before {
    content: '☸';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: var(--navy-blue);
    animation: rotateChakra 10s linear infinite reverse;
    z-index: -1;
}

.carousel-control-next::before {
    content: '☸';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: var(--navy-blue);
    animation: rotateChakra 10s linear infinite;
    z-index: -1;
}

/* ===================================
   6. BUTTONS & CALL-TO-ACTION
   ==================================== */

/* Primary Button - Saffron Gradient */
.btn-primary-custom {
    background: linear-gradient(
        135deg,
        var(--saffron) 0%,
        var(--gold-accent) 100%
    );
    background-size: 200% 200%;
    border: none;
    color: var(--white);
    padding: 14px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 6px 16px rgba(255, 153, 51, 0.4);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary-custom:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary-custom:hover {
    background: linear-gradient(
        135deg,
        var(--gold-accent) 0%,
        var(--saffron) 100%
    );
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 10px 25px rgba(255, 153, 51, 0.5),
        0 0 40px rgba(255, 215, 0, 0.4);
    color: var(--white);
    animation: scaleGlow 0.6s forwards;
}

.btn-primary-custom i {
    font-size: 1.3rem;
    color: var(--gold-accent);
    filter: drop-shadow(0 0 5px var(--white));
    transition: var(--transition-base);
}

.btn-primary-custom:hover i {
    transform: scale(1.2) rotate(15deg);
    color: var(--white);
}

/* Secondary Button - Green Gradient */
.btn-secondary-custom {
    background: linear-gradient(
        135deg,
        var(--green) 0%,
        var(--green-alt) 100%
    );
    background-size: 200% 200%;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 14px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 6px 16px rgba(19, 136, 7, 0.4);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary-custom::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: var(--transition-base);
}

.btn-secondary-custom:hover::before {
    left: 100%;
    transition: left 0.8s;
}

.btn-secondary-custom:hover {
    background: linear-gradient(
        135deg,
        var(--green-alt) 0%,
        var(--green) 100%
    );
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 10px 25px rgba(19, 136, 7, 0.6),
        0 0 40px rgba(19, 136, 7, 0.4);
    border-color: var(--gold-accent);
    color: var(--white);
    animation: flagWave 1s ease-in-out;
}

.btn-secondary-custom i {
    font-size: 1.3rem;
    color: var(--gold-accent);
    filter: drop-shadow(0 0 5px var(--white));
    transition: var(--transition-base);
}

.btn-secondary-custom:hover i {
    transform: scale(1.2) rotate(-15deg);
    color: var(--white);
}

/* ===================================
   7. DECORATIVE ASHOKA CHAKRA
   ==================================== */

/* CSS-only Ashoka Chakra */
.ashoka-chakra {
    width: 100px;
    height: 100px;
    border: 4px solid var(--navy-blue);
    border-radius: 50%;
    position: relative;
    margin: 2rem auto;
    animation: rotateChakra 20s linear infinite;
}

.ashoka-chakra::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25px;
    height: 25px;
    background-color: var(--navy-blue);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px var(--navy-blue);
}

/* Create 24 spokes */
.ashoka-chakra::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-conic-gradient(
            from 0deg,
            var(--navy-blue) 0deg 1deg,
            transparent 1deg 15deg
        );
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

/* ===================================
   8. TRICOLOR DECORATIVE ELEMENTS
   ==================================== */

/* Patriotic Ribbon */
.patriotic-ribbon {
    position: relative;
    padding: 15px 40px;
    background: linear-gradient(
        90deg,
        var(--saffron) 0%,
        var(--saffron) 33%,
        var(--white) 33%,
        var(--white) 66%,
        var(--green) 66%,
        var(--green) 100%
    );
    color: var(--navy-blue);
    font-weight: 800;
    text-align: center;
    margin: 30px auto;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.patriotic-ribbon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 24px 20px 24px 0;
    border-color: transparent var(--saffron) transparent transparent;
}

.patriotic-ribbon::after {
    content: '';
    position: absolute;
    top: 0;
    right: -20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 24px 0 24px 20px;
    border-color: transparent transparent transparent var(--green);
}

/* Tricolor Corner Decoration */
.tricolor-corner-tl {
    position: relative;
}

.tricolor-corner-tl::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 50px 0 0;
    border-color: var(--saffron) transparent transparent transparent;
    z-index: 1;
}

.tricolor-corner-tl::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 50px 50px 0;
    border-color: transparent var(--green) transparent transparent;
    z-index: 1;
}

/* Tricolor Divider */
.tricolor-divider {
    width: 100%;
    height: 5px;
    background: linear-gradient(
        90deg,
        var(--saffron) 0%,
        var(--saffron) 33%,
        var(--white) 33%,
        var(--white) 66%,
        var(--green) 66%,
        var(--green) 100%
    );
    margin: 2rem 0;
    position: relative;
}

.tricolor-divider::before {
    content: '☸';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    color: var(--navy-blue);
    padding: 5px 10px;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 0 15px rgba(0, 0, 128, 0.5);
}

/* ===================================
   9. RESPONSIVE DESIGN
   ==================================== */

/* Large Desktop */
@media (min-width: 1400px) {
    .carousel-item {
        height: 700px;
    }
    
    .hero-title {
        font-size: 5rem;
    }
}

/* Desktop */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .carousel-item {
        height: 550px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .nav-menu {
        gap: 0.25rem;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .header-icons {
        gap: 1rem;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
    
    .carousel-item {
        height: 500px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .announcement-bar p {
        font-size: 0.85rem;
        padding: 0 10px;
    }
    
    .announcement-bar::after {
        font-size: 1.2rem;
        left: 10px;
    }
    
    .nav-menu {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .nav-menu::-webkit-scrollbar {
        display: none;
    }
    
    .nav-link {
        padding: 0.75rem 0.85rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .header-icons {
        gap: 0.75rem;
    }
    
    .icon-link span {
        display: none !important;
    }
    
    .brand-name {
        font-size: 1.25rem;
    }
    
    .brand-tagline {
        font-size: 0.65rem;
    }
    
    .search-input {
        font-size: 0.85rem;
        padding: 10px 15px;
    }
    
    .btn-search {
        padding: 10px 18px;
    }
    
    .carousel-item {
        height: 450px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    
    .hero-description {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 12px 28px;
        font-size: 1rem;
        width: 100%;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
    
    .carousel-indicators [data-bs-target] {
        width: 12px;
        height: 12px;
    }
    
    .navbar-main::after {
        font-size: 1.2rem;
        right: 10px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .announcement-bar {
        padding: 8px 0;
    }
    
    .announcement-bar p {
        font-size: 0.75rem;
    }
    
    .nav-link {
        padding: 0.6rem 0.7rem;
        font-size: 0.8rem;
    }
    
    .icon-link i {
        font-size: 1.3rem;
    }
    
    .carousel-item {
        height: 400px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 10px 24px;
        font-size: 0.95rem;
    }
    
    .hero-overlay::after {
        font-size: 150px;
    }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
    .carousel-item {
        height: 350px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-text {
        padding: 1rem;
    }
}

/* ===================================
   10. UTILITY CLASSES
   ==================================== */

.bg-tricolor-gradient {
    background: linear-gradient(
        135deg,
        var(--saffron) 0%,
        var(--white) 50%,
        var(--green) 100%
    );
}

.bg-saffron {
    background-color: var(--saffron);
}

.bg-green {
    background-color: var(--green);
}

.bg-navy {
    background-color: var(--navy-blue);
}

.text-saffron {
    color: var(--saffron);
}

.text-green {
    color: var(--green);
}

.text-navy {
    color: var(--navy-blue);
}

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

.shadow-patriotic {
    box-shadow: 
        0 4px 12px rgba(255, 153, 51, 0.2),
        0 8px 24px rgba(19, 136, 7, 0.15);
}

.hover-lift {
    transition: var(--transition-base);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 8px 20px rgba(255, 153, 51, 0.25),
        0 12px 32px rgba(19, 136, 7, 0.2);
}

/* ===================================
   11. ACCESSIBILITY & PERFORMANCE
   ==================================== */

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
.nav-link:focus {
    outline: 3px solid var(--saffron);
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(255, 153, 51, 0.2);
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .ashoka-chakra,
    .navbar-main::after,
    .announcement-bar {
        animation: none !important;
    }
}

/* ===================================
   12. BROWSER COMPATIBILITY
   ==================================== */

/* Firefox specific fixes */
@-moz-document url-prefix() {
    .nav-menu {
        scrollbar-width: none;
    }
    
    .hero-title {
        background-clip: text;
        -moz-background-clip: text;
    }
}

/* Safari specific fixes */
@supports (-webkit-appearance: none) {
    .search-input {
        -webkit-appearance: none;
    }
    
    .hero-title {
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

/* Edge specific fixes */
@supports (-ms-ime-align: auto) {
    .header-main::after,
    .navbar-main {
        border-image-slice: 1;
    }
}

/* GPU Acceleration for better performance */
.carousel-item,
.hero-overlay,
.ashoka-chakra,
.carousel-control-prev::before,
.carousel-control-next::before {
    will-change: transform;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* ===================================
   13. PRINT STYLES
   ==================================== */
@media print {
    .announcement-bar,
    .navbar-main,
    .header-icons,
    .carousel-control-prev,
    .carousel-control-next,
    .carousel-indicators {
        display: none !important;
    }
    
    * {
        animation: none !important;
        transition: none !important;
    }
    
    .hero-title {
        -webkit-text-fill-color: var(--navy-blue);
        color: var(--navy-blue);
    }
}

/* ===================================
   END OF REPUBLIC DAY 2026 THEME
   Happy 77th Republic Day! 🇮🇳
   ==================================== */




/* ===================================
   MANOVASTRA - REPUBLIC DAY 2026 THEME
   Featured Categories & Best Sellers Sections
   Product Cards & Category Cards Styling
   ==================================== */

/* ===================================
   KEYFRAME ANIMATIONS
   ==================================== */

/* Tricolor Border Animation */
@keyframes tricolorBorderGlow {
    0%, 100% {
        border-color: #FF9933;
        box-shadow: 0 0 15px rgba(255, 153, 51, 0.6);
    }
    33% {
        border-color: #FFFFFF;
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    }
    66% {
        border-color: #138807;
        box-shadow: 0 0 15px rgba(19, 136, 7, 0.6);
    }
}

/* Patriotic Glow Pulse for Badges */
@keyframes patrioticGlowPulse {
    0%, 100% {
        box-shadow: 
            0 0 10px rgba(255, 153, 51, 0.5),
            0 0 20px rgba(255, 153, 51, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 
            0 0 20px rgba(255, 153, 51, 0.8),
            0 0 30px rgba(255, 153, 51, 0.5),
            0 0 40px rgba(255, 153, 51, 0.3);
        transform: scale(1.02);
    }
}

/* Shimmer Effect for Sale Badges */
@keyframes saleShimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Ashoka Chakra Rotation */
@keyframes rotateChakra {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Tricolor Underline Animation */
@keyframes tricolorUnderlineSlide {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Wishlist Heart Pulse */
@keyframes heartPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Ripple Effect */
@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* Button Fill Animation */
@keyframes fillSaffron {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

/* Golden Glow */
@keyframes goldenGlow {
    0%, 100% {
        text-shadow: 
            0 0 5px #FFD700,
            0 0 10px #FFD700;
    }
    50% {
        text-shadow: 
            0 0 10px #FFD700,
            0 0 20px #FFD700,
            0 0 30px #FFD700;
    }
}

/* ===================================
   1. SECTION HEADERS
   ==================================== */

.section-header {
    margin-bottom: 3rem;
    position: relative;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000080;
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

/* Tricolor Gradient Underline */
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(
        90deg,
        #FF9933 0%,
        #FF9933 33%,
        #FFFFFF 33%,
        #FFFFFF 66%,
        #138807 66%,
        #138807 100%
    );
    background-size: 200% 100%;
    animation: tricolorUnderlineSlide 4s linear infinite;
    border-radius: 2px;
}

/* Decorative Ashoka Chakra Elements */
.section-title::before {
    content: '☸';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #000080;
    opacity: 0.3;
    animation: rotateChakra 20s linear infinite;
}

.section-header::after {
    content: '☸';
    position: absolute;
    right: -40px;
    top: 25%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #000080;
    opacity: 0.3;
    animation: rotateChakra 20s linear infinite reverse;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #FF9933;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(255, 153, 51, 0.3);
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* ===================================
   2. FEATURED CATEGORIES SECTION
   ==================================== */

.featured-categories {
    position: relative;
    background: linear-gradient(
        180deg,
        rgba(255, 153, 51, 0.02) 0%,
        rgba(255, 255, 255, 1) 50%,
        rgba(19, 136, 7, 0.02) 100%
    );
}

/* ===================================
   3. CATEGORY CARDS
   ==================================== */

.category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 2px 4px rgba(255, 153, 51, 0.1);
    border: 2px solid transparent;
}

/* Tricolor Border on Hover */
.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    border: 2px solid #FF9933;
    box-shadow: 
        0 12px 28px rgba(0, 0, 0, 0.15),
        0 0 20px rgba(255, 153, 51, 0.4),
        0 0 30px rgba(19, 136, 7, 0.2);
    animation: tricolorBorderGlow 3s ease-in-out infinite;
}

.category-image {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    background: #f8f9fa;
}

.category-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Image Zoom on Hover */
.category-card:hover .category-image img {
    transform: scale(1.15);
}

/* Category Placeholder with Tricolor Gradient */
.category-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        #FF9933 0%,
        #FFD700 50%,
        #138807 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
}

/* Category Overlay with Patriotic Gradient */
.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 153, 51, 0.85) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(19, 136, 7, 0.85) 100%
    );
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

/* Shop Now Button - Saffron to Green Gradient */
.btn-category {
    background: linear-gradient(
        135deg,
        #FF9933 0%,
        #138807 100%
    );
    color: #FFFFFF;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid #FFFFFF;
    display: inline-block;
}

.btn-category:hover {
    background: linear-gradient(
        135deg,
        #138807 0%,
        #FF9933 100%
    );
    transform: scale(1.1);
    box-shadow: 
        0 6px 20px rgba(255, 153, 51, 0.5),
        0 0 30px rgba(19, 136, 7, 0.4);
    color: #FFFFFF;
}

/* Category Title */
.category-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #138807;
    text-align: center;
    margin: 1rem 0;
    padding: 0 0.5rem;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.category-card:hover .category-title {
    color: #FF9933;
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
    animation: goldenGlow 2s ease-in-out infinite;
}

/* ===================================
   4. BEST SELLERS SECTION
   ==================================== */

.best-sellers {
    position: relative;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 249, 250, 1) 100%
    );
}

/* Subtle Ashoka Chakra Watermark Pattern */
.best-sellers::before {
    content: '☸';
    position: absolute;
    top: 10%;
    right: 5%;
    font-size: 300px;
    color: rgba(0, 0, 128, 0.02);
    animation: rotateChakra 40s linear infinite;
    pointer-events: none;
}

.best-sellers::after {
    content: '☸';
    position: absolute;
    bottom: 10%;
    left: 5%;
    font-size: 250px;
    color: rgba(255, 153, 51, 0.02);
    animation: rotateChakra 35s linear infinite reverse;
    pointer-events: none;
}

/* ===================================
   5. PRODUCT CARDS
   ==================================== */

.product-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(255, 153, 51, 0.05);
    border-top: 3px solid transparent;
    border-image: linear-gradient(
        90deg,
        #FF9933 0%,
        #FFFFFF 50%,
        #138807 100%
    ) 1;
    border-image-slice: 1 0 0 0;
}

/* Tricolor Top Border Accent */
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        #FF9933 0%,
        #FF9933 33%,
        #FFFFFF 33%,
        #FFFFFF 66%,
        #138807 66%,
        #138807 100%
    );
    z-index: 2;
}

/* Hover Elevation Effect */
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.15),
        0 0 20px rgba(255, 153, 51, 0.25),
        0 0 30px rgba(19, 136, 7, 0.15);
}

/* Tricolor Glow on Hover */
.product-card:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    box-shadow: 
        inset 0 0 20px rgba(255, 153, 51, 0.1),
        inset 0 0 40px rgba(19, 136, 7, 0.05);
    pointer-events: none;
    z-index: 1;
}

/* ===================================
   6. PRODUCT BADGES
   ==================================== */

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* Sale Badge - Saffron Background */
.product-badge.sale {
    background: linear-gradient(
        135deg,
        #FF9933 0%,
        #FFD700 100%
    );
    background-size: 200% 200%;
    color: #FFFFFF;
    animation: 
        patrioticGlowPulse 2s ease-in-out infinite,
        saleShimmer 3s linear infinite;
    border: 2px solid #FFFFFF;
}

/* Bestseller Badge - Green Background with Gold Text */
.product-badge.bestseller {
    background: linear-gradient(
        135deg,
        #138807 0%,
        #128807 100%
    );
    color: #FFD700;
    border: 2px solid #FFD700;
    animation: patrioticGlowPulse 2.5s ease-in-out infinite;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Other Badges - Navy Blue with Tricolor Border */
.product-badge:not(.sale):not(.bestseller) {
    background: #000080;
    color: #FFFFFF;
    border: 2px solid transparent;
    border-image: linear-gradient(
        90deg,
        #FF9933,
        #FFFFFF,
        #138807
    ) 1;
}

/* Wishlist Button */
.product-wishlist {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #FF9933;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 153, 51, 0.3);
}

.product-wishlist i {
    font-size: 1.2rem;
    color: #FF9933;
    transition: all 0.3s ease;
}

/* Wishlist Hover - Fill with Orange-to-Red Gradient */
.product-wishlist:hover {
    transform: scale(1.1);
    background: linear-gradient(
        135deg,
        #FF9933,
        #FF6633
    );
    border-color: #FFD700;
    box-shadow: 
        0 4px 12px rgba(255, 153, 51, 0.5),
        0 0 20px rgba(255, 153, 51, 0.3);
}

.product-wishlist:hover i {
    color: #FFFFFF;
}

/* Active/Saved Wishlist - Solid Saffron Fill */
.product-wishlist.active,
.product-wishlist.saved {
    background: #FF9933;
    border-color: #FFD700;
}

.product-wishlist.active i,
.product-wishlist.saved i {
    color: #FFFFFF;
    animation: heartPulse 0.6s ease;
}

/* ===================================
   7. PRODUCT IMAGE SECTION
   ==================================== */

.product-image {
    position: relative;
    width: 100%;
    padding-bottom: 125%;
    overflow: hidden;
    background: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Image Zoom on Hover */
.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Tricolor Border on Image Hover */
.product-card:hover .product-image {
    border: 2px solid transparent;
    border-image: linear-gradient(
        135deg,
        #FF9933,
        #FFFFFF,
        #138807
    ) 1;
}

/* Product Placeholder - Saffron to Green Gradient */
.product-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        #FF9933 0%,
        #FFD700 50%,
        #138807 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-align: center;
    padding: 1rem;
}

.product-placeholder i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.product-placeholder p {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

/* Overlay on Image Hover */
.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 153, 51, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(19, 136, 7, 0.15) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

/* ===================================
   8. PRODUCT INFO SECTION
   ==================================== */

.product-info {
    padding: 1.25rem;
}

/* Product Name */
.product-name {
    font-size: 1rem;
    font-weight: 600;
    color: #000080;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
    position: relative;
}

/* Tricolor Gradient Underline on Hover */
.product-name::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        #FF9933 0%,
        #FFFFFF 50%,
        #138807 100%
    );
    transition: width 0.3s ease;
}

.product-card:hover .product-name {
    color: #FF9933;
}

.product-card:hover .product-name::after {
    width: 100%;
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

/* Filled Stars - Golden */
.product-rating .bi-star-fill {
    color: #FFD700;
    filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.5));
}

/* Half Stars - Gold-to-White Gradient */
.product-rating .bi-star-half {
    background: linear-gradient(
        90deg,
        #FFD700 0%,
        #FFD700 50%,
        #FFFFFF 50%,
        #FFFFFF 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.3));
}

/* Empty Stars - Light Gray Outline */
.product-rating .bi-star {
    color: #d1d5db;
}

/* Rating Count */
.rating-count {
    font-size: 0.8rem;
    color: #138807;
    margin-left: 5px;
    font-weight: 500;
}

/* ===================================
   9. PRICING DISPLAY
   ==================================== */

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

/* Current Price - Bold Saffron */
.price-current {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FF9933;
    font-family: 'Poppins', sans-serif;
}

/* Original Price - Strikethrough Gray */
.price-original {
    font-size: 1rem;
    color: #9ca3af;
    text-decoration: line-through;
    font-weight: 400;
}

/* Discount Percentage - Small Green */
.price-discount {
    font-size: 0.85rem;
    color: #138807;
    font-weight: 600;
    background: rgba(19, 136, 7, 0.1);
    padding: 2px 8px;
    border-radius: 12px;
}

/* Savings Badge */
.savings-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(
        135deg,
        #138807,
        #128807
    );
    color: #FFFFFF;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    animation: patrioticGlowPulse 3s ease-in-out infinite;
}

.savings-badge i {
    color: #FFD700;
    font-size: 0.85rem;
}

/* ===================================
   10. ADD TO CART BUTTON
   ==================================== */

.btn-add-cart {
    width: 100%;
    background: linear-gradient(
        135deg,
        #138807 0%,
        #128807 100%
    );
    color: #FFFFFF;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn-add-cart i {
    font-size: 1.1rem;
    color: #FFD700;
    transition: all 0.3s ease;
}

/* Ripple Effect on Click */
.btn-add-cart::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-add-cart:active::before {
    width: 300px;
    height: 300px;
    animation: ripple 0.6s ease-out;
}

/* Hover Effect - Saffron Gradient with Scale */
.btn-add-cart:hover {
    background: linear-gradient(
        135deg,
        #FF9933 0%,
        #FFD700 100%
    );
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(255, 153, 51, 0.4),
        0 0 30px rgba(255, 153, 51, 0.2);
}

.btn-add-cart:hover i {
    color: #FFFFFF;
    transform: scale(1.2) rotate(10deg);
}

/* ===================================
   11. VIEW ALL BUTTON
   ==================================== */

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: transparent;
    color: #FF9933;
    border: 3px solid transparent;
    border-image: linear-gradient(
        90deg,
        #FF9933 0%,
        #FFFFFF 50%,
        #138807 100%
    ) 1;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* Saffron Fill Animation (Left to Right) */
.btn-view-all::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(
        135deg,
        #FF9933,
        #FFD700
    );
    transition: width 0.4s ease;
    z-index: -1;
    border-radius: 50px;
}

.btn-view-all:hover::before {
    width: 100%;
}

.btn-view-all:hover {
    color: #FFFFFF;
    border-color: #FFD700;
    box-shadow: 
        0 6px 20px rgba(255, 153, 51, 0.4),
        0 0 30px rgba(255, 153, 51, 0.3);
    transform: translateY(-3px);
}

/* Arrow Icon Color Transition */
.btn-view-all i {
    color: #138807;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.btn-view-all:hover i {
    color: #FFFFFF;
    transform: translateX(5px);
}

/* Patriotic Glow on Hover */
.btn-view-all:hover {
    animation: patrioticGlowPulse 2s ease-in-out infinite;
}

/* ===================================
   12. RESPONSIVE DESIGN
   ==================================== */

/* Large Devices (Desktop) */
@media (min-width: 992px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .category-card {
        margin-bottom: 0;
    }
}

/* Medium Devices (Tablet) */
@media (max-width: 991px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-title::before,
    .section-header::after {
        display: none;
    }
    
    .category-title {
        font-size: 1rem;
    }
    
    .product-name {
        font-size: 0.95rem;
    }
    
    .price-current {
        font-size: 1.2rem;
    }
}

/* Small Devices (Mobile) */
@media (max-width: 767px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .category-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .product-card:hover {
        transform: translateY(-5px);
    }
    
    .btn-category {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .product-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
    
    .product-wishlist {
        width: 35px;
        height: 35px;
        top: 10px;
        right: 10px;
    }
    
    .product-wishlist i {
        font-size: 1rem;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .product-name {
        font-size: 0.9rem;
    }
    
    .price-current {
        font-size: 1.1rem;
    }
    
    .price-original {
        font-size: 0.85rem;
    }
    
    .btn-add-cart {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .btn-view-all {
        padding: 12px 28px;
        font-size: 1rem;
    }
    
    /* Reduce animation complexity on mobile */
    .category-card,
    .product-card {
        animation: none;
    }
    
    .best-sellers::before,
    .best-sellers::after {
        font-size: 150px;
    }
}

/* Extra Small Devices */
@media (max-width: 575px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
    }
    
    .category-title {
        font-size: 0.85rem;
        margin: 0.75rem 0;
    }
    
    .product-badge {
        top: 10px;
        left: 10px;
        font-size: 0.65rem;
        padding: 3px 8px;
    }
    
    .product-rating {
        font-size: 0.8rem;
    }
    
    .rating-count {
        font-size: 0.7rem;
    }
    
    .price-current {
        font-size: 1rem;
    }
    
    .savings-badge {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
}

/* ===================================
   13. ACCESSIBILITY & PERFORMANCE
   ==================================== */

/* Focus States for Keyboard Navigation */
.category-card:focus-within,
.product-card:focus-within,
.btn-category:focus,
.btn-add-cart:focus,
.btn-view-all:focus,
.product-wishlist:focus {
    outline: 3px solid #FF9933;
    outline-offset: 3px;
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* GPU Acceleration for Smooth Animations */
.category-card,
.product-card,
.btn-category,
.btn-add-cart,
.product-image img {
    will-change: transform;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* ===================================
   14. PRINT STYLES
   ==================================== */

@media print {
    .product-wishlist,
    .btn-add-cart,
    .btn-view-all,
    .category-overlay,
    .product-badge {
        display: none !important;
    }
    
    .product-card,
    .category-card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        animation: none !important;
    }
    
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* ===================================
   END OF FEATURED CATEGORIES & BEST SELLERS
   Happy 77th Republic Day 2026! 🇮🇳
   ==================================== */



/* ===================================
   MANOVASTRA - REPUBLIC DAY 2026 THEME
   Festival Offer Banner, Why Choose & Newsletter Sections
   ==================================== */

/* ===================================
   KEYFRAME ANIMATIONS
   ==================================== */

/* Float Up-Down Animation for Floating Elements */
@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-20px) translateX(5px);
    }
    50% {
        transform: translateY(-10px) translateX(-5px);
    }
    75% {
        transform: translateY(-25px) translateX(3px);
    }
}

/* Rotate Float Animation */
@keyframes rotateFloat {
    0% {
        transform: rotate(0deg) translateX(0) translateY(0);
    }
    25% {
        transform: rotate(90deg) translateX(10px) translateY(-10px);
    }
    50% {
        transform: rotate(180deg) translateX(0) translateY(-15px);
    }
    75% {
        transform: rotate(270deg) translateX(-10px) translateY(-10px);
    }
    100% {
        transform: rotate(360deg) translateX(0) translateY(0);
    }
}

/* Pulse Glow with Tricolor Shadow */
@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 15px rgba(255, 153, 51, 0.6),
            0 0 25px rgba(255, 153, 51, 0.4);
    }
    33% {
        transform: scale(1.05);
        box-shadow: 
            0 0 20px rgba(255, 255, 255, 0.6),
            0 0 30px rgba(255, 255, 255, 0.4);
    }
    66% {
        transform: scale(1.03);
        box-shadow: 
            0 0 20px rgba(19, 136, 7, 0.6),
            0 0 30px rgba(19, 136, 7, 0.4);
    }
}

/* Twinkle Star Effect */
@keyframes twinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 5px #FFD700);
    }
    25% {
        opacity: 0.5;
        transform: scale(0.8) rotate(45deg);
        filter: drop-shadow(0 0 10px #FFD700);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) rotate(90deg);
        filter: drop-shadow(0 0 15px #FFD700);
    }
    75% {
        opacity: 0.7;
        transform: scale(0.9) rotate(135deg);
        filter: drop-shadow(0 0 8px #FFD700);
    }
}

/* Patriotic Glow Alternating */
@keyframes patrioticGlow {
    0%, 100% {
        text-shadow: 
            0 0 15px rgba(255, 153, 51, 0.8),
            0 0 25px rgba(255, 153, 51, 0.6),
            0 0 35px rgba(255, 153, 51, 0.4);
        filter: drop-shadow(0 0 10px #FF9933);
    }
    50% {
        text-shadow: 
            0 0 15px rgba(19, 136, 7, 0.8),
            0 0 25px rgba(19, 136, 7, 0.6),
            0 0 35px rgba(19, 136, 7, 0.4);
        filter: drop-shadow(0 0 10px #138807);
    }
}

/* Tricolor Border Rainbow Animation */
@keyframes borderRainbow {
    0%, 100% {
        border-color: #FF9933;
        box-shadow: 
            0 0 15px rgba(255, 153, 51, 0.5),
            0 4px 20px rgba(255, 153, 51, 0.3);
    }
    33% {
        border-color: #FFFFFF;
        box-shadow: 
            0 0 15px rgba(255, 255, 255, 0.5),
            0 4px 20px rgba(255, 255, 255, 0.3);
    }
    66% {
        border-color: #138807;
        box-shadow: 
            0 0 15px rgba(19, 136, 7, 0.5),
            0 4px 20px rgba(19, 136, 7, 0.3);
    }
}

/* Icon Rotate 360 */
@keyframes iconRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Ashoka Chakra Rotation */
@keyframes rotateChakra {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Dashed Border Animation */
@keyframes dashedBorderMove {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: 100;
    }
}

/* Ripple Effect */
@keyframes rippleEffect {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* Gradient Shift */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Firework Burst */
@keyframes fireworkBurst {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.5) rotate(180deg);
        opacity: 1;
    }
    100% {
        transform: scale(0) rotate(360deg);
        opacity: 0;
    }
}

/* Envelope Pulse */
@keyframes envelopePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* ===================================
   1. FESTIVAL OFFER BANNER
   ==================================== */

.festival-banner {
    position: relative;
    overflow: hidden;
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
}

/* Tricolor Overlay Effect */
.festival-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 153, 51, 0.15) 0%,
        rgba(255, 255, 255, 0.1) 30%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.1) 70%,
        rgba(19, 136, 7, 0.15) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Republic Day Decorative Corner Ribbon */
.festival-banner::after {
    content: '🇮🇳';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    opacity: 0.2;
    animation: floatUpDown 4s ease-in-out infinite;
    z-index: 1;
}

.festival-content {
    position: relative;
    z-index: 2;
}

/* Festival Tag - Saffron Background */
.festival-tag {
    display: inline-block;
    background: linear-gradient(
        135deg,
        #FF9933 0%,
        #FFD700 100%
    );
    color: #FFFFFF;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    box-shadow: 
        0 4px 15px rgba(255, 153, 51, 0.4),
        0 0 20px rgba(255, 153, 51, 0.3);
    position: relative;
}

.festival-tag::before {
    content: '☸ ';
    margin-right: 5px;
    animation: rotateChakra 5s linear infinite;
    display: inline-block;
}

/* Festival Title - Tricolor Gradient Text */
.festival-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(
        135deg,
        #FF9933 0%,
        #000080 30%,
        #138807 60%,
        #FFD700 100%
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
    margin-bottom: 1rem;
    line-height: 1.2;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

/* Festival Description - Green Accent */
.festival-description {
    font-size: 1.2rem;
    color: #138807;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(19, 136, 7, 0.2);
}

/* Festival Offer Container */
.festival-offer {
    background: linear-gradient(
        135deg,
        rgba(255, 153, 51, 0.1),
        rgba(255, 255, 255, 0.2),
        rgba(19, 136, 7, 0.1)
    );
    padding: 1.5rem 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    display: inline-block;
    border: 3px solid transparent;
    border-image: linear-gradient(
        90deg,
        #FF9933,
        #FFFFFF,
        #138807
    ) 1;
    animation: pulseGlow 3s ease-in-out infinite;
    position: relative;
}

.festival-offer::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(
        90deg,
        #FF9933 0%,
        #FFFFFF 50%,
        #138807 100%
    );
    border-radius: 15px;
    z-index: -1;
}

/* Offer Text - Alternating Colors */
.offer-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FF9933;
    margin: 0 10px;
}

.offer-text:last-child {
    color: #138807;
}

/* Offer Percentage - Gold with Patriotic Glow */
.offer-percentage {
    font-size: 3.5rem;
    font-weight: 900;
    color: #FFD700;
    margin: 0 15px;
    display: inline-block;
    animation: patrioticGlow 3s ease-in-out infinite;
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 0.8),
        2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Festival Code Display */
.festival-code {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1.5rem;
}

/* Coupon Code - Tricolor Border */
.coupon-code {
    background: #FFFFFF;
    color: #000080;
    padding: 10px 20px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 10px;
    border-top: 3px dashed #FF9933;
    border-left: 3px dashed #FFFFFF;
    border-right: 3px dashed #138807;
    border-bottom: 3px dashed #000080;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15),
        0 0 20px rgba(255, 153, 51, 0.2);
    animation: borderRainbow 4s ease-in-out infinite;
    letter-spacing: 2px;
}

/* Copy Code Button - Saffron Hover */
.btn-copy-code {
    background: transparent;
    border: 2px solid #FF9933;
    color: #FF9933;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.btn-copy-code:hover {
    background: #FF9933;
    color: #FFFFFF;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.4);
}

.btn-copy-code i {
    font-size: 1.1rem;
}

/* Festival Button - Green to Saffron Gradient */
.btn-festival {
    background: linear-gradient(
        135deg,
        #138807 0%,
        #128807 100%
    );
    background-size: 200% 200%;
    color: #FFFFFF;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 
        0 6px 20px rgba(19, 136, 7, 0.4),
        0 0 30px rgba(19, 136, 7, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-festival::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-festival:hover::before {
    width: 400px;
    height: 400px;
}

.btn-festival:hover {
    background: linear-gradient(
        135deg,
        #FF9933 0%,
        #FFD700 100%
    );
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 10px 30px rgba(255, 153, 51, 0.5),
        0 0 40px rgba(255, 153, 51, 0.3);
    color: #FFFFFF;
}

.btn-festival i {
    font-size: 1.4rem;
    color: #FFD700;
    transition: all 0.3s ease;
}

.btn-festival:hover i {
    color: #FFFFFF;
    transform: rotate(15deg) scale(1.2);
}

/* ===================================
   2. FESTIVAL BANNER IMAGE & FLOATING ELEMENTS
   ==================================== */

.festival-image {
    position: relative;
    padding: 20px;
}

.festival-img {
    border-radius: 20px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(255, 153, 51, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 4px solid transparent;
}

/* Tricolor Border Glow on Hover */
.festival-image:hover .festival-img {
    border: 4px solid #FF9933;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(255, 153, 51, 0.5),
        0 0 60px rgba(19, 136, 7, 0.3);
    animation: borderRainbow 3s ease-in-out infinite;
    transform: scale(1.02);
}

.festival-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(
        135deg,
        #FF9933 0%,
        #FFD700 50%,
        #138807 100%
    );
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Floating Elements - Republic Day Themed */
.floating-element {
    position: absolute;
    font-size: 3rem;
    pointer-events: none;
    z-index: 5;
}

/* Element 1: Sparkles - Float Up-Down with Saffron Glow */
.element-1 {
    top: 10%;
    left: 10%;
    animation: floatUpDown 4s ease-in-out infinite;
    filter: drop-shadow(0 0 15px #FF9933);
}

/* Element 2: Confetti - Rotate with Green Shadow */
.element-2 {
    top: 20%;
    right: 15%;
    animation: rotateFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 0 15px #138807);
}

/* Element 3: Diya Lamp - Pulse with Orange Glow */
.element-3 {
    bottom: 25%;
    left: 5%;
    animation: pulseGlow 3s ease-in-out infinite;
    font-size: 2.5rem;
}

/* Element 4: Star - Twinkle with Gold Sparkle */
.element-4 {
    bottom: 15%;
    right: 10%;
    animation: twinkle 2.5s ease-in-out infinite;
    font-size: 2rem;
}

/* ===================================
   3. WHY CHOOSE SECTION
   ==================================== */

.why-choose {
    position: relative;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(248, 249, 250, 1) 100%
    );
    overflow: hidden;
}

/* Subtle Ashoka Chakra Watermark */
.why-choose::before {
    content: '☸';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 600px;
    color: rgba(0, 0, 128, 0.02);
    animation: rotateChakra 60s linear infinite;
    pointer-events: none;
    z-index: 0;
}

/* Tricolor Corner Ribbons */
.why-choose::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 80px 80px 0 0;
    border-color: #FF9933 transparent transparent transparent;
    opacity: 0.3;
    z-index: 0;
}

.why-choose .section-header {
    position: relative;
    z-index: 1;
}

/* Patriotic Gradient Underline */
.why-choose .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 5px;
    background: linear-gradient(
        90deg,
        #FF9933 0%,
        #FF9933 33%,
        #FFFFFF 33%,
        #FFFFFF 66%,
        #138807 66%,
        #138807 100%
    );
    border-radius: 3px;
    animation: gradientShift 4s ease infinite;
    background-size: 200% 100%;
}

/* ===================================
   4. FEATURE CARDS
   ==================================== */

.feature-card {
    background: #FFFFFF;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 2px 4px rgba(0, 0, 0, 0.05);
    border-top: 4px solid transparent;
    position: relative;
    z-index: 1;
}

/* Tricolor Top Border Accent Strip */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        #FF9933 0%,
        #FF9933 33%,
        #FFFFFF 33%,
        #FFFFFF 66%,
        #138807 66%,
        #138807 100%
    );
    border-radius: 15px 15px 0 0;
}

/* Hover Elevation with Tricolor Box-Shadow */
.feature-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.15),
        0 0 25px rgba(255, 153, 51, 0.3),
        0 0 35px rgba(19, 136, 7, 0.2);
    animation: borderRainbow 3s ease-in-out infinite;
}

/* ===================================
   5. FEATURE ICON CONTAINER
   ==================================== */

.feature-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon i {
    font-size: 3rem;
    color: #FFFFFF;
    transition: all 0.5s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Rotate 360° with Green Glow on Hover */
.feature-card:hover .feature-icon {
    animation: iconRotate 1s ease-in-out;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(19, 136, 7, 0.5);
}

.feature-card:hover .feature-icon i {
    transform: scale(1.2);
}

/* ===================================
   6. FEATURE ICONS SPECIFIC STYLING
   ==================================== */

/* Premium Quality - Saffron Gradient */
.feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(
        135deg,
        #FF9933 0%,
        #FFD700 100%
    );
}

/* Authentic Handloom - Gold Gradient */
.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(
        135deg,
        #FFD700 0%,
        #FFA500 100%
    );
}

/* Fast Delivery - Green Gradient */
.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(
        135deg,
        #138807 0%,
        #128807 100%
    );
}

/* Trusted - Navy Blue Gradient */
.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(
        135deg,
        #000080 0%,
        #0000CD 100%
    );
}

/* ===================================
   7. FEATURE TEXT STYLING
   ==================================== */

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000080;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    position: relative;
}

/* Green Underline on Hover */
.feature-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        #FF9933,
        #138807
    );
    transition: width 0.3s ease;
}

.feature-card:hover .feature-title {
    color: #138807;
}

.feature-card:hover .feature-title::after {
    width: 80%;
}

.feature-description {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   8. NEWSLETTER SECTION
   ==================================== */

.newsletter-section {
    position: relative;
    background: linear-gradient(
        135deg,
        rgba(255, 153, 51, 0.15) 0%,
        rgba(255, 255, 255, 0.9) 30%,
        rgba(255, 255, 255, 0.9) 70%,
        rgba(19, 136, 7, 0.15) 100%
    );
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    overflow: hidden;
}

/* Republic Day Decorative Elements */
.newsletter-section::before {
    content: '🇮🇳';
    position: absolute;
    top: 10%;
    left: 5%;
    font-size: 5rem;
    opacity: 0.1;
    animation: floatUpDown 6s ease-in-out infinite;
}

.newsletter-section::after {
    content: '☸';
    position: absolute;
    bottom: 10%;
    right: 5%;
    font-size: 8rem;
    color: rgba(0, 0, 128, 0.05);
    animation: rotateChakra 40s linear infinite;
}

.newsletter-content {
    background: #FFFFFF;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.15),
        0 0 30px rgba(255, 153, 51, 0.2);
    border: 4px solid transparent;
    border-image: linear-gradient(
        90deg,
        #FF9933,
        #FFFFFF,
        #138807
    ) 1;
    position: relative;
    z-index: 1;
}

/* Tricolor Corner Decoration */
.newsletter-content::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 60px;
    height: 60px;
    background: linear-gradient(
        135deg,
        #FF9933 0%,
        #FF9933 50%,
        transparent 50%
    );
    border-radius: 20px 0 0 0;
}

.newsletter-content::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 60px;
    height: 60px;
    background: linear-gradient(
        135deg,
        transparent 50%,
        #138807 50%,
        #138807 100%
    );
    border-radius: 0 0 20px 0;
}

/* ===================================
   9. NEWSLETTER ICON
   ==================================== */

.newsletter-icon {
    display: inline-block;
    animation: envelopePulse 3s ease-in-out infinite;
}

.newsletter-icon i {
    font-size: 4rem;
    background: linear-gradient(
        135deg,
        #FF9933 0%,
        #000080 50%,
        #138807 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
    filter: drop-shadow(0 4px 10px rgba(255, 153, 51, 0.3));
}

/* ===================================
   10. NEWSLETTER HEADER TEXT
   ==================================== */

.newsletter-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(
        135deg,
        #FF9933 0%,
        #000080 50%,
        #138807 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
    margin-bottom: 1rem;
}

.newsletter-description {
    font-size: 1.1rem;
    color: #138807;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 0 10px rgba(19, 136, 7, 0.1);
}

/* ===================================
   11. NEWSLETTER FORM
   ==================================== */

.newsletter-form {
    max-width: 600px;
    margin: 0 auto 1rem;
}

.newsletter-form .input-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

/* Tricolor Border Focus Effect */
.newsletter-form .input-group:focus-within {
    border: 2px solid #FF9933;
    box-shadow: 
        0 0 0 4px rgba(255, 153, 51, 0.2),
        0 6px 20px rgba(0, 0, 0, 0.15);
    animation: borderRainbow 3s ease-in-out infinite;
}

.newsletter-form .form-control {
    border: none;
    padding: 18px 25px;
    font-size: 1rem;
    outline: none;
    background: #f9fafb;
    transition: all 0.3s ease;
}

.newsletter-form .form-control::placeholder {
    color: #9ca3af;
}

.newsletter-form .form-control:focus {
    background: #FFFFFF;
    box-shadow: none;
}

/* Subscribe Button - Green to Saffron Gradient */
.btn-subscribe {
    background: linear-gradient(
        135deg,
        #138807 0%,
        #128807 100%
    );
    background-size: 200% 200%;
    color: #FFFFFF;
    padding: 18px 35px;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-subscribe::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-subscribe:active::before {
    width: 400px;
    height: 400px;
    animation: rippleEffect 0.6s ease-out;
}

/* Reverse Gradient with Scale on Hover */
.btn-subscribe:hover {
    background: linear-gradient(
        135deg,
        #FF9933 0%,
        #FFD700 100%
    );
    transform: scale(1.05);
    box-shadow: 
        0 6px 20px rgba(255, 153, 51, 0.4),
        0 0 30px rgba(255, 153, 51, 0.3);
}

.btn-subscribe:hover::before {
    width: 300px;
    height: 300px;
}

/* ===================================
   12. NEWSLETTER PRIVACY TEXT
   ==================================== */

.newsletter-privacy {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
}

.newsletter-privacy::before {
    content: '✓ ';
    color: #138807;
    font-weight: 700;
    margin-right: 5px;
}

/* ===================================
   13. RESPONSIVE DESIGN
   ==================================== */

/* Large Devices */
@media (min-width: 992px) {
    .festival-title {
        font-size: 3.5rem;
    }
}

/* Medium Devices (Tablet) */
@media (max-width: 991px) {
    .festival-title {
        font-size: 2.5rem;
    }
    
    .offer-percentage {
        font-size: 3rem;
    }
    
    .festival-banner::after {
        font-size: 2rem;
    }
    
    .floating-element {
        font-size: 2.5rem;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
    }
    
    .feature-icon i {
        font-size: 2.5rem;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-icon i {
        font-size: 3.5rem;
    }
}

/* Small Devices (Mobile) */
@media (max-width: 767px) {
    /* Festival Banner - Stack Vertically */
    .festival-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .festival-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .festival-offer {
        padding: 1rem 1.5rem;
        display: block;
        text-align: center;
    }
    
    .offer-text {
        font-size: 1.1rem;
        display: block;
        margin: 0.5rem 0;
    }
    
    .offer-percentage {
        font-size: 2.5rem;
        display: block;
        margin: 1rem 0;
    }
    
    .festival-code {
        text-align: center;
    }
    
    .coupon-code {
        font-size: 1.1rem;
        padding: 8px 15px;
        display: inline-block;
        margin: 10px 0;
    }
    
    .btn-copy-code {
        display: block;
        margin: 10px auto;
    }
    
    .btn-festival {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    /* Reduce Floating Element Complexity */
    .floating-element {
        font-size: 2rem;
    }
    
    .element-2,
    .element-4 {
        display: none;
    }
    
    /* Feature Cards */
    .feature-card {
        margin-bottom: 1rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon i {
        font-size: 2rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
    
    /* Newsletter */
    .newsletter-content {
        padding: 2rem 1.5rem;
    }
    
    .newsletter-title {
        font-size: 1.75rem;
    }
    
    .newsletter-description {
        font-size: 1rem;
    }
    
    .newsletter-icon i {
        font-size: 3rem;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .newsletter-form .form-control {
        border-radius: 15px 15px 0 0;
        padding: 15px 20px;
    }
    
    .btn-subscribe {
        border-radius: 0 0 15px 15px;
        padding: 15px 25px;
        width: 100%;
    }
    
    .why-choose::before {
        font-size: 300px;
    }
}

/* Extra Small Devices */
@media (max-width: 575px) {
    .festival-title {
        font-size: 1.75rem;
    }
    
    .festival-tag {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .offer-percentage {
        font-size: 2rem;
    }
    
    .coupon-code {
        font-size: 1rem;
    }
    
    .festival-banner::after,
    .newsletter-section::before {
        display: none;
    }
    
    .newsletter-title {
        font-size: 1.5rem;
    }
    
    .newsletter-description {
        font-size: 0.9rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
}

/* ===================================
   14. ACCESSIBILITY & PERFORMANCE
   ==================================== */

/* Focus States */
.btn-copy-code:focus,
.btn-festival:focus,
.btn-subscribe:focus,
.newsletter-form .form-control:focus {
    outline: 3px solid #FF9933;
    outline-offset: 3px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* GPU Acceleration */
.festival-img,
.floating-element,
.feature-icon,
.newsletter-icon,
.btn-festival,
.btn-subscribe {
    will-change: transform;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* ===================================
   15. PRINT STYLES
   ==================================== */

@media print {
    .floating-element,
    .btn-copy-code,
    .btn-festival,
    .btn-subscribe {
        display: none !important;
    }
    
    * {
        animation: none !important;
        transition: none !important;
    }
    
    .festival-title,
    .newsletter-title {
        -webkit-text-fill-color: #000080;
        color: #000080;
    }
}

/* ===================================
   END OF FESTIVAL, WHY CHOOSE & NEWSLETTER SECTIONS
   Happy 77th Republic Day 2026! 🇮🇳
   ==================================== */







/* ===================================
   MANOVASTRA - REPUBLIC DAY 2026 THEME
   Footer Section Styling
   ==================================== */

/* ===================================
   KEYFRAME ANIMATIONS
   ==================================== */

/* Social Icon Patriotic Glow */
@keyframes socialGlow {
    0%, 100% {
        box-shadow: 
            0 0 10px rgba(255, 153, 51, 0.5),
            0 0 20px rgba(255, 153, 51, 0.3);
    }
    50% {
        box-shadow: 
            0 0 15px rgba(255, 153, 51, 0.7),
            0 0 25px rgba(255, 153, 51, 0.5),
            0 0 35px rgba(255, 153, 51, 0.3);
    }
}

/* Green Glow for WhatsApp */
@keyframes greenGlow {
    0%, 100% {
        box-shadow: 
            0 0 10px rgba(19, 136, 7, 0.5),
            0 0 20px rgba(19, 136, 7, 0.3);
    }
    50% {
        box-shadow: 
            0 0 15px rgba(19, 136, 7, 0.7),
            0 0 25px rgba(19, 136, 7, 0.5),
            0 0 35px rgba(19, 136, 7, 0.3);
    }
}

/* Link Slide Animation */
@keyframes linkSlide {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 3px;
        opacity: 1;
    }
}

/* Underline Slide Animation */
@keyframes underlineSlide {
    0% {
        width: 0;
        left: 0;
    }
    100% {
        width: 100%;
        left: 0;
    }
}

/* Ashoka Chakra Rotation */
@keyframes rotateChakra {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* WhatsApp Pulse */
@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(19, 136, 7, 0.5);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 
            0 0 20px rgba(19, 136, 7, 0.7),
            0 0 30px rgba(19, 136, 7, 0.5);
    }
}

/* Tricolor Border Flow */
@keyframes tricolorFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Payment Icon Glow */
@keyframes paymentGlow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(255, 153, 51, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 10px rgba(19, 136, 7, 0.5));
    }
}

/* ===================================
   1. FOOTER MAIN CONTAINER
   ==================================== */

.footer-main {
    background: #1a1a1a;
    color: #b0b0b0;
    position: relative;
    overflow: hidden;
}

/* Dark Navy Blue with Tricolor Gradient Overlay */
.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 153, 51, 0.03) 0%,
        rgba(26, 26, 26, 1) 30%,
        rgba(26, 26, 26, 1) 70%,
        rgba(19, 136, 7, 0.03) 100%
    );
    pointer-events: none;
    z-index: 0;
}

/* Tricolor Top Border Stripe */
.footer-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(
        90deg,
        #FF9933 0%,
        #FF9933 33%,
        #FFFFFF 33%,
        #FFFFFF 66%,
        #138807 66%,
        #138807 100%
    );
    background-size: 300% 100%;
    animation: tricolorFlow 8s ease infinite;
    z-index: 1;
}

/* Subtle Ashoka Chakra Watermark */
.footer-main > .container::before {
    content: '☸';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 800px;
    color: rgba(255, 153, 51, 0.02);
    animation: rotateChakra 120s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.footer-main .container {
    position: relative;
    z-index: 1;
}

/* ===================================
   2. FOOTER BRAND & ABOUT
   ==================================== */

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(
        135deg,
        #FF9933 0%,
        #FFD700 50%,
        #138807 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: tricolorFlow 6s ease infinite;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
}

/* Republic Day Decorative Underline */
.footer-brand::before {
    content: '🇮🇳';
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 1rem;
    filter: none;
    -webkit-text-fill-color: initial;
}

.footer-brand::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30px;
    width: 80px;
    height: 3px;
    background: linear-gradient(
        90deg,
        #FF9933 0%,
        #FFFFFF 50%,
        #138807 100%
    );
    border-radius: 2px;
}

.footer-about {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #b0b0b0;
    margin-bottom: 1.5rem;
}

/* ===================================
   3. SOCIAL ICONS
   ==================================== */

.social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #2c2c2c;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.social-link i {
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

/* Instagram - Saffron Hover */
.social-link:nth-child(1):hover {
    background: linear-gradient(
        135deg,
        #FF9933,
        #FFD700
    );
    color: #FFFFFF;
    transform: scale(1.15) rotate(5deg);
    border-color: #FFD700;
    animation: socialGlow 2s ease-in-out infinite;
}

/* YouTube - White Background with Red Icon */
.social-link:nth-child(2):hover {
    background: #FFFFFF;
    color: #FF0000;
    transform: scale(1.15) rotate(-5deg);
    border-color: #FF0000;
    box-shadow: 
        0 0 15px rgba(255, 0, 0, 0.5),
        0 0 25px rgba(255, 0, 0, 0.3);
}

/* WhatsApp - Green Hover with Pulse */
.social-link.whatsapp:hover {
    background: linear-gradient(
        135deg,
        #138807,
        #25D366
    );
    color: #FFFFFF;
    transform: scale(1.15);
    border-color: #25D366;
    animation: whatsappPulse 1.5s ease-in-out infinite;
}

.social-link:hover i {
    transform: scale(1.1);
}

/* ===================================
   4. FOOTER WIDGETS
   ==================================== */

.footer-widget {
    padding-left: 20px;
    position: relative;
}

/* Tricolor Left Border Accent */
.footer-widget::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(
        180deg,
        #FF9933 0%,
        #FFFFFF 50%,
        #138807 100%
    );
    border-radius: 2px;
    opacity: 0.5;
}

.footer-widget:hover::before {
    opacity: 1;
}

/* ===================================
   5. FOOTER TITLES
   ==================================== */

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFB366;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 153, 51, 0.2);
}

/* Tricolor Gradient Underline */
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(
        90deg,
        #FF9933 0%,
        #FFFFFF 50%,
        #138807 100%
    );
    border-radius: 2px;
}

/* ===================================
   6. FOOTER LINKS
   ==================================== */

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

.footer-links li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 0;
    transition: all 0.3s ease;
}

.footer-links li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 100%;
    background: linear-gradient(
        180deg,
        #138807,
        #128807
    );
    transition: all 0.3s ease;
    border-radius: 0 3px 3px 0;
}

.footer-links li:hover::before {
    width: 3px;
    animation: linkSlide 0.4s ease-out;
}

.footer-links li:hover {
    padding-left: 12px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

/* Republic Day Arrow Icon on Hover */
.footer-links a::before {
    content: '›';
    position: absolute;
    left: -15px;
    opacity: 0;
    color: #FF9933;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.footer-links li:hover a::before {
    left: -20px;
    opacity: 1;
}

.footer-links a:hover {
    color: #FF9933;
    text-shadow: 0 0 10px rgba(255, 153, 51, 0.3);
    padding-left: 5px;
}

/* ===================================
   7. FOOTER CONTACT
   ==================================== */

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-contact i {
    font-size: 1.2rem;
    min-width: 20px;
    margin-top: 2px;
    transition: all 0.3s ease;
}

/* Alternating Tricolor Icons */
.footer-contact li:nth-child(1) i {
    color: #FF9933;
}

.footer-contact li:nth-child(2) i {
    color: #138807;
}

.footer-contact li:nth-child(3) i {
    color: #FF9933;
}

.footer-contact li:nth-child(4) i {
    color: #138807;
}

.footer-contact li:nth-child(5) i {
    color: #FFD700;
}

/* Icon Circular Background on Hover */
.footer-contact li:hover i {
    background: rgba(255, 153, 51, 0.1);
    border-radius: 50%;
    padding: 8px;
    transform: scale(1.2) rotate(10deg);
}

.footer-contact li:nth-child(even):hover i {
    background: rgba(19, 136, 7, 0.1);
    transform: scale(1.2) rotate(-10deg);
}

.footer-contact a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-contact a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        #FF9933,
        #138807
    );
    transition: width 0.3s ease;
}

.footer-contact a:hover {
    color: #FFFFFF;
}

.footer-contact a:hover::after {
    width: 100%;
    animation: underlineSlide 0.4s ease-out;
}

/* ===================================
   8. PAYMENT BADGES SECTION
   ==================================== */

.footer-badges {
    background: #252525;
    position: relative;
}

/* Tricolor Top and Bottom Borders */
.footer-badges.border-top {
    border-top: 2px solid transparent !important;
    border-image: linear-gradient(
        90deg,
        #FF9933 0%,
        #FFFFFF 50%,
        #138807 100%
    ) 1 !important;
}

.footer-badges.border-bottom {
    border-bottom: 2px solid transparent !important;
    border-image: linear-gradient(
        90deg,
        #FF9933 0%,
        #FFFFFF 50%,
        #138807 100%
    ) 1 !important;
}

/* ===================================
   9. PAYMENT METHODS
   ==================================== */

.payment-methods p {
    font-size: 0.9rem;
    color: #b0b0b0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.payment-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-icons i {
    font-size: 2rem;
    color: #6b7280;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Saffron or Green Glow on Hover */
.payment-icons i:nth-child(odd):hover {
    color: #FF9933;
    transform: scale(1.2) translateY(-3px);
    filter: drop-shadow(0 0 10px rgba(255, 153, 51, 0.6));
    animation: paymentGlow 2s ease-in-out infinite;
}

.payment-icons i:nth-child(even):hover {
    color: #138807;
    transform: scale(1.2) translateY(-3px);
    filter: drop-shadow(0 0 10px rgba(19, 136, 7, 0.6));
}

.payment-text {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-left: 10px;
    display: inline-block;
}

/* Separator Dots Styling */
.payment-text::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #FF9933;
    border-radius: 50%;
    margin: 0 8px;
    vertical-align: middle;
}

/* ===================================
   10. FOOTER BOTTOM (COPYRIGHT & LEGAL)
   ==================================== */

.footer-main > .container > .row:last-child {
    background: #0d0d0d;
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
}

/* Subtle Saffron Accent Line */
.footer-main > .container > .row:last-child::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        #FF9933 50%,
        transparent 100%
    );
}

.footer-copyright {
    font-size: 0.9rem;
    color: #9ca3af;
    letter-spacing: 0.5px;
}

/* Republic Day Greeting Styling */
.footer-copyright::before {
    content: '🇮🇳 ';
    margin-right: 5px;
}

/* ===================================
   11. FOOTER LEGAL LINKS
   ==================================== */

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-legal li {
    display: inline-block;
    position: relative;
}

/* Vertical Separator Dots */
.footer-legal li:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: -12px;
    color: #6b7280;
}

.footer-legal a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

/* Tricolor Gradient Underline on Hover */
.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        #FF9933 0%,
        #FFFFFF 50%,
        #138807 100%
    );
    transition: width 0.3s ease;
}

.footer-legal a:hover {
    color: #FF9933;
}

.footer-legal a:hover::after {
    width: 100%;
    animation: underlineSlide 0.4s ease-out;
}

/* ===================================
   12. BORDER & DIVIDER STYLING
   ==================================== */

.footer-main .border-top {
    border-top: 1px solid transparent !important;
    border-image: linear-gradient(
        90deg,
        transparent 0%,
        #FF9933 20%,
        #FFFFFF 50%,
        #138807 80%,
        transparent 100%
    ) 1 !important;
}

.footer-main .border-bottom {
    border-bottom: 1px solid transparent !important;
    border-image: linear-gradient(
        90deg,
        transparent 0%,
        #FF9933 20%,
        #FFFFFF 50%,
        #138807 80%,
        transparent 100%
    ) 1 !important;
}

/* ===================================
   13. RESPONSIVE DESIGN
   ==================================== */

/* Large Devices */
@media (min-width: 992px) {
    .footer-brand {
        font-size: 2rem;
    }
}

/* Medium Devices (Tablet) */
@media (max-width: 991px) {
    .footer-brand {
        font-size: 1.6rem;
    }
    
    .footer-widget {
        margin-bottom: 2rem;
    }
    
    .footer-main > .container::before {
        font-size: 500px;
    }
}

/* Small Devices (Mobile) */
@media (max-width: 767px) {
    /* Center-align all footer content on mobile */
    .footer-widget {
        text-align: center;
        padding-left: 0;
    }
    
    .footer-widget::before {
        display: none;
    }
    
    .footer-brand {
        font-size: 1.5rem;
    }
    
    .footer-brand::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-brand::before {
        left: 50%;
        transform: translateX(-50%);
        bottom: -5px;
    }
    
    .footer-about {
        max-width: 400px;
        margin: 0 auto 1.5rem;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-title {
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links li {
        padding-left: 0 !important;
    }
    
    .footer-links li::before {
        display: none;
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .footer-contact {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .footer-contact li {
        justify-content: center;
        text-align: left;
    }
    
    .payment-icons {
        justify-content: center;
    }
    
    .payment-text {
        display: block;
        margin-top: 10px;
        margin-left: 0;
    }
    
    .payment-text::before {
        display: none;
    }
    
    .footer-copyright {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-legal {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .footer-legal li:not(:last-child)::after {
        display: none;
    }
    
    .footer-main > .container::before {
        font-size: 300px;
    }
}

/* Extra Small Devices */
@media (max-width: 575px) {
    .footer-brand {
        font-size: 1.3rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-about {
        font-size: 0.9rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-contact li {
        font-size: 0.85rem;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
    }
    
    .social-link i {
        font-size: 1.1rem;
    }
    
    .payment-icons i {
        font-size: 1.5rem;
    }
    
    .footer-copyright {
        font-size: 0.85rem;
    }
    
    .footer-legal a {
        font-size: 0.85rem;
    }
}

/* ===================================
   14. ACCESSIBILITY & FOCUS STATES
   ==================================== */

/* Keyboard Navigation Focus States */
.footer-links a:focus,
.footer-contact a:focus,
.footer-legal a:focus,
.social-link:focus {
    outline: 3px solid #FF9933;
    outline-offset: 3px;
    border-radius: 3px;
}

/* Ensure Color Contrast */
.footer-main a:focus {
    color: #FFFFFF;
    background: rgba(255, 153, 51, 0.2);
    padding: 2px 4px;
    border-radius: 3px;
}

/* Touch-friendly Spacing on Mobile */
@media (max-width: 767px) {
    .footer-links li {
        margin-bottom: 15px;
    }
    
    .footer-contact li {
        margin-bottom: 18px;
    }
    
    .social-link {
        min-width: 44px;
        min-height: 44px;
    }
}

/* ===================================
   15. REDUCED MOTION
   ==================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===================================
   16. GPU ACCELERATION
   ==================================== */

.social-link,
.footer-links a,
.footer-contact a,
.payment-icons i,
.footer-brand {
    will-change: transform;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* ===================================
   17. PRINT STYLES
   ==================================== */

@media print {
    .footer-main {
        background: #FFFFFF;
        color: #000000;
    }
    
    .footer-main::before,
    .footer-main::after,
    .footer-main > .container::before {
        display: none;
    }
    
    .footer-brand {
        -webkit-text-fill-color: #000080;
        color: #000080;
    }
    
    .social-icons,
    .payment-icons {
        display: none;
    }
    
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* ===================================
   END OF FOOTER SECTION
   Happy 77th Republic Day 2026! 🇮🇳
   Jai Hind!
   ==================================== */
