/* ================================================
   IYMUN 2026 - PREMIUM STYLESHEET
   ================================================ */

/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800;900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* ========== VARIABLES ========== */
:root {
    --un-blue: #1F3A8A;
    --un-blue-light: #2749ac;
    --un-blue-dark: #001F3F;
    --gold: #FFD700;
    --gold-dark: #FFA500;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --gray: #6C757D;
    --dark: #0F172A;

    --gradient-primary: linear-gradient(135deg, #0A72B5 0%, #4A90E2 100%);
    --gradient-dark: linear-gradient(135deg, #001F3F 0%, #1A365D 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.24);
}

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

html {
    scroll-behavior: smooth;
}

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

/* ========== NAVBAR ========== */
.navbar-custom {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.3s ease;
}

.navbar-custom.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    font-size: .8rem;
    font-weight: 900;
    color: var(--un-blue) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand i {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 600;
    padding: 0.5rem 1rem;
    margin: 0 0.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--un-blue);
    background: rgba(10, 114, 181, 0.1);
}

.navbar-nav {
    align-items: center;
}

.btn-register-nav {
    background: var(--gradient-primary);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-register-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(10, 114, 181, 0.4);
}

/* ========== HERO SECTION ========== */
.hero-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 8, 20, 0.9) 0%, rgba(0, 31, 63, 0.8) 50%, rgba(10, 114, 181, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.6rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    /* font-family: 'Playfair Display', serif; */
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-width: 80%;
    margin: auto;
}

.gradient-text {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-location {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-location span {
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 1rem auto;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    max-width: fit-content;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.countdown-number {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-family: inherit;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.countdown-separator {
    font-size: 2.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    margin-top: -20px;
    animation: blink 1s infinite alternate;
}

@keyframes blink {
    from {
        opacity: 1;
    }

    to {
        opacity: 0.4;
    }
}

@media (max-width: 768px) {
    .hero-countdown {
        gap: 1rem;
        padding: 1.2rem;
        margin: 2rem auto;
        border-radius: 20px;
    }

    .countdown-number {
        font-size: 1.8rem;
    }

    .countdown-label {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .countdown-separator {
        font-size: 1.5rem;
        margin-top: -15px;
    }

    .countdown-item {
        min-width: 45px;
    }
}

.btn-primary-custom {
    background: var(--gradient-gold);
    color: var(--dark);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
    color: var(--dark);
}

.btn-secondary-custom {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-secondary-custom:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    color: white;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1.2rem;
    color: white;
    border: 1px solid #ccc;
    border-radius: 50%;
    padding: 7px;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ========== SECTIONS ========== */
.section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.section-light {
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
}

.section-dark {
    background: var(--gradient-dark);
    color: white;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--un-blue);
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: var(--gray);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== CARDS ========== */
.card-custom {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(10, 114, 181, 0.1);
    height: 100%;
}

.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--un-blue-dark);
}

.card-text {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ========== STATS ========== */
.stats-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.counter {
    font-size: 4rem;
    font-weight: 900;
    /* font-family: 'Playfair Display', serif; */
    display: block;
    margin-bottom: 0.5rem;
}

/* ========== PARALLAX ========== */
.parallax-section {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 8, 20, 0.9) 0%, rgba(10, 114, 181, 0.8) 100%);
}

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

/* ========== FOOTER ========== */
.footer {
    background: var(--gradient-dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px);
    color: white;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.8;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

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

    .hero-location {
        font-size: 1rem;
        flex-direction: column;
        gap: 10px;
    }

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

    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        justify-content: center;
    }

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

    .counter {
        font-size: 2rem;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease;
}


.about_who_are {}

.about_who_are .section-title {
    font-size: 2rem;
    text-align: -webkit-auto;
}


/* ################### Start Login Page  ####################### */

.login_page {
    background: linear-gradient(135deg, #0a1128 0%, #001F3F 50%, #0A72B5 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.login-container {

    margin: auto;
    max-width: 500px;
    width: 100%;
    padding: 0 1rem;
    margin-top: 80px;
}

.login-card {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.logo-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #4A90E2, #0A72B5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: white;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.4);
}

.form-control-custom {
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 1rem 1.2rem;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control-custom:focus {
    border-color: #4A90E2;
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

.btn-login {
    background: linear-gradient(135deg, #4A90E2, #0A72B5);
    color: white;
    padding: 1rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    width: 100%;
    transition: all 0.3s;
}

.btn-login:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.4);
    color: white;
}

.divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #e0e0e0;
}

.divider::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #e0e0e0;
}

.link-custom {
    color: #4A90E2;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.link-custom:hover {
    color: #0A72B5;
    text-decoration: underline;
}


form label {
    font-weight: 600;
    font-size: 14px;
}

form input {
    outline: none;
    box-shadow: none;
}

form .form-control {
    outline: none !important;
    box-shadow: none !important;
    font-size: 15px;
}

form .form-select {
    outline: none !important;
    box-shadow: none !important;
    font-size: 15px;
}


/* ########################### Start User Dashboard  */

.dashboard_page {}

.call_to_action .content {
    padding: 5rem;
}

/* ########################### Start Responsive Design #################
############
##############
################# */

@media(max-width:991px) {
    .navbar-brand {
        font-size: .6rem;
    }

    .navbar-custom {
        padding: .4rem 0;
    }

    .hero-badge {
        padding: 0.6rem .8rem;
        font-size: .8rem;
    }

    .hero-title {
        max-width: 100%;
        font-size: 2rem;
    }

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

    .hero-location {
        flex-direction: row;
        gap: 5px;
    }

    .hero-location span {
        padding: 0.5rem .5rem;
    }

    .hero-countdown {
        padding: .5rem;
    }

    .hero-buttons {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 10px;
    }

    .hero-buttons .btn-primary-custom {
        padding: .6rem 1rem;
        font-size: .8rem;
    }

    .hero-buttons .btn-secondary-custom {
        padding: .6rem 1rem;
        font-size: .8rem;
    }

    .navbar-nav {
        align-items: normal;
    }

    .call_to_action .content {
        padding: 1rem;
    }

    .card-custom {
        padding: 1rem;
    }

    .pricing-card-ultimate {
        padding: 1rem;
    }

    .coming-soon-box {
        padding: 2rem 1rem;
    }

    .contact-box {
        padding: 1rem;
    }
}