/* GROW Conference Website - Premium CSS with IACTSCON-Inspired Design */

:root {
    /* Primary Colors from GROW Logo */
    --primary-blue: #0066CC;
    --dark-blue: #003D7A;
    --light-blue: #0052A3;
    --accent-cyan: #00A8FF;
    
    /* Secondary Colors */
    --cream-bg: #F5E6D3;
    --light-gray: #F8F9FA;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --white: #FFFFFF;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 15px;
    --radius-lg: 25px;
    --radius-xl: 30px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--dark-blue);
}

p {
    color: var(--text-light);
    font-weight: 400;
}

/* Navigation Bar */
#mainNav {
    background: linear-gradient(135deg, #f3f3f5 0%, #fff 100%);
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.15);
    transition: all 0.3s ease;
}

#mainNav.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.2);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white) !important;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-link {
    color: rgb(0 102 204) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: var(--accent-cyan) !important;
}
.navbar-toggler {
    background-color: #0b63b2;
}

        /* Hero Section Enhanced Styles */
        .hero-section {
            position: relative;
            min-height: 100vh;
            background: linear-gradient(135deg, #0c2461 0%, #1e3799 50%, #4a69bd 100%);
            overflow: hidden;
            color: white;
            padding-top: 80px;
        }
        
        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }
        
        /* Animated Gradient */
        .animated-gradient {
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                45deg,
                rgba(12, 36, 97, 0.8),
                rgba(30, 55, 153, 0.6),
                rgba(74, 105, 189, 0.4),
                rgba(116, 185, 255, 0.2)
            );
            animation: gradientShift 15s ease infinite;
            transform: translate(-25%, -25%);
        }
        
        @keyframes gradientShift {
            0% { transform: translate(-25%, -25%) rotate(0deg); }
            50% { transform: translate(-25%, -25%) rotate(180deg); }
            100% { transform: translate(-25%, -25%) rotate(360deg); }
        }
        
        /* Geometric Patterns */
        .geometric-patterns {
            position: absolute;
            width: 100%;
            height: 100%;
        }
        
        .pattern {
            position: absolute;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
        }
        
        .pattern-1 {
            width: 200px;
            height: 200px;
            top: 10%;
            left: 5%;
            animation: float 20s ease-in-out infinite;
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
        }
        
        .pattern-2 {
            width: 150px;
            height: 150px;
            bottom: 15%;
            right: 10%;
            animation: float 25s ease-in-out infinite reverse;
            clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
        }
        
        .pattern-3 {
            width: 100px;
            height: 100px;
            top: 40%;
            right: 20%;
            animation: float 18s ease-in-out infinite;
            clip-path: circle(50% at 50% 50%);
        }
        
        .pattern-4 {
            width: 250px;
            height: 250px;
            bottom: 5%;
            left: 15%;
            animation: float 30s ease-in-out infinite reverse;
            clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }
        
        /* Floating Icons */
        .floating-icons {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }
        
        .floating-icons i {
            position: absolute;
            font-size: 2rem;
            color: rgba(255, 255, 255, 0.1);
            animation: floatIcon 15s linear infinite;
            animation-delay: calc(var(--i) * 1.5s);
        }
        
        @keyframes floatIcon {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.3;
            }
            90% {
                opacity: 0.3;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }
        
        /* Position icons randomly */
        .floating-icons i:nth-child(1) { left: 10%; }
        .floating-icons i:nth-child(2) { left: 20%; animation-delay: 0.5s; }
        .floating-icons i:nth-child(3) { left: 30%; animation-delay: 1s; }
        .floating-icons i:nth-child(4) { left: 40%; animation-delay: 1.5s; }
        .floating-icons i:nth-child(5) { left: 50%; animation-delay: 2s; }
        .floating-icons i:nth-child(6) { left: 60%; animation-delay: 2.5s; }
        .floating-icons i:nth-child(7) { left: 70%; animation-delay: 3s; }
        .floating-icons i:nth-child(8) { left: 80%; animation-delay: 3.5s; }
        .floating-icons i:nth-child(9) { left: 90%; animation-delay: 4s; }
        .floating-icons i:nth-child(10) { left: 95%; animation-delay: 4.5s; }
        
        /* Circles */
        .circles {
            position: absolute;
            width: 100%;
            height: 100%;
        }
        
        .circle {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
            animation: pulse 4s ease-in-out infinite;
        }
        
        .circle-1 {
            width: 300px;
            height: 300px;
            top: -150px;
            right: -150px;
            animation-delay: 0s;
        }
        
        .circle-2 {
            width: 200px;
            height: 200px;
            bottom: -100px;
            left: 10%;
            animation-delay: 1s;
        }
        
        .circle-3 {
            width: 150px;
            height: 150px;
            top: 30%;
            left: -75px;
            animation-delay: 2s;
        }
        
        .circle-4 {
            width: 100px;
            height: 100px;
            bottom: 20%;
            right: 15%;
            animation-delay: 3s;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.3; }
        }
        
        /* Abstract Shapes */
        .abstract-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
        }
        
        .abstract-shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            animation: shapeMove 20s linear infinite;
        }
        
        .shape-1 {
            width: 50px;
            height: 300px;
            top: 20%;
            left: 5%;
            transform: rotate(45deg);
            animation-delay: 0s;
        }
        
        .shape-2 {
            width: 80px;
            height: 80px;
            bottom: 25%;
            right: 20%;
            transform: rotate(15deg);
            animation-delay: 5s;
        }
        
        .shape-3 {
            width: 120px;
            height: 120px;
            top: 10%;
            right: 15%;
            transform: rotate(-30deg);
            animation-delay: 10s;
        }
        
        .shape-4 {
            width: 200px;
            height: 50px;
            bottom: 10%;
            left: 30%;
            transform: rotate(60deg);
            animation-delay: 15s;
        }
        
        .shape-5 {
            width: 100px;
            height: 100px;
            top: 60%;
            left: 20%;
            transform: rotate(-45deg);
            animation-delay: 20s;
        }
        
        @keyframes shapeMove {
            0%, 100% { transform: rotate(var(--rotation)) translateY(0); }
            50% { transform: rotate(calc(var(--rotation) + 10deg)) translateY(-20px); }
        }
        
        /* Hero Content */
        .hero-content {
            position: relative;
            z-index: 2;
            padding: 2rem;
        }
        
        .title-container {
            position: relative;
            margin-bottom: 1.5rem;
        }
        
        .hero-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
        }
        
        .title-underline {
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, #4a69bd, #80bbfe);
            margin-top: 0.5rem;
            border-radius: 2px;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            opacity: 0.9;
            font-weight: 300;
        }
        
        .hero-info {
            margin: 2rem 0;
        }
        
        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        
        .info-item i {
            margin-right: 1rem;
            font-size: 1.3rem;
            color: #80bbfe;
            width: 30px;
            text-align: center;
        }
        
        .hero-buttons {
            margin-top: 2rem;
        }
        
        .hero-buttons .btn {
            margin-right: 1rem;
            margin-bottom: 1rem;
            padding: 0.8rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .hero-buttons .btn-primary {
            background: linear-gradient(135deg, #0c347b, #4a69bd);
            border: none;
            box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
        }
        
        .hero-buttons .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(108, 92, 231, 0.6);
        }
        
        .hero-buttons .btn-outline-primary {
            border: 2px solid #80bbfe;
            color: white;
            background: transparent;
        }
        
        .hero-buttons .btn-outline-primary:hover {
            background: rgba(108, 92, 231, 0.1);
            transform: translateY(-3px);
        }
        
        /* Hero Image */
        .hero-image {
            position: relative;
            z-index: 2;
            padding: 2rem;
        }
        
        .image-container {
            position: relative;
        }
        
        .image-wrapper {
            position: relative;
            padding: 20px;
        }
        
        .main-image {
            position: relative;
            z-index: 2;
            filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
            border-radius: 20px;
            transition: transform 0.5s ease;
        }
        
        .image-wrapper:hover .main-image {
            transform: scale(1.02);
        }
        
        .image-glow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(108, 92, 231, 0.4) 0%, transparent 70%);
            z-index: 1;
            animation: glowPulse 3s ease-in-out infinite;
        }
        
        @keyframes glowPulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 0.8; }
        }
        
        .image-border {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 25px;
            z-index: 1;
        }
        
        .floating-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: linear-gradient(135deg, #80bbfe, #4a69bd);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            z-index: 3;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            animation: badgeFloat 3s ease-in-out infinite;
        }
        
        @keyframes badgeFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .scroll-text {
            font-size: 0.9rem;
            margin-bottom: 10px;
            animation: fadeInOut 2s ease-in-out infinite;
        }
        
        @keyframes fadeInOut {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }
        
        .scroll-line {
            width: 2px;
            height: 50px;
            background: rgba(255, 255, 255, 0.3);
            margin: 0 auto;
            position: relative;
        }
        
        .scroll-dot {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 6px;
            height: 6px;
            background: #80bbfe;
            border-radius: 50%;
            animation: scrollDot 2s ease-in-out infinite;
        }
        
        @keyframes scrollDot {
            0% {
                top: 0;
                opacity: 0;
            }
            30% {
                opacity: 1;
            }
            70% {
                opacity: 1;
            }
            100% {
                top: 100%;
                opacity: 0;
            }
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.3rem;
            }
            
            .hero-image {
                margin-top: 2rem;
            }
            
            .pattern-1,
            .pattern-2,
            .pattern-3,
            .pattern-4 {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .info-item {
                font-size: 1rem;
            }
            
            .hero-buttons .btn {
                display: block;
                width: 100%;
                margin-right: 0;
                margin-bottom: 1rem;
            }
            
            .floating-icons i {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 1.8rem;
            }
            
            .hero-content,
            .hero-image {
                padding: 1rem;
            }
            
            .abstract-shapes .abstract-shape {
                display: none;
            }
        }


/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* About Section */
.about-section {
    background: var(--light-gray);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-blue);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 168, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-blue);
}

.feature-card p {
    font-size: 0.95rem;
}

/* ================= WHY GROW ================= */
.why-grow-section {
    background: linear-gradient(135deg, #f5f9ff, #eef4ff);
}

.why-card {
    background: #fff;
    border-radius: 22px;
    padding: 5px 25px;
    text-align: center;
    height: 100%;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    align-content: center;
}

.why-card:hover {
    transform: translateY(-10px);
}

.why-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.why-card h4 {
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.prize-info-box {
    background: linear-gradient(0deg, #0c3074, #117bcd, #98bde2, #117bcd, #0c3074);
    color: #fff;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}


/* Program Section */
.program-section {
    background: linear-gradient(135deg, var(--light-gray), var(--white));
}

.timeline-container {
    position: relative;
}

.day-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    margin: 2rem 0 2rem 0;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.2);
}

.day-header h3 {
    color: var(--white);
    margin: 0;
    font-size: 1.5rem;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-blue), var(--accent-cyan));
    border-radius: 2px;
}

.timeline-item {
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    padding-right: calc(50% + 2rem);
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: calc(50% + 2rem);
    text-align: left;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
}

.timeline-marker .time {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
}

.timeline-content {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
    transform: translateY(-3px);
}

.timeline-content h5 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.timeline-content p {
    font-size: 0.95rem;
    margin: 0;
}


/* ================= DIGNITARIES ================= */
.dignitaries-section {
    background: linear-gradient(135deg, #f4f8ff, #eef4ff);
}

.dignitary-card {
    background: #fff;
    border-radius: 25px;
    padding: 25px;
    text-align: center;
    height: 100%;
    position: relative;
    box-shadow: 0 12px 35px #2e6cba;
    transition: 0.3s ease;
}

.dignitary-card:hover {
    transform: translateY(-10px);
}

.dignitary-card img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #2e6cba;
    margin-bottom: 15px;
}

.dignitary-card h5 {
    font-weight: 700;
    margin-bottom: 8px;
}

.dignitary-card p {
    font-size: 14px;
    color: #444;
}

/* Chief Guest Highlight */
.chief-card {
    border: 3px solid #2e6cba;
    box-shadow: 0 15px 40px #2e6cba;
}

.chief-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #000;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
}

/* ================= COMMITTEE ================= */
.committee-card {
    background: #fff;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.committee-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.committee-card img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 10px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.committee-card h6 {
    font-weight: 600;
    margin: 0;
}


/* Registration Section */
.registration-section {
    background: linear-gradient(135deg, var(--light-gray), var(--white));
}

.pricing-card {
    background: var(--white);
    border: 2px solid #E0E0E0;
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.pricing-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
    transform: translateY(-8px);
}

.pricing-card.featured {
    border-color: var(--primary-blue);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
    transform: scale(1.05);
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
}

.pricing-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin: 1rem 0;
    font-family: 'Playfair Display', serif;
}

.features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features i {
    color: var(--accent-cyan);
    font-weight: 600;
}

.pricing-card .btn {
    margin-top: 1rem;
    width: 100%;
}

/* Prizes Section */
.prizes-section {
    background: var(--light-gray);
}

.prize-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 5px solid;
    position: relative;
}

.prize-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.prize-card.gold {
    border-top-color: #FFD700;
}

.prize-card.silver {
    border-top-color: #C0C0C0;
}

.prize-card.bronze {
    border-top-color: #CD7F32;
}

.prize-rank {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.prize-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 1rem 0;
    font-family: 'Playfair Display', serif;
}

.prize-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ================= CONTACT ================= */
.contact-section {
    background: linear-gradient(135deg, #f4f8ff, #eef4ff);
}

.contact-glass-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.contact-glass-card:hover {
    transform: translateY(-8px);
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
}

.contact-row:last-child {
    border-bottom: none;
}

.contact-row i {
    font-size: 22px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d47ff, #00b0ff);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================= FOOTER ================= */
.main-footer {
    background: linear-gradient(135deg, #001f54, #003a8f);
    color: #dce6ff;
    padding-top: 60px;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-block p {
    font-size: 14px;
    line-height: 1.7;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #dce6ff;
    text-decoration: none;
    transition: 0.3s;
}

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

/* Social Icons */
.footer-social {
    margin-top: 15px;
}

.footer-social a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    margin-right: 8px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #00b0ff;
    transform: translateY(-3px);
}

/* Bottom bar */
.footer-bottom {
    margin-top: 50px;
    padding: 15px 0;
    background: rgba(0,0,0,0.25);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #cfd9ff;
}



/* Scroll to Top Button */
.scroll-top-btn {
    justify-self: right;
    position: fixed;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top-btn.show {
    display: flex;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 102, 204, 0.4);
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: slideUp 0.8s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.animate-scale {
    animation: scaleIn 0.6s ease-out;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-card {
        padding: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 80px;
        padding-right: 0;
        text-align: left;
    }

    .timeline-marker {
        left: 0;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 100px;
    }

    .hero-content {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-card {
        max-width: 100%;
        padding: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary,
    .btn-outline-primary {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .price,
    .prize-amount {
        font-size: 2rem;
    }

    .detail-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .timeline-item {
        padding-left: 60px !important;
    }

    .timeline-marker {
        width: 50px;
        height: 50px;
    }

    .timeline-marker .time {
        font-size: 0.65rem;
    }

    .scroll-top-btn {
        width: 45px;
        height: 45px;
        bottom: 20px;
        justify-self: right;
    }
}


/* Responsive media query adjustments */
@media (max-width: 768px) {
    /* Reset any potential horizontal scroll */
    html, body {
        width: 100%;
        overflow-x: hidden;
        position: relative;
    }
    
    /* Ensure all containers are properly constrained */
    .container, .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
    }
    
    /* Fix for animated elements on mobile */
    .pattern-1,
    .pattern-2,
    .pattern-3,
    .pattern-4 {
        width: 100px !important;
        height: 100px !important;
    }
    
    .circle-1 {
        right: -100px !important;
    }
    
    .circle-2 {
        left: -50px !important;
    }
    
    .shape-1,
    .shape-2,
    .shape-3,
    .shape-4,
    .shape-5 {
        width: 80px !important;
        height: 80px !important;
    }
}

@media (max-width: 576px) {
    /* Further adjustments for small screens */
    .hero-section {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-content,
    .hero-image {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Hide or scale down large decorative elements on very small screens */
    .pattern-1,
    .pattern-2,
    .pattern-3,
    .pattern-4 {
        display: none !important;
    }
    
    .circle-1,
    .circle-2,
    .circle-3,
    .circle-4 {
        display: none !important;
    }
}