/* ===========================
   Table of Content
   ===========================
   1. Global Reset
   2. Navbar (Desktop)
   3. Dropdown Menu
   4. Offcanvas Menu (Mobile)
   5. Responsive Styles
=========================== */

/* 1. Global Reset */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Times, 'Times New Roman', serif;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 12px;
}

a {
    text-decoration: none;
}

body,
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    background: linear-gradient(to right, #fff0f3, #ffffff, #ffffff);
}

.main_wraP {
    overflow: hidden;
}

/* ---------- Top Header ---------- */
.top-header {
    background: black;
    color: rgb(255, 255, 255);
    font-size: 15px;
    text-align: center;
}

.top-header .contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px; /* space between items */
    font-size: 15px;
}

.top-header i {
    color: #000000;
    font-size: 16px;
}

.top-header span {
    vertical-align: middle;
}

.contact-item {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

@media (max-width: 768px) {
    .top-header {
        font-size: 14px;
    }

    .top-header .contact-info {
        /* flex-direction: row-reverse; */
        gap: 5px;
    }

    .contact-item {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }
    

    .contact-item:has(.bi-geo-alt) {
        display: none !important;
    }
}

/* ===== NAVBAR ===== */
.navbar {
    background: transparent !important;
    font-weight: 500;
}

.navbar {
    width: 100%;
    height: 100px;
    transition: all 0.3s ease;
    z-index: 1050;
    background: #fff;
}

/* Fixed style when scrolling */
.navbar.fixed {
    position: fixed;
    background: #fffffff4 !important;
    top: 0;
    left: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.247);
    background-color: #fff;
    /* ensures it's visible above content */
}

/* Improved sticky header helper (if you use .sticky-header class in JS) */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1060;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    background-color: #fff;
}

/* Nav link styles */
.navbar-nav .nav-link {
    color: #E93F38 !important;
    margin: 0 8px;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #000000 !important;
}

/* Hover show for your original courses dropdown (kept for backup) */
/* .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
} */

/* Courses hover -> show mega (desktop) */
.courses-dropdown:hover .courses-menu {
    display: block;
}

/* Arrow rotation (optional) */
.courses-dropdown .courses-toggle::after {
    transform: rotate(90deg);
}

/* About Exit */
.dropdown-item:hover {
    border-top: 1px solid rgb(0, 0, 0);
    border-bottom: 1px solid rgb(0, 0, 0);
    color: #176CB1;
}

/* ===== BUTTONS ===== */
.navbar-btns .btn {
    border-radius: 30px;
    padding: 6px 18px;
    font-weight: 500;
}

.btn-primary {
    background-color: #E93F38;
    border: none;
}

.btn-primary:hover {
    background-color: #176CB1;
}

.btn-outline-primary {
    border: 2px solid #E93F38;
    color: #E93F38;
}

.btn-outline-primary:hover {
    background-color: #176CB1;
    color: #fff;
}

/* ===== OFFCANVAS ===== */
.offcanvas-start {
    width: 280px;
}

/* Responsive dropdown fix */
@media (max-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: none;
    }

    .navbar-btns {
        justify-content: center;
    }
}

/* === Mobile / Offcanvas: show dropdown menu so inner links are visible === */
/* On small screens show courses-menu as part of the flow (not absolute) */
@media (max-width: 991px) {
    .courses-menu {
        display: block !important;
        /* make sure it's visible on mobile */
        position: static !important;
        /* stack under the toggle */
        width: 100% !important;
        min-width: auto;
        box-shadow: none !important;
        background: transparent !important;
        /* let offcanvas background show */
        padding: 0;
        /* remove desktop padding if any */
        margin: 0;
    }

    /* style the menu items for mobile list view inside offcanvas */
    .courses-menu .dropdown-item {
        display: block;
        width: 100%;
        padding: 12px 18px;
        margin: 6px 0;
        background: #fff;
        border-radius: 8px;
        border: 1px solid rgba(0, 0, 0, 0.04);
    }

    /* ensure the courses-dropdown container stretches if you want */
    .courses-dropdown {
        width: 100%;
    }

    /* if you used .open class for mobile toggling earlier, .mobile-open is redundant
     but safe to include so JS and CSS correlate */
    .courses-dropdown.mobile-open .courses-menu {
        display: block !important;
    }
}

/* Also ensure when inside an offcanvas (Bootstrap) the menu shows properly */
.offcanvas .courses-menu {
    display: block !important;
    position: static !important;
    box-shadow: none !important;
    background: transparent !important;
    width: 100%;
    padding: 0;
}

/* ================= Mega Menu Styles (scoped) ================= */
/* Use .has-mega to scope the floating mega to only those items */
.has-mega {
    position: relative;
}

/* Hidden by default for desktop; shown on hover / focus-within */
.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    /* center under the parent link */
    width: 1000px;
    /* uniform width for identical alignment */
    background: #fff;
    border-radius: 8px;
    padding: 18px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    z-index: 1200;
    /* prevent accidental overflow from link focus */
    pointer-events: auto;
}

/* Grid with 3 columns; 2 rows (6 items total) */
.mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    align-items: start;
}

.mega-grid1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: start;
}

/* each cell */
.mega-item {
    width: 100%;
    min-height: 70px;
    border-right: .5px solid black;
}



/* title and items */
.mega-title {
    font-size: 15px;
    margin: 0 0 8px 0;
    color: #111;
    font-weight: 700;
}

.mega-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-list li {
    margin: 6px 0;
}

.mega-list a {
    text-decoration: none;
    color: #000000;
    font-size: 14px;
}

.mega-list a:hover {
    color: #176CB1;
    text-decoration: underline;
}

/* show on hover / focus for desktop */
@media (min-width: 992px) {

    .courses-dropdown:hover>.mega-menu,
    .courses-dropdown:focus-within>.mega-menu {
        display: block;
    }

    /* small gap from nav */
    .mega-menu {
        margin-top: 6px;
    }
}

/* small desktop breakpoint adjustments */
@media (min-width: 992px) and (max-width: 1199px) {
    .mega-menu {
        width: 600px;
    }
}

/* ==== Mobile / Offcanvas styles ==== */
/* hide desktop-mega in offcanvas (we use a different mobile stacked menu) */
@media (max-width: 991px) {
    .mega-menu {
        display: none !important;
    }

    /* Mobile menu container inside offcanvas (hidden until toggled) */
    .courses-mobile-menu {
        display: none;
        padding-left: 10px;
        padding-right: 10px;
        margin-top: 12px;
    }

    .offcanvas-dropdown .offcanvas-link-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .mega-toggle {
        background: transparent;
        border: 1px solid rgba(0, 0, 0, 0.08);
        width: 34px;
        height: 34px;
        border-radius: 6px;
        font-weight: 700;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
        padding: 0;
    }

    .mega-toggle[aria-expanded="true"] {
        transform: rotate(45deg);
    }

    /* when open -> show */
    .offcanvas-dropdown.open .courses-mobile-menu {
        display: block;
    }

    /* mobile stacked grid: keep same order as desktop, one column style */
    .mobile-mega-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .mobile-mega-item h6 {
        margin: 6px 0;
        font-size: 15px;
        font-weight: 700;
    }

    .mobile-mega-item a {
        display: block;
        padding: 8px 10px;
        text-decoration: none;
        color: #333;
        border-radius: 6px;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.04);
        margin: 4px 0;
        font-size: 14px;
    }

    .mobile-mega-item a:hover {
        color: #176CB1;
    }
}

/* Accessibility: visible focus outlines for keyboard users */
.has-mega :focus {
    outline: 2px solid rgba(23, 108, 177, 0.18);
    outline-offset: 2px;
}


/* navbar exit */

/* HERO SECTION */

.hero-section {
    width: 100%;
    padding: 80px 0;
    background-color: #fff;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT */
.hero-left h1 {
    font-size: 48px;
    font-weight: 800;
    color: #121058;
    line-height: 1.2;
}

.underline {
    width: 200px;
    margin: 15px 0;
}

.hero-desc {
    font-size: 17px;
    color: #666;
    margin-bottom: 25px;
}

.sub-title {
    font-weight: 600;
    margin-bottom: 10px;
}

/* Input Box */
.hero-two-btn {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 40px;
    gap: 10px;
    width: fit-content;
}

/* Styling anchor as buttons */
.hero-two-btn a {
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.25s;
    display: block;
}

/* Left Button (Primary) */
.btn-course {
    background: #2d0f8e;
    color: #fff;
}

/* Right Button (Light) */
.btn-contact {
    background: #f2f2f2;
    color: #333;
}

.btn-course:hover,
.btn-contact:hover {
    transform: translateY(-2px);
}


/* Divider */
.divider {
    width: 350px;
    text-align: center;
    margin: 25px 0;
    color: #999;
    font-size: 14px;
    position: relative;
}

.divider::before,
.divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 25%;
    height: 1px;
    background: #868686;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

/* Store buttons */
.store-btns img {
    width: 160px;
    margin-right: 10px;
    cursor: pointer;
}

/* RIGHT IMAGE */
.hero-right img {
    width: 500px;
    height: 400px;
    border-radius: 10px;
    box-shadow: #000000;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-right img {
        width: 300px;
    }

    .hero-input,
    .divider {
        margin-left: auto;
        margin-right: auto;
    }
}


/* HERO SECTION EXIT*/


/* <!-- site-alert --> */
.site-alert {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px 12px;
    font-family: "Poppins", sans-serif;
}

/* inner wrapper (NO background here) */
.site-alert__inner {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
}

/* LEFT : circle + Alerts */
.site-alert__circlebox {
    position: relative;
    width: 180px;
    height: 180px;
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-alert__circle {
    width: 180px;
    height: 180px;
    object-fit: contain;
    animation: circleBlink 1.6s infinite ease-in-out;
    pointer-events: none;
}

.site-alert__circle-text {
    position: absolute;
    font-size: 28px;
    font-weight: 700;
    color: #5a3925;
    pointer-events: none;
}

/* RIGHT SECTION — ONLY this part gets background color */
.site-alert__right {
    flex: 1;
    background: #eef6fb;
    /* ✔ right side background only */
    padding: 20px;
    border-radius: 0 10px 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-alert__icon {
    font-size: 22px;
}

.site-alert__message {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    line-height: 1.3;
}

.site-alert__message:hover {
    color: #E93F38;
    /* change color on hover */
    cursor: pointer;
    /* optional: pointer cursor */
    transition: 0.3s ease;
}

/* Blink animation */
@keyframes circleBlink {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.03);
        opacity: 0.93;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 600px) {
    .site-alert__circlebox {
        width: 120px;
        height: 120px;
    }

    .site-alert__circle {
        width: 120px;
        height: 120px;
    }

    .site-alert__circle-text {
        font-size: 20px;
    }

    .site-alert__message {
        font-size: 12px;
    }
}

/* <!-- site-alert --> */




/* <!-- association-section --> */

.association-section {
    width: 100%;
    padding: 20px 16px;
    font-family: "Poppins", sans-serif;
}

/* Heading + underline block */
.association-header {
    width: 100%;
    margin-bottom: 18px;
}

.association-header h2 {
    color: #1a1a1a;
    font-size: 1.55rem;
    font-weight: 800;
    margin: 6px 0 8px 0;
    letter-spacing: -0.5px;
    text-align: left;
}

.association-underline {
    width: 100%;
    height: 1px;
    margin-top: 6px;
    border-bottom: 1.5px dotted #00000060;
    /* background-color: #00000041; */
}

/* Icon list layout */
.association-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px 15px;
    align-items: center;
}

/* Each item */
.association-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Icon box */
.association-icon {
    width: 48px;
    height: 48px;
    padding: 6px;
    border-radius: 10px;
    border: 2px solid #d8e7f2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.association-icon img {
    width: 100%;
    height: 100%;
    transition: transform .3s ease;
}

/* Hover effect */
.association-icon:hover img {
    transform: scale(1.22);
}

/* Text */
.association-text {
    font-size: 13px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    color: #003978;
    line-height: 1.2;
}

/* Responsive */
@media (max-width: 768px) {
    .association-header h2 {
        font-size: 20px;
    }

    .association-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .association-list {
        grid-template-columns: 1fr;
    }

    .association-text {
        font-size: 12px;
    }
}

/* <!-- association-section--> */



/* <!-- materials-section --> */

.materials-section {
    padding: 60px 0;
    background: #f2e9ff5e;
    text-align: center;
}

.materials-section .subtitle {
    color: #6b6b6b;
    font-size: 17px;
    margin-bottom: 5px;
}

.materials-section .title {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a50;
    margin-bottom: 40px;
}

.materials-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    padding: 0 20px;
}

/* CLICKABLE CARD */
.material-card {
    background: #ffffff;
    padding: 45px 20px;
    border-radius: 25px;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    /* remove underline */
    color: inherit;
    /* keep text color */
    display: block;
    /* full clickable */
}

.material-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.12);
}

.material-icon {
    width: 110px;
    height: 110px;
    /* added height */
    margin-bottom: 20px;
    object-fit: contain;
    /* keeps image perfect without stretching */
}

.material-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 10px;
    color: #1a1a40;
}

/* 3 cards per row on medium screens */
@media (max-width: 1024px) {
    .materials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .materials-section .title {
        font-size: 26px;
        font-weight: 700;
        color: #1a1a50;
        margin-bottom: 40px;
    }
}

/* 2 cards per row on tablet/mobile */
@media (max-width: 768px) {
    .materials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* <!-- materials-section Exit--> */



/* <!-- stats-section --> */

.stats-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 60px 0;
}

.stats-container {
    background: #00000094;
    width: 90%;
    padding: 60px 40px;
    text-align: center;
    color: #fff;
}

.stats-subtitle {
    color: #d9d9d9;
    font-size: 16px;
    margin-bottom: 10px;
}

.stats-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: auto;
}

.stat-box {
    text-align: center;
}

.stat-icon {
    font-size: 32px;
    color: #e85a2f;
    display: flex;
    justify-content: center;
    /* horizontal center */
    align-items: center;
    /* vertical center */
    width: 100%;
    height: 40px;
    /* keeps space consistent */
    margin: 0 auto 6px auto;
    /* center + bottom spacing */
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #dcdcdc;
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    .stats-title {
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 50px;
    }
}

/* 2 cards per row on tablet/mobile */
@media (max-width: 768px) {


    .stats-container {
        padding: 36px 20px;
        /* slightly smaller padding for phones */
        border-radius: 28px;
    }

    /* Make stats stack vertically (1 column) */
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 22px;
    }

    .stat-icon {
        width: 56px;
        margin-bottom: 12px;
    }

    .stat-number {
        font-size: 22px;
    }

    .stats-title {
        font-size: 22px;
        margin-bottom: 32px;
    }

    .stats-title {
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 50px;
    }

    @media (max-width: 768px) {
        .stats-grid {
            grid-template-columns: repeat(2, 1fr) !important;
        }
    }
}


@media (max-width: 420px) {
    .stats-container {
        padding: 28px 14px;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-icon {
        width: 48px;
    }
}


/* <!-- stats-section Exit--> */



/* products-section */

.products-section {
    text-align: left;
    padding: 50px 0;
}


.products-section h2 {
    text-align: center;
}

.products-subtitle {
    color: #777;
    font-size: 16px;
    margin-bottom: 5px;
    text-align: center;
}

.products-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a4d;
    margin-bottom: 40px;
}

/* GRID */
.products-grid {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
    gap: 40px;
}

/* CARD */
.product-card {
    background: #fff;
    padding: 40px 35px;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.product-img {
    width: 150px;
    margin-bottom: 20px;
}

/* TEXT STYLES */
.product-category {
    color: #c30000;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-heading {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

.product-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* ============================
   RESPONSIVE ONLY
   ============================ */

/* Tablet (max-width: 900px) — switch to 1 card per row */
@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Mobile (max-width: 600px) — reduce paddings + smaller image */
@media (max-width: 600px) {
    .product-card {
        padding: 28px 22px;
        border-radius: 18px;
    }

    .product-img {
        width: 120px;
        margin-bottom: 16px;
    }

    .products-title {
        font-size: 28px;
    }

    .product-heading {
        font-size: 20px;
    }

    .product-desc {
        font-size: 14px;
    }
}

/* Extra small phones */
@media (max-width: 420px) {
    .product-card {
        padding: 20px 16px;
    }

    .product-img {
        width: 100px;
    }
}


/* products-section  exit*/



/* Counting trusted-section */
.trusted-section {
    position: relative;
    overflow: hidden;
    padding: 70px 16px 60px;
    color: #fff;
}

/* background image (uses uploaded file) */
.trusted-section::before {
    content: "";
    position: absolute;
    background-color: #000;
    inset: 0;
    background-image: url("./Coaching_image/testimonial.jpg");
    background-size: cover;
    background-position: center;
    filter: brightness(0.25) contrast(0.95);
    z-index: 0;
}

.trusted-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* header */
.trusted-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 14px;
    margin: 0 0 8px;
}

.trusted-title {
    margin: 0;
    font-size: 36px;
    line-height: 1.05;
    letter-spacing: 1px;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
}

.trusted-lead {
    margin: 12px 0 18px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

.trusted-underline {
    width: 64px;
    height: 4px;
    background: #e85a2f;
    margin: 0 auto;
    border-radius: 2px;
}

/* grid of stat boxes */
.trusted-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
    margin-top: 40px;
    align-items: stretch;
}

.stat-box {
    border: 1px solid rgba(255, 255, 255, 0.692);
    padding: 32px 18px;
    text-align: center;
    border-radius: 4px;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

/* subtle inner border like screenshot */
.stat-box::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(209, 186, 179, 0.14);
}

.stat-icon {
    font-size: 28px;
    color: #e85a2f;
    margin-bottom: 6px;
}

.stat-number {
    font-size: 34px;
    font-weight: 900;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 6px;
}

.stat-plus {
    font-size: 18px;
    margin-left: 6px;
    color: #fff;
    opacity: 0.92;
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
}

/* small screens */
@media (max-width:1100px) {
    .trusted-title {
        font-size: 30px
    }

    .trusted-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px
    }

    .stat-box {
        padding: 24px 14px;
        min-height: 140px
    }
}

@media (max-width:760px) {
    .trusted-section {
        padding: 48px 12px
    }

    .trusted-title {
        font-size: 22px
    }

    .trusted-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px
    }

    .stat-number {
        font-size: 26px
    }

    .stat-icon {
        font-size: 24px
    }
}

@media (max-width:420px) {
    .trusted-grid {
        grid-template-columns: 1fr;
        gap: 12px
    }

    .trusted-title {
        font-size: 18px
    }

    .stat-box {
        padding: 18px 12px
    }

    .stat-number {
        font-size: 22px
    }
}

/* Counting trusted-section exit*/




/* <!-- features-section --> */

.features-section {
    padding: 60px 0;
}

.features-subtitle {
    text-align: center;
    font-size: 16px;
    color: #777;
}

.features-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #140a5c;
    margin-bottom: 40px;
}

/* Grid */
.features-grid {
    width: 92%;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-box {
    background: #fff;
    border-radius: 25px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.feature-tag p {
    color: #e73f39;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 18px;
}

.feature-tag {
    color: #c0392b;
    font-weight: 600;
    margin-bottom: 6px;
}

.feature-heading {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}

.feature-desc {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-title {
        text-align: center;
        font-size: 26px;
        font-weight: 700;
        color: #140a5c;
        margin-bottom: 40px;
    }
}


/* <!-- features-section exit--> */



/* Contact use */

.contact-section {
    text-align: center;
    padding: 70px 20px;
}

.contact-title {
    font-size: 32px;
    font-weight: 700;
    color: #140a5c;
}

.contact-subtitle {
    max-width: 700px;
    margin: 10px auto 40px;
    color: #666;
}

/* Form Container */
.contact-form {
    width: 75%;
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    text-align: left;
}

/* Grid Layout */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Form Group */
.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 6px;
    color: #444;
}

.form-group input,
.form-group select,
textarea {
    padding: 14px 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
}

textarea {
    height: 130px;
    resize: none;
}

/* Full width row */
.full-width {
    grid-column: 1 / 3;
}


/* Button */

.submit-btn {
    display: block !important;
    margin: 10px auto !important;
    text-align: center;
    width: 180px;
    padding: 12px;
    background: #140a5c;
    color: #fff;
    border: none;
    border-radius: 8px;
    margin: 20px auto;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;

}

.submit-btn:hover {
    background: #0e0842;
}

/* Responsive */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: 1 / 2;
    }

    .contact-form {
        width: 95%;
    }
}

/* Contact use exit*/


/* <!-- Top clickable boxes --> */

/* === SECTION WRAPPER === */
.info-section {
    width: 100%;
    padding: 10px 0;
    font-family: "Poppins", sans-serif;
}

/* === BOX ROW === */
.info-box-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
}

/* === BOX STYLE === */
.info-box {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    cursor: pointer;
    border-left: 1px solid #ececec;
    position: relative;
    background: #fff;
}

.info-box:first-child {
    border-left: none;
}

/* orange hover bar */
.info-box::before {
    content: "";
    position: absolute;
    top: 0;
    height: 3px;
    width: 100%;
    background: transparent;
    transition: 0.3s;
}

.info-box:hover::before,
.info-box.active::before {
    background: #e85a2f;
}

/* icon */
.info-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

/* text */
.info-title {
    font-size: 14px;
    font-weight: 800;
    color: #e85a2f;
}

.info-sub {
    font-size: 12px;
    color: #555;
    margin-top: 3px;
}

/* === CONTENT PANELS === */
.info-panel {
    background: #fff;
    margin-top: 20px;
    padding: 22px;
    border-radius: 6px;
    border: 1px solid #eee;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
}

.hidden {
    display: none;
}

.panel-heading {
    font-size: 22px;
    font-weight: 800;
    color: #e85a2f;
    margin-bottom: 15px;
}

/* panel layout: left image + right text */
.panel-layout {
    display: flex;
    gap: 30px;
    align-items: center;
}

.panel-img {
    width: 300px;
    border-radius: 6px;
    border: 1px solid #eee;
}

.panel-text {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

/*** RESPONSIVE ***/
@media (max-width: 900px) {
    .info-box-row {
        grid-template-columns: 1fr;
    }

    .info-box {
        border-left: none;
        border-top: 1px solid #eee;
    }

    .panel-layout {
        flex-direction: column;
        text-align: center;
    }

    .panel-img {
        width: 100%;
        max-width: 340px;
    }
}

/* <!-- Top clickable boxes --> */



/* <!-- genesis-section --> */

.genesis-section {
    padding: 40px 18px;
    background: #ffffff;
    box-sizing: border-box;
    font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: #222;
}

/* inner container */
.genesis-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* optional banner */
.genesis-banner {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.genesis-banner img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

/* header */
.genesis-header {
    text-align: left;
    margin-bottom: 22px;
}

.genesis-header h1 {
    margin: 0;
    font-size: 34px;
    letter-spacing: 0.5px;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
}

.genesis-accent {
    width: 56px;
    height: 4px;
    background: #e85a2f;
    margin-top: 12px;
    border-radius: 2px;
}

/* article content */
.genesis-content p {
    margin: 0 0 18px 0;
    font-size: 15px;
    line-height: 1.75;
    color: #333;
    text-align: justify;
}

/* highlight bolded text (already using <strong>) */
.genesis-content strong {
    color: #111;
    font-weight: 800;
}

/* emphasis style */
.genesis-content em {
    color: #e85a2f;
    font-style: normal;
    font-weight: 700;
}

/* responsive tweaks */
@media (max-width: 900px) {
    .genesis-inner {
        padding: 0 10px;
    }

    .genesis-header h1 {
        font-size: 26px;
        text-align: left;
    }

    .genesis-content p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .genesis-section {
        padding: 24px 12px;
    }

    .genesis-header h1 {
        font-size: 22px;
    }

    .genesis-accent {
        width: 48px;
    }

    .genesis-content p {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* <!-- genesis-section exit--> */



/* ===== Breadcrumb Section ===== */
.breadcrumb-section {
    position: relative;
    padding: 80px 0;
    text-align: center;
    background: url("./Coaching_image/breadcrump.jpg") center/cover no-repeat;
    font-family: "Poppins", sans-serif;
    overflow: hidden;
}

/* Dark overlay */
.breadcrumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

/* Inner content */
.breadcrumb-inner {
    position: relative;
    z-index: 2;
}

/* Main Title */
.breadcrumb-inner h1 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Breadcrumb List */
.breadcrumb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    gap: 10px;
    font-size: 16px;
    color: #ffffff;
    align-items: center;
}

.breadcrumb-list li {
    color: #ffffff;
    font-weight: 500;
}

.breadcrumb-list li a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.2s ease;
}

.breadcrumb-list li a:hover {
    color: #C33131;
    /* accent like image */
}

/* Separator // */
.breadcrumb-list .separator {
    font-weight: 600;
    color: #ffffff;
    opacity: 0.8;
}

.breadcrumb-list li.active a {
    color: #f83618 !important;
    /* bright orange same as screenshot */
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .breadcrumb-inner h1 {
        font-size: 26px;
    }

    .breadcrumb-list {
        font-size: 14px;
    }
}

/* ===== Breadcrumb exit ===== */




/* ================= RED BANNER SECTION ================ */
.red-banner {
    background: #ff4c57;
    padding: 60px 7%;
    text-align: center;
}

.banner-content h2 {
    color: white;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* NEW WHATSAPP BUTTON */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: #25D366;
    color: #fff;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.whatsapp-btn:hover {
    background: #1EBE5B;
    color: #fff;
    transform: translateY(-3px);
}

.whatsapp-btn i {
    font-size: 24px;
}

/* Responsive */
@media (max-width: 768px) {

    .companies-row {
        justify-content: center;
    }

    .company-card {
        width: 45%;
    }

    .banner-content h2 {
        font-size: 24px;
    }

    .whatsapp-btn {
        font-size: 16px;
        padding: 12px 20px;
    }

    .whatsapp-btn i {
        font-size: 20px;
    }
}


/* ================= RED BANNER SECTION EXIT================ */





/* ===== Job Section ===== */
.job-section {
    background-color: #ffffff;
    /* gradient background */
    color: #000000;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 80px 0;
    text-align: center;
}

.job-section h1 {
    color: #000000;
    font-size: 2rem;
    font-weight: 700;
    border-bottom: 3px solid #0c6e6d;
    /* Change color & thickness as needed */
    padding-bottom: 5px;
    /* Space between text and underline */
    display: inline-block;
    /* Ensures underline only under text */
    ;
}


.job-section .lead {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.job-section .career-benefits li {
    margin-bottom: 12px;
    line-height: 1.7;
    font-size: 1rem;
}

.job-section .apply-btn,
.job-section .btn-gradient {
    background-color: #0C6E6D;
    /* gradient button */
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 0.85rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-section .apply-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .job-section h1 {
        font-size: 1.5rem;
    }

    .job-section .career-benefits li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .job-section {
        padding: 60px 15px;
    }

    .job-section h1 {
        font-size: 1.1rem;
    }

    .job-section .career-benefits li {
        font-size: 0.9rem;
    }
}





/* ===== Job Application Form Styling ===== */
.application-section {
    padding: 80px 15px;
    background-color: #f7f7f7;
}

.application-section h2 {
    color: #000000;
    font-size: 2rem;
    font-weight: 700;
    border-bottom: 3px solid #0c6e6d;
    padding-bottom: 5px;
    margin: 0 auto 25px;
    /* centers block and adds bottom spacing */
    text-align: center;
    width: fit-content;
    /* makes width just as wide as text */
}

.application-form {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.application-form label {
    font-weight: 500;
}

.application-form input,
.application-form textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.application-form input:focus,
.application-form textarea:focus {
    outline: none;
    border-color: #4facfe;
    box-shadow: 0 0 8px rgba(79, 172, 254, 0.4);
}

.submit-btn {
    display: inline-block;
    background-color: #173d62;
    color: #fff;
    font-weight: 600;
    padding: 12px 35px;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media(max-width:768px) {
    .application-section h2 {
        font-size: 1.5rem;
    }

    .submit-btn {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

@media(max-width:480px) {
    .application-section h2 {
        font-size: 1.5rem;
    }

    .application-form {
        padding: 25px 15px;
    }

    .submit-btn {
        padding: 8px 20px;
        font-size: 0.95rem;
    }
}








/* ================== Employee Benefits Page ================== */
.employee-section {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: #fff;
    padding: 80px 15px;
    text-align: center;
}

.employee-section h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.employee-section ul {
    list-style: none;
    max-width: 900px;
    margin: auto;
    padding-left: 0;
    text-align: left;
}

.employee-section ul li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.8;
    position: relative;
    padding-left: 35px;
}

.employee-section ul li::before {
    content: "✅";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

.btn-redirect {
    display: inline-block;
    margin: 30px auto 0;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    transition: all 0.3s ease;
}

.btn-redirect:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* ================== Employer Form Page ================== */
.employer-form-section {
    padding: 80px 15px;
    background-color: #f8f9fa;
}

.employer-form-section h1 {
    color: #000000;
    font-size: 2rem;
    font-weight: 700;
    border-bottom: 3px solid #0c6e6d;
    padding-bottom: 5px;
    margin: 0 auto 25px;
    /* centers block and adds bottom spacing */
    text-align: center;
    width: fit-content;
    /* makes width just as wide as text */
}

.employer-form-section form {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.employer-form-section label {
    font-weight: 500;
    margin-bottom: 5px;
}

.employer-form-section input,
.employer-form-section textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 1rem;
    transition: 0.3s;
}

.employer-form-section input:focus,
.employer-form-section textarea:focus {
    outline: none;
    border-color: #4facfe;
    box-shadow: 0 0 8px rgba(79, 172, 254, 0.4);
}

.btn-gradient {
    display: inline-block;
    background-color: #173d62;
    color: #fff;
    font-weight: 600;
    padding: 15px 40px;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* ================== Responsive Styles ================== */
@media (max-width: 992px) {

    .employee-section h1,
    .employer-form-section h1 {
        font-size: 1.5rem;
    }

    .employee-section ul li {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {

    .employee-section h1,
    .employer-form-section h1 {
        font-size: 1.5rem;
    }

    .employee-section ul li {
        font-size: 0.95rem;
    }

    .btn-redirect,
    .btn-gradient {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {

    .employee-section h1,
    .employer-form-section h1 {
        font-size: 1.5rem;
    }

    .employee-section ul li {
        font-size: 14px;
        font-weight: 300;
    }

    .employer-form-section form {
        padding: 25px 15px;
    }

    .btn-redirect,
    .btn-gradient {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
}




/* coaching-about.css */

.about-section.coaching-about {
    padding: 40px 20px;
    background: transparent;
}

/* small intro line (orange in screenshot) */
.coaching-text .intro.small {
    color: #e85a2f;
    /* close to the orange from screenshot */
    font-weight: 700;
    margin: 0 0 8px 0;
    font-size: 0.95rem;
}

/* main bold heading */
.coaching-text .main-title {
    color: #1a1a1a;
    font-size: 1.55rem;
    font-weight: 800;
    margin: 6px 0 8px 0;
    letter-spacing: -0.5px;
}

/* subtitle under main heading */
.coaching-text .sub-title {
    color: #6b6b6b;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 6px 0 10px 0;
}

/* thin accent line under subtitle (orange small bar like screenshot) */
.coaching-text .accent {
    width: 56px;
    height: 4px;
    background: #e85a2f;
    border: 0;
    margin: 14px 0;
    border-radius: 2px;
}

/* body paragraph */
.coaching-text .body-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 18px;
}

/* read more link */
.coaching-text .read-more {
    color: #e85a2f;
    text-decoration: none;
    font-weight: 700;
}

/* features list */
.features {
    margin-top: 16px;
}

.feat-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 18px;
}

.feat-list li {
    font-size: 0.95rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* small circular tick (orange) */
.feat-list .tick {
    display: inline-flex;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    color: #e85a2f;
    border: 2px solid #e85a2f;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

/* image styling */
.about-image {
    max-width: 490px;
    width: 100%;
    height: 490px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 992px) {

    .about-section.coaching-about {
        padding: 28px 16px;
    }

    .coaching-text .main-title {
        font-size: 1.35rem;
        text-align: center;
    }

    .coaching-text .sub-title,
    .coaching-text .body-text {
        text-align: center;
    }

    .feat-list {
        grid-template-columns: 1fr;
    }

    .about-image {
        max-width: 350px;
        height: 350px;
        margin: 0 auto 18px;
    }
}

@media (max-width: 600px) {
    .about-image {
        max-width: 300px;
        height: 300px;
    }
}


/* coaching-about.css exit*/


/* council-section */

.council-section {
    padding: 28px 18px;
    font-family: "Poppins", sans-serif;
}

.council-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Title */
.council-header {
    margin-bottom: 14px;
}

.council-title {
    color: #1a1a1a;
    font-size: 1.55rem;
    margin-bottom: 20px !important;
    font-weight: 800;
    margin: 6px 0 8px 0;
    letter-spacing: -0.5px;
    text-align: center;
}

/* -------------------------
   CAROUSEL LAYOUT
--------------------------*/
.council-carousel {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Arrow Buttons (Visible on ALL screens) */
.council-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 0;
    background: #2ecc71;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(46, 204, 113, 0.18);
    transition: 0.3s ease;
}

.council-arrow:hover {
    background: #25b864;
}

/* -------------------------
   SCROLL TRACK
--------------------------*/
.council-track-wrap {
    overflow: hidden;
    flex: 1;
}

.council-track {
    display: flex;
    gap: 16px;
    padding: 0;
    margin: 0;
    list-style: none;
    transition: transform 0.42s cubic-bezier(.22, .8, .26, 1);
    will-change: transform;
}

/* -------------------------
   CARD STYLE
--------------------------*/
.council-card {
    min-width: 240px;
    max-width: 240px;
    flex: 0 0 240px;
}

.council-card__box {
    background: #fff;
    border-radius: 10px;
    padding: 22px 16px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.council-logo {
    width: 76px;
    height: 76px;
    object-fit: contain;
    margin-bottom: 14px;
}

.council-card__title {
    font-size: 15px;
    margin: 6px 0 4px;
    color: #2b6b2b;
    font-weight: 700;
}

.council-card__sub {
    margin: 0;
    font-size: 13px;
    color: #666;
}

/* -------------------------
   RESPONSIVE CARD SIZING
--------------------------*/
@media (max-width: 1200px) {
    .council-card {
        min-width: 220px;
        max-width: 220px;
        flex: 0 0 220px;
    }
}

@media (max-width: 1000px) {
    .council-card {
        min-width: 200px;
        max-width: 200px;
        flex: 0 0 200px;
    }
}

/* MOBILE VIEW (still show arrows) */
@media (max-width: 700px) {
    .council-card {
        min-width: 80%;
        max-width: 80%;
        flex: 0 0 80%;
    }

    .council-card__box {
        height: 220px;
    }

    .council-track {
        scroll-behavior: smooth;
    }
}

/* Prevent text selection during dragging */
.council-track.dragging,
.council-track * {
    user-select: none;
}


/* council-section exit */



/* <!-- why-section --> */


.why-section {
    --cap-height: 72px;
    --pill-radius: 36px;
    --cap-max-width: 220px;
    --gap: 18px;
    --bg-gray: #d9d9d9;
    --pill-shadow: 0 4px 14px rgba(12, 18, 30, 0.06);
    position: relative;
    padding: 36px 70px;
    overflow: visible;
    background: transparent;
    box-sizing: border-box;
}

/* ensure the section container is above the background strip */
.why-section {
    z-index: 2;
}

/* Heading must appear on top of everything (so it doesn't go behind pills) */
.why-header {
    order: 1;
    margin-bottom: 18px;
    text-align: center;
    position: relative;
    z-index: 12;
    /* very high so heading sits above caps */
}


.why-title {
    color: #1a1a1a;
    font-size: 1.55rem;
    margin-bottom: 40px !important;
    font-weight: 800;
    margin: 6px 0 8px 0;
    letter-spacing: -0.5px;
    text-align: center;
}


/* decorative image (if present) - optional element order above heading if desired */
.why-deco {
    order: 0;
    margin-bottom: 12px;
    position: relative;
    z-index: 11;
}

.why-deco img {
    max-width: 380px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Grid layout: pills below heading */
.why-grid {
    order: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    align-items: start;
    position: relative;
    z-index: 6;
    /* below header but above background strip */
    margin-top: 12px;
}

/* ---------- Pill base (corrected) ---------- */
.pill {
    --cap-height: var(--cap-height);
    /* expose variable locally */
    background: #fff;
    border-radius: var(--pill-radius);
    /* make room for the cap overlap using the variable */
    padding-top: calc(var(--cap-height) / 2 + 6px);
    position: relative;
    overflow: visible;
    text-align: center;
    min-height: 240px;
    box-shadow: var(--pill-shadow);
    border: 1px solid rgba(12, 18, 30, 0.06);
    transition: transform .22s ease, box-shadow .22s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
}

/* hover lift */
.pill:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(11, 18, 30, 0.12);
}

/* CAP: the colored rounded top (centered above each pill) */
.pill__cap {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(-1 * (var(--cap-height) / 2));
    width: 100%;
    height: var(--cap-height);
    border-top-left-radius: calc(var(--pill-radius) * 0.8);
    border-top-right-radius: calc(var(--pill-radius) * 0.8);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 8;
    /* should sit above the grey strip */
    color: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    padding: 8px 12px;
    box-sizing: border-box;
}

/* small white band under the cap (visual) */
.pill__cap::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: calc(100% - 40px);
    height: 14px;
    background: #fff;
    border-radius: 4px;
    z-index: 7;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.03);
}

/* number circle inside the cap */
.pill__num {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.12);
    z-index: 9;
}

/* icon inside the cap */
.pill__icon {
    font-size: 22px;
    z-index: 9;
    opacity: 0.98;
    margin-left: 6px;
}

/* pill body/content */
.pill__body {
    padding: 90px 20px 20px;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    z-index: 4;
}

.pill__title {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    color: #111827;
}

.pill__desc {
    padding: 10px 30px;
    font-size: 14px;
    justify-content: center;
    color: #000000;
    margin: 0;
    line-height: 1.45;
}

/* bottom colored slim border echoing cap color */
.pill__border {
    position: absolute;
    bottom: 12px;
    left: 22px;
    right: 22px;
    height: 6px;
    border-radius: 6px;
    z-index: 5;
    opacity: 0.98;
}

/* ---------- Color variants (keeps palette) ---------- */
.pill--1 .pill__cap {
    background: linear-gradient(135deg, #00b894 0%, #00a07a 100%);
}

.pill--1 .pill__border {
    background: linear-gradient(90deg, #00b894 0%, #00a07a 100%);
}

.pill--2 .pill__cap {
    background: linear-gradient(135deg, #0984e3 0%, #0576d6 100%);
}

.pill--2 .pill__border {
    background: linear-gradient(90deg, #0984e3 0%, #0576d6 100%);
}

.pill--3 .pill__cap {
    background: linear-gradient(135deg, #6c5ce7 0%, #5b47d6 100%);
}

.pill--3 .pill__border {
    background: linear-gradient(90deg, #6c5ce7 0%, #5b47d6 100%);
}

.pill--4 .pill__cap {
    background: linear-gradient(135deg, #8e44ff 0%, #ff6f9a 100%);
}

.pill--4 .pill__border {
    background: linear-gradient(90deg, #8e44ff 0%, #ff6f9a 100%);
}

.pill--5 .pill__cap {
    background: linear-gradient(135deg, #9b59b6 0%, #7b4aa6 100%);
}

.pill--5 .pill__border {
    background: linear-gradient(90deg, #9b59b6 0%, #7b4aa6 100%);
}

/* Ensure cap content is centered in narrow caps */
.pill__cap {
    gap: 10px;
    padding-left: 12px;
    padding-right: 12px;
}

/* responsive adjustments */
@media (max-width: 1100px) {
    .why-grid {
        order: 2;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        align-items: start;
        position: relative;
        z-index: 6;
        /* below header but above background strip */
        margin-top: 12px;
    }

    .pill {
        min-height: 220px;
        padding-top: calc(var(--cap-height) / 2 + 4px);
    }


    .pill__cap {
        max-width: 100%;
        height: 60px;
        top: calc(-1 * (60px / 2));
    }

    .pill__num {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .pill__icon {
        font-size: 20px;
    }

    .pill__desc {
        font-size: 13px;
        max-width: 180px;
    }
}

@media (max-width: 760px) {

    .why-section {
        padding: 36px 30px;

    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        /* ⭐ JUST 2 COLUMNS */
        row-gap: 40px !important;
        /* SAME GAP AS DESKTOP */
        align-items: stretch !important;
        /* keep same height */
    }

    .pill__desc {
        padding: 10px 10px;
        font-size: 14px;
        justify-content: center;
        color: #000000;
        margin: 0;
        line-height: 1.45;
    }


    .pill__body {
        padding: 60px 20px 20px;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        z-index: 4;
    }

    .pill {
        max-width: 360px;
        margin: 0 auto;
        /* center the pill */
    }



    .pill__cap {
        max-width: 100%;
        height: 60px;
        top: calc(-1 * (60px / 2));
    }

    .pill__num {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}

@media (max-width: 420px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        /* ⭐ STILL 2 COLUMNS */
        row-gap: 40px !important;
        align-items: stretch !important;
    }

    .pill__desc {
        padding: 10px 10px;
        font-size: 14px;
        justify-content: center;
        color: #000000;
        margin: 0;
        line-height: 1.45;
    }


    .pill__body {
        padding: 60px 20px 20px;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        z-index: 4;
    }


    .pill {
        max-width: 100%;
    }

    .pill__cap {
        max-width: 100%;
        height: 56px;
        top: calc(-1 * (56px / 2));
    }

    .pill__num {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* Accessibility: keyboard focus */
.pill:focus-within,
.pill:hover {
    outline: none;
    box-shadow: 0 20px 40px rgba(11, 18, 30, 0.10);
}

/* <!-- why-section exit--> */




/* Student Success Storie */

.sss-section {
    padding: 40px 18px;
    color: #0b0b0b;
    background: #fff;
}

.sss-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.sss-header {
    text-align: center;
    margin-bottom: 18px;
}

.sss-sub {
    color: #777;
    font-weight: 600;
    margin: 0 0 6px;
}

.sss-title {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 800;
    color: #111;
}

.sss-lead {
    margin: 0 0 18px;
    color: #666;
}

/* carousel viewport */
.sss-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    max-height: 320px;
}

/* slide layout: left content, right image */
.sss-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 280px 1fr;
    /* ⭐ Image | Text */
    gap: 18px;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    transform: translateX(12px) scale(0.99);
    transition: transform .45s cubic-bezier(.22, .9, .34, 1), opacity .45s ease;
    background: linear-gradient(180deg, #ffffff, #fcfcfc);
    border-radius: 10px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

/* visible slide */
.sss-slide.sss-active {
    position: relative;
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 2;
}

/* content area (left) */
.sss-content {
    padding-right: 10px;
}

.sss-meta {
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.sss-name {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: #111;
}

.sss-rating {
    color: #f5a623;
    font-size: 16px;
    line-height: 1;
}

.sss-text {
    margin: 0;
    color: #333;
    font-size: 15px;
    line-height: 1.55;
}

/* image area (right) */
.sss-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sss-image img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    border: 6px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* controls */
.sss-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 12px;
}

.sss-prev,
.sss-next {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    width: 42px;
    height: 42px;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .16s ease, box-shadow .16s ease;
}

.sss-prev:hover,
.sss-next:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* dots */
.sss-dots {
    display: flex;
    gap: 8px;
}

.sss-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.12);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.sss-dot.sss-dot--active {
    background: #e85a2f;
    box-shadow: 0 4px 10px rgba(232, 90, 47, 0.14);
    transform: scale(1.05);
}

/* responsive: stack vertically on narrow screens (image below content) */
@media (max-width: 880px) {
    .sss-slide {
        grid-template-columns: 1fr;
        /* stack */
        padding: 14px;
        gap: 12px;
    }

    .sss-image {
        order: 1;
        justify-content: center;
    }

    .sss-image img {
        width: 140px;
        height: 140px;
    }

    .sss-content {
        order: 2;
        text-align: center;
    }

    .sss-carousel {
        max-height: none;
    }
}

@media (max-width: 620px) {
    .sss-slide {
        grid-template-columns: 1fr;
        padding: 14px;
        gap: 12px;
    }

    .sss-image {
        order: 2;
        justify-content: flex-start;
    }

    .sss-image img {
        width: 120px;
        height: 120px;
    }

    .sss-content {
        padding-left: 10px;
    }

    .sss-carousel {
        max-height: none;
    }

    .sss-controls {
        margin-top: 10px;
    }
}

/* accessibility focus */
.sss-prev:focus,
.sss-next:focus,
.sss-dot:focus {
    outline: 3px solid rgba(232, 90, 47, 0.12);
    outline-offset: 3px;
}

@media (max-width: 420px) {
    .sss-slide {
        grid-template-columns: 1fr !important;
        /* stack image + text */
        padding: 12px;
        gap: 10px;
    }

    /* image on top */
    .sss-image {
        order: 1;
        justify-content: center;
        text-align: center;
    }

    .sss-image img {
        width: 120px !important;
        height: 120px !important;
        border-radius: 8px;
    }

    /* text below */
    .sss-content {
        order: 2;
        text-align: center;
        padding: 0;
    }

    .sss-name {
        font-size: 18px;
        font-weight: 700;
        margin: 0 auto 6px;
        text-align: center;
        width: 100%;
    }

    .sss-rating {
        display: flex;
        justify-content: center;
        margin-bottom: 8px;
        /* space above story */
        font-size: 16px;
    }


    .sss-text {
        font-size: 14px;
        line-height: 1.45;
        margin-top: 4px;
    }

    /* rating centered */
    .sss-rating {
        justify-content: center;
        font-size: 15px;
    }

    .sss-carousel {
        max-height: none !important;
    }
}


/* Student Success Storie exit*/





/* <!-- appreciation-section --> */

.appreciation-section {
    padding: 40px 20px;
    text-align: center;
    background-color: #ffffff;
}

/* .appreciation-section {
    background: linear-gradient(180deg,
            #d5e6f7 0%,
            #e6f3ea 40%,
            #f5efe8 100%);
} */

.appreciation-title {
    color: #1a1a1a;
    font-size: 1.55rem;
    margin-bottom: 20px !important;
    font-weight: 800;
    margin: 6px 0 8px 0;
    letter-spacing: -0.5px;
    text-align: center;
}

/* underline
.appreciation-title::after {
    content: "";
    width: 80px;
    height: 2px;
    background: #333;
    display: block;
    margin: 8px auto 20px auto;
} */

/* -------------------------------
   CAROUSEL WRAPPER
--------------------------------*/
.appreciation-carousel {
    display: flex;
    align-items: center;
    gap: 12px;
}

.app-track-wrap {
    overflow: hidden;
    flex: 1;
}

.app-track {
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
    transition: transform 0.4s ease;
}

/* CARD STYLE */
.app-card {
    min-width: 260px;
    max-width: 260px;
    flex: 0 0 260px;
}

.app-box {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(158, 158, 158, 0.1);
    border: 1px solid #eee;
    transition: all 0.35s ease;
}

.app-box:hover {
    transform: translateY(-8px);
    border-color: #e49a84;
}

/* round profile image */
.app-photo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 12px;
    border-radius: 50%;
    border: 4px solid #f2f2f2;
}

/* Honorable text */
.app-honorable {
    font-size: 14px;
    color: #555;
    margin-bottom: 4px;
}

/* Name */
.app-name {
    font-size: 18px;
    font-weight: 800;
    color: #e85a2f;
    margin-bottom: 6px;
}

/* Role */
.app-role {
    font-size: 14px;
    color: #555;
}

/* -------------------------------
   ARROWS
--------------------------------*/
.app-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #2ecc71;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* -------------------------------
   RESPONSIVE
--------------------------------*/

/* Desktop: 4 cards */
@media (min-width: 1000px) {
    .app-card {
        flex: 0 0 calc(25% - 20px);
    }
}

/* Tablet: 2 cards */
@media (min-width: 700px) and (max-width: 999px) {
    .app-card {
        flex: 0 0 calc(50% - 20px);
    }
}

/* Mobile: 1 card */
@media (max-width: 699px) {
    .app-card {
        flex: 0 0 80%;
    }
}

/* <!-- appreciation-section exit--> */



/* <!-- linkage-section --> */

.linkage-section {
    text-align: center;
    padding: 40px 20px;
    background-color: whitesmoke;
}

.linkage-title {
    color: #1a1a1a;
    font-size: 1.55rem;
    margin-bottom: 20px !important;
    font-weight: 800;
    margin: 6px 0 8px 0;
    letter-spacing: -0.5px;
    text-align: center;
}

/* .linkage-underline {
    width: 80px;
    height: 3px;
    background: #e85a2f;
    margin: 10px auto 30px auto;
} */



/* slider container */
.logo-slider {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 50px;
    overflow: hidden;
    margin: 14px 0;
    position: relative;
    box-sizing: border-box;
}

/* track - will be translated by JS */
.logo-track {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    will-change: transform;
}

/* each logo */
.logo-track img {
    width: 160px;
    /* logo size */
    height: auto;
    object-fit: contain;

    background: #ffffff;
    padding: 14px 24px;

    border-radius: 10px;
    border: 1px solid #eaeaea;

    /* box-shadow:
        0px 3px 10px rgba(0, 0, 0, 0.05),
        0px 6px 20px rgba(0, 0, 0, 0.06); */

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Optional smooth hover effect */
.logo-track img:hover {
    transform: translateY(-2px);
    box-shadow:
        0px 6px 16px rgba(48, 48, 48, 0.08),
        0px 12px 28px rgba(80, 80, 80, 0.1);
}

/* responsive sizes */
@media (max-width: 1100px) {
    .logo-track img {
        width: 140px;
    }
}

@media (max-width: 700px) {
    .logo-track img {
        width: 120px;
    }
}


/* <!-- linkage-section exit--> */





/* <!-- course-section --> */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.courses-section {
    padding: 40px 0;
    background: #fff;
    color: var(--card-color);
    font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}

.courses-heading {
    color: #1a1a1a;
    font-size: 1.55rem;
    margin-bottom: 20px !important;
    font-weight: 800;
    margin: 6px 0 8px 0;
    letter-spacing: -0.5px;
    text-align: center;
}


/* Grid: desktop 4 columns (4 x 2 rows for 8 items) */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    align-items: stretch;
}

.course-card-compact {
    width: 260px;
    /* card width - change as needed */
    background: #fff;
    border-radius: 10px;
    padding: 14px;
    box-shadow: 0 8px 20px rgba(15, 20, 30, 0.08);
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: "Georgia", "Times New Roman", serif;
}

/* image container */
.course-card-compact .card-media {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
    display: block;
}

.course-card-compact .card-media img {
    display: block;
    width: 100%;
    height: 160px;
    /* fixed image height for consistent cards */
    object-fit: cover;
    /* crop without distortion */
}

/* body content (text + button) */
.course-card-compact .card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 6px 4px 8px 4px;
}

/* description text - placed properly below image */
.course-card-compact .card-sub {
    margin: 0;
    color: #222;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.1px;
    padding: 6px 6px 0 6px;
}

/* Read More button (pill style) */
.course-card-compact .card-btn {
    display: inline-block;
    background: #352c66;
    /* deep indigo, change if needed */
    color: #fff;
    padding: 10px 18px;
    border-radius: 28px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    align-self: flex-start;
    /* places button left under text like your sample */
    box-shadow: 0 8px 20px rgba(53, 44, 102, 0.14);
    transition: transform .16s ease, box-shadow .16s ease;
}

/* hover */
.course-card-compact .card-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(53, 44, 102, 0.18);
}

/* Responsive: make card full-width on very small screens */
@media (max-width: 420px) {
    .course-card-compact {
        width: 100%;
        padding: 12px;
    }

    .course-card-compact .card-media img {
        height: 180px;
    }

    .course-card-compact .card-sub {
        font-size: 15px;
    }

    .course-card-compact .card-btn {
        padding: 10px 14px;
    }
}


/* Responsive: 2 columns (2 x 4 rows) for narrower screens */
@media (max-width: 760px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .container {
        padding: 0 14px;
    }
}

/* <!-- course-section exit--> */




/* Nursery Teacher */

.wrap {
    max-width: var(--max-width);
    margin: 28px auto;
    padding: 0 18px
}

.page-header {
    text-align: center;
    margin-bottom: 20px
}

.page-header h1 {
    margin: 0;
    font-size: 28px;
    color: #222;
    font-weight: 800
}

.page-header .lead {
    margin: 6px 0 0;
    color: var(--muted)
}

/* main layout */
.courses-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 24px;
    align-items: start
}

/* course list (left) */
.course-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-self: start;
    position: relative;
}

.course-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-align: left;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease;
    outline: none;
}

.course-card img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0
}

.course-card .card-body {
    flex: 1;
    padding-right: 6px
}

.course-card .card-title {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #111;
    text-transform: none
}

.course-card .card-sub {
    margin: 6px 0 0;
    font-size: 13px;
    color: var(--muted)
}

/* active style */
.course-card[aria-selected="true"],
.course-card.active {
    box-shadow: 0 10px 30px rgba(14, 20, 30, 0.06);
    transform: translateY(-4px);
    border-color: rgba(232, 90, 47, 0.12)
}

/* detail panel (right) */
.course-detail {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 12px 36px rgba(14, 20, 30, 0.05)
}

.course-detail .detail h2 {
    margin-top: 0;
    font-size: 22px;
    color: #111
}

.course-detail .lead {
    color: var(--muted);
    margin-top: 6px;
    font-size: 14px
}

.course-detail h3 {
    margin: 18px 0 8px;
    font-size: 16px;
    color: #222
}

.course-detail ul {
    margin: 0 0 12px 18px;
    color: #333;
    line-height: 1.6
}

.course-detail li {
    margin-bottom: 8px
}

/* small screens: stack list above detail */
@media (max-width: 880px) {
    .courses-layout {
        grid-template-columns: 1fr;
    }

    .course-list {
        flex-direction: row;
        gap: 10px;
        overflow: auto;
        padding-bottom: 6px
    }

    .course-card {
        min-width: 260px;
        flex: 0 0 auto
    }

    .course-detail {
        margin-top: 6px
    }
}

/* very small screens: tighten spacing */
@media (max-width: 420px) {
    .wrap {
        padding: 12px
    }

    .page-header h1 {
        font-size: 20px
    }

    .course-card img {
        width: 64px;
        height: 64px
    }

    .course-detail {
        padding: 14px
    }

    .course-detail h3 {
        font-size: 15px
    }
}

/* Nursery Teacher exit*/





/* ====== Inner Page Card  ====== */
#inner-page-card {
    padding: 40px 16px;
    background: #fff;
    /* change if needed */
    font-family: system-ui, Arial, sans-serif;
    color: #111;
}

/* Container */
#inner-page-card .ipc-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    padding: 0 12px;
}

/* Title / subtitle */
.ipc-title {
    font-size: 28px;
    font-weight: 800;
    margin: 6px 0;
}

.ipc-sub {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Grid: desktop 4, responsive 2 */
.ipc-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
    /* desktop: 4 */
    align-items: stretch;
    margin-top: 12px;
}

/* Tablet / small screens: 2 columns */
@media (max-width: 900px) {
    .ipc-grid {
        grid-template-columns: repeat(2, 1fr);
        /* responsive: 2 */
    }
}

/* Very small phones: 1 column (optional) */
@media (max-width: 480px) {
    .ipc-grid {
        grid-template-columns: 1fr;
    }
}

/* Card */
.ipc-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    background: #ffffff;
    border-radius: 14px;
    padding: 22px 18px;
    box-shadow: 0 6px 18px rgba(14, 20, 30, 0.06);
    transition: transform .22s ease, box-shadow .22s ease;
    color: inherit;
}

/* Hover */
.ipc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 36px rgba(14, 20, 30, 0.12);
}

/* Image wrapper */
.ipc-img {
    width: 84px;
    height: 84px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
    overflow: hidden;
}

/* Make image fill container and maintain aspect */
.ipc-img img {
    width: 64px;
    /* icon size inside box */
    height: 64px;
    object-fit: contain;
    display: block;
}

/* Name */
.ipc-name {
    font-weight: 800;
    font-size: 16px;
    letter-spacing: .4px;
    color: #111;
}

/* Accessibility focus */
.ipc-card:focus {
    outline: 3px solid rgba(45, 11, 142, 0.10);
    outline-offset: 4px;
}

/* Optional: center the grid on wide screens (if you have fewer than 4 cards) */
@media (min-width: 1200px) {
    .ipc-grid {
        justify-content: center;
    }
}

/* ====== Inner Page Card exit====== */







/* Mission & Vision */

.mission-section {
    padding: 60px 20px;
    background-color: #e9f6ff75;
}

.mission-section h2 {
    color: #000000;
    font-size: 2rem;
    font-weight: 700;
    border-bottom: 3px solid #0c6e6d;
    /* Change color & thickness as needed */
    padding-bottom: 5px;
    /* Space between text and underline */
    display: inline-block;
    /* Ensures underline only under text */
}

.mission-section p {
    font-size: 15px;
    color: #000000;
    text-align: left;
    margin-bottom: 15px;
    line-height: 1.7;
}

.mission-section ul {
    padding-left: 0;
    margin-top: 15px;
}

.mission-section ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #000;
    text-align: left;
    display: flex;
    align-items: start;
    gap: 8px;
}

.mission-section ul li i {
    font-size: 18px;
    color: #0c6e6d;
    margin-top: 3px;
}

.mission-section img {
    width: 570px;
    max-width: 562px;
    height: 418px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mission-section {
        text-align: center;
    }

    .mission-section h2 {
        color: #000000;
        font-size: 1.5rem;
        font-weight: 700;
        border-bottom: 3px solid #0c6e6d;
        /* Change color & thickness as needed */
        padding-bottom: 5px;
        /* Space between text and underline */
        display: inline-block;
        /* Ensures underline only under text */
    }

    .mission-section .col-lg-6 {
        text-align: center !important;
    }

    .mission-section img {
        max-width: 100%;
        height: 100%;
    }
}



/* Mission & Vision exit */



/* Our Vision Section */
.vision-section {
    padding: 60px 20px;
    background-color: #e9fffe75;
}

.vision-section h2 {
    color: #000000;
    font-size: 2rem;
    font-weight: 700;
    border-bottom: 3px solid #0c6e6d;
    /* Change color & thickness as needed */
    padding-bottom: 5px;
    /* Space between text and underline */
    display: inline-block;
    /* Ensures underline only under text */
}

.vision-section p {
    font-size: 15px;
    color: #000000;
    text-align: left;
    margin-bottom: 15px;
    line-height: 1.7;
}

.vision-section ul {
    padding-left: 0;
    margin-top: 15px;
}

.vision-section ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #000;
    text-align: left;
    display: flex;
    align-items: start;
    gap: 8px;
}

.vision-section ul li i {
    font-size: 18px;
    text-align: left;
    color: #0c6e6d;
    margin-top: 3px;
}

.vision-section img {
    width: 570px;
    max-width: 562px;
    height: 430px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .vision-section {
        text-align: center;
    }

    .vision-section h2 {
        color: #000000;
        font-size: 1.5rem;
        font-weight: 700;
        border-bottom: 3px solid #0c6e6d;
        /* Change color & thickness as needed */
        padding-bottom: 5px;
        /* Space between text and underline */
        display: inline-block;
        /* Ensures underline only under text */
    }

    .vision-section .col-lg-6 {
        text-align: center !important;
    }

    .vision-section img {
        max-width: 100%;
        height: 100%;
    }
}

/* Our Vision Section exit*/





/* Premium Services Section */
.premium-services {
    padding: 40px 20px;
    background-color: #ffffff;
}

.premium-services h2 {
    color: #000000;
    font-size: 2rem;
    font-weight: 700;
    border-bottom: 3px solid #0c6e6d;
    /* Change color & thickness as needed */
    padding-bottom: 5px;
    /* Space between text and underline */
    display: inline-block;
    /* Ensures underline only under text */
}

.premium-services p {
    font-size: 15px;
    color: #000000;
    text-align: left;
    line-height: 1.7;
}

.premium-services ul {
    padding-left: 0;
    margin-top: 15px;
}

.premium-services ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #000;
    display: flex;
    align-items: start;
    gap: 8px;
}


.premium-services ul li i {
    font-size: 18px;
    color: #0c6e6d;
    margin-top: 3px;
}

.premium-services img {
    width: 100%;
    max-width: 500px;
    /* Controls width consistency */
    height: 320px;
    /* Fixed height for uniform look */
    object-fit: cover;
    /* Ensures image fills area without distortion */
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .premium-services {
        text-align: center;
    }

    .premium-services h2 {
        color: #000000;
        margin-top: -20px;
        font-size: 1.5rem;
        font-weight: 700;
        border-bottom: 3px solid #0c6e6d;
        /* Change color & thickness as needed */
        padding-bottom: 5px;
        /* Space between text and underline */
        display: inline-block;
        /* Ensures underline only under text */
    }

    .premium-services .col-lg-6 {
        text-align: center !important;
    }

    .premium-services img {
        max-width: 100%;
        margin-bottom: 25px;
    }
}

/* Premium Services Section exir*/





/* ==== GALLERY CONTAINER ==== */
.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 50px;
    max-width: 1200px;
    margin: auto;
}

/* ==== GALLERY ITEMS ==== */
.gallery-item {
    position: relative;
    flex: 0 0 calc(25% - 20px);
    max-width: calc(25% - 20px);
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1 / 1;
    /* keeps square ratio */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ==== RESPONSIVE (TABLET & MOBILE) ==== */
@media (max-width: 992px) {
    .gallery-item {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .gallery-container {
        padding: 30px;
        gap: 15px;
    }

    .gallery-item {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}





/* <!-- Call Timing Section  --> */

.gk-typeback-section {
    --gk-accent: #e85a2f;
}

.gk-typeback-section {
    width: 100%;
    padding: 10px 16px;
    box-sizing: border-box;
    background: transparent;
    font-family: var(--gk-font);
}

.gk-typeback-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
    white-space: nowrap;
    overflow: hidden;
}

.gk-typeback-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: inline-block;
}

.gk-typeback-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    pointer-events: none;
}

.gk-typeback-area {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    min-width: 0;
}

.gk-type-text {
    display: inline-block;
    font-weight: 700;
    font-size: 18px;
    color: var(--gk-accent);
    line-height: 1;
    white-space: nowrap;
    box-sizing: border-box;
    max-width: calc(100% - 36px);
}

.gk-type-cursor {
    width: 2px;
    height: 1.05em;
    background: var(--gk-accent);
    display: inline-block;
    border-radius: 1px;
    margin-left: 4px;
    animation: gk-blink 1s steps(2, start) infinite;
    vertical-align: middle;
}

@keyframes gk-blink {

    0%,
    50% {
        opacity: 1
    }

    51%,
    100% {
        opacity: 0
    }
}

@media (prefers-reduced-motion: reduce) {
    .gk-type-cursor {
        animation: none;
        opacity: 1
    }
}

@media (max-width:420px) {
    .gk-type-text {
        font-size: 16px
    }

    .gk-typeback-icon {
        width: 24px;
        height: 24px
    }
}


/* <!-- Call Timing Section  --> */







/*  Contact Section  */
.contact-section {
    padding: 28px 16px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* use flex so both cards are equal height */
.contact-row {
    display: flex;
    gap: 20px;
    align-items: stretch;
    /* make children same height */
}

.card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-sizing: border-box;
    flex: 1;
    /* equal width for both */
    min-width: 0;
    /* allow children to shrink properly */
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* left content specifics */
.details-header {
    display: flex;
    gap: 14px;
    align-items: center;
}

.details-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 6px;
}

.details-title {
    margin: 0;
    color: #e85a2f;
    font-size: 20px;
    font-weight: 800;
}

.details-sub {
    margin: 4px 0 0;
    color: #555;
    font-size: 14px;
}

.details-info p {
    margin: 6px 0;
    font-size: 14px;
    color: #222;
}

.card-body {
    flex: 1;
    overflow: auto;
}

/* allow inner to scroll if content long */

/* form styles */
.form-note {
    margin: 0 0 10px;
    color: #666;
    font-size: 13px;
}

.form label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

.form input,
.form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 14px;
    box-sizing: border-box;
}

.form .actions {
    margin-top: 10px;
    display: flex;
    gap: 8px;
}

.btn {
    padding: 10px 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
}

.btn-primary {
    background: #e85a2f;
    color: #fff;
}

.btn-ghost {
    background: transparent;
    color: #e85a2f;
    border: 1px solid rgba(232, 90, 47, 0.14);
}

.status {
    margin-top: 10px;
    font-weight: 600;
}


/* responsive: stack */
@media (max-width:900px) {
    .contact-row {
        flex-direction: column;
    }

    .card {
        width: 100%;
    }

}

/*  Contact Section exit */

/* FULL WIDTH MAP */
.fullwidth-map-section {
    width: 100%;
    margin-top: 30px;
}

.fullwidth-map {
    width: 100vw;
    /* take full browser width */
    height: 420px;
    border: 0;
    display: block;

    /* fix left shift caused by body padding/margins */
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Responsive height */
@media (max-width: 600px) {
    .fullwidth-map {
        height: 300px;
    }
}









/* footer links */
.login-footer {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.login-footer .link {
    color: #140a5c;
    text-decoration: none;
}

.login-footer .link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 420px) {
    .login-card {
        padding: 18px;
        border-radius: 10px;
    }

    .login-title {
        font-size: 20px;
    }

    .pwd-toggle {
        padding: 7px 8px;
        font-size: 12px;
    }
}

/* login exit */





.footer {
    background: #000000;
    color: #ffffff;
    padding-top: 50px;
    font-family: 'Poppins', sans-serif;
}

.footer .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-top img {
    width: 130px;
    height: 100px;
    margin-bottom: 20px;
}

.footer-column {
    flex: 1 1 200px;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #FF4C57;
    border-bottom: 2px solid #FF4C57;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #ffffff;
    line-height: 1.6;
}

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: #FF4C57;
}

/* Contact Icons */
.footer-column.contact ul li i {
    margin-right: 8px;
    color: #FF4C57;
}

/* Gallery Grid (2x3 Layout) */
.footer-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.footer-gallery img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.footer-gallery img:hover {
    transform: scale(1.05);
}

/* Footer Bottom */
.footer-bottom {
    background: #000000;
    text-align: center;
    padding: 10px 5px;
    border-top: 2px solid #ffffff;
    margin-top: 40px;
}



.footer-bottom p {
    font-size: 16px;
    color: #ffffff;
    margin: 10px 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-top {
        justify-content: center;
        text-align: center;
    }

    .footer-column {
        flex: 1 1 45%;
    }

    .footer-gallery .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        flex: 1 1 100%;
    }

    .footer-gallery .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Back to top button  WhatsApp Floating Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #176CB1;
    border: 2px solid #176CB1;
    color: #ffffff;
    border-radius: 50%;
    font-size: 22px;
    padding: 8px 10px;
    text-decoration: none;
    transition: 0.3s;
    z-index: 999;
}

.back-to-top:hover {
    background: #ffffff;
    border: 2px solid #176CB1;
    color: #176CB1;
}

/* WhatsApp Floating Button (Above Back to Top)*/
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    /* sits above back-to-top */
    right: 30px;
    background: #25d366;
    border: 2px solid #25d366;
    color: #ffffff;
    border-radius: 50%;
    padding: 8px 10px;
    font-size: 22px;
    text-decoration: none;
    transition: 0.3s;
    z-index: 999;
}

.whatsapp-float:hover {
    background: #ffffff;
    color: #25d366;
}

/* =========================================
   Responsive Adjustments
========================================= */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .whatsapp-float {
        bottom: 90px;
        /* same spacing as desktop */
        right: 20px;
    }

    .back-to-top {
        bottom: 30px;
        right: 20px;
    }
}