@import url('https://fonts.googleapis.com/css2?family=Mr+Dafoe&display=swap');
html { scroll-behavior: smooth; }
        body { background-color: var(--journey-sand); }
        h1, h2, h3, h4, h5, h6 { color: var(--journey-plum); }
        
        /* Smart Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            transform: translateY(-100%);
        }
        header.show-header {
            transform: translateY(0);
        }
        
        .hero-campaign {
            position: relative;
            background: var(--journey-night);
            color: #fff;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding-top: 14vh;
            overflow: hidden;
        }
        .hero-video-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            z-index: 0;
            transform: translateX(-50%) translateY(-50%) scale(1);
            object-fit: cover;
        }
        .hero-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
            z-index: 1;
        }
        
        @keyframes cinematicEntry {
            0% { opacity: 0; transform: scale(0.85) translateY(40px); }
            100% { opacity: 1; transform: scale(1) translateY(0); }
        }
        
        @keyframes floatBreathing {
            0% { transform: scale(1) translateY(0); filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5)); }
            50% { transform: scale(1.03) translateY(-8px); filter: drop-shadow(0 20px 30px rgba(0,0,0,0.7)); }
            100% { transform: scale(1) translateY(0); filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5)); }
        }



        .hero-center-logo {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 450px;
            padding: 0 20px;
            text-align: center;
            opacity: 0;
            animation: cinematicEntry 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
        }
        .hero-center-logo img {
            width: 100%;
            height: auto;
            animation: floatBreathing 6s ease-in-out infinite;
        }
        .corner-text {
            position: absolute;
            z-index: 2;
            color: #fff;
            text-align: center;
            text-shadow: 0 2px 10px rgba(0,0,0,0.8);
        }
        .corner-text.top-left {
            top: 100px;
            left: 80px;
            text-align: left;
            transform: rotate(-5deg);
        }
        .corner-text.top-right {
            top: 100px;
            right: 80px;
            text-align: right;
            transform: rotate(5deg);
        }
        .brush-font {
            font-family: 'Mr Dafoe', cursive;
            font-size: 48px;
            font-weight: 400;
            line-height: 1;
            display: block;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            -webkit-text-stroke: 0.5px rgba(255,255,255,0.4);
        }
        .small-text {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: block;
            margin: 8px 0;
            color: #e3c4a8;
        }
        .text-red {
            color: #e85923;
            font-size: 56px;
        }
        .hero-stats {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            background: linear-gradient(to top, rgba(16,24,47,1) 0%, rgba(16,24,47,0) 100%);
            padding-top: 120px;
            padding-bottom: 60px;
        }
        .stats-row {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            padding: 0 20px;
            margin-bottom: 24px;
        }
        .stat-item {
            display: flex;
            align-items: center;
            gap: 15px;
            color: #fff;
        }
        .stat-divider {
            width: 1px;
            height: 40px;
            background: rgba(255,255,255,0.2);
            margin: 0 10px;
        }
        .stat-item i {
            color: #f7931e;
            font-size: 36px;
        }
        .stat-text {
            display: flex;
            flex-direction: column;
            text-align: left;
        }
        .stat-text strong {
            font-size: 26px;
            color: #f7931e;
            line-height: 1;
            font-weight: 800;
        }
        .stat-text span {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.9;
            margin-top: 4px;
            line-height: 1.2;
            font-weight: 600;
        }
        .explore-btn {
            background: linear-gradient(to right, #f26522, #ed1c24);
            color: #fff;
            padding: 12px 32px;
            border-radius: 30px;
            font-size: 18px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(237, 28, 36, 0.4);
            transition: all 0.3s ease;
            margin-bottom: 30px;
        }
        .explore-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(237, 28, 36, 0.6);
        }
        .explore-btn i {
            background: #fff;
            color: #ed1c24;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }
        .hero-footer-bar {
            width: 100%;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 12px 0;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 16px;
            color: #e3c4a8;
            font-size: 14px;
            letter-spacing: 3px;
            font-weight: 600;
            position: absolute;
            bottom: 0;
            left: 0;
            z-index: 10;
        }
        .hero-footer-bar::before, .hero-footer-bar::after {
            content: '';
            height: 1px;
            flex: 1;
            background: linear-gradient(to right, transparent, rgba(227, 196, 168, 0.5), transparent);
        }
        .hero-footer-bar span {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .hero-footer-bar i {
            color: #f7931e;
            font-size: 20px;
        }
        @media (max-width: 1200px) {
            .stat-divider { display: none; }
        }
        @media (max-width: 992px) {
            .corner-text { display: none; }
            .stats-row { gap: 20px; }
            .stat-text strong { font-size: 20px; }
            .stat-text span { font-size: 10px; }
            .stat-item i { font-size: 24px; }
        }

        
        .timeline {
            max-width: 800px;
            margin: 64px auto;
            position: relative;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 28px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--journey-gold);
            opacity: 0.3;
        }
        .day-card {
            background: #fff;
            border-radius: 16px;
            padding: 32px;
            margin-bottom: 24px;
            margin-left: 64px;
            position: relative;
            box-shadow: 0 4px 16px rgba(0,0,0,0.04);
            border-left: 4px solid var(--journey-saffron);
        }
        .day-card::before {
            content: '';
            position: absolute;
            left: -44px;
            top: 32px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--journey-saffron);
            border: 4px solid var(--journey-sand);
        }
        .day-number {
            color: var(--journey-saffron);
            font-weight: 800;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 8px;
            display: block;
        }
        .day-title {
            font-size: 24px;
            margin-bottom: 16px;
        }
        .day-highlights {
            list-style: none;
            margin-bottom: 16px;
        }
        .day-highlights li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 8px;
            color: var(--iugc-muted);
        }
        .day-highlights li::before {
            content: 'ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢';
            position: absolute;
            left: 0;
            color: var(--journey-saffron);
            font-size: 20px;
            line-height: 1;
        }
        
        /* Enquiry Form */
        .enquiry-section {
            background: #fff;
            padding: 80px 0;
        }
        .enquiry-form {
            max-width: 600px;
            margin: 0 auto;
            background: var(--journey-sand);
            padding: 40px;
            border-radius: 20px;
        }
        .form-group {
            margin-bottom: 24px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--journey-plum);
        }
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--iugc-border);
            border-radius: 8px;
            font-family: inherit;
        }
/* Mobile Responsiveness Additions */
.mobile-stats-section {
    display: none;
}
@media (max-width: 768px) {
    .hero-campaign {
        padding-top: 0;
        justify-content: center;
        min-height: 50vh;
        height: 50vh;
    }
    .hero-center-logo {
        max-width: 250px;
        margin-top: 0;
    }
    .stats-row {
        flex-direction: column;
        gap: 12px;
    }
    .stat-item {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .stat-text {
        text-align: center;
        align-items: center;
    }
    .stat-divider {
        display: none;
    }
    .hero-stats {
        padding-top: 20px;
    }
    .hero-footer-bar {
        font-size: 10px;
        flex-direction: row;
        text-align: center;
        gap: 8px;
        background: linear-gradient(to right, transparent, rgba(0, 32, 96, 0.8), transparent) !important;
        color: #ffffff !important;
        border-top: none;
        border-bottom: none;
        padding: 10px 0 30px 0;
    }
    .hero-footer-bar::before, .hero-footer-bar::after {
        display: none;
    }
    .explore-btn {
        font-size: 14px;
        padding: 10px 24px;
        margin-bottom: 20px;
    }
    .hero-stats {
        display: none !important;
    }
    .desktop-only-stats {
        display: none !important;
    }
    .mobile-stats-section {
        display: block;
        background: var(--journey-sand);
        padding: 40px 20px;
        position: relative;
        z-index: 10;
        margin-top: -20px;
        border-radius: 24px 24px 0 0;
        box-shadow: none;
    }
    .mobile-stats-section .mobile-stats-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px 12px;
    }
    .mobile-stats-section .stat-item {
        color: var(--iugc-navy) !important;
        justify-content: flex-start;
        text-align: center;
        flex-direction: column;
        gap: 4px;
    }
    .mobile-stats-section .stat-item i {
        color: #e85923;
        font-size: 28px;
        margin-bottom: 0;
    }
    .mobile-stats-section .stat-text {
        text-align: center;
        align-items: center;
    }
    .mobile-stats-section .stat-text strong {
        color: var(--journey-plum) !important;
        font-size: 18px;
    }
    .mobile-stats-section .stat-text span {
        color: var(--iugc-navy) !important;
        font-weight: 700;
        font-size: 9px;
        opacity: 1 !important;
    }
    .mobile-stats-section .stat-text span span {
        color: var(--iugc-muted) !important;
    }
}
/* =========================================
   Redesigned Vision Section
========================================= */
.about-vision-section.redesign {
    background-color: #fcfcfc;
    position: relative;
    overflow: hidden;
}

/* Banner Image & Overlay */
.vision-banner-image {
    width: 100%;
    position: relative;
    z-index: 1;
}
.vision-banner-image .bg-img {
    width: 100%;
    height: auto;
    display: block;
}
.top-white-fade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background: linear-gradient(to bottom, rgba(252,252,252,1) 0%, rgba(252,252,252,0.9) 30%, rgba(252,252,252,0) 100%);
    z-index: 1;
}

/* Header Area */
.vision-header-area {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 60px 20px 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}
.vision-header-area .corner-text,
.history-header .corner-text {
    position: absolute;
    top: 60px;
    font-family: 'Mr Dafoe', cursive;
    font-style: italic;
    font-size: 24px;
    line-height: 1.2;
    color: var(--iugc-navy);
    opacity: 0.8;
    text-shadow: none;
}
.vision-header-area .corner-text.left-corner,
.history-header .corner-text.left-corner {
    left: 2%;
    transform: rotate(-10deg);
    text-align: left;
}
.vision-header-area .corner-text.right-corner,
.history-header .corner-text.right-corner {
    right: 2%;
    transform: rotate(5deg);
    text-align: right;
}
.center-title-area {
    margin: 0 auto;
    max-width: 600px;
    position: relative;
    z-index: 2;
}
.purpose-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}
.purpose-title .line {
    height: 1px;
    width: 40px;
    background-color: var(--journey-saffron);
}
.purpose-title span {
    color: var(--iugc-navy);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.trisul-icon {
    height: 20px;
    width: auto;
    opacity: 0.8;
}
.center-title-area h2 {
    font-size: 64px;
    margin: 0 0 16px;
    color: var(--iugc-navy);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}
.center-title-area h2 .highlight-youth {
    color: #e85923;
}
.center-title-area p {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    font-weight: 500;
}

/* Features Area */
.vision-features-area {
    background-color: #fff;
    padding: 60px 20px;
    position: relative;
    z-index: 2;
    margin-top: -60px; /* Pull up to overlap image */
    border-radius: 50% 50% 0 0 / 40px 40px 0 0; /* Curve effect */
}
.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.vision-item {
    text-align: center;
    padding: 0 20px;
}
.vision-item.with-borders {
    border-left: 1px solid rgba(0,0,0,0.1);
    border-right: 1px solid rgba(0,0,0,0.1);
}
.icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
}
.icon-circle.saffron { background: #e85923; box-shadow: 0 4px 15px rgba(232,89,35,0.3); }
.icon-circle.navy { background: var(--iugc-navy); box-shadow: 0 4px 15px rgba(0,32,96,0.3); }
.icon-circle.green { background: #2e7d32; box-shadow: 0 4px 15px rgba(46,125,50,0.3); }

.vision-item h3 {
    font-size: 24px;
    margin-bottom: 4px;
    font-weight: 800;
    text-transform: uppercase;
}
.vision-item:nth-child(1) h3 { color: #e85923; }
.vision-item:nth-child(2) h3 { color: var(--iugc-navy); }
.vision-item:nth-child(3) h3 { color: #2e7d32; }

.vision-item h4 {
    font-size: 14px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 700;
    text-transform: uppercase;
}
.vision-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Highlight Banner */
.flag-highlight-banner {
    text-align: center;
    padding: 60px 20px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    margin: 0 auto 40px;
    max-width: 900px;
    position: relative;
}
.flag-highlight-banner h3 {
    font-size: 42px;
    margin-bottom: 8px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
}
.saffron-text { color: #e85923; }
.navy-text { color: var(--iugc-navy); }
.green-text { color: #2e7d32; }

.viksit-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 30px 0 20px;
}
.viksit-divider .line {
    height: 1px;
    width: 60px;
    background-color: var(--journey-saffron);
}
.divider-trisul {
    height: 30px;
    width: auto;
}
.viksit-text {
    color: #333;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 3px;
}

/* Gallery */
.vision-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
}
.vision-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Footer Bar */
.vision-footer-bar {
    background-color: #111;
    color: #888;
    text-align: center;
    padding: 24px 20px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.vision-footer-bar .brighter-bharat {
    color: #fff;
    font-style: italic;
    font-family: serif;
    text-transform: capitalize;
    font-size: 16px;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 992px) {
    .corner-text { display: none; }
    .vision-grid { grid-template-columns: 1fr; gap: 40px; }
    .vision-item.with-borders { border: none; }
    .vision-gallery { grid-template-columns: repeat(2, 1fr); }
    .vision-gallery img:last-child { grid-column: span 2; }
    .center-title-area h2 { font-size: 32px; }
    .flag-highlight-banner h3 { font-size: 28px; }
}
@media (max-width: 768px) {
    .vision-gallery { grid-template-columns: 1fr; }
    .vision-gallery img:last-child { grid-column: span 1; }
    .vision-features-area { margin-top: -30px; border-radius: 50% 50% 0 0 / 20px 20px 0 0; }
    
    .vision-banner-image .bg-img {
        min-height: 500px;
        object-fit: cover;
        object-position: center;
    }
    .top-white-fade {
        display: none;
    }
    .vision-header-area {
        padding-top: 20px;
    }
    .center-title-area h2 { 
        font-size: 36px; 
    }

}

/* =========================================
   History Section
========================================= */
.history-section {
    position: relative;
    padding: 80px 0 0;
    overflow: hidden;
}
.history-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.history-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.history-bg .white-wash {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
}

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

/* Header Area */
.history-header {
    position: relative;
    text-align: center;
    margin-bottom: 60px;
}
.history-header .corner-text {
    position: absolute;
    top: 20px;
}
.history-header .center-title {
    max-width: 800px;
    margin: 0 auto;
}
.history-header .subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}
.history-header .subtitle .line {
    height: 1px;
    width: 40px;
    background-color: #e85923;
}
.history-header .subtitle span {
    color: #e85923;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
}
.history-header h4 {
    color: #555;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 700;
}
.history-header h2 {
    font-size: 64px;
    color: var(--iugc-navy);
    font-weight: 900;
    margin-bottom: 12px;
}
.cursive-history {
    font-family: 'Mr Dafoe', cursive !important;
    color: #e85923;
    font-size: 84px;
    font-weight: normal;
    margin-left: -10px;
}
.history-header .desc {
    color: #333;
    font-size: 20px;
    margin-bottom: 24px;
}
.brush-subtitle {
    position: relative;
    display: inline-block;
    padding: 12px 30px;
}
.brush-subtitle .brush-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: -1;
    opacity: 0.8;
}
.brush-subtitle span {
    color: #6a2a16;
    font-family: 'Mr Dafoe', cursive;
    font-size: 32px;
    font-weight: normal;
}

.history-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}
.participation-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    text-align: center;
    border-top: 6px solid #ccc;
    height: 100%;
}
.participation-card.theme-orange { border-top-color: #e85923; background: linear-gradient(to bottom, #fff8f0, #fff); }
.participation-card.theme-green { border-top-color: #2e7d32; background: linear-gradient(to bottom, #f0fff4, #fff); }
.participation-card.theme-blue { border-top-color: var(--iugc-navy); background: linear-gradient(to bottom, #f0f4ff, #fff); }

.card-top {
    padding: 30px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.card-top .icon-bubble {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
}
.theme-orange .icon-bubble { background: #e85923; }
.theme-green .icon-bubble { background: #2e7d32; }
.theme-blue .icon-bubble { background: var(--iugc-navy); }

.card-top h3 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 4px;
}
.theme-orange h3 { color: #e85923; }
.theme-green h3 { color: #2e7d32; }
.theme-blue h3 { color: var(--iugc-navy); }

.card-top h4 {
    font-size: 16px;
    color: #333;
    font-weight: 700;
    margin-bottom: 16px;
}
.card-top p {
    font-size: 14px;
    color: #555;
    margin-bottom: 24px;
    line-height: 1.6;
    flex: 1;
}
.card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 30px;
    color: #fff !important;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    letter-spacing: 1px;
}
.theme-orange .card-btn { background: #e85923; }
.theme-green .card-btn { background: #2e7d32; }
.theme-blue .card-btn { background: var(--iugc-navy); }

.card-bottom {
    height: 250px;
    width: 100%;
}
.card-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer Bar */
.history-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding: 24px 0;
}
.footer-icons {
    display: flex;
    gap: 24px;
}
.footer-icons span {
    font-size: 12px;
    font-weight: 700;
    color: var(--iugc-navy);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 2px;
}
.footer-brand {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #333;
    font-size: 16px;
    font-weight: 800;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Mobile Layout */
@media (max-width: 992px) {
    .history-cards-grid { grid-template-columns: 1fr; }
    .history-footer { flex-direction: column; gap: 16px; }
}

@media (max-width: 768px) {
    .brush-subtitle .brush-bg { display: none; }
    .history-cards-grid { gap: 16px; }
    .participation-card {
        flex-direction: row;
        text-align: left;
        height: auto;
    }
    .card-top {
        padding: 20px 16px;
        align-items: flex-start;
    }
    .card-top .icon-bubble {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin: 0 0 12px 0;
    }
    .card-btn {
        margin-top: auto;
    }
    .card-bottom {
        width: 45%;
        height: auto;
        min-height: 100%;
    }
}
/* =========================================
   Modal Styles
========================================= */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modal-overlay.active {
    display: flex;
    opacity: 1;
}
.modal-container {
    background: #fff;
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
.modal-overlay.active .modal-container {
    transform: translateY(0);
}
.modal-header {
    background: var(--iugc-navy);
    color: #fff;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal-header h2 {
    color: #fff;
    margin: 0;
    font-size: 24px;
}
.close-modal {
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}
.modal-body {
    padding: 30px;
    overflow-y: auto;
}
.form-group {
    margin-bottom: 20px;
    text-align: left;
}
.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
}
.form-group .multi-select {
    height: 120px;
}
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 8px;
}
@media (max-width: 500px) {
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
}
.checkbox-grid label.checkbox-container {
    font-size: 14px;
    align-items: center;
    background: #f9f9f9;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #eee;
    margin: 0;
}
.checkbox-grid label.checkbox-container:hover {
    background: #f1f1f1;
}
.form-group small {
    display: block;
    margin-top: 6px;
    color: #666;
}
.form-group label.checkbox-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: normal;
    text-align: left;
}
.form-group label.checkbox-container input[type="checkbox"] {
    margin: 0;
    width: auto;
    flex-shrink: 0;
}

.checkbox-container input {
    margin-top: 4px;
}
.consent-text {
    font-size: 14px;
    color: #444;
}
.read-more-btn {
    background: none;
    border: none;
    color: #e85923;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
}
.terms-box {
    background: #f9f9f9;
    border-left: 3px solid #e85923;
    padding: 12px;
    margin-top: 10px;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}
.submit-btn {
    width: 100%;
    background: #e85923;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.submit-btn:hover { background: #d04a17; }
.submit-btn:disabled { background: #ccc; cursor: not-allowed; }

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-message {
    margin-top: 20px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    display: none;
}
.form-message.success { background: #d4edda; color: #155724; }
.form-message.error { background: #f8d7da; color: #721c24; }
