/* ========================================
   FIPS MODERN LANDING PAGE STYLES
   Inspired by modern educational landing page designs
   Using FIPS Brand Colors
   ======================================== */

:root {
    /* Landing Page Color Scheme - Using FIPS Brand Colors */
    /* Import from modern-design-system.css if not already loaded */
    --landing-primary: #0a3814; /* festari-deep-green */
    --landing-primary-dark: #0a2e13; /* festari-green */
    --landing-secondary: #2d7040; /* festari-green-light */
    --landing-secondary-light: #3d8a52;
    --landing-accent: #d4af37; /* festari-gold */
    --landing-accent-light: #e6c547; /* festari-gold-light */
    --landing-accent-dark: #b8941f; /* festari-gold-dark */
    --landing-white: #ffffff;
    --landing-gray-light: #f8f9fa;
    --landing-gray: #6c757d;
    --landing-gray-dark: #343a40;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --section-padding-sm: 3rem 0;
}

/* ========================================
   HERO SECTION - CAROUSEL SPLIT SCREEN DESIGN
   ======================================== */

.landing-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: -60px;
    padding-top: 60px;
    background: #0a0a0a;
}

.hero-carousel-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    display: flex;
    align-items: center;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
    pointer-events: none;
}

.hero-diagonal-cut {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.85) 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 2;
    pointer-events: none;
}

/* Split Layout */
.hero-split-layout {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 3;
}

.hero-image-side {
    flex: 0 0 50%;
    position: relative;
    height: 100%;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Fallback if image is missing or blank – avoid solid black */
    background-color: #1a2e1a;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    z-index: 1;
    pointer-events: none;
}

.image-overlay-glow {
    position: absolute;
    top: 0;
    right: -50px;
    width: 200px;
    height: 100%;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    z-index: 2;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.hero-content-side {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    position: relative;
    z-index: 3;
}

.hero-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content-inner {
    max-width: 600px;
    width: 100%;
    position: relative;
    z-index: 2;
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Badge and Icon Styles */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--landing-accent);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-icon {
    font-size: 4rem;
    color: var(--landing-accent);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

.landing-hero-content {
    position: relative;
    z-index: 3;
    color: var(--landing-white);
    text-align: left;
}

.landing-hero-pre-heading {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--landing-accent);
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
    margin-bottom: 1rem;
    display: block;
}

.landing-hero-heading {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--landing-white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.landing-hero-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.landing-hero-description strong {
    color: var(--landing-accent-light);
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
}

.landing-hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Hero Section Responsive Design */
@media (max-width: 992px) {
    .hero-carousel-container {
        height: 550px;
    }
    
    .hero-split-layout {
        flex-direction: column;
    }
    
    .hero-image-side {
        flex: 0 0 40%;
    }
    
    .hero-content-side {
        flex: 0 0 60%;
        padding: 2rem;
    }
    
    .hero-diagonal-cut {
        width: 100%;
        height: 60%;
        top: auto;
        bottom: 0;
        clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
    }
    
    .landing-hero-heading {
        font-size: 2.25rem;
    }
    
    .landing-hero-description {
        font-size: 1.1rem;
    }
    
    .landing-hero-ctas {
        justify-content: center;
    }
    
    .hero-carousel-nav {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
    
    .hero-carousel-prev {
        left: 1rem;
    }
    
    .hero-carousel-next {
        right: 1rem;
    }
    
    .hero-carousel-indicators {
        bottom: 1.5rem;
        padding: 0.5rem 1.25rem;
    }
}

@media (max-width: 768px) {
    .hero-carousel-container {
        height: 500px;
    }
    
    .hero-image-side {
        flex: 0 0 35%;
    }
    
    .hero-content-side {
        flex: 0 0 65%;
        padding: 1.5rem;
    }
    
    .hero-content-inner {
        max-width: 100%;
    }
    
    .landing-hero-heading {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .landing-hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .landing-hero-pre-heading {
        font-size: 0.75rem;
    }
    
    .hero-badge {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .landing-hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .landing-hero-ctas .landing-btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-carousel-nav {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    
    .hero-carousel-prev {
        left: 0.75rem;
    }
    
    .hero-carousel-next {
        right: 0.75rem;
    }
    
    .hero-carousel-indicators {
        bottom: 1rem;
        gap: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .hero-carousel-container {
        height: 450px;
    }
    
    .hero-image-side {
        flex: 0 0 30%;
    }
    
    .hero-content-side {
        flex: 0 0 70%;
        padding: 1.25rem;
    }
    
    .landing-hero-heading {
        font-size: 1.5rem;
    }
    
    .landing-hero-description {
        font-size: 0.9rem;
    }
    
    .hero-icon {
        font-size: 2.5rem;
    }
    
    .hero-carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .hero-carousel-prev {
        left: 0.5rem;
    }
    
    .hero-carousel-next {
        right: 0.5rem;
    }
}

/* ========================================
   BUTTONS
   ======================================== */

.landing-btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.landing-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.landing-btn:hover::before {
    left: 100%;
}

.landing-btn-primary {
    background: linear-gradient(135deg, var(--landing-white) 0%, rgba(255, 255, 255, 0.95) 100%);
    color: var(--landing-primary);
    border-color: var(--landing-white);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.landing-btn-primary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.98) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    color: var(--landing-primary);
}

.landing-btn-primary-gradient {
    background: linear-gradient(135deg, var(--landing-accent) 0%, var(--landing-accent-light) 100%);
    color: var(--landing-white);
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.landing-btn-primary-gradient:hover {
    background: linear-gradient(135deg, var(--landing-accent-light) 0%, var(--landing-accent) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
    color: var(--landing-white);
}

.landing-btn-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--landing-white);
    border-color: var(--landing-accent);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.landing-btn-outline:hover {
    background: rgba(212, 175, 55, 0.2);
    color: var(--landing-white);
    border-color: var(--landing-accent-light);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.landing-btn-secondary {
    background: linear-gradient(135deg, var(--landing-primary) 0%, var(--landing-primary-dark) 100%);
    color: var(--landing-white);
    border-color: var(--landing-primary);
    box-shadow: 0 6px 20px rgba(10, 56, 20, 0.3);
}

.landing-btn-secondary:hover {
    background: linear-gradient(135deg, var(--landing-primary-dark) 0%, var(--landing-primary) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(10, 56, 20, 0.4);
    color: var(--landing-white);
}

.landing-btn-outline-white {
    background: var(--landing-white);
    color: var(--landing-primary);
    border-color: var(--landing-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.landing-btn-outline-white:hover {
    background: linear-gradient(135deg, var(--landing-primary) 0%, var(--landing-primary-dark) 100%);
    color: var(--landing-white);
    border-color: var(--landing-primary);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(10, 56, 20, 0.3);
}

/* ========================================
   SECTION STYLES
   ======================================== */

.landing-section {
    padding: var(--section-padding);
}

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

.landing-section-gradient {
    background: linear-gradient(135deg, var(--landing-primary) 0%, var(--landing-primary-dark) 50%, var(--landing-secondary) 100%);
    color: var(--landing-white);
    position: relative;
    overflow: hidden;
}

/* Abstract geometric shapes on gradient sections */
.landing-section-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

/* Consultant Image Styling */
.consultant-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.consultant-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 991px) {
    .consultant-image {
        max-width: 80%;
        margin: 0 auto;
    }
}

/* Section Headers */
.landing-section-header {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.landing-section-white .landing-section-header {
    color: var(--landing-primary);
}

.landing-section-gradient .landing-section-header {
    color: rgba(255, 255, 255, 0.9);
}

.landing-section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.landing-section-white .landing-section-heading {
    color: var(--landing-primary);
}

.landing-section-gradient .landing-section-heading {
    color: var(--landing-white);
}

.landing-section-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.landing-section-white .landing-section-description {
    color: var(--landing-gray);
}

.landing-section-gradient .landing-section-description {
    color: rgba(255, 255, 255, 0.95);
}

/* ========================================
   CONTENT CARDS
   ======================================== */

.landing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.landing-card {
    background: var(--landing-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(10, 56, 20, 0.05);
    position: relative;
}

.landing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--landing-primary), var(--landing-accent), var(--landing-primary));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.landing-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(10, 56, 20, 0.1);
}

.landing-card:hover::before {
    opacity: 1;
}

.landing-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-card:hover .landing-card-image {
    transform: scale(1.05);
}

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

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

.landing-card-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--landing-gray);
    margin-bottom: 1.5rem;
    flex: 1;
}

.landing-card-btn {
    padding: 1rem 2.25rem;
    font-size: 0.9375rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--landing-primary) 0%, var(--landing-primary-dark) 100%);
    color: var(--landing-white);
    border: 2px solid transparent;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(10, 56, 20, 0.2);
    position: relative;
    overflow: hidden;
}

.landing-card-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.landing-card-btn:hover::before {
    left: 100%;
}

.landing-card-btn:hover {
    background: linear-gradient(135deg, var(--landing-primary-dark) 0%, var(--landing-primary) 100%);
    color: var(--landing-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(10, 56, 20, 0.35);
}

/* ========================================
   DECORATIVE DIVIDERS
   ======================================== */

.landing-divider {
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0 C150,60 350,60 500,20 C650,0 850,60 1000,20 C1150,0 1200,20 1200,20 L1200,120 L0,120 Z' fill='%230a3814'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
    margin: 0;
    padding: 0;
}

.landing-divider-white {
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0 C150,60 350,60 500,20 C650,0 850,60 1000,20 C1150,0 1200,20 1200,20 L1200,120 L0,120 Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
    margin: 0;
    padding: 0;
}

.landing-divider-light {
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0 C150,60 350,60 500,20 C650,0 850,60 1000,20 C1150,0 1200,20 1200,20 L1200,120 L0,120 Z' fill='%23f8f9fa'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
    margin: 0;
    padding: 0;
}


/* Hero to Content Divider */
.hero-divider {
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,80 C300,40 600,40 900,80 C1050,100 1125,100 1200,80 L1200,120 L0,120 Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

/* Gradient to White Divider */
.gradient-to-white-divider {
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0 C200,40 400,60 600,40 C800,20 1000,40 1200,20 L1200,120 L0,120 Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
    margin: 0;
    padding: 0;
}

/* White to Gradient Divider */
.white-to-gradient-divider {
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,120 C200,80 400,60 600,80 C800,100 1000,80 1200,100 L1200,120 L0,120 Z' fill='%230a3814'/%3E%3C/svg%3E") no-repeat top;
    background-size: cover;
    margin: 0;
    padding: 0;
}

/* White to Light Divider */
.white-to-light-divider {
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,80 C300,40 600,40 900,80 C1050,100 1125,100 1200,80 L1200,120 L0,120 Z' fill='%23f8f9fa'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

/* Light to White Divider */
.light-to-white-divider {
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,80 C300,40 600,40 900,80 C1050,100 1125,100 1200,80 L1200,120 L0,120 Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

/* White to Light Decorative Divider with Green Wave */
.white-to-light-decorative-divider {
    height: 120px;
    background: var(--landing-white);
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.white-to-light-decorative-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to bottom, 
        #0a3814 0%, 
        #0a3814 15%, 
        #0a2e13 15%, 
        #0a2e13 45%,
        #2d7040 45%,
        #2d7040 100%);
    z-index: 1;
}

.white-to-light-decorative-divider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,85 C200,55 400,70 600,65 C800,60 1000,70 1200,65 L1200,120 L0,120 Z' fill='%23f8f9fa'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: 100% 100%;
    z-index: 2;
}

/* Light to White Decorative Divider with Green Wave */
.light-to-white-decorative-divider {
    height: 120px;
    background: var(--landing-gray-light);
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.light-to-white-decorative-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to bottom, 
        #0a3814 0%, 
        #0a3814 15%, 
        #0a2e13 15%, 
        #0a2e13 45%,
        #2d7040 45%,
        #2d7040 100%);
    z-index: 1;
}

.light-to-white-decorative-divider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,85 C200,55 400,70 600,65 C800,60 1000,70 1200,65 L1200,120 L0,120 Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: 100% 100%;
    z-index: 2;
}

/* White to White Decorative Divider with Green Wave */
.white-to-white-divider {
    height: 140px;
    background: var(--landing-white);
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.white-to-white-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to bottom, 
        #0a3814 0%, 
        #0a3814 18%, 
        #0a2e13 18%, 
        #0a2e13 50%,
        #2d7040 50%,
        #2d7040 100%);
    z-index: 1;
}

.white-to-white-divider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 140' preserveAspectRatio='none'%3E%3Cpath d='M0,90 C200,60 400,75 600,70 C800,65 1000,75 1200,70 L1200,140 L0,140 Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: 100% 100%;
    z-index: 2;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .landing-hero {
        min-height: 95vh;
    }
    
    .landing-hero-video {
        object-fit: cover;
    }
    
    .landing-hero-content::before {
        width: calc(100% + 2rem);
        height: calc(100% + 2rem);
        border-width: 1px;
    }
    
    .landing-hero-heading {
        font-size: 2.5rem;
    }
    
    .landing-hero-description {
        font-size: 1.125rem;
    }
    
    .landing-section-heading {
        font-size: 2rem;
    }
    
    .landing-section {
        padding: var(--section-padding-sm);
    }
    
    .landing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .landing-hero-ctas {
        flex-direction: column;
    }
    
    .landing-btn {
        width: 100%;
        text-align: center;
    }
    
    .nav-to-hero-divider {
        height: 50px;
    }
    
    .hero-divider,
    .gradient-to-white-divider,
    .white-to-gradient-divider,
    .white-to-light-divider,
    .light-to-white-divider,
    .white-to-white-divider,
    .white-to-light-decorative-divider,
    .light-to-white-decorative-divider,
    .landing-divider,
    .landing-divider-white,
    .landing-divider-light {
        height: 60px;
    }
}

/* ========================================
   FAQ STYLES
   ======================================== */

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--landing-white);
    border: 2px solid rgba(10, 56, 20, 0.08);
    border-radius: 16px;
    margin-bottom: 1.25rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(10, 56, 20, 0.12);
    transform: translateY(-2px);
    border-color: var(--landing-primary);
}

.faq-question {
    width: 100%;
    padding: 1.75rem;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--landing-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    gap: 1rem;
}

.faq-question:hover {
    background: rgba(10, 56, 20, 0.02);
    color: var(--landing-secondary);
}

.faq-question i {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.25rem;
    color: var(--landing-accent);
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] {
    background: rgba(10, 56, 20, 0.03);
    border-bottom: 2px solid rgba(10, 56, 20, 0.1);
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
    color: var(--landing-secondary);
}

.faq-answer {
    padding: 0 1.75rem 1.75rem;
    color: var(--landing-gray);
    line-height: 1.8;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer ul,
.faq-answer ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.faq-answer a {
    color: var(--landing-secondary);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* ========================================
   ACCREDITATION SECTION
   ======================================== */

.landing-accreditation-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.landing-accreditation-item {
    text-align: center;
}

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

.accreditation-logo-placeholder {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 auto;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.accreditation-logo-placeholder:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
}

.accreditation-logo-placeholder i {
    font-size: 3rem;
    color: var(--landing-accent);
}

.accreditation-logo-placeholder span {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--landing-white);
    letter-spacing: 1px;
}

.accreditation-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--landing-white);
    margin-bottom: 0.5rem;
}

.accreditation-desc {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.landing-accreditation-features {
    margin-top: 3rem;
}

.accreditation-feature {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.accreditation-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.accreditation-feature:hover::before {
    left: 100%;
}

.accreditation-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.accreditation-feature i {
    font-size: 2.5rem;
    color: var(--landing-accent);
    margin-bottom: 1rem;
    display: block;
}

.accreditation-feature h6 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--landing-white);
    margin-bottom: 0.5rem;
}

.accreditation-feature p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* ========================================
   NAVIGATION STYLES
   ======================================== */

.custom-navbar {
    background: var(--landing-white) !important;
    box-shadow: none !important;
    padding: 1rem 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 100;
}

.custom-navbar .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
}

.custom-navbar .navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--landing-primary) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.custom-navbar .navbar-brand:hover {
    color: var(--landing-secondary) !important;
}

.custom-navbar .logo-img {
    height: 45px;
    width: auto;
}

.custom-navbar .nav-link {
    color: #4A4F54 !important;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.custom-navbar .nav-link:hover {
    color: var(--landing-primary) !important;
}

.custom-navbar .nav-link i {
    margin-right: 0.25rem;
}

.custom-navbar .dropdown-menu {
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.custom-navbar .dropdown-item {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    color: var(--landing-gray-dark);
    transition: all 0.3s ease;
}

.custom-navbar .dropdown-item:hover {
    background: var(--landing-gray-light);
    color: var(--landing-primary);
    padding-left: 2rem;
}

.custom-navbar .dropdown-item i {
    color: var(--landing-secondary);
    width: 20px;
}

/* CTA Button in Navigation */
.navbar-nav-cta {
    margin-left: 2rem;
}

.nav-cta-btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background-color: #144273;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.nav-cta-btn:hover {
    background-color: #0d3154;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 66, 115, 0.3);
}

/* Wave Separator Below Navigation */
.nav-wave-separator {
    height: 80px;
    background: #4A4F54;
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.nav-wave-separator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 80' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L0,40 C150,20 300,30 450,25 C600,20 750,30 900,25 C1050,20 1150,15 1200,20 L1200,80 L0,80 Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: 100% 100%;
    z-index: 1;
}

/* Decorative brush stroke lines in the white section */
.nav-wave-separator::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.3) 2px, rgba(255, 255, 255, 0.3) 4px),
        repeating-linear-gradient(15deg, transparent, transparent 2px, rgba(255, 255, 255, 0.2) 2px, rgba(255, 255, 255, 0.2) 4px),
        repeating-linear-gradient(-15deg, transparent, transparent 2px, rgba(255, 255, 255, 0.25) 2px, rgba(255, 255, 255, 0.25) 4px);
    background-size: 100% 100%, 100% 80%, 100% 90%;
    background-position: 0 0, 0 10%, 0 20%;
    z-index: 2;
    opacity: 0.6;
}

/* ========================================
   FOOTER STYLES
   ======================================== */

.site-footer {
    background: var(--landing-primary);
    color: var(--landing-white);
    margin-top: 0;
}

.footer-top {
    padding: 4rem 0 2rem;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--landing-white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.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.85);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--landing-accent);
    padding-left: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.footer-social a:hover {
    background: var(--landing-accent);
    color: var(--landing-white);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.footer-bottom {
    background: var(--landing-primary-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.875rem;
    margin: 0;
}

.footer-policy {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.875rem;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.footer-policy:hover {
    color: var(--landing-accent);
}

/* ========================================
   TRUST BAR SECTION
   ======================================== */

.landing-trust-bar {
    background: var(--landing-primary-dark);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.landing-trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--landing-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.trust-item i {
    color: var(--landing-accent);
    font-size: 1.25rem;
}

/* ========================================
   SHARED PAGE HERO COMPONENTS
   ======================================== */

.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 140px 0 80px;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 56, 20, 0.85) 0%, rgba(10, 46, 19, 0.75) 50%, rgba(45, 112, 64, 0.8) 100%);
    z-index: 1;
}

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

.page-hero-content {
    text-align: center;
    color: var(--landing-white);
}

.page-hero-pre-heading {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--landing-accent);
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.page-hero-heading {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--landing-white);
}

.page-hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.page-hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Section Styles */
.page-section {
    padding: 5rem 0;
}

.page-section-white {
    background: var(--landing-white);
}

.page-section-light {
    background: var(--landing-gray-light);
}

.page-section-gradient {
    background: linear-gradient(135deg, var(--landing-primary) 0%, var(--landing-primary-dark) 50%, var(--landing-secondary) 100%);
    color: var(--landing-white);
    position: relative;
    overflow: hidden;
}

.page-section-header {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--landing-accent);
    margin-bottom: 1rem;
}

.page-section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--landing-primary);
}

.page-section-gradient .page-section-heading {
    color: var(--landing-white);
}

.page-section-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--landing-gray);
    max-width: 800px;
    margin: 0 auto;
}

.page-section-gradient .page-section-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Content Cards */
.page-card {
    background: var(--landing-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.page-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--landing-primary), var(--landing-secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--landing-white);
    font-size: 2rem;
}

.page-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--landing-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.page-card-description {
    color: var(--landing-gray);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Stats Box */
.stat-box {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-box .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--landing-accent);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-box .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   ACCREDITATION & PARTNERSHIP LOGOS SECTION
   ======================================== */

.accreditation-logos-section {
    background: var(--landing-white);
    padding: 4rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.accreditation-logos-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.accreditation-logos-header {
    text-align: center;
    margin-bottom: 3rem;
}

.accreditation-logos-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--landing-primary);
    margin-bottom: 0.5rem;
}

.accreditation-logos-header p {
    font-size: 0.9375rem;
    color: var(--landing-gray);
    margin: 0;
}

.accreditation-logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.accreditation-logo-item {
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    padding: 1.5rem;
    border-radius: 12px;
    min-width: 150px;
}

.accreditation-logo-item:hover {
    transform: translateY(-5px);
    background: var(--landing-gray-light);
}

.accreditation-logo-badge {
    width: 120px;
    height: 120px;
    background: var(--landing-gray-light);
    border: 2px solid rgba(10, 56, 20, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: 10px;
}

.accreditation-logo-badge:has(img) {
    background: var(--landing-white);
}

.accreditation-logo-item:hover .accreditation-logo-badge {
    border-color: var(--landing-primary);
    box-shadow: 0 4px 15px rgba(10, 56, 20, 0.15);
}

.accreditation-logo-badge img,
.accreditation-logo-img {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
}

.accreditation-logo-item:hover .accreditation-logo-badge img {
    transform: scale(1.1);
}

.accreditation-logo-badge-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10, 56, 20, 0.05), rgba(45, 112, 64, 0.05));
}

.accreditation-logo-badge-placeholder i {
    font-size: 3rem;
    color: var(--landing-primary);
    margin-bottom: 0.5rem;
}

.accreditation-logo-badge-placeholder span {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--landing-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.accreditation-logo-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--landing-primary);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.accreditation-logo-subtitle {
    font-size: 0.75rem;
    color: var(--landing-gray);
    line-height: 1.4;
    margin: 0;
}

.accreditation-logos-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 2rem;
}

.accreditation-logos-footer p {
    font-size: 0.875rem;
    color: var(--landing-gray);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.accreditation-logos-footer a {
    color: var(--landing-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.accreditation-logos-footer a:hover {
    color: var(--landing-secondary);
    text-decoration: underline;
}

@media (max-width: 992px) {
    .accreditation-logos-grid {
        gap: 2rem;
    }
    
    .accreditation-logo-item {
        min-width: 130px;
        padding: 1rem;
    }
    
    .accreditation-logo-badge {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .accreditation-logos-section {
        padding: 3rem 0;
    }
    
    .accreditation-logos-grid {
        gap: 1.5rem;
    }
    
    .accreditation-logo-item {
        min-width: 120px;
        padding: 0.75rem;
    }
    
    .accreditation-logo-badge {
        width: 90px;
        height: 90px;
    }
    
    .accreditation-logo-badge-placeholder i {
        font-size: 2.5rem;
    }
    
    .accreditation-logos-header h3 {
        font-size: 1.25rem;
    }
}

/* ========================================
   ADMISSION PROCESS FLOW
   ======================================== */

.admission-process-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(10, 56, 20, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.process-step:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 12px 40px rgba(10, 56, 20, 0.15);
    border-color: rgba(10, 56, 20, 0.15);
}

.process-step-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--landing-primary), var(--landing-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 6px 20px rgba(10, 56, 20, 0.3);
    position: relative;
    z-index: 2;
}

.process-step:hover .process-step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(10, 56, 20, 0.4);
}

.process-step-content {
    flex: 1;
}

.process-step-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--landing-primary);
    margin-bottom: 0.75rem;
}

.process-step-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--landing-gray);
    margin: 0;
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--landing-primary);
    font-size: 2rem;
    margin: -1rem 0;
    position: relative;
    z-index: 1;
    animation: bounceArrow 2s infinite;
}

@keyframes bounceArrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

@media (max-width: 768px) {
    .admission-process-flow {
        gap: 1.5rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .process-step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto;
    }
    
    .process-step-content h4 {
        font-size: 1.25rem;
    }
    
    .process-arrow {
        font-size: 1.5rem;
        margin: -0.5rem 0;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-left-lg {
    text-align: left;
}

@media (max-width: 992px) {
    .text-left-lg {
        text-align: center;
    }
    
    .landing-trust-items {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .custom-navbar .nav-link {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem !important;
    }
    
    .page-hero {
        min-height: 50vh;
        padding: 120px 0 60px;
    }
    
    .page-hero-heading {
        font-size: 2.25rem;
    }
    
    .page-hero-description {
        font-size: 1.1rem;
    }
    
    .page-section-heading {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .landing-accreditation-badges {
        gap: 2rem;
    }
    
    .accreditation-logo-placeholder {
        width: 100px;
        height: 100px;
    }
    
    .accreditation-logo-placeholder i {
        font-size: 2.5rem;
    }
    
    .accreditation-logo-placeholder span {
        font-size: 1rem;
    }
    
    .footer-top {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-logo {
        height: 60px;
    }
    
    .page-hero {
        min-height: 45vh;
        padding: 100px 0 50px;
        background-attachment: scroll;
    }
    
    .page-hero-heading {
        font-size: 1.75rem;
    }
    
    .page-hero-description {
        font-size: 1rem;
    }
    
    .page-section {
        padding: 3rem 0;
    }
    
    .page-section-heading {
        font-size: 1.75rem;
    }
    
    .page-card {
        padding: 1.5rem;
    }
}

/* ========================================
   ANNOUNCEMENT CAROUSEL SECTION - MODERN SPLIT DESIGN
   ======================================== */

.announcement-carousel-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background: #0a0a0a;
}

.announcement-carousel-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.announcement-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.announcement-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
}

.announcement-slide.active {
    opacity: 1;
    z-index: 1;
}

.announcement-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.announcement-diagonal-cut {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.95) 100%);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 2;
}

/* Split Layout */
.announcement-split-layout {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 3;
}

.announcement-image-side {
    flex: 0 0 50%;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.announcement-slide .announcement-image-side {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.image-overlay-glow {
    position: absolute;
    top: 0;
    right: -50px;
    width: 200px;
    height: 100%;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    z-index: 2;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.announcement-content-side {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    position: relative;
    z-index: 3;
}

.announcement-content-inner {
    max-width: 600px;
    width: 100%;
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.announcement-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--landing-accent);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.announcement-badge i {
    font-size: 1rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2) rotate(180deg);
    }
}

.announcement-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.announcement-icon {
    font-size: 5rem;
    color: var(--landing-accent);
    position: relative;
    z-index: 2;
    animation: iconFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 8px 16px rgba(212, 175, 55, 0.4));
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.announcement-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--landing-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.title-highlight {
    background: linear-gradient(135deg, var(--landing-accent) 0%, var(--landing-accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.announcement-description {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.announcement-description i {
    margin-right: 0.75rem;
    color: var(--landing-accent);
    font-size: 1.1rem;
}

.announcement-description strong {
    color: var(--landing-accent-light);
    font-weight: 700;
}

.announcement-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.announcement-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--landing-accent);
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
}

.announcement-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.announcement-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    background: var(--landing-accent-light);
}

.announcement-btn:hover::before {
    left: 100%;
}

.announcement-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

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

/* Navigation Arrows - Ultra Modern */
.announcement-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--landing-white);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.5rem;
    backdrop-filter: blur(20px);
    overflow: hidden;
    position: relative;
}

.nav-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.announcement-carousel-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--landing-accent);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.announcement-carousel-nav:hover .nav-ripple {
    width: 100px;
    height: 100px;
}

.announcement-carousel-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.announcement-carousel-prev {
    left: 1.5rem;
}

.announcement-carousel-next {
    right: 1.5rem;
}

/* Indicators - Ultra Modern */
.announcement-carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 1rem;
    pointer-events: none;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.announcement-carousel-indicators button {
    pointer-events: auto;
}

.announcement-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.indicator-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--landing-accent);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.announcement-indicator.active {
    border-color: var(--landing-accent);
    transform: scale(1.3);
    box-shadow: 
        0 0 20px rgba(212, 175, 55, 0.8),
        0 0 40px rgba(212, 175, 55, 0.4);
}

.announcement-indicator.active .indicator-progress {
    transform: scale(1);
    animation: indicatorPulse 2s ease-in-out infinite;
}

@keyframes indicatorPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.announcement-indicator:hover {
    background: rgba(212, 175, 55, 0.4);
    border-color: var(--landing-accent);
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .announcement-carousel-container {
        height: 550px;
    }
    
    .announcement-split-layout {
        flex-direction: column;
    }
    
    .announcement-image-side {
        flex: 0 0 40%;
    }
    
    .announcement-content-side {
        flex: 0 0 60%;
        padding: 2rem;
    }
    
    .announcement-diagonal-cut {
        width: 100%;
        height: 60%;
        top: auto;
        bottom: 0;
        clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
    }
    
    .announcement-title {
        font-size: 2.25rem;
    }
    
    .announcement-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .announcement-carousel-container {
        height: 500px;
    }
    
    .announcement-image-side {
        flex: 0 0 35%;
    }
    
    .announcement-content-side {
        flex: 0 0 65%;
        padding: 1.5rem;
    }
    
    .announcement-content-inner {
        max-width: 100%;
    }
    
    .announcement-badge {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .announcement-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .announcement-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .announcement-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .announcement-btn {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }
    
    .announcement-carousel-nav {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    
    .announcement-carousel-prev {
        left: 0.75rem;
    }
    
    .announcement-carousel-next {
        right: 0.75rem;
    }
    
    .announcement-carousel-indicators {
        bottom: 1rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .announcement-carousel-container {
        height: 450px;
    }
    
    .announcement-image-side {
        flex: 0 0 30%;
    }
    
    .announcement-content-side {
        flex: 0 0 70%;
        padding: 1.25rem;
    }
    
    .announcement-title {
        font-size: 1.5rem;
    }
    
    .announcement-description {
        font-size: 0.9rem;
    }
    
    .announcement-icon {
        font-size: 2.5rem;
    }
    
    .announcement-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .announcement-carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .announcement-carousel-prev {
        left: 0.5rem;
    }
    
    .announcement-carousel-next {
        right: 0.5rem;
    }
}

