﻿/* RESET & BODY */
body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", Helvetica, Arial, sans-serif;
    background-color: #f4f4f4;
    /*display: flex;*/
    justify-content: center;
}

/* MAIN LAYOUT */
.main-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 80px;
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.menu-bar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000; /* keeps it above all content */
    background-color: #fff; /* optional: ensure background covers content behind it */
    box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* subtle shadow for separation */
}

/* MENU BAR */
.menu-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 10px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1000;
}

.logo-section img.menu-logo {
    width: 215px;
    height: auto;
}

.menu-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.left-links, .right-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.link-item {
    cursor: pointer;
    font-weight: 500;
    color: #093052;
    transition: color 0.3s ease;
}

    .link-item:hover {
        color: #0078d7;
    }

.right-links .registration {
    font-weight: 600;
    color: #093052;
}

.right-links .login {
    background-color: #004075;
    color: #fff;
    height:40px;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
}

.language-dropdown {
    /*margin-top: 25px;*/
}

    .language-dropdown label {
        font-size: 14px;
        color: #333;
        display: block;
        margin-bottom: 8px;
    }

/* LANGUAGE DROPDOWN */
.language-dropdown select {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    height:40px;
    background-color: #fff;
    font-weight: 500;
    color: #4b0082;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .language-dropdown select:hover {
        border-color: #0078d7;
    }

.menu-logo-container {
    display: flex;
    align-items: center;
    gap: 10px; /* spacing between hamburger and logo */
}

/* HAMBURGER MENU (MOBILE) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    gap: 5px;
}

    .menu-toggle span {
        width: 26px;
        height: 3px;
        background-color: #333;
        border-radius: 2px;
    }

/* === MOBILE MENU === */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 340px;
    height: 70vh;
    background: #fff;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.2);
    transition: left 0.3s ease-in-out;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 25px;
}

    .mobile-menu.open {
        left: 0;
    }

.close-btn {
    align-self: flex-end;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 30px;
}

.menu-link {
    font-size: 18px;
    color: #333;
    cursor: pointer;
    transition: color 0.2s ease;
}

    .menu-link:hover {
        color: #004aad;
    }

/* === BUTTONS === */
.menu-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
}

.register-btn {
    background-color: #004aad;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.login-btn {
    text-align: center;
    background: #fff;
    border: 1px solid #004aad;
    color: #004aad;
    border-radius: 6px;
    padding: 10px 20px;
    text-decoration: none;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }
}


/* RESPONSIVE STYLES */
@media (max-width: 480px) {
    /* Overall menu layout */
    .menu-bar {
        flex-direction: row;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 20px;
        height: auto;
        position: relative;
    }

    /* Logo stays visible and centered */
    .logo-section {
        flex: 1;
        display: flex;
        justify-content: flex-start;
    }

        .logo-section img.menu-logo {
            width: 140px;
            height: auto;
        }

    .menu-links .left-links,
    .menu-links .language-dropdown {
        display: none;
    }

    /* Keep the login and dropdown visible */
    .menu-links .login {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-left: auto;
    }


        /* Show when toggled */
        .menu-links.active {
            display: flex;
        }

    /* Left and right sections stack vertically */
    .left-links,
    .right-links {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        text-align: center;
        width: 100%;
    }

    /* Each link becomes large and tappable */
    .link-item {
        font-size: 18px;
        padding: 8px 0;
        color: #093052;
    }

    /* Language dropdown full width */
    .language-dropdown select {
        width: 80%;
        padding: 10px;
        font-size: 16px;
        border-radius: 6px;
    }

    /* Hamburger icon */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 18px;
        cursor: pointer;
        z-index: 1100;
    }

        .menu-toggle span {
            display: block;
            height: 3px;
            width: 100%;
            background: #333;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

    /* Animation for menu dropdown */
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Small devices (below 600px) — tweak for smaller viewports */
@media (max-width: 600px) {
    .logo-section img.menu-logo {
        width: 150px;
        height:57px;
    }

    .link-item {
        font-size: 16px;
    }

    .language-dropdown select {
        font-size: 15px;
        width: 90%;
    }
}

/* HERO SECTION */
.hero-section {
    position: relative;
    /*width: 100%;*/
    /*background: linear-gradient(110deg, rgba(17,89,151,1) 8%, rgba(6,29,49,1) 99%);*/
    background: url("../images/Hero_section_1.png") no-repeat;
    overflow: hidden;
    padding-top: 60px;
    height:896px;
    width:100%;
    padding-bottom: 60px;
    padding-left: 0;
    padding-right: 0;
}

    .hero-section .container {
        display: flex;
        flex-direction: column;
        gap: 70px;
        margin-top:100px;
        margin-left: 80px;
    }

.component {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

/* Set widths using flex */
.content {
    flex: 0 0 60%; /* don't grow, don't shrink, take 60% width */
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: #fff;
}

.heroheading {
    font-size: 40px;
    font-weight: 700;
    font-style: italic;
    line-height: 1.2;
}

.features {
    display: flex;
    flex-wrap: wrap; /* allow wrapping to next row */
    gap: 24px 40px; /* row-gap: 24px, column-gap: 40px */
}

.feature {
    display: flex;
    align-items: center; /* center image vertically with text */
    gap: 8px; /* space between icon and text */
    flex: 1 1 calc(50% - 20px); /* 2 items per row, minus half the column gap */
    box-sizing: border-box;
}

    .feature img {
        width: 24px;
        height: 24px;
    }

.actions {
    display: flex;
    gap: 16px;
}

.button {
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
}

.test-btn {
    background-color: #d7ecff;
    color: #0e497b;
}

.video-btn {
    background-color: transparent;
    border: 1px solid #a2cff9;
    color: #a2cff9;
}


/* HERO IMAGE */


.hero-image {
    flex: 0 0 40%; /* don't grow, don't shrink, take 40% width */
}

    .hero-image img {
        width: 100%;
        max-width: 544px;
        height: auto;
    }

.frame-5 {
    position: absolute;
    top: 0;
    right: 0;
    width: 698px;
    height: 712px;
    z-index: 0;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .component {
        gap: 40px;
    }
}

/* TABLET VIEW (481px–768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .hero-section {
        background: linear-gradient(110deg, rgba(17,89,151,1) 8%, rgba(6,29,49,1) 99%);
        background-image: none;
        height: auto;
        width: 100%;
        padding: 80px 20px;
    }

        .hero-section .container {
            margin: 0 40px;
            gap: 48px;
        }

    .component {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .content {
        flex: 1 1 100%;
        text-align: center;
        gap: 20px;
    }

    .heroheading {
        font-size: 32px;
        line-height: 140%;
        font-weight: 700;
        text-align: center;
    }

    .features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 40px;
        justify-items: center;
        width: 100%;
    }

    .feature {
        justify-content: center;
        text-align: center;
        flex: 1 1 45%;
    }

        .feature img {
            width: 28px;
            height: 28px;
        }

        .feature span {
            font-size: 15px;
            line-height: 150%;
        }

    .actions {
        display: flex;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    .button {
        padding: 12px 24px;
        font-size: 16px;
    }

    .arrow {
        padding-left: 10px;
        font-size: 20px;
    }
}


@media (max-width: 768px) {
    /* Align hamburger+logo and login in one line */
    .menu-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .left-section {
        display: flex;
        align-items: center;
    }


    .menu-logo-container {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    /* Resize heading */
    .heroheading {
        font-size: 28px;
        line-height: 150%;
        text-align: start;
        font-weight:600;
        padding: 0 10px;
    }

    .content {
        flex: 1 1 100%;
        align-items: start;
        text-align: center;
        gap: 16px;
    }

    .hero-section {
        position: relative;
        background: linear-gradient(110deg, rgba(17,89,151,1) 8%, rgba(6,29,49,1) 99%);
        overflow: hidden;
        padding-top: 60px;
        height: 100%;
        width: 100%;
        padding-bottom: 60px;
        padding-left: 0;
        padding-right: 0;
    }

        .hero-section .container {
            margin: 0;
            gap: 24px;
        }

    /* Stack hero content vertically */
    .component {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .hero-image img {
        max-width: 100%;
    }

    .frame-5 {
        display: none !important;
    }

    /* Features grid in 2 per row */
    .features {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
        justify-items: start;
        width: 100%;
    }

    .feature {
        flex: 1 1 45%;
        justify-content: center;
        text-align: center;
    }

        .feature img {
            width: 28px;
            height: 28px;
        }

        .feature span {
            font-size: 14px;
            line-height:150%;
        }

    /* Buttons stack for small devices */
    .actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .button {
        width: 80%;
        font-size: 15px;
        padding: 10px 20px;
    }

    .test-btn {
        background-color: #d7ecff;
        color: #0e497b;
    }

    .arrow{
        padding-left:10px;
        font-size:20px;
    }

    .video-btn {
        border: 1px solid #a2cff9;
        color: #a2cff9;
        background-color: transparent;
    }

    /* Hide hero image if used later */
    .hero-image {
        display: none;
    }
}

/* =========================
   🎯 Base Desktop Styles
========================= */
.giftedness-section {
    background: #fff;
    margin: 98px 40px 80px 100px;
    display: flex;
    justify-content: center;
}

.giftedness-container {
    display: flex;
    gap: 48px;
    max-width: 1310px;
    width: 100%;
    align-items: flex-start;
}

/* Left image column */
.giftedness-img-col {
    flex: 1 1 50%;
    display: flex;
    justify-content: flex-end;
}

.giftedness-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    margin: 45px 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

/* Right content column */
.giftedness-content-col {
    flex: 1 1 50%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 45px 0 113px 80px;
    gap: 18px;
}

    .giftedness-content-col p {
        margin: 0;
    }

.giftedness-title {
    color: #093052;
    font-size: 40px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.48px;
}

.giftedness-desc,
.giftedness-response-text {
    color: #093052;
    font-size: 18px;
    font-weight: 325;
    line-height: 150%;
}

.giftedness-response-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 16px 0 8px 0;
}

.giftedness-response-icon {
    width: 22px;
    height: 22px;
}

.giftedness-response-title {
    font-size: 18px;
    font-weight: 600;
    color: #0f5849;
}

.giftedness-action-row {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.giftedness-btn {
    padding: 11px 22px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: #eaf3fc;
    color: #195797;
    transition: box-shadow 0.2s;
}

.giftedness-test-btn {
    background: #d7ecff;
    color: #0e497b;
}

.giftedness-read-btn {
    background: #fff;
    color: #41A5FF;
    border: 1px solid #41A5FF;
}

.giftedness-btn-arrow {
    width: 18px;
    height: 18px;
    margin-left: 8px;
    vertical-align: middle;
    filter: brightness(0) saturate(100%) invert(36%) sepia(77%) saturate(624%) hue-rotate(172deg) brightness(93%) contrast(92%);
}

.giftedness-btn:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

/* =========================
   💻 Large Desktop (>=1440px)
========================= */
@media (min-width: 1440px) {
    .giftedness-section {
        margin: 100px auto;
    }

    .giftedness-content-col {
        margin-left: 100px;
    }
}

/* =========================
   📱 Tablet View (481px - 1024px)
========================= */
@media (max-width: 1024px) {
    .giftedness-section {
        margin: 60px 20px;
    }

    .giftedness-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 32px;
    }

    .giftedness-img-col {
        justify-content: center;
    }

    .giftedness-img {
        max-width: 80%;
        height: auto;
        margin: 0 auto;
    }

    .giftedness-content-col {
        margin: 0;
        max-width: 90%;
        text-align: start;
        align-items: center;
    }

    .giftedness-title {
        font-size: 36px;
        text-align:start;
    }

    .giftedness-desc,
    .giftedness-response-text {
        font-size: 17px;
        line-height: 155%;
    }

    .giftedness-action-row {
        justify-content: center;
    }
}

/* =========================
   📞 Mobile View (<=480px)
========================= */
@media (max-width: 480px) {
    .giftedness-section {
        margin: 40px 10px;
    }

    .giftedness-title {
        font-size: 26px;
        line-height: 130%;
    }

    .giftedness-desc,
    .giftedness-response-text {
        font-size: 16px;
        line-height: 150%;
    }

    .giftedness-img {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 0;
        border-radius: 8px;
    }

    .giftedness-btn {
        font-size: 14px;
        padding: 10px 18px;
    }

    .giftedness-btn-arrow {
        width: 16px;
        height: 16px;
    }

    .giftedness-action-row {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }
}

/* =============================
   🎯 Base Desktop Styles
============================= */
.giftedness-exist {
    width: 100%;
    background: #fbfff2;
    padding: 88px 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .giftedness-exist .container {
        max-width: 1310px;
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 52px;
    }

.section-title-wrapper {
    margin-bottom: 8px;
}

.heading {
    font-weight: 600;
    color: #093052;
    font-size: 40px;
    letter-spacing: -0.48px;
    margin-bottom: 8px;
}

.text {
    font-weight: 400;
    color: #093052;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 5px;
}

/* =============================
   🔷 Giftedness Row Section
============================= */
.giftedness-row-main {
    display: flex;
    flex-direction: row;
    gap: 54px;
    margin: 24px;
    align-items: flex-start;
    justify-content: center;
}

/* Left: Image + Bars */
.giftedness-img-bar-area {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 7px;
    flex-wrap: nowrap;
}

.giftedness-img-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* 🖼️ Image styling (desktop) */
.giftedness-main-img {
    width: 100%;
    max-width: 280px;
    height: 410px;
    border-radius: 6px 6px 0px 0px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* 🏷️ Label styling */
.giftedness-label {
    background-color: #fff7e0;
    border: 1.1px solid #f0d890;
    border-radius: 0px 0px 6px 6px;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 16px;
    color: #0a2a4a;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    width: 280px;
}

.giftedness-bar {
    width: 61px;
    height: 450px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 350;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 6px;
    cursor: default;
    color: #000;
    margin-left: 24px;
}

    .giftedness-bar.academic {
        background: #e7fed8;
    }

    .giftedness-bar.creative {
        background: #ffe6eb;
    }

    .giftedness-bar.leadership {
        background: #ddeaff;
    }

/* Right: Content */
.giftedness-right-content {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 124px;
    max-width: 520px;
}

.giftedness-right-title {
    font-size: 24px;
    font-weight: 700;
    color: #093052;
    margin-bottom: 16px;
}

.giftedness-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
}

    .giftedness-list li {
        font-size: 16px;
        color: #093052;
        margin-bottom: 11px;
        position: relative;
        padding-left: 28px;
    }

        .giftedness-list li:not(.giftedness-list-highlight)::before {
            content: "";
            position: absolute;
            left: 4px;
            top: 12px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #4ca2ff;
        }

.giftedness-list-highlight {
    color: #1da857;
    font-weight: 500;
    background: none;
    padding-left: 32px;
    position: relative;
    margin-bottom: 7px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.giftedness-list-check {
    width: 17px;
    height: 17px;
    position: absolute;
    top: 2px;
    left: 0;
}

/* Button */
.giftedness-types-test-btn {
    background: #d7ecff;
    color: #0e497b;
    padding: 11px 22px;
    font-size: 15px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: box-shadow 0.2s;
    margin-top: 8px;
}

.giftedness-btn-arrow {
    width: 18px;
    height: 14px;
    margin-left: 8px;
    vertical-align: middle;
}

.giftedness-types-test-btn:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

/* =============================
   💻 Tablet View (481px - 1024px)
============================= */
@media (max-width: 1024px) {
    .giftedness-row-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 32px;
        margin: 24px auto;
    }

    .giftedness-exist .container{
        max-width:710px;
    }

    .giftedness-bar.academic{
        height:41.5px;
    }

    .giftedness-bar.creative {
        height: 41.5px;
    }

    .giftedness-bar.leadership {
        height: 41.5px;
    }

    .giftedness-img-bar-area {
        flex-direction: row;
        justify-content: center;
        align-items: flex-end;
        flex-wrap: wrap;
        gap: 12px;
    }

    .giftedness-main-img {
        max-width: 260px;
        height: 370px;
    }

    .giftedness-list li {
        font-size: 15px;
        padding-left: 30px;
        text-align: start;
    }

    .giftedness-label {
        width: 260px;
        font-size: 15px;
        padding: 7px 14px;
    }

    .giftedness-bar {
        width: 48px;
        height: 360px;
        font-size: 18px;
    }

    .giftedness-right-content {
        margin-left: 0;
        align-items: start;
        max-width: 85%;
    }

    .giftedness-right-title {
        font-size: 22px;
    }

    .heading {
        font-size: 32px;
    }

    .text {
        font-size: 17px;
        line-height: 26px;
    }
}

/* =============================
   📱 Mobile View (<=480px)
============================= */
@media (max-width: 480px) {
    .giftedness-exist {
        padding: 28px 0 20px;
    }

    .giftedness-row-main {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .giftedness-img-bar-area {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .giftedness-bar.academic {
        background: #e7fed8;
    }

    .giftedness-bar.creative {
        background: #ffe6eb;
    }

    .giftedness-bar.leadership {
        background: #ddeaff;
    }

    .giftedness-img-container {
        flex-direction: column-reverse; /* label above image */
    }

    .giftedness-main-img {
        max-width: 310px;
        height: 330px;
        border-radius: 0px 0px 6px 6px;
    }

    .giftedness-label {
        width: 310px;
        font-size: 14px;
        padding: 6px 12px;
        border-radius: 6px 6px 0px 0px;
    }

    .giftedness-bar {
        writing-mode: horizontal-tb;
        width: 90%;
        height: auto;
        padding: 10px;
        font-size: 16px;
        text-align: center;
        border-radius: 8px;
        margin-left: 0;
    }

    .giftedness-right-content {
        align-items: center;
        text-align: center;
        margin: 0;
        max-width: 75%;
    }

    .giftedness-right-title {
        font-size: 20px;
    }

    .giftedness-list li {
        font-size: 15px;
        padding-left: 30px;
        text-align:start;
    }

    .heading {
        font-size: 26px;
        line-height: 120%;
    }

    .text {
        font-size: 15px;
        line-height: 22px;
    }

    .giftedness-types-test-btn {
        font-size: 14px;
        padding: 10px 20px;
    }

    .giftedness-btn-arrow {
        width: 16px;
        height: 12px;
    }
}


.giftedness-centered-section {
    background: #fdfff4;
    padding: 64px 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

    .giftedness-centered-section .container {
        max-width: 1310px;
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

/* =========================
   🌐 Desktop (Default)
========================= */
.giftedness-centered-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    gap: 48px;
}

.giftedness-centered-info {
    flex: 1 1 44%;
    min-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
}

.giftedness-centered-title {
    font-size: 21px;
    font-weight: 600;
    color: #15396a;
    margin-bottom: 12px;
}

.giftedness-centered-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
}

    .giftedness-centered-list li {
        font-size: 16px;
        color: #15396a;
        margin-bottom: 13px;
        padding-left: 22px;
        position: relative;
    }

        .giftedness-centered-list li:not(.highlight)::before {
            content: "";
            display: block;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #3392ff;
            position: absolute;
            left: 0;
            top: 8px;
        }

    .giftedness-centered-list .highlight {
        color: #169549;
        font-weight: 500;
        padding-left: 26px;
        display: flex;
        align-items: flex-start;
        gap: 9px;
    }

.giftedness-centered-check {
    width: 15px;
    height: 15px;
    margin-top: 2px;
}

.giftedness-centered-btn {
    background: #eaf3fc;
    color: #195797;
    border: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    padding: 11px 22px;
    display: inline-flex;
    align-items: center;
    transition: box-shadow 0.2s;
    margin-top: 9px;
    cursor: pointer;
}

.giftedness-centered-btn-arrow {
    width: 18px;
    height: 18px;
    margin-left: 8px;
}

.giftedness-centered-imagebars {
    flex: 1 1 53%;
    display: flex;
    align-items: flex-end;
    gap: 11px;
    margin-left: 80px;
    min-width: 440px;
    justify-content: flex-start;
}

.giftedness-centered-image-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.giftedness-centered-image {
    height: 389px;
    width: 330px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 4px 8px rgba(40, 60, 90, 0.06);
}

.giftedness-centered-image-label {
    background: #ffefd2;
    font-size: 16px;
    font-weight: 600;
    color: #191919;
    text-align: center;
    width: 330px;
    height: 61px;
    border-radius: 0 0 12px 12px;
    padding: 13px 0 7px 0;
}

.giftedness-centered-bar {
    width: 61px;
    height: 450px;
    display: flex;
    margin-left: 24px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 350;
    padding: 6px;
    text-align: center;
}

    .giftedness-centered-bar.psychomotor {
        background: #e7fed8;
    }

    .giftedness-centered-bar.emotional {
        background: #ffe6eb;
    }

    .giftedness-centered-bar.twice {
        background: #ddeaff;
    }

/* =========================
   📱 Tablet View (768px–1000px)
========================= */
@media (max-width: 1000px) and (min-width: 768px) {
    .giftedness-centered-row {
        flex-direction: column;
        gap: 36px;
        align-items: center;
    }

    .giftedness-centered-info {
        align-items: start;
        text-align: start;
        min-width: unset;
    }

    .giftedness-centered-title {
        font-size: 20px;
    }

    .giftedness-centered-list li {
        font-size: 15px;
    }

    .giftedness-centered-imagebars {
        margin-left: 0;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .giftedness-centered-image {
        width: 280px;
        height: 330px;
    }

    .giftedness-centered-image-label {
        width: 280px;
        font-size: 15px;
        height: 55px;
    }

    .giftedness-centered-bar {
        width: 50px;
        height: 380px;
        font-size: 16px;
    }
}

/* =========================
   📱 Mobile View (<768px)
========================= */
@media (max-width: 767px) {
    .giftedness-centered-section {
        padding: 48px 0;
    }

    .giftedness-centered-row {
        flex-direction: column;
        gap: 28px;
        align-items: center;
    }

    .giftedness-centered-info {
        align-items: center;
        text-align: center;
        max-width: 75%;
        min-width: unset;
        gap: 16px;
    }

    .giftedness-centered-title {
        font-size: 20px;
    }

    .giftedness-centered-list li {
        font-size: 14px;
    }

    .giftedness-centered-btn {
        font-size: 14px;
        padding: 9px 18px;
    }

    .giftedness-centered-imagebars {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-left: 0;
    }

    .giftedness-centered-image {
        width: 240px;
        height: 300px;
    }

    .giftedness-centered-image-label {
        width: 240px;
        font-size: 14px;
        height: 48px;
    }

    .giftedness-centered-bar {
        writing-mode: horizontal-tb;
        height: auto;
        width: 220px;
        padding: 8px 0;
        font-size: 15px;
        margin: 6px 0;
        text-align: center;
    }
}

.giftedness-why-section {
    background: #fff;
    padding: 72px 0 60px 0;
    display: flex;
    justify-content: center;
}

    .giftedness-why-section .container {
        max-width: 1310px;
        width: 100%;
        margin: 0 auto;
        text-align: start;
    }

.why-title {
    font-size: 40px;
    font-weight: 600;
    color: #143466;
    margin-bottom: 18px;
}

.why-desc {
    font-size: 20px;
    color: #35506d;
    margin-bottom: 80px;
    line-height: 1.55;
    margin-left: auto;
    margin-right: auto;
}

/* === Layout for 6 features + center image === */
.why-features-layout {
    position: relative;
    width: 100%;
    max-width: 1310px;
    height: 1104px;
    margin: 0 auto 70px;
}

.why-center-image-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.why-center-image {
    width: 540px;
    height: 540px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(40, 70, 100, 0.06);
}

/* Common feature style */
.why-feature {
    position: absolute;
    width: 320px;
    text-align: center;
    color: #21366d;
    font-size: 15.5px;
    line-height: 1.5;
}

    .why-feature img {
        width: 44px;
        height: 44px;
        margin-bottom: 16px;
    }

.why-feature-title {
    font-weight: 600;
    font-size: 20px;
    color: #0a2a4a;
}

.why-feature-desc {
    font-size: 18px;
    color: #3c4d66;
    line-height: 1.5;
    display: block;
    margin-top: 4px;
}

/* === Desktop positioning (1310px container) === */
.why-feature-top-center {
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
}

.why-feature-left-top {
    top: 282px;
    left: 0;
}

.why-feature-left-bottom {
    bottom: 282px;
    left: 0;
}

.why-feature-right-top {
    top: 282px;
    right: 0;
}

.why-feature-right-bottom {
    bottom: 282px;
    right: 0;
}

.why-feature-bottom-center {
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
}

/* === Buttons === */
.why-btn-row {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.why-btn {
    padding: 11px 26px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.why-btn-read {
    background: #f3faff;
    color: #2187c5;
    border: 1px solid #b8d5e5;
}

.why-btn-test {
    background: #d7ecff;
    color: #0e497b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.why-btn-arrow {
    width: 18px;
    height: 18px;
}

/* ====================== RESPONSIVE ====================== */

/* 🔹 Large Tablets (992px to 1200px) */
@media (max-width: 1200px) {
    .why-features-layout {
        max-width: 980px;
        height: 820px;
    }

    .why-center-image {
        width: 420px;
        height: 420px;
    }

    .why-feature {
        width: 260px;
        font-size: 15px;
    }

    .why-feature-title {
        font-size: 18px;
    }

    .why-feature-desc {
        font-size: 15px;
    }

    .why-feature-left-top,
    .why-feature-left-bottom {
        left: 20px;
    }

    .why-feature-right-top,
    .why-feature-right-bottom {
        right: 20px;
    }
}

/* 🔹 Medium Tablets (768px to 992px) */
@media (max-width: 992px) {
    .why-features-layout {
        max-width: 720px;
        height: 620px;
    }

    .why-center-image {
        width: 300px;
        height: 300px;
    }

    .why-feature {
        width: 220px;
        font-size: 14px;
    }

    .why-feature-title {
        font-size: 16px;
    }

    .why-feature-desc {
        font-size: 14px;
    }

    .why-feature-left-top {
        top: 180px;
        left: 0;
    }

    .why-feature-left-bottom {
        bottom: 180px;
        left: 0;
    }

    .why-feature-right-top {
        top: 180px;
        right: 0;
    }

    .why-feature-right-bottom {
        bottom: 180px;
        right: 0;
    }
}

/* 🔹 Mobile (below 768px) */
@media (max-width: 768px) {
    .why-features-layout {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        height: auto;
        width: 100%;
        overflow: hidden;
        padding: 0 20px;
        box-sizing: border-box;
    }

    /* Move image to top */
    .why-center-image-wrap {
        position: static;
        transform: none;
        order: -1;
        margin-bottom: 16px;
    }

    .why-center-image {
        width: 250px;
        height: 250px;
        border-radius: 10px;
        object-fit: cover;
    }

    /* Reset all feature positions */
    .why-feature {
        position: static !important;
        transform: none !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        width: 100%;
        max-width: 420px;
        text-align: center;
        font-size: 14px;
        margin: 0 auto;
    }

        .why-feature img {
            width: 40px;
            height: 40px;
            margin-bottom: 10px;
        }

    .why-feature-title {
        font-size: 16px;
    }

    .why-feature-desc {
        font-size: 14px;
        color: #40506c;
    }

    /* Buttons layout */
    .why-btn-row {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        margin-top: 30px;
    }

    .why-btn {
        /*width: 90%;*/
    }
}

/* 🔹 Small mobile (below 480px) */
@media (max-width: 480px) {
    .why-title {
        font-size: 26px;
        text-align: start;
    }

    .why-desc {
        font-size: 15px;
        margin-bottom: 36px;
        text-align: start;
    }

    .why-center-image {
        width: 430px;
        height: 430px;
    }

    .why-feature {
        font-size: 13px;
        max-width: 300px;
    }

    .why-feature-title {
        font-size: 15px;
    }

    .why-feature-desc {
        font-size: 13.5px;
    }
}


.giftedness-hero-like {
    position: relative;
    background: #215788;
    color: #fff;
    width: 100%;
    box-sizing: border-box;
}

    .giftedness-hero-like .container {
        width: 100%;
        max-width: 1440px;
        padding: 100px 0px 0px 0px;
        display: flex;
        justify-content: center;
        box-sizing: border-box;
    }

/* ------------------- Desktop layout ------------------- */
.giftedness-hero-row {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 120px;
    align-items: flex-start;
}

.giftedness-hero-features {
    display: flex;
    flex-direction: column;
    gap: 46px;
    flex: 1 1 45%;
    min-width: 310px;
    padding-top: 14px;
}

.giftedness-feature {
    display: flex;
    align-items: flex-start;
    gap: 22px;
}

.giftedness-feature-icons {
    width: 48px;
    text-align: center;
}

.giftedness-feature-icon {
    width: 48px;
    height: 48px;
}

.giftedness-feature-divider {
    height: 100px;
    margin-top: 16px;
}

.giftedness-feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.giftedness-feature-desc {
    color: #FFFFFF;
    font-size: 18px;
    line-height: 1.58;
    font-weight: 400;
}

/* Right section */
.giftedness-hero-infoimg {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex: 1 1 53%;
    min-width: 340px;
    position: relative;
    z-index: 1;
}

.giftedness-hero-headline {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 17px;
    color: #fff;
    align-self: flex-start;
}

.giftedness-hero-text {
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 16px;
    align-self: flex-start;
    line-height: 1.6;
}

.giftedness-hero-image-wrap {
    margin-top: 14px;
    width: 100%;
    text-align: right;
}

.giftedness-hero-img {
    /*width: 100%;*/
    max-width: 786px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

/* ------------------- Tablet (≤ 1024px) ------------------- */
@media (max-width: 1024px) {
    .giftedness-hero-like .container {
        padding: 80px 50px;
    }

    .giftedness-hero-row {
        gap: 60px;
        align-items: flex-start;
    }

    .giftedness-feature-title {
        font-size: 18px;
    }

    .giftedness-feature-desc {
        font-size: 16px;
    }

    .giftedness-hero-headline {
        font-size: 32px;
    }

    .giftedness-hero-text {
        font-size: 16px;
    }

    .giftedness-hero-img {
        max-width: 600px;
    }
}

/* ------------------- Mobile (≤ 768px) ------------------- */
@media (max-width: 768px) {
    .giftedness-hero-like .container {
        padding: 60px 24px;
    }

    .giftedness-hero-row {
        display: flex;
        flex-direction: column;
        gap: 40px;
        align-items: center;
        text-align: center;
    }

    /* 🆕 Reorder: make How it works section appear first on mobile */
    .giftedness-hero-infoimg {
        order: -1; /* moves headline/text to top */
        align-items: center;
        text-align: start;
    }

    .giftedness-feature-icon{
        width:36px;
        height:36px;
    }

    .giftedness-hero-features {
        align-items: center;
        flex: unset;
        width: 100%;
        max-width: 600px;
        gap: 36px;
        order: 2; /* ensures features appear below */
    }

    .giftedness-feature {
        flex-direction: column;
        align-items: start;
        text-align: start;
    }

    .giftedness-feature-icons {
        width:40px;
        height: auto;
    }

    .giftedness-feature-divider {
        height:70px;
        /*height: auto;*/
    }

    .giftedness-feature-title {
        font-size: 18px;
        margin-top: 8px;
    }

    .giftedness-feature-desc {
        font-size: 15px;
        line-height: 1.5;
    }

    .giftedness-hero-headline {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .giftedness-hero-text {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .giftedness-hero-image-wrap {
        order: 1; /* comes after text, before features */
        text-align: center;
    }

    .giftedness-hero-img {
        width: 100%;
        max-width: 350px;
        height: auto;
    }
}

/* ------------------- Small Mobile (≤ 480px) ------------------- */
@media (max-width: 480px) {
    .giftedness-hero-like .container {
        padding: 50px 16px;
    }

    .giftedness-hero-headline {
        font-size: 24px;
    }

    .giftedness-hero-text {
        font-size: 14px;
    }

    .giftedness-feature-title {
        font-size: 16px;
    }

    .giftedness-feature-desc {
        font-size: 14px;
    }

    .giftedness-hero-img {
        max-width: 300px;
    }
}
/* ================= Main Section ================= */
.who-should-section {
    background: #fcfff7;
    padding: 76px 0 60px 0;
    display: flex;
    justify-content: center;
}

.who-should-section .container {
    width: 1310px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    border-radius: 4px;
}

/* ================= Headings & Text ================= */
.who-should-title {
    font-size: 40px;
    font-weight: 700;
    color: #093052;
    margin-bottom: 20px;
}

.who-should-desc {
    font-size: 18px;
    color: #093052;
    line-height: 1.7;
    margin-bottom: 28px;
}

.who-should-desc.subtler {
    color: #093052;
    font-size: 20px;
    margin-bottom: 28px;
}

.who-should-points {
    margin-bottom: 28px;
    font-size: 18px;
    color: #093052;
    line-height: 1.6;
    padding-left: 20px;
}

.who-should-points li {
    margin-bottom: 8px;
}

/* ================= Cards Layout ================= */
.who-should-cards {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 26px;
    margin-top: 40px;
}

.who-should-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    flex: 1 1 calc(25% - 26px);
    min-width: 290px;
    height: 330px;
    background: #eaeaea;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.who-should-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* ================= Image behind the text ================= */
.who-should-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* ================= Overlay content ================= */
.who-should-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 20%, transparent 80%);
}

.who-should-card-overlay h3 {
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}

.who-should-card-overlay p {
    color: #f4f4f4;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    margin: 0;
}

/* ================= Responsive ================= */

/* Medium screens */
@media (max-width: 1200px) {
    .who-should-section .container {
        width: 95%;
    }

    .who-should-cards {
        gap: 20px;
    }

    .who-should-card {
        height: 300px;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .who-should-cards {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .who-should-card {
        flex: 1 1 calc(50% - 20px);
        max-width: 400px;
        height: 260px;
    }

    .who-should-card-overlay h3 {
        font-size: 18px;
    }

    .who-should-card-overlay p {
        font-size: 15px;
    }
}

@media (max-width: 600px) {
    .who-should-cards {
        overflow: hidden;
    }

    .swiper-wrapper {
        display: flex;
    }

    .swiper-slide {
        width: 90%;
        max-width: 360px;
        margin: 0 auto;
        border-radius: 18px;
        overflow: hidden;
    }

    .swiper-pagination {
        text-align: center;
        margin-top: 10px;
    }

    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background: #000;
        opacity: 0.3;
    }

    .swiper-pagination-bullet-active {
        background: #ff9800;
        opacity: 1;
    }
}

/* ================== Testimonials Section ================== */
.testimonials-section {
    background: #fff;
    padding: 80px 0 60px 0;
    display: flex;
    margin-bottom:60px;
    justify-content: center;
}

    .testimonials-section .container {
        max-width: 1310px;
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
    }

.testimonials-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    width: 100%;
}

/* ================== Left Info ================== */
.testimonials-info {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.testimonials-title {
    font-size: 40px;
    font-weight: 700;
    color: #093052;
    margin-bottom: 28px;
}

.testimonials-subtitle {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 24px;
    font-weight: 700;
    color: #093052;
    margin-bottom: 18px;
}

.testimonials-icon {
    width: 26px;
    height: 26px;
}

.testimonials-desc {
    font-size: 18px;
    color: #093052;
    line-height: 1.55;
    margin-bottom: 28px;
}

.testimonials-btn {
    background: #d7ecff;
    color: #12547b;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 11px 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .testimonials-btn:hover {
        background: #c4e2ff;
    }

.testimonials-btn-arrow {
    width: 17px;
    height: 17px;
}

/* ================== Right Image + Card ================== */
.testimonials-image-card {
    flex: 1 1 55%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    height: 500px;
}

/* Image */
.testimonials-img-wrap {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.testimonials-img {
    width: 370px;
    height: 470px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Next button beside image */
.testimonials-next-btn {
    position: absolute;
    right: -22px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .testimonials-next-btn:hover {
        transform: translateY(-50%) scale(1.05);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
    }

    .testimonials-next-btn img {
        width: 22px;
        height: 22px;
    }

/* Card overlapping bottom-left of image */
.testimonials-card {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(25%);
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(73, 122, 175, 0.1);
    padding: 22px 27px 14px 19px;
    width: 420px;
    border-left: 6px solid #fd7061;
}

.testimonials-card-quote {
    font-size: 16px;
    color: #244278;
    font-weight: 400;
    margin-bottom: 18px;
    line-height: 1.5;
}

.testimonials-card-bottom {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.testimonials-card-name {
    font-weight: 700;
    font-size: 15px;
    color: #133261;
    margin-right: 15px;
}

.testimonials-card-stars img {
    width: 17px;
    height: 17px;
    margin-right: 2px;
}

.testimonials-card-reviews {
    font-size: 14px;
    color: #ffb100;
    font-weight: 600;
    margin-left: 10px;
}

/* ================== Responsive ================== */

@media (max-width: 768px) {

    .testimonials-row{
        display:inline;
    }

    .testimonials-info{
        margin-bottom:40px;
    }

    .testimonials-section{
        margin-bottom:0px;
    }

    .testimonials-image-card {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: auto;
        position: relative;
    }

    .testimonials-img-wrap {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px; /* spacing between image and card */
    }

    .testimonials-img {
        width: 100%;
        /*max-width: 320px;*/
        height: auto;
        border-radius: 20px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    }

    .testimonials-card {
        position: relative; /* remove overlap */
        transform: none;
        bottom: auto;
        left: auto;
        width: 100%;
        /*max-width: 340px;*/
        margin: 0 auto; /* center horizontally */
        background: #fff;
        border-radius: 14px;
        box-shadow: 0 6px 20px rgba(73, 122, 175, 0.1);
        padding: 20px;
    }

    .testimonials-next-btn {
        position: absolute;
        right: 10%;
        top: 50%;
        transform: translateY(-50%);
        width: 32px;
        height: 32px;
    }
}


.faq-section {
    width: 100%;
    background: #FBFFF2;
    display: flex;
    justify-content: center;
}

    .faq-section .container {
        max-width: 1440px;
        width: 100%;
        margin: 112px 80px;
        display: flex;
        flex-direction: column;
    }

.faq-title {
    font-size: 40px;
    font-weight: 700;
    color: #093052;
    margin-bottom: 18px;
}

.faq-desc {
    color: #093052;
    margin-bottom: 28px;
    font-size: 16px;
    font-weight: 400;
}

.faq-item {
    border-bottom: 1px solid #e7e9e6;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    background: transparent;
    border: none;
    padding: 17px 0;
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    color: #203556;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    color: #093052;
    font-size: 16px;
    line-height: 1.6;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding-bottom: 15px;
}

.faq-arrow {
    font-size: 22px;
    color: #7aa0bb;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-readmore {
    margin-top: 16px;
    text-align: right;
}

.faq-readmore-link {
    font-size: 15px;
    font-weight: 600;
    color: #0E497B;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.faq-contact-prompt {
    margin-top: 58px;
}

.faq-contact-title {
    font-size: 2rem;
    font-weight: 700;
    color: #183655;
}

.faq-contact-btn {
    background: #EFF5EA;
    color: #195797;
    border: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    padding: 11px 24px;
    cursor: pointer;
    transition: background .18s;
}

    .faq-contact-btn:hover {
        background: #d7ecff;
    }

.no-toggle {
    cursor: default;
    color: #115997;
}

@media (max-width: 900px) {
    .faq-section .container {
        padding: 0 14px;
        margin: 40px 0;
    }

    .faq-title,
    .faq-contact-title {
        font-size: 28px;
    }

    .faq-question {
        font-weight: 500;
    }
}




.giftedness-types-section {
    width: 100%;
    background: #f9fcfa;
    padding: 72px 0 40px;
    display: flex;
    justify-content: center;
}

.giftedness-types-container {
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.giftedness-types-content {
    width: 100%;
    margin-bottom: 40px;
}

.giftedness-types-title {
    font-size: 36px;
    font-weight: 700;
    color: #093052;
    margin-bottom: 10px;
}

.giftedness-types-desc,
.giftedness-types-desc2 {
    font-size: 16px;
    color: #093052;
    margin-bottom: 8px;
    line-height: 1.6;
}

.giftedness-types-main {
    width: 100%;
    display: flex;
    gap: 46px;
    align-items: flex-start;
}

.giftedness-types-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 320px;
    max-width: 340px;
}

.giftedness-types-img {
    width: 100%;
    max-width: 320px;
    border-radius: 10px 10px 0 0;
    object-fit: cover;
    margin-bottom: 0;
}

.giftedness-types-label {
    background: #fff1cf;
    color: #3a3a3a;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 0;
    width: 100%;
    text-align: center;
    border-radius: 0 0 10px 10px;
    margin-bottom: 16px;
}

.giftedness-types-bars {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-bottom: 0;
    margin-top: 0;
    width: 100%;
    justify-content: center;
}

.giftedness-types-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 140px;
    font-size: 16px;
    font-weight: 500;
    color: #093052;
    background: #e7fed8;
    border-radius: 10px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding: 6px;
    box-sizing: border-box;
}

    .giftedness-types-bar.creative {
        background: #ffe6eb;
    }

    .giftedness-types-bar.leadership {
        background: #ddeaff;
    }

.giftedness-types-right {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-width: 540px;
}

.giftedness-types-category-title {
    font-size: 20px;
    font-weight: 700;
    color: #093052;
    margin-bottom: 10px;
}

.giftedness-types-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 24px;
}

    .giftedness-types-list li {
        font-size: 16px;
        color: #093052;
        margin-bottom: 9px;
        position: relative;
        padding-left: 26px;
    }

        .giftedness-types-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 7px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #61a8ff;
        }

.giftedness-types-highlight {
    color: #0c9241;
    font-weight: 500;
    background: none;
    padding-left: 34px;
}

.giftedness-types-check {
    width: 18px;
    height: 18px;
    position: absolute;
    left: 0;
    top: 8px;
}

.giftedness-types-test-btn {
    background: #eaf3fc;
    color: #195797;
    padding: 12px 22px;
    margin-top: 16px;
    font-size: 15px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: box-shadow 0.2s;
}

.giftedness-btn-arrow {
    width: 18px;
    height: 18px;
    margin-left: 8px;
    vertical-align: middle;
    filter: brightness(0) saturate(100%) invert(36%) sepia(77%) saturate(624%) hue-rotate(172deg) brightness(93%) contrast(92%);
}

@media (max-width: 900px) {
    .giftedness-types-main {
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
    }

    .giftedness-types-right {
        max-width: 100%;
    }

    .giftedness-types-left {
        max-width: 100%;
        margin-bottom: 18px;
    }
}




.site-footer {
    max-width: 1440px;
    margin: 80px; 
    background: #fff;
    padding: 60px 0;
    font-family: inherit;
    display: flex;
    flex-direction: column;
    align-items: center; /* centers internal content */
}

.footer-row {
    max-width: 1120px;
    margin: 0 auto;
    margin: 0 auto 14px auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: flex-start;
}

.footer-logo {
    flex: 0 0 155px;
    justify-content: flex-start;
    display: flex;
    width: 165px;
    height: 74px;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    height: 74px;
    width: 165px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-col {
   /* width:311px;
    height:24px;*/
    flex: 0 0 180px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-title {
    font-weight: 350;
    color: #093052;
    margin-bottom: 7px;
    font-size: 16px;
}

.footer-col a {
    text-decoration: none;
    transition: color .15s;
    color: #093052;
    padding:4px 10px 4px 10px;
    /*font-family: Gotham;*/
    font-size: 16px;
    font-style: normal;
    font-weight: 325;
    line-height: 32px; /* 200% */
}

    .footer-col a:hover {
        color: #2268c0;
    }

.footer-col span {
    text-decoration: none;
    transition: color .15s;
    color: #093052;
    padding:0px 10px 0px 10px;
    /*font-family: Gotham;*/
    font-size: 16px;
    font-style: normal;
    font-weight: 325;
    line-height: 32px; /* 200% */
}

.footer-col div {
    padding:0px 10px 0px 10px;
    height:24px;
    width:331px;
    color: #233861;
    font-size: 16px;
    font-weight: 600;
}

.footer-separator {
    border: none;
    width:100%;
    height: 2px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.05));
    margin: 20px 0;
}

.footer-bottom-row {
    /*max-width: 1280px;*/
    /*width: 100%;*/
    /*margin: 0 50px 14px auto;*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 7px;
}

.footer-links {
    display: flex;
    gap: 22px;
    width:912px;
}

    .footer-links a {
        color: var(--Color-Scheme-2-Text, #010408);
        /* Text/Small/Link */
        /*font-family: Gotham;*/
        font-style: inherit;
        font-weight: 350;
        width:119px;
        font-size:14px;
        height:21px;
        line-height: 150%; /* 21px */
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: none;
        text-decoration-thickness: auto;
        text-underline-offset: auto;
        text-underline-position: from-font;
    }

        .footer-links a:hover {
            color: #2274d8;
        }

.footer-social {
    width:168px;
    display: flex;
    gap: 18px;
}

    .footer-social img {
        width: 20px;
        height: 20px;
        filter: grayscale(17%) brightness(1.2);
        transition: filter .18s;
    }

    .footer-social a:hover img {
        filter: none;
    }

/* Responsive for smaller screens */
@media (max-width: 600px) {
    .footer-row, .footer-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .site-footer {
        padding: 40px 12px 7px 12px;
        margin:0px;
    }

    .footer-logo {
        margin-bottom: 18px;
    }
}



/*  lets Begin page */
.homepage-section {
    text-align: start;
    min-height: 99vh;
    background: #fff;
}

.home-banner {
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow: hidden;
}

.banner-bottom-curve {
    display: block;
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 54px;
    z-index: 1;
    pointer-events: none;
}


.home-logo {
    width: 100%;
    height: auto;
    display: block; /* Removes bottom whitespace under image */
}

.home-headline {
    font-size: 2.3rem;
    font-weight: 600;
    margin: 56px 0 24px 0;
    color: #FFFFFF;
    letter-spacing: 0.1rem;
}

.home-card {
    margin: 0 auto;
    max-width: 400px;
    border-radius: 8px;
    /* box-shadow: 0 2px 24px #0002; */
    padding: 30px 20px 24px 20px;
    margin-top: 0.5rem;
}

.form-card {
    margin: 0 auto;
    max-width: 50%;
    border-radius: 8px;
    /* box-shadow: 0 2px 24px #0002; */
    padding: 30px 20px 24px 20px;
    margin-top: 0.5rem;
}

.carousel-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 16px;
}

.carousel-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 8px #0002;
    object-fit: cover;
    transition: opacity 0.6s ease-in-out;
}

.home-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 5px;
}

.primary-btn {
    flex: 1 1 0;
    padding: 6px 0;
    background: #114477;
    color: #fff;
    border-radius: 6px;
    border: none;
    font-weight: 500;
    letter-spacing: 0.015em;
    font-size: 1.06rem;
    box-shadow: 0 1px 5px #0001;
    text-align: center;
    text-decoration: none;
    margin: 0 2px;
    transition: background 0.18s;
}

    .primary-btn:hover {
        background: #1466aa;
    }

.primary-btn1 {
    flex: 1 1 0;
    padding: 6px 0;
    background: #114477;
    color: #fff;
    border-radius: 6px;
    border: none;
    font-weight: 500;
    letter-spacing: 0.015em;
    font-size: 1.06rem;
    box-shadow: 0 1px 5px #0001;
    text-align: center;
    text-decoration: none;
    margin: 0 2px;
    transition: background 0.18s;
}

    .primary-btn1:hover {
        background: #1466aa;
    }






.assessment-tabs {
    display: flex;
    width: 100%;
    border: 1.5px solid #e1e7f0;
    margin-bottom: 12px;
    margin-top: 10px;
}

.assessment-tab {
    flex: 1 1 0;
    background: #f6faff;
    color: #1a2838;
    border: none;
    border-radius: 4px 4px 0 0;
    padding: 8px 0;
    font-weight: 500;
    font-size: 1.02rem;
    cursor: pointer;
    margin-right: 2px;
    transition: background .18s, color .18s;
}

    .assessment-tab.active {
        background: #114477;
        color: #fff;
    }

.assessment-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: left;
    margin-top: 0;
}

.form-label {
    margin-bottom: 10px;
    margin-top: 10px;
    font-weight: 500;
    font-size: 1rem;
}

.subtext-label {
    color: #093052;
    display: flex;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 12px;
}

.form-label1 {
    margin-bottom: 10px;
    margin-top: 10px;
    font-weight: 500;
    font-size: 1rem;
}

.form-input,
.form-select {
    width: 100%;
    border: 1.5px solid #e1e7f0;
    border-radius: 5px;
    padding: 10px 11px;
    font-size: 1rem;
    background: #fafbfc;
    margin-bottom: 0;
}

.form-group-inline {
     display: flex;
     align-items: center;
    gap: 18px;

}

.form-label-inline {
    font-weight: 500;
    color: #616471;
    margin-right: 8px;
}

.gender-radio-group {
    display: flex;
    gap: 28px;
    margin-bottom: 10px;
}

.form-radio {
    font-weight: 400;
    font-size: 1rem;
    color: #2b3144;
    display: flex;
    align-items: center;
}

    .form-radio input[type="radio"] {
        margin-right: 6px;
    }

.form-check-text {
    margin-bottom: 20px;
    margin-top: 20px;
    display: flex;
    margin-left: 0px;
}

.edit-icon{
    height:20px;
    width:20px;
}

.check-box-btn {
    display: block;
    margin-right: 10px;
    vertical-align: top;
}

.form-check-text-label {
    font-size: .96rem;
    color: #616471;
    margin-right: 10px;
}

.assessment-buttons {
    display: flex;
    gap: 20px;
    margin-top: 5px;
    justify-content: space-between;
}

.outline-btn {
    flex: 1 1 0;
    padding: 8px 0;
    background: #fff;
    color: #114477;
    border-radius: 6px;
    border: 2px solid #114477;
    font-weight: 600;
    font-size: 1.06rem;
    text-decoration: none;
    cursor: pointer;
    box-shadow: none;
    text-align: center;
}

    .outline-btn:hover {
        background: #f5faff;
    }

.primary-btn.full {
    width: 55%;
    font-weight: 600;
    padding: 8px 0;
}

.primary-btn.active {
    background: #114477 !important;
    color: #fff !important;
    border: 2px solid #114477;
    box-shadow: 0 2px 8px #0001;
}

.primary-btn:not(.active) {
    background: #f6faff;
    color: #114477;
    border: 2px solid #e5e8fa;
    box-shadow: none;
}

.assessment-list-container {
    margin-top: 38px;
    border-top: 1px solid #D5D5D5;
    padding-top: 18px;
}

.assessment-list-title {
    font-size: 1.14rem;
    font-weight: 600;
    color: #27304d;
    margin-bottom: 12px;
    margin-top: 0;
    letter-spacing: 0.04em;
}

.assessment-list-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 1.01rem;
}

    .assessment-list-table th {
        padding: 12px 8px;
        text-align: left;
        font-weight: 600;
        color: #4a5574;
        background: #f6faff;
        border-bottom: 1px solid #ecf0f3;
        font-size: 1.01rem;
    }

    .assessment-list-table td {
        padding: 11px 8px;
        background: #fff;
        border-bottom: 1px solid #f0f1f7;
        vertical-align: middle;
        color: #222c3b;
        font-size: 1.01rem;
    }

.assessment-btn {
    background: #59A7F6;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 0.98rem;
    padding: 4px 14px;
    min-width: 85px;
    font-weight: 500;
    cursor: pointer;
    transition: background .14s;
}

    .assessment-btn:hover {
        background: #2447e7;
    }

.edit-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    line-height: 1;
    vertical-align: middle;
}

    .edit-btn svg {
        display: inline-block;
        vertical-align: middle;
    }

