@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    /* Brand Colors */
    --primary: #8f11cd;
    --secondary: #b39e33;

    /* Neutral Colors */
    --text: #333333;
    --text-light: #666666;
    --background: #ffffff;
    --border: #e0e0e0;

    /* Typography */
    --font-family: 'Raleway', sans-serif;
    --line-height: 1.6;
    --heading-scale: 1.25;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;

    /* Layout */
    --container-max-width: 1200px;
    --border-radius: 8px;
    --shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Modern Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;

}

body {
    font-family: var(--font-family);
    line-height: var(--line-height);
    color: var(--text);
    background-color: var(--background);
    min-height: 100vh;
}

/* Container Centering */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
    width: 100%;
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: var(--space-sm);
    line-height: 1.2;
    font-weight: 700;
    color: var(--text);
}

h1 { font-size: calc(1rem * var(--heading-scale) * var(--heading-scale) * var(--heading-scale)); }
h2 { font-size: calc(1rem * var(--heading-scale) * var(--heading-scale)); }
h3 { font-size: calc(1rem * var(--heading-scale)); }
h4 { font-size: 1rem; }
h5 { font-size: 0.875rem; }
h6 { font-size: 0.75rem; }

p {
    margin-bottom: var(--space-sm);
}

/* Links */
a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: color-mix(in srgb, var(--primary) 80%, black);
}

/* Buttons */
button, .btn {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

button:hover, .btn:hover {
    background-color: color-mix(in srgb, var(--primary) 90%, black);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: var(--secondary);
}

.btn-secondary:hover {
    background-color: color-mix(in srgb, var(--secondary) 90%, black);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border);
    color: var(--text);
}

.btn-outline:hover {
    background-color: #f5f5f5;
    transform: translateY(-1px);
}

/* Header/Navigation */
header {
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-icon {

    display: flex;
    gap: 2px;
}

.logo-icon img{
    width: 50px;
    height: auto;
}

.nav-links {
    display: flex;
    gap: var(--space-lg);
    list-style: none;
}

.nav-links a {
    color: var(--text);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary);
}

.login-btn {
    padding: var(--space-xs) var(--space-md);
    /* background-color: var(--primary); */
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.6s ease;
}
.login-btn:hover {
    color: white;
    background-color: var(--primary);
    transform: translateY(-1px);
}
/* Hero Section */
.hero {
    padding: var(--space-xl) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    align-items: center;
}
.hero-content {
    width: 50%;
}
.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    width: 100%;
    margin-bottom: var(--space-md);
}

.accent {
    color: var(--primary);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: var(--space-lg);
    max-width: 90%;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.btn-large {
    padding: var(--space-sm) var(--space-lg);
    font-size: 1.125rem;
    font-weight: 600;
} 

.hero-image {
    position: relative;
    box-shadow: var(--shadow); ;
}


.image-container {
    width: 100%;
    height: 500px;
    background-color: #f5f5f5;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    color: var(--text-light);
    font-size: 1.125rem;
}
.image-placeholder img{
    width: 100%;
    height: 100%;
    object-fit: cover;

}

/* Video Styles */
.video-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-placeholder:hover .video-controls {
    opacity: 1;
}

.control-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.control-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.control-btn:active {
    transform: scale(0.95);
}

.control-btn i {
    pointer-events: none;
}

.floating-card {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: var(--space-md);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.card-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--primary);
}

.chart-icon {
    width: 100%;
    height: 30px;
    background-color: #f5f5f5;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    bottom: 5px;
    left: 5px;
    width: 90%;
    height: 2px;
    background-color: var(--text);
}

.chart-line::after {
    content: '';
    position: absolute;
    top: -3px;
    right: 0;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 8px solid var(--text);
}
.floating-card small{
    /* color: var(--secondary); */
}

/* Statistics Section */
.stats {
    /* display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin: var(--space-xl) 0; */
    display: flex;
    gap: 40px;
    margin: var(--space-xl) 0;
}

.stat-card {
    padding: var(--space-lg);
    border-radius: var(--border-radius);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 200px;
    position: relative;
}

.stat-card:nth-child(1) {
    background-color: #1E1612;
    background-image: radial-gradient(ellipse 65% 90% at 100% 50%,rgba(216, 124, 60, 0.35),transparent );
    border-radius: 20px;
    width: 550px;
    height: 150px;
}

.stat-card:nth-child(2) {
    background-image: radial-gradient(ellipse 65% 90% at 100% 50%, rgba(177, 60, 216, 0.153), transparent);
    border: 1px solid var(--text);
    color: var(--text);
    border-radius: 20px;
    width: 550px;
}
.stat-card:hover {
    transform: scale(1.03);
    transition: transform 0.6s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* .stat-card:nth-child(3) {
    background-color: #453e26;
    background-image: radial-gradient(ellipse 65% 90% at 100% 50%,rgba(127, 255, 212, 0.2),transparent );
    border-radius: 20px;
} */

.avatars {
    display: flex;
    margin-bottom: var(--space-md);
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #555;
    margin-right: -8px;
    border: 2px solid #333;
}


.avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.stat-text {
    font-size: 1rem;
}

.stat-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    /* height: 24px; */
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
.container {
    padding: 0 var(--space-sm);
}

:root {
    --heading-scale: 1.2;
}

.hero {
    flex-direction: column;

}
.hero-content {
    width: 100%;
    /* text-align: center; */
}
.hero-content h1 {
    font-size: 2.5rem;
}

.hero-content p {
    font-size: 1.125rem;
}

.cta-buttons {
    flex-direction: column;
    gap: var(--space-sm);
}

.nav-links {
    display: none;
}

.stats {
    flex-direction: column;
}

.stat-card{
    width: 100%;
}
.stat-card:nth-child(1) {
    width: 100%;
    height: auto;
}
.stat-card:nth-child(2) {
    width: 100%;
    height: auto;
}

.floating-card {
    width: 150px;
    padding: var(--space-sm);
}
}

/* HERO SECTION END */


 /* MISSION SECTION START*/
.mission-section {
    padding: var(--space-xl) 0;
    background-color: var(--background);
}

.mission-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mission-header h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.mission-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: var(--space-lg);
    max-width: 1100px;
    margin: 0 auto;
}

.mission-card {
    background: white;
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    box-shadow: var(--shadow);
    display: flex;
    gap: var(--space-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mission-card:nth-child(1 ), .mission-card:nth-child(4) {
    background-color: #1E1612;
    background-image: radial-gradient(ellipse 65% 90% at 100% 50%,rgba(216, 124, 60, 0.35),transparent );
    transition: background-color 0.5s ease;
}
.mission-card:nth-child(1 ) h3, .mission-card:nth-child(4) h3, .mission-card:nth-child(1 ) p, .mission-card:nth-child(4) p{
    color: white;
}

.mission-card:nth-child(1):hover, .mission-card:nth-child(4):hover {
    background-color: var(--background);
    border: 2px solid var(--text) ;
}
.mission-card:nth-child(1):hover h3, .mission-card:nth-child(4):hover h3, .mission-card:nth-child(1):hover p, .mission-card:nth-child(4):hover p {
    color: var(--text);
}

.mission-card:nth-child(2), .mission-card:nth-child(5) {
    /* background-color: #f9f9f9; */
    border: 2px solid var(--text) ;
    transition: background-color 0.5s ease;
        background-image: radial-gradient(ellipse 65% 90% at 100% 50%,rgba(216, 124, 60, 0.35),transparent );

}
.mission-card:nth-child(2):hover, .mission-card:nth-child(5):hover {
    background-color: #1E1612;
    background-image: radial-gradient(ellipse 65% 90% at 100% 50%,rgba(216, 124, 60, 0.35),transparent );
    border: none;
}
.mission-card:nth-child(2):hover h3, .mission-card:nth-child(5):hover h3, .mission-card:nth-child(2):hover p, .mission-card:nth-child(5):hover p {
    color: white;
}
.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);

}

.mission-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    background-color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1); /* Makes SVG white */
}

.mission-content h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    color: var(--text);
}

.mission-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.mission-image {
    grid-column: 2;
    grid-row: 1 / span 2;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    color: var(--text-light);
}

/* Positioning for the mission cards */
.mission-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.mission-card:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
}

.mission-card:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
}

.mission-card:nth-child(4) {
    grid-column: 3;
    grid-row: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-sm);
    }

    :root {
        --heading-scale: 1.2;
    }

    .mission-header h2 {
        font-size: 2rem;
        text-align: start;
    }

    .mission-header p {
        font-size: 1rem;
        text-align: start;
    }
    .mission-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: var(--space-md);
    }

    .mission-image {
        grid-column: 1;
        grid-row: 3;
        min-height: 300px;
        order: 3;
    }

    .mission-card:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    .mission-card:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

    .mission-card:nth-child(3) {
        grid-column: 1;
        grid-row: 4;
    }

    .mission-card:nth-child(4) {
        grid-column: 1;
        grid-row: 5;
    }
}
/* MISSION SECTION END */


 /* Problem/Opportunity Section */
        .problem-opportunity-section {
            padding: var(--space-xl) 0;
            background-color: var(--background);
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-xl);
            align-items: center;
        }

        .image-column {
            display: flex;
            justify-content: center;
        }

        .image-container {
            width: 100%;
            max-width: 400px;
            height: 400px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .image-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
            color: var(--text-light);
            font-size: 1.5rem;
        }

        .image-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .text-column {
            padding: var(--space-md) 0;
            min-width: 0;
        }

        .section-label {
            display: inline-block;
            padding: 6px 12px;
            border: 1px solid var(--border);
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: var(--space-md);
        }

        .text-column h2 {
            font-size: 2.25rem;
            line-height: 1.2;
            margin-bottom: var(--space-md);
        }

        .text-column p {
            font-size: 1.125rem;
            color: var(--text-light);
            margin-bottom: var(--space-lg);
        }

        /* Infinite Features Carousel */
        .features-carousel-wrapper {
            overflow: hidden;
            position: relative;
            width: 100%;
            margin-top: var(--space-md);
            mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
        }

        .features-scroll-track {
            display: flex;
            gap: 12px;
            animation: scrollFeatures 25s linear infinite;
            width: fit-content;
        }

        .features-scroll-track:hover {
            animation-play-state: paused;
        }

        @keyframes scrollFeatures {
            0% {
                transform: translateX(-50%);
            }
            100% {
                transform: translateX(0);
            }
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 16px;
            background-color: #f9fafb;
            border-radius: 8px;
            border: 1px solid var(--border);
            white-space: nowrap;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            background-color: #f3f4f6;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-icon svg {
            width: 10px;
            height: 10px;
            fill: white;
        }

        .feature-text {
            font-size: 0.9rem;
            color: var(--text);
            font-weight: 500;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 0 var(--space-sm);
            }

            .content-grid {
                grid-template-columns: 1fr;
                gap: var(--space-lg);
            }

            .image-container {
                max-width: 100%;
                height: 300px;
            }

            .text-column h2 {
                font-size: 1.75rem;
            }

            .features-scroll-track {
                animation-duration: 20s;
            }
        }

        @media (max-width: 480px) {
            .text-column h2 {
                font-size: 1.5rem;
            }

            .text-column p {
                font-size: 1rem;
            }

            .feature-item {
                padding: 8px 14px;
            }

            .feature-text {
                font-size: 0.85rem;
            }
        }


/* SOLUTION SECTION START */
.solution-section {
    padding: var(--space-xl) 0;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
}



.solution-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.solution-header h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    
    /* color: transparent; */
    position: relative;
    display: inline-block;
}


.solution-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* Carousel Container */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: var(--space-md) 0;
}

.carousel-track {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
    gap: var(--space-md);
}

.carousel-container:hover .carousel-track {
    animation-play-state: paused;
}

/* Card Styles */
.solution-card {
    min-width: 320px;
    background-image: radial-gradient(ellipse 65% 90% at 100% 50%, rgba(216, 124, 60, 0.35), transparent);
    border: 2px solid rgba(245, 245, 245, 0.1);
    border-radius: 20px;
    padding: var(--space-lg);
    color: var(--text);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.solution-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--primary);
}

.solution-card i {
    color: var(--background);
    font-size: 1.5rem;
}

.solution-card p {
    color: var(--text);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.solution-card:hover .card-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 2;
}

.card-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 2;
}

/* Decorative elements for cards */
.card-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(142, 17, 205, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.5s ease;
}

.decoration-1 {
    top: -30px;
    right: -30px;
}

.decoration-2 {
    bottom: -30px;
    left: -30px;
    background: radial-gradient(circle, rgba(179, 158, 51, 0.2) 0%, transparent 70%);
}

.solution-card:hover .card-decoration {
    opacity: 1;
    transform: scale(1.2);
}

/* Animation for infinite scrolling */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Gradient overlays for smooth edges */
.carousel-container::before,
.carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient(to right, var(--background), transparent);
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(to left, var(--background), transparent);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-sm);
    }

    .solution-header h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .solution-header p {
        font-size: 1rem;
        text-align: center;
    }

    .solution-card {
        min-width: 280px;
    }
    
    .carousel-container::before,
    .carousel-container::after {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .solution-header h2 {
        font-size: 1.75rem;
    }
    
    .solution-card {
        min-width: 260px;
        padding: var(--space-md);
    }
}

 /* Network Partners Section */
.partners-section {
    padding: var(--space-xl) 0;
    background-color: var(--background);
    margin: 5rem 0;
}

.partners-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.partners-header h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.partners-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 1100px;
    margin: 0 auto;
}

.partner-card {
    background: white;
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.5s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.partner-card:nth-child(1) {
    /* background-color: #1E1612; */
    background-image: radial-gradient(ellipse 65% 90% at 100% 50%, rgba(216, 124, 60, 0.35), transparent);
    margin-top: 3rem;
}

.partner-card:nth-child(1) h3,
.partner-card:nth-child(1) .partner-list,
.partner-card:nth-child(1) .partner-list li {
    color: ;
}

.partner-card:nth-child(2) {
    border: 2px solid var(--text);
    background-image: radial-gradient(ellipse 65% 90% at 100% 50%, rgba(216, 124, 60, 0.35), transparent);
    ;
}

.partner-card:nth-child(3) {
    /* background-color: #1E1612; */
    background-image: radial-gradient(ellipse 65% 90% at 100% 50%, rgba(216, 124, 60, 0.35), transparent);
    margin-top: 3rem;
}

.partner-card:nth-child(3) h3,
.partner-card:nth-child(3) .partner-list,
.partner-card:nth-child(3) .partner-list li {
    color:;
}

/* Hover effects */
.partner-card:nth-child(1):hover,
.partner-card:nth-child(3):hover {
    background-color: var(--background);
    border: 2px solid var(--text);
}

.partner-card:nth-child(1):hover h3,
.partner-card:nth-child(3):hover h3,
.partner-card:nth-child(1):hover .partner-list,
.partner-card:nth-child(3):hover .partner-list,
.partner-card:nth-child(1):hover .partner-list li,
.partner-card:nth-child(3):hover .partner-list li {
    color: var(--text);
}

.partner-card:nth-child(2):hover {
    background-color: #1E1612;
    background-image: radial-gradient(ellipse 65% 90% at 100% 50%, rgba(216, 124, 60, 0.35), transparent);
    border: none;
}

.partner-card:nth-child(2):hover h3,
.partner-card:nth-child(2):hover .partner-list,
.partner-card:nth-child(2):hover .partner-list li {
    color: white;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.partner-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    background-color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.partner-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.icon-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    text-align: center;
}

.partner-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--text);
}

.partner-list {
    list-style-type: none;
    margin-top: auto;
}

.partner-list li {
    padding: var(--space-xs) 0;
    color: var(--text-light);
    position: relative;
    padding-left: var(--space-md);
}

.partner-list li:before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
.container {
    padding: 0 var(--space-sm);
}

:root {
    --heading-scale: 1.2;
}

.partners-header h2 {
    font-size: 2rem;
}

.partners-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
}
}




        /* ABOUT SECTION START*/
        .about-section {
            padding: var(--space-xl) 0;
            background-color: #f8f9fa;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-xl);
            align-items: center;
        }

        .about-text {
            padding-right: var(--space-md);
            min-width: 0;
        }

        .about-text h2 {
            font-size: 2.25rem;
            margin-bottom: var(--space-md);
            color: var(--text);
        }

        .company-info {
            margin-bottom: var(--space-lg);
        }

        .company-name {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: var(--space-xs);
            color: var(--text);
        }

        .company-reg {
            font-size: 1rem;
            color: var(--text-light);
            margin-bottom: var(--space-md);
        }

        .mission-quote {
            background-color: white;
            border-radius: var(--border-radius);
            padding: var(--space-lg);
            box-shadow: var(--shadow);
            border-left: 1px solid var(--primary);
            border-right: 1px solid var(--primary);
            position: relative;
        }

        .mission-text {
            font-size: 1.125rem;
            line-height: 1.7;
            color: var(--text);
            font-style: italic;
            position: relative;
            z-index: 1;
        }

        .about-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .event-container {
            width: 100%;
            max-width: 450px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            background: white;
            padding: var(--space-xl);
            text-align: center;
            position: relative;
        }

        .event-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
        }

        .event-container::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
        }

        .event-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto var(--space-md);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            border: 1px solid var(--primary);
            background-color: #f8f9fa;
        }

        .event-icon img {
            width: 35px;
        }

        .event-title {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: var(--space-md);
            color: var(--text);
            line-height: 1.3;
        }

        .event-description {
            font-size: 1.125rem;
            color: var(--text-light);
            margin-bottom: var(--space-md);
            line-height: 1.5;
        }

        .limited-spaces {
            display: inline-block;
            padding: var(--space-xs) var(--space-sm);
            background-color: rgba(179, 158, 51, 0.1);
            color: var(--secondary);
            font-weight: 600;
            border-radius: 20px;
            margin-bottom: var(--space-lg);
            font-size: 0.9rem;
        }

        .event-buttons {
            display: flex;
            gap: var(--space-sm);
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-register {
            background-color: var(--primary);
            color: white;
            padding: var(--space-sm) var(--space-lg);
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.125rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            flex: 1;
            min-width: 160px;
        }

        .btn-register:hover {
            background-color: color-mix(in srgb, var(--primary) 90%, black);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(142, 17, 205, 0.3);
        }

        .btn-later {
            background-color: transparent;
            color: var(--text);
            padding: var(--space-sm) var(--space-lg);
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.125rem;
            border: 2px solid var(--border);
            cursor: pointer;
            transition: all 0.3s ease;
            flex: 1;
            min-width: 160px;
        }

        .btn-later:hover {
            background-color: #f5f5f5;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Pillars Carousel - New infinite scroll implementation */
        .pillars-carousel-wrapper {
            overflow: hidden;
            position: relative;
            width: 100%;
            margin-top: var(--space-lg);
            mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
        }

        .pillars-scroll-track {
            display: flex;
            gap: 12px;
            animation: scrollPillars 20s linear infinite;
            width: fit-content;
        }

        .pillars-scroll-track:hover {
            animation-play-state: paused;
        }

        @keyframes scrollPillars {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .pillar-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 16px;
            background-color: white;
            border-radius: 8px;
            border: 1px solid var(--border);
            white-space: nowrap;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .pillar-item:hover {
            background-color: #f9fafb;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .pillar-icon {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .pillar-text {
            font-weight: 500;
            color: var(--text);
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 0 var(--space-sm);
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: var(--space-lg);
            }

            .about-text {
                padding-right: 0;
            }

            .about-text h2 {
                font-size: 1.75rem;
            }

            .event-container {
                max-width: 100%;
                padding: var(--space-lg);
            }

            .event-title {
                font-size: 1.5rem;
            }

            .event-buttons {
                flex-direction: column;
            }

            .pillars-scroll-track {
                animation-duration: 15s;
            }
        }

        @media (max-width: 480px) {
            .about-text h2 {
                font-size: 1.5rem;
            }

            .company-name {
                font-size: 1.25rem;
            }

            .mission-text {
                font-size: 1rem;
            }

            .pillar-item {
                padding: 8px 14px;
            }

            .pillar-text {
                font-size: 0.85rem;
            }
        }

/* Event Details Section */
.events-section {
    padding: var(--space-xl) 0;
    background-color: #f8f9fa;
}

.events-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.events-header h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.events-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.events-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.dates-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.date-card {
    background-image: radial-gradient(ellipse 65% 90% at 100% 50%, rgba(216, 125, 60, 0.153), transparent);
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--text);
    border-radius: 20px;
}

.date-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.date-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    color: var(--text);
}

.date-card .date {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.date-card .note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.details-column {
    background-image: radial-gradient(ellipse 65% 90% at 100% 50%, rgba(216, 125, 60, 0.153), transparent);
    border: 1px solid var(--text);
    border-radius: 20px;
    padding: var(--space-md);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.venue-info {
    margin-bottom: var(--space-lg);
}
.venue-info img{
    width: 50px;
    border-radius: var(--border-radius);
    margin-bottom: var(--space-md);
}

.venue-info h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--text);
}

.venue-details {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.venue-icon, .time-icon {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.venue-icon svg, .time-icon svg {
    width: 14px;
    height: 14px;
    fill: white;
}

.venue-text {
    color: var(--text);
}

.venue-name {
    font-weight: 600;
    margin-bottom: 4px;
}

.venue-address {
    color: var(--text-light);
    font-size: 0.95rem;
}

.time-info {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.time-text {
    color: var(--text);
    font-weight: 600;
}

.cta-container {
    text-align: center;
    margin-top: var(--space-xl);
}

.btn-register {
    background-color: var(--primary);
    color: white;
    padding: var(--space-sm) var(--space-lg);
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-register:hover {
    background-color: color-mix(in srgb, var(--primary) 90%, black);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(142, 17, 205, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
.container {
    padding: 0 var(--space-sm);
}

:root {
    --heading-scale: 1.2;
}

.events-header h2 {
    font-size: 2rem;
}

.events-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.date-card .date {
    font-size: 1.25rem;
}
}


/* Why Attend Section */
.why-attend-section {
    padding: var(--space-xl) 0;
    background-image: radial-gradient(ellipse 65% 90% at 100% 50%, rgba(177, 60, 216, 0.153), transparent);
    position: relative;
    overflow: hidden;
}

.why-attend-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.why-attend-header h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.why-attend-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* Carousel Container */
.why-attend-section .carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: var(--space-md) 0;
}

.why-attend-section .carousel-track {
    display: flex;
    width: max-content;
    animation: scrollLeftToRight 35s linear infinite;
    gap: var(--space-lg);
}

.why-attend-section .carousel-container:hover .carousel-track {
    animation-play-state: paused;
} 

/* Card Styles */
.why-attend-card {
    min-width: 340px;
    background-color: white;
    border: 1px solid rgba(245, 245, 245, 0.2);
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-attend-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.why-attend-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.why-attend-card:hover .why-attend-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.icon-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    text-align: center;
    font-weight: 600;
}

.why-attend-content {
    position: relative;
    z-index: 2;
}

.why-attend-content h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--text);
}

.why-attend-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Card accent borders */
.why-attend-card:nth-child(1),
.why-attend-card:nth-child(3),
.why-attend-card:nth-child(5),
.why-attend-card:nth-child(7),
.why-attend-card:nth-child(9),
.why-attend-card:nth-child(11) {
    border-top: 2px solid var(--primary);
}

.why-attend-card:nth-child(2),
.why-attend-card:nth-child(4),
.why-attend-card:nth-child(6),
.why-attend-card:nth-child(8),
.why-attend-card:nth-child(10),
.why-attend-card:nth-child(12) {
    border-top: 2px solid var(--secondary);
}

/* Animation for right-to-left scrolling */
@keyframes scrollLeftToRight{
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}


/* Responsive Design */
@media (max-width: 900px) {
    .why-attend-card {
        min-width: 300px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 var(--space-sm);
    }

    .why-attend-header h2 {
        font-size: 2rem;
    }

    .why-attend-card {
        min-width: 280px;
        padding: var(--space-md);
    }
    
    .carousel-container::before,
    .carousel-container::after {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .why-attend-header h2 {
        font-size: 1.75rem;
    }
    
    .why-attend-card {
        min-width: 260px;
    }
}





/* Eligibility Section */
.eligibility-section {
    padding: var(--space-xl) 0;
    background-color: #f8f9fa;
}

.eligibility-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.eligibility-header {
    margin-bottom: var(--space-lg);
}

.eligibility-header h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.eligibility-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.eligibility-card {
    background: white;
    border-radius: var(--border-radius);
    padding: var(--space-xl);
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

.eligibility-list {
    list-style-type: none;
    text-align: left;
    margin-bottom: var(--space-lg);
}

.eligibility-list li {
    padding: var(--space-sm) 0;
    color: var(--text);
    position: relative;
    padding-left: var(--space-lg);
    font-size: 1.125rem;
}

.eligibility-list li:before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-size: 2rem;
    line-height: 1;
}

.eligibility-note {
    font-style: italic;
    color: var(--text-light);
    border-top: 1px solid var(--border);
    padding-top: var(--space-md);
    font-size: 1.125rem;
}

/* CTA SECTION */
.cta-section {
    padding: var(--space-xl) 0;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(142, 17, 205, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(179, 158, 51, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    background-image: radial-gradient(ellipse 65% 90% at 100% 50%, rgba(216, 124, 60, 0.35), transparent);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: var(--space-xl);
    transition: all 0.3s ease;
}

.cta-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.cta-header h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    color: var(--text);
}

.cta-header p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: var(--space-lg);
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    padding: var(--space-sm) var(--space-lg);
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background-color: color-mix(in srgb, var(--primary) 90%, black);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(142, 17, 205, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text);
    padding: var(--space-sm) var(--space-lg);
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.125rem;
    border: 2px solid var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--text);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* CONTACT SECTION */
.contact-section {
    padding: var(--space-xl) 0;
    background-color: #f8f9fa;
}

.contact-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.contact-header h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    color: var(--text);
}

.contact-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 1100px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: var(--space-xl);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.contact-card:nth-child(1) {
    background-image: radial-gradient(ellipse 65% 90% at 100% 50%, rgba(216, 124, 60, 0.35), transparent);
}

.contact-card:nth-child(2) {
    border: 2px solid var(--border);
}

.contact-card:nth-child(3) {
    background-image: radial-gradient(ellipse 65% 90% at 100% 50%, rgba(216, 124, 60, 0.35), transparent);
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: rotate(10deg) scale(1.1);
}

.contact-icon svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.contact-info {
    width: 100%;
}

.contact-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.contact-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: var(--space-sm);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    margin-top: var(--space-sm);
}

.social-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid transparent;
}

.social-link:hover {
    color: var(--primary);
    border-color: var(--primary);
    background-color: rgba(142, 17, 205, 0.05);
}



/* Registration Form Section */
.registration-section {
    padding: var(--space-xl) 0;
    background-color: var(--background);
}

.registration-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.registration-header h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    color: var(--text);
}

.registration-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.registration-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: var(--space-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: var(--space-xs);
}

.form-group input,
.form-group select {
    padding: var(--space-sm);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: var(--font-family);
    color: var(--text);
    background-color: #f9fafb;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 5px rgba(143, 17, 205, 0.3);
}

.form-group input::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right var(--space-sm) center;
    background-size: 1em;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
}

.checkbox-group label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.checkbox-group label a {
    color: var(--primary);
    text-decoration: underline;
}

.checkbox-group label a:hover {
    color: color-mix(in srgb, var(--primary) 80%, black);
}

.registration-form .btn-primary {
    padding: var(--space-sm) var(--space-lg);
    font-size: 1.125rem;
    font-weight: 600;
    background-color: var(--primary);
    color: white;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
}

.registration-form .btn-primary:hover {
    background-color: color-mix(in srgb, var(--primary) 90%, black);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .registration-header h2 {
        font-size: 2rem;
    }

    .registration-header p {
        font-size: 1rem;
    }

    .registration-form-container {
        padding: var(--space-md);
    }
}

@media (max-width: 480px) {
    .registration-header h2 {
        font-size: 1.75rem;
    }

    .registration-form .btn-primary {
        font-size: 1rem;
        padding: var(--space-xs) var(--space-md);
    }
}

/*FOOTER SECTION */
 .footer-section {
    padding: var(--space-xl) 0 var(--space-lg);
    background-color: var(--background);
    border-top: 1px solid var(--border);
    position: relative;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(142, 17, 205, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(179, 158, 51, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
    margin-bottom: var(--space-lg);
    border-bottom: 2px solid var(--border);
}

.footer-brand h3 {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
    color: var(--text);
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #f8f9fa;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: var(--primary);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--text);
    transition: fill 0.3s ease;
}

.social-icon:hover svg {
    fill: white;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.footer-column h4 {
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
    color: var(--text);
    font-weight: 700;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: var(--space-sm);
}

.footer-column a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-column a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
}

.footer-copyright p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary);
}

/* ============================================
   RESPONSIVE DESIGN 
   ============================================ */
@media (max-width: 768px) {
    .cta-header h2,
    .contact-header h2 {
        font-size: 2rem;
    }

    .cta-content {
        padding: var(--space-lg);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cta-header h2,
    .contact-header h2 {
        font-size: 1.75rem;
    }

    .cta-header p {
        font-size: 1rem;
    }
}