/* ===========================
   Table of Content
   ===========================
   1. Global Reset
   2. Navbar (Desktop)
   3. Dropdown Menu
   4. Offcanvas Menu (Mobile)
   5. Responsive Styles
=========================== */

/* 1. Global Reset */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 12px;
}

a {
    text-decoration: none;
}

body,
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    background-color: #eee6f5;
}

.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: 10px;
    }

    .contact-item {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }


    .contact-item:has(.bi-geo-alt) {
        display: none !important;
    }
}

/* ===== NAVBAR ===== */
/* ===== 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 */
}

.navbar-nav .nav-link {
    color: #E93F38 !important;
    margin: 0 8px;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #000000 !important;
}

/* Dropdown hover for desktop */
/* .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);

} */

/* About  */
/* Hover e dropdown open hobe */
.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;

    /* .footer-bottom {
        margin-top: 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        font-size: 13px;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    } */
}

/* ===== 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;
}



/* navbar exit */

/* HERO SECTION */
.hero-section {
    width: 100%;
    padding: 80px 0;

    /* BACKGROUND IMAGE SETTINGS */
    background-image: url('./ngo_index/banner2.png');
    background-size: cover;
    /* Image covers the entire section */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    /* Prevents image tiling */
    background-color: #000;
    /* Fallback color */
    position: relative;
    /* Needed for the overlay and z-indexing */
}

/* OVERLAY for text readability */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark, semi-transparent layer */
    z-index: 1;
}

/* Ensure the wrapper content is above the overlay */
.hero-wrapper {
    display: flex;
    align-items: center;
    /* justify-content: space-between; -- Removed, as only hero-left remains */
    justify-content: flex-start;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* LEFT CONTENT STYLING */
.hero-left {
    max-width: 600px;
    /* Optional: Limit the width of the text block */
}

.hero-left h1 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    /* Changed for contrast */
    line-height: 1.2;
}

/* The .underline rule is no longer necessary as the element was removed from HTML */

.hero-desc {
    font-size: 17px;
    color: #ffffff;
    /* Changed for contrast */
    margin-bottom: 25px;
}

.sub-title {
    font-weight: 600;
    color: #fff;
    /* Changed for contrast */
    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: #ffffff;
    /* Changed for contrast */
    font-size: 14px;
    position: relative;
}

.divider::before,
.divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 25%;
    height: 1px;
    background: #ccc;
    /* Changed for contrast */
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

/* Store buttons (kept if you plan to use them later) */
.store-btns img {
    width: 160px;
    margin-right: 10px;
    cursor: pointer;
}


/* The .hero-right rule is no longer necessary as the element was removed from HTML */


/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-wrapper {
        /* Text is now centered in the container */
        justify-content: center;
    }

    .hero-left {
        text-align: center;
    }

    .hero-left h1 {
        font-size: 40px;
    }

    .hero-section {
        padding: 60px 0;
        min-height: 80vh;
        width: auto;
        /* Ensures it takes up at least 60% of the screen height */
    }

    .hero-input,
    .divider {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-section::before {
        background-color: rgba(0, 0, 0, 0.603);
    }



    /* .hero-right img is no longer needed */

    .hero-input,
    .divider {
        margin-left: auto;
        margin-right: auto;
    }
}

/* HERO 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--> */



/* testimonials 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
    }
}

/* testimonials trusted-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: 20px 0;
}

/* === BOX ROW === */
.info-box-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    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: #7A3DB8;
}

/* icon */
.info-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

/* text */
.info-title {
    font-size: 14px;
    font-weight: 800;
    color: #2F2A63;
}

.info-sub {
    font-size: 12px;
    color: #000000;
    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: #2F2A63;
    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: #2F6FA1;
}

/*** RESPONSIVE ***/
@media (max-width: 900px) {
    .info-box-row {
        grid-template-columns: 1fr;
    }

    .info-box {
        border-left: none;
        border-top: 1px solid #eee;
    }

    .panel-text {
        justify-items: left;
    }

    .panel-layout {
        flex-direction: column;
        text-align: center;
    }

    .panel-img {
        width: 100%;
        max-width: 340px;
    }
}

@media (max-width: 600px) {

    .panel-text {
        justify-items: left;
    }
}


/* <!-- Top clickable boxes --> */



/* <!-- core-values-section --> */
.core-values-alt {
    padding: 60px 20px;
    background-color: #e0f1ff;
    font-family: "Poppins", sans-serif;
}

.core-values-alt h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #0c6e6d;
}

.values-alt-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
    padding: 0;
}

.values-alt-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px 20px;
    background: linear-gradient(90deg, #cfccf1c9, #ffffff);
    border-left: 5px solid #2F2A63;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.values-alt-list li:hover {
    background: linear-gradient(90deg, #bdd9ee, #e6f9f8);
    transform: translateX(5px);
    border-left-color: #2F6FA1;
}

.values-alt-list .icon {
    font-size: 24px;
    color: #0c6e6d;
    margin-top: 2px;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.values-alt-list li:hover .icon {
    color: #00bfa5;
}

.values-alt-list .text strong {
    color: #000000;
    font-weight: 600;
}

.values-alt-list .text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .values-alt-list li {
        text-align: center;
        border-left: none;
        border-top: 5px solid #0c6e6d;
    }

    .values-alt-list li:hover {
        transform: translateY(-3px);
        border-top-color: #00bfa5;
    }

    .values-alt-list .icon {
        margin-bottom: 10px;
    }
}

/* <!-- core-values-section exit--> */


/* <!-- programs-section --> */
/* Section Wrapper */
.programs-section {
    padding: 60px 20px;
    background-color: #f7f9fa;
    font-family: "Poppins", sans-serif;
}

/* Section Heading */
.programs-section .section-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #2F2A63;
    margin-bottom: 50px;
}



/* Grid Layout */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Program Card - Minimal Style */
.program-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid transparent;
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
    border-top: 5px solid #2F2A63;
}

/* Icon Circle */
.program-card .program-icon {
    width: 100px;
    height: 100px;
    background-color: #ac81d8;
    border-radius: 50%;
    margin-bottom: 20px;
    padding: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.program-card:hover .program-icon {
    transform: scale(1.2);
    background-color: #7A3DB8;
}

.program-card .program-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Card Text */
.program-card h3 {
    font-size: 20px;
    color: #2F2A63;
    margin-bottom: 12px;
    font-weight: 600;
}

.program-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #2F6FA1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }

    .program-card {
        padding: 25px 15px;
    }
}

/* <!-- programs-section exit--> */






/* <!-- 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("./ngo_image/breadcrupm.jpg") center/cover no-repeat;
    overflow: hidden;
}

/* Dark overlay */
.breadcrumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(66, 66, 66, 0.432);
    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: #ff7f50;
    /* 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;
    justify-items: left
}

/* small intro line (orange in screenshot) */
.coaching-text .intro.small {
    color: #040033;
    /* 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: #2F2A63;
    font-size: 1.55rem;
    font-weight: 800;
    margin: 6px 0 8px 0;
    letter-spacing: -0.5px;
    font-family: "Poppins", sans-serif;

}

/* subtitle under main heading */
.coaching-text .sub-title {
    color: #4e4d5a;
    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: #000000;
    border: 0;
    margin: 14px 0;
    border-radius: 2px;
}

/* body paragraph */
.coaching-text .body-text {
    font-size: 0.95rem;
    color: #2F6FA1;
    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;
}

/* small circular tick (orange) */
/* 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;
        justify-items: left
    }

    .coaching-text .main-title {
        font-size: 1.35rem;
        text-align: left;
    }

    .coaching-text .sub-title,
    .coaching-text .body-text {
        text-align: left;
    }

    .feat-list {
        grid-template-columns: 1fr;
    }

    .about-image {
        max-width: 350px;
        height: 350px;
        margin: 0 auto 18px;
    }
}

@media (max-width: 600px) {

    .about-section.coaching-about {
        justify-items: left
    }

    .about-image {
        max-width: 300px;
        height: 300px;
    }
}


/* coaching-about.css exit*/





/* hero_about */

.hero_about {
    padding: 70px 20px;
    background-color: #fdfcfdb2;
}

.hero_about-row {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}



.hero_about-image {
    flex: 1;
    text-align: center;
}

.hero_about-image img {
    width: 100%;
    max-width: 450px;
    height: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.hero_about-content {
    flex: 1;
}

.hero_about-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2F2A63;
    font-family: "Poppins", sans-serif;
}

.hero_about-content p {
    font-size: 16px;
    color: #2F6FA1;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Features Grid: 2 rows x 3 columns */
.features-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 20px;
    /* row-gap column-gap */
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    font-size: 15px;
    color: #134469;
    display: flex;
    align-items: center;
}

.features-list li::before {
    content: "✔";
    color: #0c6e6d;
    margin-right: 8px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .features-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .hero_about-row {
        flex-direction: column;
    }

    .hero_about-image img {
        max-width: 80%;
        height: auto;
    }

    .hero_about-content {
        text-align: center;
    }

    .features-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 400px) {
    .features-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* hero_about exit */


/* focus-areas  */
.focus-areas-cards {
    padding: 60px 20px;
    background-color: #f7f9fa;
    font-family: "Poppins", sans-serif;
    text-align: center;
}

.container h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2F2A63;
    margin-bottom: 50px;
    font-family: "Poppins", sans-serif;

}

/* Grid layout */
.focus-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card styles */
.focus-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.focus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

/* Card image */
.card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Overlay */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0d4b7ac2;
    /* semi-transparent overlay */
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    text-align: center;
    padding: 20px;
    transition: opacity 0.3s ease;
}

.focus-card:hover .card-overlay {
    opacity: 1;
}

.card-overlay h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.card-overlay p {
    font-size: 14px;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .focus-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .container h2 {
        font-size: 30px;
        font-weight: 700;
        color: #2F2A63;
        margin-bottom: 50px;
    }

}

@media (max-width: 600px) {
    .focus-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-img {
        height: 200px;
    }

    .container h2 {
        font-size: 30px;
        font-weight: 700;
        color: #2F2A63;
        margin-bottom: 50px;
    }
}

@media (max-width: 320px) {
    .focus-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .container h2 {
        font-size: 30px;
        font-weight: 700;
        color: #2F2A63;
        margin-bottom: 50px;
    }
}

/* focus-areas exit */



/* mission-vision-home */

.mission-vision-hero {
    padding: 60px 20px;
    text-align: center;
}

.mv-heading {
    font-size: 32px;
    font-weight: 700;
    color: #0c6e6d;
    margin-bottom: 40px;
}

.mv-row {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    text-align: left;
}

.mv-text {
    flex: 1;
}

.mv-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #2F6FA1;
    margin-bottom: 25px;
}

.btn-mv-hero {
    display: inline-block;
    padding: 12px 28px;
    background-color: #2F6FA1;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-mv-hero:hover {
    background-color: #00bfa5;
    transform: scale(1.05);
}

.mv-image {
    flex: 1;
    text-align: center;
}

.mv-image img {
    width: 70%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .mv-row {
        flex-direction: column-reverse;
        text-align: center;
    }

    .mv-text {
        margin-top: 30px;
    }
}

@media (max-width: 600px) {
    .mission-vision-hero {
        padding: 40px 15px;
    }

    .mv-heading {
        font-size: 28px;
    }

    .mv-text p {
        font-size: 15px;
    }

    .btn-mv-hero {
        padding: 10px 24px;
        font-size: 14px;
    }
}

/* mission-vision-home */


/* blog-section */

.blog-section-alt {
    padding: 70px 20px;
    background-color: #f7f9fa;
    text-align: center;
}

.blog-section-alt .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #2F2A63;
    margin-bottom: 50px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Modern card style */
.blog-card-alt {
    position: relative;
    background: #fff;
    border-radius: 30px 0px 30px 0px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-card-alt:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Image with overlay accent */
.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card-alt:hover .blog-image img {
    transform: scale(1.08);
}

/* Content overlaps image slightly */
.blog-content-alt {
    padding: 25px 20px 20px;
    background: #fff;
    margin-top: -30px;
    border-radius: 0 0 20px 20px;
    text-align: left;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    color: #2F2A63;
    margin-top: 10px;
    margin-bottom: 10px;
}

.blog-excerpt {
    font-size: 15px;
    color: #2F6FA1;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-readmore {
    font-size: 14px;
    color: #083d66;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-readmore:hover {
    color: #0c6e6d;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-content-alt {
        margin-top: -20px;
    }

    .blog-image img {
        height: 200px;
    }
}


/* blog-section exit*/






/* testimonial section */

.testimonials-section {
    padding: 70px 20px;
    background: linear-gradient(135deg, hsl(248, 23%, 86%), #f0eff5);
    text-align: center;
    font-family: "Poppins", sans-serif;
}


.testimonial-slider {
    position: relative;
    overflow: hidden;
    max-width: 950px;
    margin: auto;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.testimonial-card {
    position: relative;
    min-width: 100%;
    padding: 70px 0px 20px;
    background: #fff;
    border-radius: 18px;
    margin: 0 0px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: 0.5s ease;
    opacity: 0.6;
}

.testimonial-card.active {
    transform: scale(1.06);
    opacity: 1;
}

/* Circle image icon */
.t-icon {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    margin: -40px auto 20px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.18);
    animation: floatIcon 4s infinite ease-in-out;
}

.t-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stars */
.t-rating {
    color: #ffb400;
    font-size: 22px;
    margin-bottom: 10px;
    letter-spacing: 2px;
    animation: fadeUp 0.7s ease;
}

/* Text */
.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #2F6FA1;
    margin-bottom: 20px;
}

.testimonial-name {
    font-size: 19px;
    font-weight: 700;
    color: #063152;
}

.testimonial-role {
    font-size: 14px;
    color: #555;
}

/* Navigation arrows */
.testimonial-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
}

.testimonial-nav button {
    background: #2F2A63;
    color: #fff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    transition: 0.3s ease;
}

.testimonial-nav button:hover {
    background: #00bfa5;
}

/* Animations */
@keyframes floatIcon {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 80px 20px 35px;
    }

    .t-icon {
        width: 110px;
        height: 110px;
        margin-top: -80px;
    }
}


/* testimonial section exit*/



/* <!-- ===== about-impact ===== --> */

.about-impact {
    max-width: 950px;
    margin: 60px auto;
    padding: 50px 25px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    text-align: center;
    color: #333;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid black;
}

/* Main Heading */
.about-impact h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2F2A63;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    font-family: "Poppins", sans-serif;

}

/* .about-impact h2::after {
    content: "";
    display: block;
    width: 70%;
    height: 3px;
    background: #0a5f56;
    margin: 8px auto 0;
    border-radius: 2px;
} */

/* Sub Heading */
.about-impact h4 {
    font-size: 18px;
    font-weight: 500;
    color: #5a7386;
    margin-bottom: 25px;
}

/* Paragraph */
.about-impact p {
    font-size: 16px;
    line-height: 1.85;
    color: #2F6FA1;
    max-width: 850px;
    margin: 0 auto;
}


/* ----------------- RESPONSIVE ----------------- */

/* Tablets (smaller laptops & big phones) */
@media (max-width: 992px) {
    .about-impact {
        padding: 40px 20px;
    }

    .about-impact h2 {
        font-size: 28px;
    }

    .about-impact h4 {
        font-size: 17px;
    }
}

/* Mobiles */
@media (max-width: 600px) {
    .about-impact {
        padding: 30px 18px;
        margin: 40px 15px;
        border-radius: 10px;
    }

    .about-impact h2 {
        font-size: 24px;
    }

    .about-impact h2::after {
        width: 45%;
    }

    .about-impact h4 {
        font-size: 15px;
    }

    .about-impact p {
        font-size: 14.5px;
        line-height: 1.75;
    }
}




/* <!-- ===== about-impact exit ===== --> */



/* commitment-section */

.commitment-section {
    padding: 50px 20px;
    background: #f8fdfc;
    font-family: Arial, sans-serif;
}

.commitment-card {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 25px;
    align-items: stretch;
    /* ensures image stretches to same height */
    flex-wrap: wrap;
}

.commitment-content {
    flex: 1;
    min-width: 300px;
}

.commitment-title {
    font-size: 28px;
    font-weight: 700;
    color: #2F2A63;
    margin-bottom: 10px;
}

.commitment-tabs {
    display: flex;
    gap: 12px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.tab {
    padding: 8px 16px;
    border: 1px solid #2F6FA1;
    background: #fff;
    color: #2F6FA1;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.tab:hover {
    background: #2F2A63;
    color: #fff;
}

.tab.active {
    background: #2F2A63;
    color: #fff;
}

#commitment-text {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 15px;
    color: #2F6FA1;
}

.commitment-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 25px;
    align-items: baseline;
}

.stat {
    min-width: 110px;
}

.stat-value {
    font-size: 20px;
    font-weight: bold;
    color: #2F6FA1;
}

.stat-label {
    font-size: 13px;
    color: #000000;
}

.commitment-cta {
    margin-top: 25px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    padding: 10px 18px;
    font-size: 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.btn-primary {
    background: #FF0101;
    color: white;
}

.btn-outline {
    color: #2F6FA1;
    border: 1px solid #0b6e63;
}


.commitment-image {
    flex: 0 0 300px;
    /* fixed width */
    display: flex;
    align-items: stretch;
}

.commitment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .commitment-card {
        flex-direction: column;
        text-align: center;
    }


    .commitment-row,
    .commitment-cta {
        justify-content: center;
    }

    .commitment-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        /* smooth scroll for mobile */
    }

    .commitment-tabs .tab {
        flex: 0 0 auto;
        /* prevent shrinking */
        padding: 6px 12px;
        /* smaller padding */
        font-size: 13px;
        /* smaller font */
    }

    .commitment-image {
        width: 100%;
        height: auto;
        margin-top: 20px;
    }
}


/* commitment-section exit */



/* <!-- why-section --> */
.why-choose-creative {
    padding: 60px 20px;
    text-align: center;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #2F2A63;
    text-align: center;
}

/* ---------- Cards ---------- */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 50px;

}

.card {
    background: #fff;
    border-radius: 20px;
    border: 2px solid #0b6e63;
    /* Add this line for border */
    padding: 60px 20px 30px;
    position: relative;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.card:hover {
    transform: translateY(-10px) rotateZ(-1deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent);
    /* Border color changes on hover */
}

/* Icon circle */
.card-icon {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 36px;
    width: 70px;
    height: 70px;
    background: var(--accent, #0b6e63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Card text */
.card-title {
    font-size: 20px;
    font-weight: 600;
    margin-top: 50px;
    /* push below icon */
    margin-bottom: 12px;
    color: #2F2A63;
}

.card-text {
    font-size: 14px;
    color: #2F6FA1;
    line-height: 1.6;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
        /* Keep 2 per row even on small screens */
    }

    .card-text {
        font-size: 12px;
        color: #2F6FA1;
        line-height: 1.3;
    }

    .card-title {
        padding: 0px;
        font-size: 18px;
        font-weight: 600;
        color: #2F2A63;
        margin-top: -10px;
    }
}

/* <!-- why-section exit--> */




/* projects-section */

.projects-section {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}


.projects-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2F2A63;
    margin-bottom: 50px;
}

/* Grid layout */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* Project card */
.project-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s, box-shadow 0.4s;
    cursor: pointer;
}

/* Image container with overlay */
.card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.card-image .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2F6FA1;
    color: white;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.4s;
}

/* Card hover effects */
.project-card:hover img {
    transform: scale(1.1);
}

.project-card:hover .overlay {
    transform: translateY(0);
}

.project-card h3 {
    padding: 15px;
    font-size: 20px;
    margin: 0;
    color: #043052;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* projects-section exit*/



/* ngo-legal-details  */

.ngo-legal-modern {
    padding: 60px 20px;
    background: #f7f9f9;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #0b6e63;
    text-align: center;
    margin-bottom: 30px;
}


/* ---------- Legal Info ---------- */
.legal-info {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.legal-info .item {
    display: flex;
    justify-content: space-between;
    padding: 20px 25px;
    background: #fff;
    border-left: 4px solid #2F2A63;
    /* accent line */
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.legal-info .item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.legal-info .label {
    font-weight: 600;
    color: #2F6FA1;
}

.legal-info .value {
    font-weight: 500;
    color: #000000;
    text-align: right;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .legal-info .item {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
    }

    .legal-info .value {
        text-align: left;
        margin-top: 6px;
    }
}

/* ngo-legal-details exit */


/* ngo-cta */

.ngo-cta {
    padding: 70px 20px;
    background: #ffffff77;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.cta-container {
    max-width: 750px;
    margin: auto;
}

.cta-title {
    font-size: 30px;
    font-weight: 700;
    color: #2F2A63;
    margin-bottom: 12px;
    font-family: "Poppins", sans-serif;

}

.cta-subtitle {
    font-size: 16px;
    color: #2F6FA1;
    margin-bottom: 35px;
    line-height: 1.7;
}

/* ---------- Buttons ---------- */
.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cta-btn {
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
    border: 2px solid #2F2A63;
    color: #2F2A63;
}

/* Hover */
.cta-btn:hover {
    background: #2F2A63;
    color: #fff;
}

/* Highlight donate */
.cta-btn.donate {
    background: #2F2A63;
    color: #fff;
}

.cta-btn.donate:hover {
    border: 2px solid #2F6FA1;
    background: #2F6FA1;
}

/* ----------------- Responsive ----------------- */
@media (max-width: 600px) {
    .cta-title {
        font-size: 26px;
    }

    .cta-subtitle {
        font-size: 14px;
    }

    .cta-btn {
        font-size: 14px;
        padding: 10px 18px;
    }
}

/* ngo-cta exit*/


/* donation-section */

.ngo-donation-sec {
    padding: 50px 20px;
    background: #f5f7fb;
    font-family: "Poppins", sans-serif;
}

/* Container Box */
.ngo-donation-box {
    display: flex;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin: 25px auto;
    max-width: 1100px;
    overflow: hidden;
}

/* Each Side */
.ngo-item {
    flex: 1;
    padding: 30px 35px;
}

/* Divider */
.ngo-border {
    border-right: 1px solid #e2e2e2;
}

/* QR Image */
.ngo-qr-img {
    width: 180px;
    margin: auto;
    display: block;
}

.ngo-scan-text {
    text-align: center;
    margin-top: 10px;
    font-size: 15px;
    font-weight: 600;
}

/* Titles */
.ngo-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Text */
.ngo-text {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.5;
}

/* Cheque Name Bold */
.ngo-cheque-name {
    font-weight: 700;
    margin: 10px 0;
    font-size: 16px;
}

/* List */
.ngo-list {
    padding-left: 15px;
}

.ngo-list li {
    margin-bottom: 8px;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .ngo-donation-box {
        flex-direction: column;
    }

    .ngo-border {
        border-right: none;
        border-bottom: 1px solid #e2e2e2;
    }

    .ngo-item {
        padding: 20px;
    }
}

/* donation-section exit*/




/* <!-- linkage-section --> */

.linkage-section {
    text-align: center;
    padding: 40px 20px;
    background-color: rgba(245, 245, 245, 0.548);
}

.linkage-title {
    color: #2F2A63;
    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-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

/* SAME HEIGHT FOR BOTH SIDES */
.left-contact-box,
.right-contact-box {
    background: #f5f5f5;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

/* LEFT SIDE TITLE */
.left-title,
.right-title {
    background: #001f49;
    color: white;
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* GRID FOR LEFT BOXES */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* LEFT INFO BOX */
.info-box {
    background: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    height: 160px;
    /* SAME HEIGHT */
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.info-box .icon {
    font-size: 26px;
    margin-bottom: -5px;
}

.info-box h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

/* FORM */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.two-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

input,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #bbb;
    border-radius: 6px;
    font-size: 15px;
}

textarea {
    height: 100px;
    resize: none;
}

/* SUBMIT BUTTON */
.submit-btn {
    background: #001f49;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    width: 150px;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #003b8a;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .two-fields {
        grid-template-columns: 1fr;
    }
}

/*  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 start*/
.footer {
    background: #240246;
    color: #ffffff;
    padding-top: 50px;
    font-family: 'Poppins', sans-serif;
}

.footer .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.dkst-social-icons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.dkst-icon {
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s ease;
}

/* Hover effect */
.dkst-icon:hover {
    background: #f15a24;
    color: #ffffff;
    border-color: #f15a24;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-top img {
    width: 130px;
    height: 90px;
    margin-bottom: 10px;
}

.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;
}


/* Footer Bottom */
.footer-bottom {
    background: #000000;
    text-align: center;
    padding: 10px 5px;
    border-top: 1px 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;
    }
}