* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    overflow-x: hidden;
}

.header-font {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
}

.hero-section {
    min-height: 100vh;
}

.content-section p {
    text-align: justify;
}

.logo-header {
    text-align: center;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease;
}

.logo-header img {
    height: 680px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 20px;
    animation: fadeInLeft 0.8s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-card h3 {
    color: #0063cf;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.form-control,
.form-select {
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    padding: 12px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.form-control:focus,
.form-select:focus {
    border-color: #0063cf;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-register {
    background: linear-gradient(135deg, #7fd74a 0%, #73bc47 100%);
    color: white;
    font-weight: 600;
    padding: 15px;
    border-radius: 10px;
    border: none;
    width: 100%;
    font-size: 1.1rem;
    transition: transform 0.2s;
    margin-top: 10px;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

.content-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    animation: fadeInRight 0.8s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-title {
    color: #0063cf;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.expo-details,
.highlight-item {
    background: #f8fafc;
    padding: 10px 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
}

.video-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-bottom: 100%;
    background: #1e293b;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partner-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-top: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.logo-scroll {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right,
            transparent,
            black 10%,
            black 90%,
            transparent);
}

.logo-track {
    display: flex;
    gap: 15px;
    width: max-content;
    animation: scroll-horizontal 25s linear infinite;
}

.logo-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-horizontal {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    flex: 0 0 auto;
    min-width: 220px;
}

.logo-track:hover {
    animation-play-state: paused;
}

.partner-logo {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: transform 0.3s;
}

.partner-logo:hover {
    transform: scale(1.05);
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
}

.checkbox-label {
    font-size: 0.85rem;
    color: #6b7280;
}

.color-first {
    color: #f20000;
}

.color-second {
    color: #672afc;
}

.color-third {
    color: #0062cd;
}

/* Animate ONLY the icon */
.highlight-item i {
    display: inline-block;
    animation: iconSlide 2s ease-in-out infinite;
    padding-right: 5px;
}

/* Optional: slight staggering so icons feel natural */
.highlight-item i {
    animation-delay: 2s;
}

/* Keyframe */
@keyframes iconSlide {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(6px);
    }

    100% {
        transform: translateX(0);
    }
}

@media (max-width: 991px) {
    .form-card {
        position: relative;
        margin-bottom: 30px;
    }

    .logo-header {
        display: none;
    }

    .video-container {
        margin-top: 30px;
    }

    .content-section {
        margin-top: 30px;
    }

    h3.header-font {
        font-size: 18px;
    }

    .form-card,
    .content-section {
        padding: 25px;
    }
}