/* ========================================
   CSS Variables & Root Styles
   ======================================== */
:root {
    --navy-primary: #0a2540;
    --navy-secondary: #1a365d;
    --teal-primary: #2a9d8f;
    --teal-secondary: #21867a;
    --orange-accent: #ff6b35;
    --orange-light: #ff8c61;
    --cream: #f8f9fa;
    --white: #ffffff;
    --text-dark: #1a202c;
    --text-gray: #4a5568;
    --text-light: #718096;
    --border-color: #e2e8f0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

/* ========================================
   Typography
   ======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy-primary);
}

.section-tag {
    display: inline-block;
    color: var(--teal-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2.5rem;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2px;
    background: linear-gradient(90deg, var(--teal-primary), transparent);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.section-title .highlight {
    color: var(--orange-accent);
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.section-text {
    font-size: 1.0625rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* ========================================
   Buttons
   ======================================== */
.btn-primary,
.btn-hero,
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--teal-primary), var(--teal-secondary));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(42, 157, 143, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 157, 143, 0.4);
    color: var(--white);
}

.btn-primary i {
    transition: var(--transition);
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(10, 37, 64, 0.95) 0%,
            rgba(26, 54, 93, 0.85) 50%,
            rgba(42, 157, 143, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-line {
    display: block;
}

.title-highlight {
    background: linear-gradient(135deg, var(--orange-accent), var(--orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--orange-accent);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.btn-hero-primary:hover {
    background: var(--orange-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
    color: var(--white);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    color: var(--white);
}

.hero-stats {
    position: absolute;
    bottom: 4rem;
    left: 0;
    right: 0;
    display: flex;
    gap: 4rem;
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 20;
}

.hero-dots {
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active,
.dot:hover {
    background: var(--white);
    transform: scale(1.2);
}

.hero-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* ========================================
   About Section
   ======================================== */
.about-section {
    padding: 8rem 0;
    background: var(--white);
}

.about-images {
    position: relative;
    height: 600px;
}

.about-image-main {
    position: relative;
    width: 85%;
    height: 70%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    z-index: 2;
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-image-main:hover img {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: linear-gradient(135deg, var(--orange-accent), var(--orange-light));
    color: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 3;
}

.badge-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 50%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--white);
}

.about-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-pattern {
    position: absolute;
    top: -2rem;
    right: -2rem;
    width: 200px;
    height: 200px;
    border: 3px solid var(--teal-primary);
    border-radius: 20px;
    opacity: 0.2;
    z-index: 1;
}

.about-content {
    padding-left: 3rem;
}

.about-features {
    margin: 2.5rem 0;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 15px;
    background: var(--cream);
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--teal-primary), var(--teal-secondary));
    color: var(--white);
    border-radius: 15px;
    font-size: 1.5rem;
}

.feature-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--navy-primary);
}

.feature-content p {
    font-size: 0.9375rem;
    color: var(--text-gray);
    margin: 0;
}

/* ========================================
   Programs Section
   ======================================== */
.programs-section {
    padding: 8rem 0;
    background: var(--cream);
}

.section-header {
    margin-bottom: 4rem;
}

.programs-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 2rem;
    border: 2px solid var(--border-color);
    background: var(--white);
    color: var(--text-gray);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--teal-primary);
    color: var(--white);
    border-color: var(--teal-primary);
    transform: translateY(-2px);
}

.programs-grid {
    margin-bottom: 3rem;
}

.program-item {
    transition: var(--transition);
}

.program-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

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

.program-card.featured {
    border: 2px solid var(--orange-accent);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--orange-accent);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.program-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.8), rgba(42, 157, 143, 0.6));
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-card:hover .program-overlay {
    opacity: 1;
}

.program-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    color: var(--teal-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transform: scale(0);
    transition: var(--transition);
}

.program-card:hover .program-link {
    transform: scale(1);
}

.program-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.program-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.program-category {
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.program-category.aviation {
    background: rgba(42, 157, 143, 0.1);
    color: var(--teal-primary);
}

.program-category.maritime {
    background: rgba(10, 37, 64, 0.1);
    color: var(--navy-primary);
}

.program-duration {
    font-size: 0.875rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.program-title {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--navy-primary);
}

.program-description {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.program-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.program-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.program-features span {
    font-size: 0.8125rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.program-features i {
    color: var(--teal-primary);
    font-size: 0.75rem;
}

.program-btn {
    padding: 0.625rem 1.5rem;
    background: linear-gradient(135deg, var(--teal-primary), var(--teal-secondary));
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
    white-space: nowrap;
}

.program-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

/* ========================================
   Admission Section
   ======================================== */
.admission-section {
    padding: 8rem 0;
    background: var(--white);
}

.admission-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--teal-primary), var(--orange-accent));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-primary), var(--teal-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 15px var(--white), var(--shadow-lg);
}

.marker-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.marker-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--teal-primary);
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.timeline-content {
    flex: 1;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--orange-accent), var(--orange-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--navy-primary);
}

.timeline-content p {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.timeline-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
}

.timeline-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-gray);
}

.timeline-list i {
    color: var(--teal-primary);
    font-size: 0.875rem;
}

/* ========================================
   Why Section
   ======================================== */
.why-section {
    padding: 8rem 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.why-card {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--teal-primary), var(--orange-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}

.why-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

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

.why-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--navy-primary);
}

.why-card p {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-secondary));
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.testimonials-section .section-tag {
    color: var(--teal-primary);
}

.testimonials-section .section-title {
    color: var(--white);
}

.testimonials-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    min-width: 400px;
    max-width: 400px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-header {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    position: relative;
}

.testimonial-avatar img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--teal-primary);
}

.testimonial-verified {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24px;
    height: 24px;
    background: var(--teal-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.75rem;
    border: 2px solid var(--white);
}

.testimonial-info h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--navy-primary);
}

.testimonial-info p {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 0.875rem;
}

.testimonial-body {
    position: relative;
    margin-bottom: 1.5rem;
}

.quote-icon {
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
    font-size: 2rem;
    color: var(--teal-primary);
    opacity: 0.3;
}

.testimonial-body p {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.8;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    justify-content: flex-end;
}

.testimonial-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--cream);
    color: var(--teal-primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.testimonial-prev,
.testimonial-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(10, 37, 64, 0.95),
            rgba(42, 157, 143, 0.85));
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--orange-accent);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.btn-cta-primary:hover {
    background: var(--orange-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
    color: var(--white);
}

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

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

.cta-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

.cta-info-item i {
    color: var(--orange-accent);
    font-size: 1.25rem;
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }

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

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .about-content {
        padding-left: 0;
        margin-top: 3rem;
    }

    .timeline-item {
        flex-direction: column !important;
        text-align: center;
    }

    .timeline-line {
        left: 40px;
    }

    .timeline-marker {
        margin: 0 auto;
    }

    .why-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .testimonial-card {
        min-width: 350px;
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

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

    .hero-stats {
        position: relative;
        bottom: 0;
        flex-direction: column;
        gap: 1rem;
        margin-top: 3rem;
    }

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

    .about-images {
        height: 400px;
        margin-bottom: 3rem;
    }

    .programs-filter {
        flex-direction: column;
        align-items: stretch;
    }

    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
    }

    .cta-title {
        font-size: 2.25rem;
    }

    .cta-info {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 600px;
    }

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

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

    .btn-primary,
    .btn-hero,
    .btn-cta {
        padding: 0.875rem 1.75rem;
        font-size: 0.9375rem;
    }

    .about-badge {
        bottom: -1rem;
        right: -1rem;
        padding: 1.5rem;
    }

    .badge-number {
        font-size: 2rem;
    }

    .testimonial-card {
        min-width: 280px;
        max-width: 280px;
        padding: 2rem;
    }
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* ========================================
   Footer Styles
   ======================================== */
.footer {
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-secondary));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></svg>');
    opacity: 0.5;
}

.footer-main {
    padding: 5rem 0 3rem;
    position: relative;
    z-index: 1;
}

.footer-widget {
    margin-bottom: 2rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo .logo {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}

.footer-logo .logo-text {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
}

.footer-logo .logo-highlight {
    font-size: 2rem;
    font-weight: 900;
    color: var(--orange-accent);
    font-family: 'Montserrat', sans-serif;
}

.footer-logo .logo-tagline {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.footer-stats {
    display: flex;
    gap: 2rem;
}

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

.footer-stat strong {
    font-size: 1.5rem;
    color: var(--orange-accent);
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.footer-stat span {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--orange-accent);
    border-radius: 2px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
}

.footer-links a:hover {
    color: var(--orange-accent);
    transform: translateX(5px);
}

.footer-links i {
    font-size: 0.75rem;
    color: var(--teal-primary);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-accent);
    font-size: 1rem;
}

.contact-text strong {
    display: block;
    font-size: 0.875rem;
    color: var(--white);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-text p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.newsletter-form {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form h5 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.newsletter-input-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input-group input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.newsletter-input-group input:focus {
    outline: none;
    border-color: var(--orange-accent);
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input-group button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: var(--orange-accent);
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-input-group button:hover {
    background: var(--orange-light);
    transform: scale(1.1);
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.copyright p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.8;
}

.copyright strong {
    color: var(--white);
}

.legal-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

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

.legal-links a:hover {
    color: var(--orange-accent);
}

.legal-links span {
    color: rgba(255, 255, 255, 0.3);
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
}

.social-text {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
}

.footer-social .social-links {
    display: flex;
    gap: 0.75rem;
}

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

.footer-social .social-links a:hover {
    background: var(--orange-accent);
    transform: translateY(-5px);
}

@media (max-width: 992px) {
    .footer-main {
        padding: 4rem 0 2rem;
    }

    .footer-social {
        justify-content: center;
        margin-top: 1.5rem;
    }

    .legal-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

    .footer-links a {
        justify-content: center;
    }

    .footer-contact li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .newsletter-input-group button {
        width: 100%;
        border-radius: 50px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .footer-main {
        padding: 3rem 0 2rem;
    }

    .footer-logo .logo-text,
    .footer-logo .logo-highlight {
        font-size: 1.5rem;
    }

    .footer-title {
        font-size: 1.125rem;
    }

    .footer-social {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Top Bar Styles */
.top-bar {
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-secondary));
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
}

.contact-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--orange-accent);
}

.contact-link i {
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

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

.social-link:hover {
    background: var(--orange-accent);
    color: var(--white);
    transform: translateY(-3px);
}

/* Main Header Styles */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--navy-primary);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
}

.logo-highlight {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--orange-accent);
    font-family: 'Montserrat', sans-serif;
}

.logo-tagline {
    font-size: 0.625rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.navbar-toggler {
    border: none;
    padding: 0;
    width: 30px;
    height: 24px;
    position: relative;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.navbar-toggler-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--navy-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar-toggler.active .navbar-toggler-icon span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.navbar-toggler.active .navbar-toggler-icon span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active .navbar-toggler-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.navbar-nav {
    gap: 0.5rem;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link span {
    position: relative;
    z-index: 1;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--orange-accent);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--teal-primary);
    background: rgba(42, 157, 143, 0.05);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 60%;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 0.75rem;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dropdown-item:hover {
    background: var(--cream);
    color: var(--teal-primary);
}

.dropdown-item i {
    font-size: 1rem;
    width: 20px;
}

.navbar-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-nav {
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
}

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

.btn-portal:hover {
    background: var(--navy-primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-apply {
    background: linear-gradient(135deg, var(--teal-primary), var(--teal-secondary));
    color: var(--white);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(42, 157, 143, 0.3);
}

.btn-apply:hover {
    background: linear-gradient(135deg, var(--teal-secondary), var(--teal-primary));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 157, 143, 0.4);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .top-bar {
        font-size: 0.8125rem;
    }

    .contact-info {
        gap: 1rem;
        justify-content: center;
    }

    .social-links {
        justify-content: center;
        margin-top: 0.5rem;
    }

    .navbar-collapse {
        margin-top: 1rem;
        padding: 1.5rem;
        background: var(--cream);
        border-radius: 12px;
    }

    .navbar-nav {
        gap: 0;
    }

    .nav-link {
        margin-bottom: 0.5rem;
    }

    .navbar-actions {
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
    }

    .btn-nav {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .logo-text,
    .logo-highlight {
        font-size: 1.5rem;
    }

    .logo-tagline {
        font-size: 0.5625rem;
    }
}