/* ===========================
   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: 16px;
    font-weight: 500;
    text-align: center;
}

.top-header .contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.top-header i {
    margin-right: 6px;
    color: #000000;
    font-size: 16px;
}

.top-header span {
    vertical-align: middle;
}

@media (max-width: 768px) {
    .top-header {
        font-size: 14px;
    }

    .top-header .contact-info {
        flex-direction: row-reverse;
        gap: 10px;
    }

    .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 */
}

.navbar-nav .nav-link {
    color: #E93F38 !important;
    margin: 0 8px;
    font-size: 18px;
    font-weight: 700;
    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-size: 18px;
    font-weight: 700;
}

.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 */

.GV-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    /* Desktop height */
    background-image: url("./Image/index/Coaching_Center3\ .webp");
    background-size: cover;
    /* Keeps aspect ratio */
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}


/* Overlay */
.GV-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Container */
.GV-hero-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Content */
.GV-hero-content {
    max-width: 580px;
    color: #013f72;
}

.GV-hero-content p {
    color: #000;
}

/* Heading */
.GV-hero-content h1 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
}

/* Sub-heading */
.GV-hero-content p {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 28px;
}

/* Buttons */
.GV-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.GV-btn {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease;
}

.GV-btn.primary {
    background: linear-gradient(90deg, #176CB1, #176CB1);
    color: #ffffff;
}

.GV-btn.primary:hover {
    transform: translateY(-2px);
}

.GV-btn.secondary {
    color: #ffffff;
    background: #000000;
}

.GV-btn.secondary:hover {
    background: #176CB1;
    color: #ffffff;
}

/* Visit Text */
.GV-hero-divider {
    width: 350px;
    text-align: center;
    margin: 25px 0;
    color: #000000;
    font-size: 14px;
    position: relative;
    letter-spacing: 1px;
}

.GV-hero-divider::before,
.GV-hero-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 25%;
    height: 1px;
    background: #868686;
}

.GV-hero-divider::before {
    left: 0;
}

.GV-hero-divider::after {
    right: 0;
}

/* Responsive */
@media (max-width: 480px) {
    .GV-hero-divider {
        width: 100%;
        font-size: 13px;
    }

}

/* ======================
   RESPONSIVE
   ====================== */

@media (max-width: 768px) {
    .GV-hero-content h1 {
        font-size: 34px;
    }


    .GV-hero-content p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .GV-hero-content h1 {
        font-size: 28px;
    }

    .GV-btn {
        width: 100%;
        text-align: center;
    }

}



/* HERO SECTION EXIT*/


/* < !--=====Exam Card=====--> */

/* --- Exam Card Section --- */
.exam-card-section {
    padding: 40px 70px;
    background-color: #fff;
}

.exam-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: space-between;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
}

.exam-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.12);
}

/* Left Image */
.exam-img img {
    width: 160px;
    border-radius: 10px;
}

/* Middle Content */
.exam-content {
    flex: 1;
}

.exam-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0C0C50;
    /* Dark Blue */
    margin-bottom: 10px;
}

.exam-content p {
    font-size: 15px;
    color: #000000;
    line-height: 1.5;
}

/* Right Button */
.exam-btn .enroll-btn {
    background: #1A0B80;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    white-space: nowrap;
}

/* Hover effect */
.exam-btn .enroll-btn:hover {
    background: #0d0066;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .exam-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .exam-img img {
        width: 200px;
    }

    .exam-btn {
        margin-top: 15px;
    }
}

/* < !--=====Exam Card Exit=====--> */

/* < !--=====pursuing-section=====--> */

/* ---------- Container ---------- */
.pk-section {
    padding: 56px 0;
    background: #fff;
}

.pk-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Header ---------- */
.pk-header {
    text-align: center;
    margin-bottom: 28px;
}

.pk-kicker {
    margin: 0;
    color: #7b7b7b;
    font-size: 14px;
}

.pk-title {
    margin: 6px 0 0;
    font-size: 34px;
    color: #24104d;
    font-weight: 800;
}

/* ---------- Tabs wrapper with rounded background ---------- */
.pk-tabs-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    padding: 8px;
}

/* Rounded background surrounding the tabs row */
.pk-tabs {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 8px;
    scroll-behavior: smooth;
    max-width: 920px;
    background: linear-gradient(180deg, rgba(246, 246, 249, 1) 0%, rgba(255, 255, 255, 1) 100%);
    border-radius: 40px;
    border: 1px solid rgba(37, 12, 91, 0.06);
    box-shadow: 0 6px 18px rgba(12, 10, 36, 0.03);
}

.pk-tabs::-webkit-scrollbar {
    height: 8px;
    display: none;
}

/* ---------- Individual tab styling ---------- */
.pk-tab {
    padding: 12px 26px;
    border-radius: 34px;
    background: transparent;
    border: none;
    color: #808080;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    flex: 0 0 auto;
    transition: all .18s ease;
    box-shadow: none;
}

/* inactive pill look (light grey pill inside the rounded background) */
.pk-tab:not(.active) {
    background: #efefef;
    color: #6f6f6f;
    padding: 14px 28px;
    border-radius: 34px;
    box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.7);
}

/* active tab */
.pk-tab.active {
    background: linear-gradient(90deg, #29104e, #351a85);
    color: #fff;
    padding: 14px 28px;
    border-radius: 34px;
    box-shadow: 0 10px 30px rgba(37, 12, 91, .12);
}

/* Focus/keyboard */
.pk-tab:focus {
    outline: 3px solid rgba(37, 99, 235, 0.12);
    outline-offset: 2px;
}

/* ---------- Info card ---------- */
.pk-info-card {
    background: #fff;
    border-radius: 18px;
    padding: 34px;
    margin: 10px 10px 40px;
    box-shadow: 0 12px 30px rgba(12, 10, 36, 0.06);
}

/* description */
.pk-desc {
    color: #000000;
    line-height: 1.8;
    text-align: center;
    margin: 0 0 20px;
    font-size: 15px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- badges ---------- */
.pk-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 12px;
}

.pk-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(42, 211, 191, 0.08);
    border-radius: 12px;
    padding: 8px 14px;
    font-weight: 600;
    color: #25314f;
    font-size: 14px;
    box-shadow: 0 4px 14px rgba(10, 10, 30, 0.03);
}

/* ---------- Responsive adjustments ---------- */
@media (max-width: 900px) {
    .pk-info-card {
        padding: 22px;
    }

    .pk-desc {
        font-size: 14px;
    }

    .pk-title {
        margin: 6px 0 0;
        font-size: 26px;
        color: #24104d;
        font-weight: 700;
    }
}

@media (max-width: 520px) {
    .pk-tab {
        padding: 10px 16px;
        font-size: 14px;
    }

    .pk-badge {
        padding: 7px 12px;
        font-size: 13px;
    }

    .pk-tabs {
        gap: 10px;
        padding: 6px;
    }
}

/* < !--=====pursuing-section EXIT=====--> */


/* <!-- exam-section --> */
/* ---------- Scoped container to prevent conflicts ---------- */
#examTabsWrap {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 8px 12px;
    box-sizing: border-box;
}

/* Tabs row: non-scrollable, centered */
#examTabs {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: visible !important;
    /* ensure no horizontal scroll */
    max-width: 1000px;
    box-sizing: border-box;
}

/* Use your existing .ex-tab rules if present — these are safe defaults */
.ex-tab {
    padding: 14px 26px;
    border-radius: 40px;
    background: #efefef;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: #777;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    flex: 0 0 auto;
    outline: none;
}

/* Hover & focus */
.ex-tab:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(18, 22, 45, 0.06);
}

.ex-tab:focus {
    box-shadow: 0 0 0 4px rgba(45, 15, 142, 0.12);
}

/* Active tab look (matches your previous style) */
.ex-tab.active {
    background: #2d0f8e;
    color: #fff;
    box-shadow: 0px 6px 20px rgba(45, 15, 142, .28);
}

/* Arrow button (if you add later) - scoped and safe */
#examTabsWrap .ex-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: #f3f3f3;
    cursor: pointer;
    font-size: 18px;
    color: #444;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
}

/* ---------- Card grid (keeps your original look & breakpoints) ---------- */
.ex-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    padding: 0 100px;
    box-sizing: border-box;
}

/* responsive */
@media (max-width: 900px) {
    .ex-card-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 36px;
    }
}

@media (max-width: 600px) {
    .ex-card-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 16px;
    }
}

/* Card style (your original design) */
.ex-card {
    background: #fff;
    border-radius: 22px;
    padding: 28px 18px;
    text-align: center;
    box-shadow: 0 3px 14px rgba(0, 0, 0, .08);
    transition: transform .25s, box-shadow .25s;
    cursor: pointer;
}

.ex-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
}

.ex-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 12px;
}

.ex-card h4 {
    font-size: 16px;
    margin-top: 4px;
    font-weight: 700;
    color: #1a1a1a;
}

/* Empty state message when no tab selected or no items */
#examCards .ex-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: #777;
    font-size: 15px;
    padding: 24px 12px;
}


/* ---------- Responsive: examTabsWrap only ---------- */

/* Tablet */
@media (max-width: 768px) {
    #examTabsWrap {
        padding: 6px 10px;
    }

    #examTabs {
        gap: 10px;
        flex-wrap: wrap;
        /* allow tabs to move to next line */
        justify-content: center;
        max-width: 100%;
    }

    .ex-tab {
        padding: 10px 18px;
        font-size: 14px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    #examTabsWrap {
        padding: 6px 6px;
    }

    #examTabs {
        gap: 8px;
        flex-wrap: wrap;
        /* wrap tabs */
    }

    .ex-tab {
        padding: 8px 14px;
        font-size: 13px;
        border-radius: 30px;
    }
}

/* Very small screens (safe fallback) */
@media (max-width: 360px) {
    #examTabs {
        overflow-x: auto !important;
        /* scroll only if needed */
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
    }

    .exam-section h2 {
        font-size: 26px;
        margin-top: 6px;
        color: #1a0b49;
        font-weight: 700;
    }
}


/* <!-- exam-section exit--> */


/* <!-- 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: #13085b;
    width: 90%;
    border-radius: 50px;
    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 {
    width: 70px;
    margin-bottom: 20px;
}

.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*/



/* testimonials-section */
.testimonials-section {
    background: #f1ecff;
    padding: 80px 0;
    text-align: center;
}

.testimonials-subtitle {
    color: #777;
    font-size: 16px;
    margin-bottom: 8px;
}

.testimonials-title {
    font-size: 36px;
    font-weight: 700;
    color: #140a5c;
    margin-bottom: 40px;
}

.testimonials-container {
    width: 90%;
    max-width: 800px;
    margin: auto;
}

/* Accordion */
.testimonial-accordion .item {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.item-header {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: #fff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #140a5c;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-header .arrow {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.item-content {
    max-height: 0;
    overflow: hidden;
    background: #fafafb;
    padding: 0 20px;
    transition: max-height 0.35s ease;
}

.item-content p {
    padding: 20px 0;
    color: #444;
    font-size: 16px;
}

/* Opened */
.item.active .item-content {
    max-height: 300px;
}

.item.active .arrow {
    transform: rotate(45deg);
}

@media (max-width: 900px) {
    .testimonials-title {
        font-size: 26px;
        font-weight: 700;
        color: #140a5c;
        margin-bottom: 40px;
    }
}


/* testimonials-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*/





/* ===== Breadcrumb Section ===== */
.breadcrumb-section {
    position: relative;
    text-align: center;
    font-family: "Poppins", sans-serif;
    /* background-color: #e8d18b; */
    /* background-color: #EBD998; */
    /* background: linear-gradient(to right, #FFC50F, #609dd3); */
    /* background: linear-gradient(to right, #EBD998, #609dd3); */
    /* background-color: #FFC50F; */
    background-color: #1975BF;
    padding: 60px 0;
    overflow: hidden;
}

.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.075);
    z-index: 1;
}

.breadcrumb-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

.breadcrumb-inner h1 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

/* Breadcrumb list container */
.breadcrumb-list {
    display: inline-flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 12px 20px;
    margin: 0;
    border-radius: 50px;
    /* background: rgba(0, 0, 0, 0.10); */
    background-color: #ffffff;
    backdrop-filter: blur(6px);
    font-size: 16px;
}

/* Breadcrumb items */
.breadcrumb-list li {
    color: #000000;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.breadcrumb-list li a {
    color: #000000;
    text-decoration: none;
    position: relative;
}

.breadcrumb-list li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #000000;
    left: 0;
    bottom: -2px;
    transition: width 0.3s ease;
}

.breadcrumb-list li a:hover::after {
    width: 100%;
}

/* Arrow separator styling */
.breadcrumb-list li.separator {
    margin: 0 8px;
    font-size: 18px;
    color: #000000;
    font-weight: 600;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .breadcrumb-inner h1 {
        font-size: 2rem;
    }

    .breadcrumb-list {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .breadcrumb-inner h1 {
        font-size: 2rem;
    }

    .breadcrumb-list {
        padding: 8px 12px;
        gap: 4px;
    }
}

/* ===== 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;
    }
}




/* about-us */
.about-section {
    padding: 40px 20px;
}


.about-section h2 {
    color: #000000;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.about-section p {
    font-size: 15px;
    color: #000000;
    margin-bottom: 15px;
    text-align: left;
}

.about-section ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.about-section ul li i {
    font-size: 18px;
}

.about-section img {
    max-width: 490px;
    height: 490px;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {

    .about-section h2 {
        color: #000000;
        font-size: 1.3rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 30px;
    }

    .about-section p {
        font-size: 14px;
        font-weight: 300;
        color: #000000;
        text-align: left;
    }


    .about-section {
        text-align: center;
    }

    .about-section .col-lg-6 {
        text-align: center !important;
    }

    @media (max-width: 600px) {
        .about-section img {
            max-width: 350px;
            height: 350px;
        }
    }

}

/* about-us exit*/


/* Why Choose Us  */

.why-choose-section {
    background-color: #fff;
}

.h2 {
    font-weight: Bold;
}

/* Card Hover Effect */
.why-grid .card {
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.why-grid .card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 10px 28px rgba(0, 0, 0, 0.18);
}


@media (max-width: 767.98px) {
    .why-choose-section {
        padding: 30px 12px;
    }

    .why-choose .main-title {
        font-size: 22px;
    }

    .why-choose .desc {
        font-size: 14px;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .why-grid .card {
        padding: 14px;
        border-radius: 10px;
    }

    .icon-box {
        width: 46px;
        height: 46px;
        font-size: 22px;
    }

    .why-grid h5 {
        font-size: 16px;
    }

    .why-grid p {
        font-size: 13px;
        line-height: 1.45;
    }

    /* slightly reduce gaps in grid */
    .why-grid.row {
        gap: 12px;
    }
}

/* Medium screens (tablets) - keep 2 columns or fluid */
@media (min-width: 768px) and (max-width: 991.98px) {
    .why-choose-section {
        padding: 40px 18px;
    }

    .why-choose .main-title {
        font-size: 26px;
    }

    .why-choose .desc {
        font-size: 15px;
        max-width: 520px;
        margin-bottom: 28px;
    }

    .why-grid .card {
        padding: 16px;
    }

    .icon-box {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .why-grid h5 {
        font-size: 17px;
    }

    .why-grid p {
        font-size: 14px;
    }
}

/* Large screens (desktop) */
@media (min-width: 992px) {
    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose .main-title {
        font-size: 32px;
    }

    .why-choose .desc {
        font-size: 16px;
        max-width: 600px;
        margin-bottom: 40px;
    }

    .why-grid .card {
        padding: 20px;
    }

    .icon-box {
        width: 55px;
        height: 55px;
        font-size: 28px;
    }

    .why-grid h5 {
        font-size: 18px;
    }

    .why-grid p {
        font-size: 14px;
    }
}

/* Optional: small visual polish for very small screens (narrow landscape) */
@media (max-width: 420px) {
    .why-choose .desc {
        padding-left: 6px;
        padding-right: 6px;
    }

    .why-grid .card {
        padding: 12px;
    }

    .icon-box {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
}

/* Why Choose Us exit */





/* <!-- course-section --> */

#course-section {
    padding: 50px 20px;
    background: #f7f9fc;
    font-family: Arial, sans-serif;
}

/* Section Title */
#course-section .course-header {
    text-align: center;
    margin-bottom: 30px;
}

#course-section .course-title {
    font-size: 40px;
    font-weight: 800;
    color: #176CB0;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

#course-section .course-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 140px;
    height: 5px;
    background: #176CB0;
    border-radius: 4px;
}



#course-section .course-sub {
    font-size: 15px;
    color: #000000;
}



/* GRID LAYOUT */
#course-section .container {
    max-width: 1100px;
    margin: 0 auto;
}

#course-section .cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Mobile = 1 card */
    gap: 25px;
}

/* Desktop = 2 cards */
@media (min-width: 900px) {
    #course-section .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* CARD STYLE */
#course-section .card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

/* Hover Effect */
#course-section .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}


/* CARD IMAGE (IMG TAG)  */
#course-section .card-media {
    position: relative;
    width: 100%;
    height: 200px;
    /* Adjust height if needed */
    overflow: hidden;
    border-radius: 12px;
}

#course-section .card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Makes image cover the box */
    display: block;
    border-radius: 12px;
    transition: 0.3s ease;
}

/* Image zoom on hover */
#course-section .card:hover .card-media img {
    transform: scale(1.05);
}


/* COLOR OVERLAY  */
.media-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 50px;
    width: 100%;
    opacity: 0.9;
    border-radius: 0 0 12px 12px;
}




/* CARD CONTENT */
#course-section .card-body {
    padding: 18px;
}

#course-section .card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #111;
}

#course-section .card-meta {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
}

#course-section .card-excerpt {
    font-size: 14px;
    line-height: 1.45;
    color: #444;
    margin-bottom: 12px;
}


/* CARD FOOTER */
#course-section .card-bottom {
    background: #f1f1f1;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#course-section .card-pill {
    color: #176CB0;
    font-weight: 700;
    text-decoration: none;
}

#course-section .card-link {
    background: #176CB0;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}


/* <!-- course-section 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);
    }
}




/*  Contact Section  */
.contact-section {
    background: #fff;
    /* keep site background consistent */
    color: #222;
    position: relative;
    z-index: 1;
    padding-top: 3rem;
    /* py-5 already adds space, these are safe */
    padding-bottom: 3rem;
    font-family: inherit;
}

/* Info boxes row (top) */
.contact-section .info-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 22px 18px;
    transition: transform .25s ease, box-shadow .25s ease;
    box-shadow: 0 6px 20px rgba(8, 15, 40, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

/* Icon */
.contact-section .info-box i {
    font-size: 34px;
    color: #ff4c57;
    /* accent color - change if needed */
    background: rgba(255, 76, 87, 0.08);
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Title inside info box */
.contact-section .info-box h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

/* Description / details */
.contact-section .info-box p {
    margin: 6px 0 0;
    color: #555;
    font-size: 14px;
    line-height: 1.45;
    word-break: break-word;
    text-align: center;
}

/* Hover effect for info boxes */
.contact-section .info-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(8, 15, 40, 0.07);
}

/* Map container styling */
.contact-section .map-container {
    width: 100%;
    margin-top: 18px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(8, 15, 40, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

/* make iframe responsive and accessible */
.contact-section .map-container iframe {
    width: 100%;
    height: 420px;
    /* desktop height */
    border: 0;
    display: block;
}

/* Smaller devices — reduce heights and spacing */
@media (max-width: 991.98px) {
    .contact-section .info-box {
        min-height: 140px;
        padding: 18px;
    }

    .contact-section .info-box i {
        font-size: 30px;
        padding: 10px;
    }

    .contact-section .map-container iframe {
        height: 360px;
    }
}

/* Phones */
@media (max-width: 575.98px) {
    .contact-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .contact-section .info-box {
        padding: 14px;
        min-height: 120px;
        text-align: center;
    }

    .contact-section .info-box h4 {
        font-size: 16px;
    }

    .contact-section .info-box p {
        font-size: 13px;
    }

    .contact-section .map-container iframe {
        height: 260px;
        /* reduce map height for very small screens */
    }
}

/* Utility: ensure icons and text do not overflow on very long addresses */
.contact-section .info-box p {
    max-width: 100%;
}

/* Optional small accessibility improvement: focus outline for interactive states */
.contact-section .info-box:focus {
    outline: 2px solid rgba(8, 15, 40, 0.06);
    outline-offset: 4px;
}

/*  Contact Section exit */



/* Contact Popup Section */

.contact-popup {
    display: none;              /* 🔴 IMPORTANT */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9999;

    /* Centering */
    align-items: center;
    justify-content: center;
}

.popup-box {
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 360px;
    width: 90%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.popup-box p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
}

.popup-box button {
    padding: 8px 22px;
    border: none;
    border-radius: 6px;
    background: #176CB0;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}



/* Conatct Popup Section Exit */





/* register */

.reg-section {
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* Form card */
.reg-card {
    width: 100%;
    max-width: 880px;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(8, 15, 40, 0.06);
    box-sizing: border-box;
}

/* Title & subtitle */
.reg-title {
    margin: 0 0 8px 0;
    font-size: 28px;
    color: #140a5c;
}

.reg-sub {
    margin: 0 0 22px 0;
    font-size: 15px;
    color: #666;
}

/* Form grid layout */
.reg-form .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px 20px;
}

/* Field wrapper */
.field {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* Full width field */
.field.fullwidth {
    grid-column: 1 / -1;
}

/* Labels */
.label-text {
    font-weight: 600;
    font-size: 14px;
    color: #222;
    margin-bottom: 6px;
}

/* Inputs, selects, textarea */
.reg-form input,
.reg-form select,
.reg-form textarea {
    border: 1px solid #e6e9ef;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
    background: #fff;
    color: #111;
    outline: none;
    transition: 0.2s ease;
    box-sizing: border-box;
}

/* Focus state */
.reg-form input:focus,
.reg-form select:focus,
.reg-form textarea:focus {
    border-color: #140a5c;
    box-shadow: 0 6px 20px rgba(20, 10, 92, 0.08);
}

/* Error style */
.invalid {
    border-color: #d62828 !important;
    box-shadow: 0 6px 20px rgba(214, 40, 40, 0.08) !important;
}

/* Error message below field */
.error {
    margin-top: 6px;
    font-size: 12px;
    color: #c30909;
    min-height: 16px;
}

/* Submit button row */
.form-actions {
    text-align: center;
    margin-top: 20px;
}

/* Submit button */
.btn-submit {
    background: #140a5c;
    padding: 12px 20px;
    width: 240px;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.25s ease;
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(20, 10, 92, 0.15);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsiveness */
@media (max-width: 700px) {
    .reg-card {
        padding: 22px;
    }

    .btn-submit {
        width: 100%;
    }

    .reg-title {
        font-size: 24px;
    }
}

@media (max-width: 450px) {
    .reg-card {
        padding: 18px;
        border-radius: 10px;
    }

    .label-text {
        font-size: 13px;
    }

    .reg-sub {
        font-size: 13px;
    }
}

/* register exit */




/* login exit */

.login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px 16px;
    box-sizing: border-box;
}

/* Card */
.login-card {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 12px;
    padding: 26px;
    box-shadow: 0 12px 30px rgba(8, 15, 40, 0.06);
    box-sizing: border-box;
}

/* Title & subtitle */
.login-title {
    margin: 0 0 6px 0;
    color: #140a5c;
    font-size: 22px;
}

.login-sub {
    margin: 0 0 18px 0;
    color: #666;
    font-size: 14px;
}

/* Form field */
.login-field {
    display: block;
    margin-bottom: 14px;
}

.label-text {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 14px;
}

/* Inputs */
.login-form input[type="email"],
.login-form input[type="password"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e6e9ef;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    box-sizing: border-box;
    transition: 0.12s ease;
}

.login-form input:focus {
    outline: none;
    border-color: #140a5c;
    box-shadow: 0 6px 20px rgba(20, 10, 92, 0.06);
}

/* Password row (input + toggle) */
.password-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.password-row input {
    flex: 1 1 auto;
}

.pwd-toggle {
    background: transparent;
    border: 1px solid #e6e9ef;
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    color: #140a5c;
    transition: 0.12s ease;
}

.pwd-toggle:hover {
    background: rgba(20, 10, 92, 0.03);
}

/* Error */
.error {
    display: block;
    color: #c62828;
    font-size: 13px;
    margin-top: 6px;
    min-height: 16px;
}

/* invalid input style */
.invalid {
    border-color: #d62828 !important;
    box-shadow: 0 6px 20px rgba(214, 40, 40, 0.06) !important;
}

/* Actions */
.login-actions {
    margin-top: 12px;
    text-align: center;
}

.btn-login {
    width: 100%;
    padding: 11px 14px;
    background: #140a5c;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: transform .12s ease, box-shadow .12s ease;
}

.btn-login:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(20, 10, 92, 0.12);
}

/* 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 */





/* GV_Contact_section */

.GV-Contact-Section {
    padding: 40px 20px;
    background: #f9f9f9;
}

/* Card wrapper */
.GV-Contact-Section .contact-card {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

/* Heading & Subheading */
.GV-Contact-Section .contact-title {
    font-size: 28px;
    color: #176CB0;
    margin-bottom: 8px;
}



.GV-Contact-Section .contact-sub {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
}

/* Boxes container */
.GV-Contact-Section .contact-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Individual Box */
.GV-Contact-Section .contact-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(8, 15, 40, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Box Heading */
.GV-Contact-Section .contact-box h2 {
    margin-bottom: 12px;
    font-size: 24px;
    font-weight: bold;
    color: #176CB0;
}

.contact-box p {
    color: #000;
}

/* Box Links */
.GV-Contact-Section .contact-box a {
    color: #176CB0;
    text-decoration: underline;
}

/* GV_Contact_section Exit */




/* GV-TwoBranches-Section */

.GV-TwoBranches-Section {
    padding: 50px 20px;
    background: #ffffff;
}

.GV-TwoBranches-Section .branches-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Card Wrapper */
.GV-TwoBranches-Section .branch-left,
.GV-TwoBranches-Section .branch-right {
    width: 100%;
}

/* Card Box */
.GV-TwoBranches-Section .company-box {
    background: #ffffff;
    padding: 28px 25px;
    border-radius: 16px;
    border: 1px solid #e6e6e6;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

/* Hover Effect */
.GV-TwoBranches-Section .company-box:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);
    transform: translateY(-5px);
}

/* Titles */
.GV-TwoBranches-Section .branch-title {
    font-size: 24px;
    font-weight: 700;
    color: #176CB0;
    margin-bottom: 5px;
}

.GV-TwoBranches-Section .branch-sub {
    font-size: 14px;
    color: #000000;
    margin-bottom: 18px;
}

/* Details */
.GV-TwoBranches-Section .company-details p {
    font-size: 14px;
    color: #000000;
    margin-bottom: 10px;
}

.GV-TwoBranches-Section .company-details a {
    color: #176CB0;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.GV-TwoBranches-Section .company-details a:hover {
    text-decoration: underline;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
    .GV-TwoBranches-Section .branches-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .GV-TwoBranches-Section .company-box {
        padding: 22px 20px;
    }

    .GV-TwoBranches-Section .branch-title {
        font-size: 22px;
    }
}

/* GV-TwoBranches-Section Exit */



/* GV-map-section */
.GV-map-section {
    width: 100%;
    background: #fafaff;
    text-align: center;
}

/* Heading */
.GV-map-section .map-title {
    font-size: 32px;
    font-weight: 800;
    color: #176CB0;
    margin-bottom: 10px;
}

.GV-map-section .map-subtitle {
    font-size: 16px;
    color: #000000;
    margin-bottom: 25px;
}

/* Full Width Map Box */
.GV-map-section .map-fullbox {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.GV-map-section .map-fullbox iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .GV-map-section .map-title {
        font-size: 26px;
    }

    .GV-map-section .map-fullbox {
        height: 300px;
    }
}

/* GV-map-section Exit */




/* GV-Courses-inner-section */

.GV-Courses-inner-section.gv-container {
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
    color: #222;
    line-height: 1.6;
    padding: 30px;
    background: #fdfdfd;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.gv-inner {
    max-width: 980px;
    margin: 0 auto;
}

/* Headings */
.GV-Courses-inner-section h1 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #176CB0;
    text-align: center;
    transition: color 0.3s;
}

.GV-Courses-inner-section h1:hover {
    color: #0b47a1;
}

.GV-Courses-inner-section h2 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #000000;
    position: relative;
}

.GV-Courses-inner-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #176CB0;
    margin-top: 4px;
    border-radius: 2px;
}

.GV-Courses-inner-section h3,
.GV-Courses-inner-section h4 {
    font-size: 16px;
    margin-top: 16px;
    margin-bottom: 8px;
    color: #000000;
}

/* Article blocks */
.gv-block {
    margin-bottom: 22px;
    padding: 18px 20px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e6e6e6;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gv-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Tables */
.gv-table {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0 16px 0;
    font-size: 14px;
    transition: all 0.3s;
}

.gv-table th,
.gv-table td {
    border: 1px solid #e6e6e6;
    padding: 10px 12px;
    text-align: left;
    transition: background 0.3s;
}

.gv-table thead th {
    background: #e8f0fe;
    font-weight: 600;
}

.gv-table tbody tr:hover td {
    background: #f1f8ff;
}

.gv-table .gv-total td {
    background: #f9f9f9;
    font-weight: 700;
}

/* Bullets and lists */
.gv-bullets {
    list-style: none;
    padding-left: 0;
    margin-bottom: 12px;
}



/* Ordered steps */
.gv-steps {
    padding-left: 1.2rem;
    margin-bottom: 12px;
}

/* Links */
.gv-link {
    color: #1a73e8;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
}

.gv-link:hover {
    color: #0b47a1;
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 640px) {
    .GV-Courses-inner-section.gv-container {
        padding: 20px;
    }

    .GV-Courses-inner-section h1 {
        font-size: 22px;
    }

    .GV-Courses-inner-section h2 {
        font-size: 18px;
    }

    .gv-table th,
    .gv-table td {
        font-size: 13px;
        padding: 7px;
    }
}

/* GV-Courses-inner-section 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;
    }
}