/* HERO BANNER */
.hero-content {
    color: white;
    padding: 50px 0;
}

.hero-content h1 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 600px;
    animation: fadeInUp 1.2s ease;
}

.hero-btn {
    background: white;
    color: #1e3c72;
    padding: 15px 20px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    animation: fadeInUp 1.4s ease;
    text-decoration: none;
    display: inline-block;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    color: #1e3c72;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 20px 0;
    }
    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .contact-icon {
        font-size: 28px !important;
    }
    
}

/* BANNER */
.slider-container { width: 100%; max-width: 960px; }

.slider-wrap {
    width: 100%;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
    border: 1px solid #e5e5e5;
}

/* BANNER - Progress bar */
.progress-bar { height: 3px; background: #e8e8e8; width: 100%; }
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4f8ef7, #a78bfa);
    width: 0%;
    transition: width 0.1s linear;
}

.stage {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #1a1a1a;
}

.slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.55s ease;
    pointer-events: none;
}

.slide.active { opacity: 1; pointer-events: all; }

.slide img, .slide video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    cursor: pointer;
}

/* BANNER - Type badge */
.badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    z-index: 5;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

/* BANNER - Fullscreen button */
.maximize-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.6);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 7px;
    cursor: pointer;
    z-index: 10;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: background 0.2s, transform 0.15s;
}
.maximize-btn:hover { background: rgba(255,255,255,0.25); transform: scale(1.08); }

/* BANNER - Nav buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.15s;
    backdrop-filter: blur(4px);
}
.nav-btn:hover { background: rgba(255,255,255,0.3); transform: translateY(-50%) scale(1.08); }
.nav-prev { left: 14px; }
.nav-next { right: 14px; }

/* BANNER - Countdown ring */
.countdown-ring {
    position: absolute;
    bottom: 14px;
    right: 14px;
    z-index: 8;
    width: 38px;
    height: 38px;
}
.countdown-ring svg { transform: rotate(-90deg); }
.ring-track { fill: none; stroke: rgba(255,255,255,0.2); stroke-width: 3; }
.ring-fill  { fill: none; stroke: #fff; stroke-width: 3; stroke-linecap: round; stroke-dasharray: 100.53; stroke-dashoffset: 0; transition: stroke-dashoffset 0.2s linear; }
.countdown-num {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
}

/* BAMMER - Fullscreen hint */
.fs-hint {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(0,0,0,0.5);
    color: rgba(255,255,255,0.55);
    font-size: 10px;
    padding: 3px 9px;
    border-radius: 20px;
    z-index: 8;
    pointer-events: none;
    letter-spacing: 0.3px;
}

/* BANNER - Title bar */
.title-bar {
    background: #fff;
    padding: 5px 20px;
    border-top: 1px solid #efefef;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
}

.media-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 16px;
}

.media-subtitle {
    font-size: 12px;
    color: #999;
    white-space: nowrap;
}

/* BANNER - Dots + counter row */
.bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px 14px;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

.dots {
    display: flex;
    align-items: center;
    gap: 7px;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    border: none;
}
.dot.active { background: #4f8ef7; transform: scale(1.35); }

.slide-counter {
    font-size: 12px;
    color: #bbb;
    letter-spacing: 0.4px;
}

/* Applications Quick Access */
.btn-apply {
    background: linear-gradient(105deg, rgba(5, 7, 94, 1) 0%, var(--dark-blue) 50%);
    color: white;
    padding: 12px 35px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}
.btn-apply:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
    color: white;
}
.applications-quick-access {
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.05) 0%, rgba(42, 82, 152, 0.05) 100%);
    border: 2px dashed #1e3c72;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s;
}
.applications-quick-access:hover {
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.1) 0%, rgba(42, 82, 152, 0.1) 100%);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 60, 114, 0.15);
}


/* Contact Section */
.contact-section {
    background: linear-gradient(
        105deg,
        #05075E 0%,
        #1113A2 58%,
        #274cb9 100%
    );
    box-shadow:0 4px 12px rgba(0,0,0,0.15);
    color: white;
    padding: 80px 0;
}
.contact-section .section-title {
    color: white;
}
.contact-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px 25px;
    margin-bottom: 15px;
    color: white;
    transition: all 0.3s;
}
.contact-card:hover {
    background: rgba(255,255,255,0.15);
    cursor: default;
}
.contact-icon {
    font-size: 32px;
    margin-bottom: 15px;
}
.contact-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.contact-card p {
    margin: 0;
    opacity: 0.9;
}