/* ! [Global Variables] CSS code starts here */
/* Inherited from common-styles.css */
/* ! [Global Variables] CSS code ends here */

/* ! [Reset & Base] CSS code starts here */
/* Inherited from common-styles.css */
body {
    background: #020617;
    overflow-x: hidden;
}

/* ! [Reset & Base] CSS code ends here */

/* ! [Hero Section] CSS code starts here */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
}

/* Bottom Fade Effect */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(255, 255, 255, 0.2) 40%,
            rgba(255, 255, 255, 0.6) 70%,
            rgba(255, 255, 255, 1) 100%);
    z-index: 15;
    pointer-events: none;
}

/* Swiper Styles */
.swiper {
    height: 100%;
    width: 100%;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

/* Background Image Control */
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 10s ease-out;
    /* Slower, smoother Ken Burns */
    will-change: transform;
}

/* Active Slide: Zoom In Effect */
.swiper-slide-active .slide-bg {
    transform: scale(1.15);
}

/* Overlay for readability */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

/* Content Styling */
.slide-content {
    position: relative;
    z-index: 10;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 8%;
    padding-top: 0px;
    /* Account for header height */
}

.slide-inner {
    color: white;
    max-width: 700px;
    text-align: left;
}

/* Typography & Animations */
.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.hero p {
    margin-bottom: 40px;
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(30px);
    max-width: 550px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
    align-items: center;
}

/* Staggered text entrance on active slide */
.swiper-slide-active h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.swiper-slide-active p {
    opacity: 0.9;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.swiper-slide-active .buttons {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

/* Buttons */
.hero .btn {
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero .btn-primary {
    background: var(--primary-color);
    color: white;
}

.hero .btn-primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 4px 15px #f9c424;
}

.hero .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(1px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    border-color: white;
}

/* Progress Bar */
.progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 20;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: var(--primary-color);
    transition-timing-function: linear;
}

/* Swiper Pagination (Dots) */
.swiper-pagination-bullet {
    background: white;
    opacity: 0.4;
    width: 10px;
    height: 10px;
    margin: 0 16px !important;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
}

/* ! [Hero Section] CSS code ends here */

/* ! [Trusted By Families Section] CSS code starts here */
.trusted-section {
    background: #f8fafc;
    padding: 80px 0;
}

.trusted-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3%;
}

.trusted-header {
    text-align: center;
    margin-bottom: 50px;
}

.trusted-header h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 20px;
}

.trusted-header h2 .highlight {
    color: #1a5276;
}

.trusted-header p {
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
    max-width: 850px;
    margin: 0 auto;
}

.trusted-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.trusted-card {
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e8ecf0;
}

.trusted-card i {
    color: #1a5276;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.trusted-card span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #334155;
}

/* ! [Trusted By Families Section] CSS code ends here */

/* ! [Core Values Section] CSS code starts here */
.values-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f0f5fa 100%);
    padding: 80px 0;
}

.values-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.values-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: #e8f4fd;
    color: #1a5276;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.values-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 16px;
    line-height: 1.3;
}

.values-header h2 .highlight {
    color: #1a5276;
    text-decoration: underline;
    text-decoration-color: var(--primary-color, #f9c424);
    text-underline-offset: 6px;
    text-decoration-thickness: 3px;
}

.values-header p {
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
    max-width: 550px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
    margin-left: 40px;
    margin-right: 40px;
    justify-content: center;
    align-items: center;
}

.value-card {
    background: #ffffff;
    padding: 40px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8ecf0;
    transition: all 0.3s ease;
    padding: 20px 10px;
    height: 250px;
    width: 250px;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 65px;
    height: 65px;
    background: #1a5276;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.value-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.value-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #64748b;
}

/* ! [Core Values Section] CSS code ends here */

/* ! [CTA Section] CSS code starts here */
.cta-section {
    background: linear-gradient(135deg, #1a5276 0%, #154360 50%, #0e2f44 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-section .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 3%;
}

.cta-section h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.4;
}

.cta-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.cta-btn.cta-primary {
    background: var(--primary-color, #f9c424);
    color: #1a365d;
}

.cta-btn.cta-primary:hover {
    background: var(--primary-hover, #e6b320);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 196, 36, 0.4);
}

.cta-btn.cta-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-btn.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

/* ! [CTA Section] CSS code ends here */


/* ! [Mission Vision Values Section] CSS code starts here */
.mvv-section {
    background: #f0f5fa;
    /* Light grey/blue background */
    padding: 80px 0;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: stretch;
    max-width: 900px;
    margin: 0 auto;
}

.mvv-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e8ecf0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    aspect-ratio: 1 / 1;
}

.mvv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.mvv-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.6rem;
    color: white;
}

.mvv-icon.icon-green {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    box-shadow: 0 8px 16px rgba(34, 197, 94, 0.2);
}

.mvv-icon.icon-yellow {
    background: linear-gradient(135deg, #facc15 0%, #eab308 100%);
    box-shadow: 0 8px 16px rgba(234, 179, 8, 0.2);
}

.mvv-icon.icon-orange {
    background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
    box-shadow: 0 8px 16px rgba(249, 115, 22, 0.2);
}

.mvv-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 10px;
}

.mvv-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 0;
}

.mvv-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}

.mvv-list li {
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 6px;
    border-bottom: 1px dashed #e2e8f0;
}

.mvv-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.mvv-list li i {
    color: #22c55e;
    font-size: 0.9rem;
    background: #dcfce7;
    padding: 6px;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ! [Mission Vision Values Section] CSS code ends here */


/* ! Responsive CSS code starts here */

@media (max-width: 1024px) {

    /* ? [Hero] Responsive CSS starts here */
    .slide-content {
        padding: 0 6%;
        padding-top: 80px;
    }

    .slide-inner {
        max-width: 600px;
    }

    .hero h1 {
        font-size: clamp(2rem, 4vw, 3.5rem);
    }

    /* ? [Hero] Responsive CSS ends here */

    /* ? [Values] Responsive CSS starts here */
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        margin: 30px 20px;
        gap: 20px;
    }

    .value-card {
        width: auto;
        height: auto;
        padding: 30px 18px;
    }

    /* ? [Values] Responsive CSS ends here */

    /* ? [MVV] Responsive CSS starts here */
    .mvv-grid {
        gap: 20px;
    }

    .mvv-card {
        padding: 30px 20px;
    }

    /* ? [MVV] Responsive CSS ends here */
}

@media (max-width: 900px) {

    /* ? [Trusted] Responsive CSS starts here */
    .trusted-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* ? [Trusted] Responsive CSS ends here */
}

@media (max-width: 768px) {

    /* ? [Hero] Responsive CSS starts here */
    .slide-content {
        padding: 0 5%;
        padding-top: 100px;
        justify-content: center;
        align-items: center;
    }

    .slide-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 0.95rem;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        gap: 12px;
    }

    .hero .btn {
        width: 100%;
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    /* ? [Hero] Responsive CSS ends here */

    /* ? [Values] Responsive CSS starts here */
    .values-section {
        padding: 60px 0;
    }

    .values-header {
        margin-bottom: 25px;
    }

    .values-header h2 {
        font-size: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 20px 16px;
    }

    .value-card {
        width: 100%;
        height: auto;
        padding: 28px 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .value-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 16px;
    }

    .value-icon i {
        font-size: 1.3rem;
    }

    .value-card h3 {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }

    .value-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* ? [Values] Responsive CSS ends here */

    /* ? [CTA] Responsive CSS starts here */
    .cta-section {
        padding: 60px 0;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* ? [CTA] Responsive CSS ends here */

    /* ? [MVV] Responsive CSS starts here */
    .mvv-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .mvv-section {
        padding: 60px 0;
    }

    /* ? [MVV] Responsive CSS ends here */
}

@media (max-width: 600px) {

    /* ? [Trusted] Responsive CSS starts here */
    .trusted-section {
        padding: 60px 0;
    }

    .trusted-header {
        margin-bottom: 30px;
    }

    .trusted-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .trusted-card {
        padding: 18px 20px;
    }

    /* ? [Trusted] Responsive CSS ends here */
}

@media(max-width: 480px) {

    /* ? [Hero] Responsive CSS starts here */
    .slide-content {
        padding: 0 4%;
        padding-top: 90px;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .buttons {
        max-width: 260px;
    }

    .hero .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    /* ? [Hero] Responsive CSS ends here */

    /* ? [Values] Responsive CSS starts here */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin: 16px 12px;
    }

    .value-card {
        width: 100%;
        height: auto;
        padding: 24px 20px;
    }

    .value-icon {
        width: 50px;
        height: 50px;
    }

    .value-icon i {
        font-size: 1.2rem;
    }

    .value-card h3 {
        font-size: 1rem;
    }

    .value-card p {
        font-size: 0.85rem;
    }

    /* ? [Values] Responsive CSS ends here */

    /* ? [MVV] Responsive CSS starts here */
    .mvv-card {
        padding: 24px 20px;
    }

    .mvv-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .mvv-card h3 {
        font-size: 1.25rem;
    }

    .mvv-card p {
        font-size: 0.9rem;
    }

    /* ? [MVV] Responsive CSS ends here */
}

/* ! Responsive CSS code ends here */