/* ===== VARIABLES ===== */
:root {
    --primary: #0B2B5E; /* Navy Blue */
    --primary-light: #1A4081;
    --secondary: #D4AF37; /* Gold */
    --secondary-hover: #C5A028;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow: 0 10px 30px rgba(11, 43, 94, 0.08);
    --shadow-hover: 0 15px 40px rgba(11, 43, 94, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}

.text-gold {
    color: var(--secondary) !important;
}

.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-5 { margin-top: 3rem; }
.pb-5 { padding-bottom: 3rem; }

/* ===== TYPOGRAPHY & TITLES ===== */
.section-subtitle {
    display: inline-block;
    color: var(--secondary);
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

.section-desc {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.btn-lg {
    padding: 15px 35px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* ===== URGENCY BANNER ===== */
.urgency-banner {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    position: relative;
    z-index: 1000;
}

.urgency-banner a {
    color: var(--secondary);
    text-decoration: underline;
}

/* ===== NAVBAR ===== */
.navbar {
    background-color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon-img {
    height: 42px;
    width: auto;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.logo:hover .logo-icon-img {
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.logo-accent {
    color: var(--secondary);
    font-weight: 600;
}

/* Footer logo */
.footer-logo-icon {
    height: 45px;
    width: auto;
    background: var(--white);
    padding: 5px 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-icon {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.footer-logo-text {
    color: var(--white) !important;
}

.footer-logo-text .logo-accent {
    color: var(--secondary) !important;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

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

.nav-buttons {
    display: flex;
    gap: 15px;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--primary);
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    min-height: 700px;
    background: url('images/hero.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 20, 40, 0.92) 0%, rgba(11, 43, 94, 0.75) 50%, rgba(11, 43, 94, 0.5) 100%);
}

/* Floating particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    animation: float-particle 8s infinite ease-in-out;
}

.particle:nth-child(1) { top: 20%; left: 60%; animation-delay: 0s; animation-duration: 7s; }
.particle:nth-child(2) { top: 50%; left: 80%; animation-delay: 2s; animation-duration: 9s; }
.particle:nth-child(3) { top: 70%; left: 40%; animation-delay: 4s; animation-duration: 6s; }

@keyframes float-particle {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    25% { transform: translateY(-30px) translateX(15px); opacity: 0.8; }
    50% { transform: translateY(-15px) translateX(-10px); opacity: 0.5; }
    75% { transform: translateY(-40px) translateX(20px); opacity: 0.9; }
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    color: var(--white);
}

/* Badge subtitle */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 25px;
    backdrop-filter: blur(8px);
    color: var(--secondary);
    animation: badge-glow 3s ease-in-out infinite;
}

.hero-badge i {
    font-size: 0.9rem;
}

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.1); }
    50% { box-shadow: 0 0 25px rgba(212, 175, 55, 0.25); }
}

.hero-title {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 22px;
    color: var(--white);
    font-weight: 700;
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 35px;
    opacity: 0.85;
    line-height: 1.8;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* Stats panel - glassmorphism cards */
.hero-stats-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 28px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: default;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateX(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
}

.stat-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--secondary), #E8C64A);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: rotate(-5deg) scale(1.1);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.65;
    color: var(--white);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce-scroll 2s infinite;
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--secondary);
    border-radius: 2px;
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

@keyframes bounce-scroll {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Hero responsive */
@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-title {
        font-size: 2.6rem;
    }
    .hero-stats-panel {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .stat-card {
        flex: 1;
        min-width: 180px;
    }
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: auto;
        padding: 120px 0 60px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-cta {
        flex-direction: column;
    }
    .hero-stats-panel {
        flex-direction: column;
    }
    .stat-card {
        min-width: auto;
    }
}

/* ===== ABOUT SECTION ===== */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transition: var(--transition);
}

.about-image img:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--secondary);
    color: var(--white);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
    border: 8px solid var(--white);
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.about-text {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.mission-vision {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.mv-box {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.mv-box:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.mv-box .icon-wrap {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.mv-box h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

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

/* ===== LEADERSHIP ===== */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 40px auto 0;
}

.leader-card {
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

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

.leader-img {
    height: 350px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.leader-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.leader-card:hover .leader-img img {
    transform: scale(1.05);
}

.leader-info {
    padding: 25px;
    background: var(--white);
    border-top: 4px solid var(--secondary);
}

.leader-info h3 {
    margin-bottom: 5px;
    font-size: 1.4rem;
}

.leader-info p {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .leadership-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== COURSES ===== */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.course-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.course-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.course-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-card:hover .course-img img {
    transform: scale(1.1);
}

.course-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.course-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.course-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.course-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.course-features {
    margin-bottom: 25px;
    flex-grow: 1;
}

.course-features li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
}

.course-features li i {
    color: var(--secondary);
}

/* ===== WHY US ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 10px;
    border: 1px solid #EAEAEA;
    transition: var(--transition);
    background: var(--white);
}

.feature-card:hover {
    box-shadow: var(--shadow);
    border-color: transparent;
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(11, 43, 94, 0.05);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: var(--white);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem; 
}

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

/* ===== PLACEMENTS ===== */
.partners-marquee {
    overflow: hidden;
    padding: 40px 0;
    position: relative;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.partners-marquee::before, .partners-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.partners-marquee::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.partners-marquee::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 20s linear infinite;
}

.partner-logo {
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 600;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    position: relative;
}

.process-steps-5 {
    grid-template-columns: repeat(5, 1fr);
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #EAEAEA;
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    border: 5px solid var(--bg-light);
    transition: var(--transition);
}

.step:hover .step-icon {
    background: var(--secondary);
    transform: scale(1.1);
}

.step h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.step p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ===== CONTACT & FAQ ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-list {
    margin-bottom: 30px;
}

.contact-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-list i {
    width: 45px;
    height: 45px;
    background: rgba(11, 43, 94, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-list h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

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

/* FAQ */
.faq-accordion {
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-header {
    background: var(--white);
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-header:hover {
    color: var(--primary);
}

.faq-header i {
    transition: transform 0.3s;
}

.faq-item.active .faq-header {
    background: var(--primary);
    color: var(--white);
}

.faq-item.active .faq-header i {
    transform: rotate(180deg);
}

.faq-content {
    background: var(--bg-light);
    padding: 20px;
    display: none;
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(11, 43, 94, 0.1);
}

select.form-control {
    appearance: none;
    background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' 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") no-repeat right 15px center;
    background-size: 15px;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #061428;
    color: rgba(255, 255, 255, 0.75);
    padding: 70px 0 20px;
}

.footer h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.25rem;
    position: relative;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-grid-new {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1.3fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo-img {
    height: 55px;
    background-color: var(--white);
    padding: 8px 14px;
    border-radius: 10px;
    transition: var(--transition);
}

.footer-logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.footer-tagline {
    margin-top: 18px;
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 0.95rem;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Address List */
.footer-address-list {
    list-style: none;
}

.footer-address-list li {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
    align-items: flex-start;
    font-size: 0.93rem;
    line-height: 1.7;
    transition: var(--transition);
}

.footer-address-list li:hover {
    transform: translateX(5px);
}

.footer-address-list li i {
    color: var(--secondary);
    font-size: 1rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-address-list li strong {
    color: var(--white);
}

/* Contact List */
.footer-contact-list {
    list-style: none;
}

.footer-contact-list li {
    margin-bottom: 16px;
}

.footer-contact-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.93rem;
    transition: var(--transition);
    padding: 8px 0;
}

.footer-contact-list li a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.footer-contact-list li a i {
    color: var(--secondary);
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.contact-tag {
    font-size: 0.8rem;
    opacity: 0.6;
}

.wa-footer-link i {
    color: #25D366 !important;
}

.wa-footer-link:hover {
    color: #25D366 !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

/* Footer Responsive */
@media (max-width: 991px) {
    .footer-grid-new {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid-new {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: url('hero.png') center/cover no-repeat;
    position: relative;
    color: var(--white);
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 43, 94, 0.9);
}

.testimonials .section-title, .testimonials .section-subtitle {
    position: relative;
    z-index: 10;
    color: var(--white);
}

.testimonials-slider {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stars {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.review-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
}

.student-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.student-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 62% center;
    margin-bottom: 20px;
    border: 4px solid var(--secondary);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.student-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.student-name {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.student-role {
    font-size: 0.9rem;
    color: var(--secondary);
}

/* ===== FLOATING WHATSAPP ===== */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-wa:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .floating-wa {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== PAGE BANNERS ===== */
.page-banner {
    background: url('hero.png') center/cover no-repeat;
    position: relative;
    padding: 140px 0 70px;
    text-align: center;
    color: var(--white);
}

.page-banner-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(6, 20, 40, 0.93) 0%, rgba(11, 43, 94, 0.85) 100%);
}

.page-banner h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.page-banner p {
    font-size: 1.15rem;
    opacity: 0.8;
    margin-bottom: 15px;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    opacity: 0.7;
}

.breadcrumb a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb i {
    font-size: 0.65rem;
}

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 50px auto 0;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--secondary), var(--primary));
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 40px;
}

.timeline-icon {
    position: absolute;
    left: -50px;
    top: 5px;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--secondary), #E8C64A);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 1.1rem;
    border: 4px solid var(--white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    z-index: 2;
    transition: var(--transition);
}

.timeline-item:hover .timeline-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.timeline-content {
    background: var(--white);
    padding: 28px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #1A4081 100%);
    padding: 70px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 400px; height: 400px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 50%;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -5%;
    width: 300px; height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.cta-banner h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn {
    margin: 0 10px;
}

.kazakhstan-banner {
    background: linear-gradient(135deg, #0D3B6F 0%, #0B2B5E 100%);
    padding: 50px 0;
}

.kazakhstan-banner h2 i {
    color: var(--secondary);
    margin-right: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .courses-grid, .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    .about-image {
        order: 2;
        margin-top: 40px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .process-steps::before {
        display: none;
    }
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .page-banner h1 {
        font-size: 2.2rem;
    }
    .timeline {
        padding-left: 40px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 105px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        padding: 20px 0;
        gap: 20px;
    }
    .navbar.scrolled .nav-menu {
        top: 65px;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-buttons {
        display: none;
    }
    .courses-grid, .features-grid, .process-steps, .process-steps-5 {
        grid-template-columns: 1fr;
    }
    .page-banner {
        padding: 120px 0 50px;
    }
    .page-banner h1 {
        font-size: 1.8rem;
    }
    .timeline {
        padding-left: 30px;
    }
    .timeline::before {
        left: 12px;
    }
    .timeline-icon {
        left: -40px;
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    .cta-banner h2 {
        font-size: 1.6rem;
    }
    .cta-banner .btn {
        margin: 5px;
        display: inline-block;
    }
}
