html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* ── TOP BAR ── */
.ed-header-wrapper {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.ed-top-bar {
    background-color: #1a4b84;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 40px;
}

@media (min-width: 992px) {
    .ed-top-bar::before {
        content: "";
        position: absolute;
        left: -4%;
        top: 0;
        width: 25%;
        height: 100%;
        background-color: #fff;
        transform: skewX(50deg);
        transform-origin: top right;
        z-index: 1;
    }
}

.ed-top-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ed-top-links li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 18px;
    letter-spacing: 0.4px;
    transition: color 0.2s;
}

.ed-top-links li a:hover {
    color: #f5c518;
}

.ed-top-links li a i {
    font-size: 13px;
    color: #f5c518;
}


/* ── MAIN HEADER ── */
.ed-main-nav {
    /* padding: 10px 0; */
    background-color: #fff;
    border-bottom: 2px solid #e8e8e8;
}

.ed-logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.ed-logo-img {
    height: 100px;
    width: auto;
}

.ed-brand-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a4b84;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ── NAV LINKS ── */
.ed-menu-list .nav-link {
    color: var(--ak-text-gray);
    font-weight: 600;
    font-size: 13.5px;
    padding: 16px 10px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition: color 0.2s;
    position: relative;
    display: inline-block;
}

.ed-menu-list .nav-link:hover {
    color: #1a4b84;
}

.ed-menu-list .nav-link.active {
    color: #f32b2b !important;
    border-bottom: 2px solid #f32b2b;
}

/* ── LIVE CHAT BUTTON ── */
.ed-btn-live-chat {
    background-color: #e89e3b;
    color: #ffffff !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    padding: 14px 34px !important;
    /* border-radius: 4px; */
    text-transform: uppercase;
    transform: skewX(-8deg) !important;
    letter-spacing: 0.5px;
    transition: background 0.2s !important;
    white-space: nowrap;
    text-decoration: none;
}

.ed-btn-live-chat:hover {
    background-color: #1a4b84 !important;
    color: #fff !important;
    font-weight: 700 !important;
}

/* ── MOBILE ── */
@media (max-width: 991px) {
    .ed-top-bar {
        display: none;
    }

    .ed-menu-list .nav-link {
        padding: 10px 0;
    }

    .ed-menu-list .nav-item {
        width: 100%;
        text-align: center;
    }

    .navbar-collapse {
        padding: 15px 0;
    }

    .ed-btn-live-chat {
        margin-top: 10px;
    }
}


/* ── HERO SECTION ── */
.ed-hero-sec {
    position: relative;
    width: 100%;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #1a1008;
}

/* ✅ BG Image — apna src yahan lagao */
.ed-hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    object-position: center right;
    z-index: 1;
    opacity: 0.55;
}


.ed-hero-container {
    position: relative;
    z-index: 3;
    padding: 80px 0;
}

/* ── TEXT ── */
.ed-hero-subtitle {
    color: #e89e3b;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.ed-hero-title {
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.ed-hero-text {
    color: #ffffff;
    font-size: 14.5px;
    line-height: 1.75;
    margin-bottom: 35px;
    max-width: 460px;
}

/* ── BUTTONS ── */
.ed-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.ed-btn {
    display: inline-block;
    padding: 13px 36px;
    font-weight: 700;
    transform: skewX(-8deg);
    font-size: 14px;
    border: none;
    border-radius: 0;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.3s ease;
    border: 2px solid transparent;
}

.ed-btn-blue {
    background-color: #1a4b84;
    color: #fff;
    border-color: #1a4b84;
}

.ed-btn-blue:hover {
    background-color: transparent;
    color: #ffffff;
    border-color: #1a4b84;
}

.ed-btn-gold {
    background-color: #e89e3b;
    color: #fff;
    border-color: #e89e3b;
}

.ed-btn-gold:hover {
    background-color: transparent;
    color: #ffffff;
    border-color: #e89e3b;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .ed-hero-title {
        font-size: 32px;
    }

    .ed-hero-subtitle {
        font-size: 18px;
    }

    .ed-hero-container {
        padding: 60px 0;
        text-align: center;
    }

    .ed-hero-overlay {
        width: 100%;
    }

    .ed-hero-text {
        margin: 0 auto 30px;
    }

    .ed-hero-btns {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .ed-hero-title {
        font-size: 26px;
    }

    .ed-hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .ed-btn {
        width: 200px;
        text-align: center;
    }
}


/* consult-section container */
.consult-section {
    padding: 30px 0;
    text-align: center;
}

.main-heading {
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* Input Styles with Slant Effect */
.custom-input {
    border: 2px solid #e89e3b;
    transform: skewX(-5deg);
    height: 50px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.custom-input input {
    border: none;
    width: 100%;
    height: 100%;
    padding: 0 15px;
    outline: none;
    background: transparent;
    font-weight: bold;
    color: #888;

    transform: skewX(5deg);
    /* correct direction fix */
}

/* Button Style */
.signup-btn {
    background-color: #e89e3b;
    color: white;
    border: none;
    height: 50px;
    width: 100%;
    transform: skewX(-8deg);
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
}


.signup-btn:hover {
    background-color: #1a4b84;
}

/* Smooth Logo Carousel */
.logo-slider {
    /* margin-top: 50px; */
    overflow: hidden;
    padding: 20px 0;
}

.logo-track {
    display: flex;
    width: calc(250px * 12);
    animation: scroll 20s linear infinite;
}

.logo-item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.logo-item img {
    max-width: 180px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 6));
    }
}

/* 🔹 SECTION */
.ed-section {
    padding: 30px 0;
}

/* 🔹 IMAGE */
.ed-img {
    max-width: 600px;
    width: 100%;
    height: auto;
}

/* 🔹 TEXT */
.ed-title {
    font-weight: 700;
    font-size: 34px;
    color: #1e2a38;
    line-height: 1.3;
    margin-bottom: 20px;
}

.ed-desc {
    color: #111111;
    font-size: 18px;
    line-height: 1.7;
}

/* 🔹 BUTTON */
.ed-btn-expert {
    margin-top: 15px;
    background: #e89e3b;
    color: #fff;
    font-weight: 600;
    padding: 10px 25px;
    border: none;
    transform: skewX(-8deg);
    border-radius: 0;
}

.ed-btn-expert:hover {
    background: #1a4a8d;
    color: #fff;
}

/* 🔹 RESPONSIVE */
@media (max-width: 992px) {

    .ed-title {
        font-size: 26px;
    }

    .ed-section {
        text-align: center;
    }
}


/* subjects-section */
.subjects-section {
    padding: 30px 0;
    background-color: #ffffff;
}

.main-title {
    color: #000000;
    padding: 0 8%;
    font-size: 2.5rem;
}


.subjects-section-para {
    font-size: 16px;
    color: #000;
}

.subject-card {
    background-color: #f2f1ef;
    /* display: flex; */
    height: 100%;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: left;
    transition: all 0.3s ease;
    border-radius: 0px;
}


.card-content {
    width: 100%;
}


.custom-card-heading {
    font-family: "Oswald", sans-serif;
    font-size: 1.6rem;
    color: #0b132b;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.2;
}

/* Card Description */
.card-desc {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 0;
    /* display: -webkit-box; */
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.subject-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background-color: #1a4b84;
}

.subject-card:hover .custom-card-heading {
    color: #ffffff;
}

.subject-card:hover .card-desc {
    color: #ffffff;
}


/* Responsive Fix for Mobile */
@media (max-width: 768px) {
    .main-title {
        font-size: 1.8rem;
    }

    .subject-card {
        aspect-ratio: auto;
        min-height: 350px;
        padding: 25px;
    }

    .custom-card-heading {
        font-size: 1.3rem;
    }
}

/* ══════════════════════════════
       SECTION
    ══════════════════════════════ */
.ak-edlevel-sec {
    background: #1a4b84;
    background: url('../img/pay-someone-bg.png') no-repeat center/cover;
    padding: 40px 0;
    color: #fff;
    position: relative;
}

/* ══════════════════════════════
       HEADINGS
    ══════════════════════════════ */
.ak-edlevel-main-title {
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.35;
    margin-bottom: 18px;
    color: #fff;
}

.ak-edlevel-desc {
    max-width: 820px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.88;
    color: #fdfdfd;
}

.ak-edlevel-sub-title {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.35;
    margin: 55px 0 30px;
    color: #fff;
}

/* ══════════════════════════════
       SWIPER WRAPPER
    ══════════════════════════════ */
.ak-swiper-wrap {
    position: relative;
    padding: 0 55px;
}


.ak-top-card {
    background: #fff;
    color: #333;
    padding: 35px 30px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.ak-top-card .ak-card-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.ak-top-card .ak-top-card-heading {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    color: #080808;
    margin: 0;
}

.ak-top-card p {
    font-size: 18px;
    line-height: 1.75;
    color: #1b1b1b;
    margin: 0;
}

/* inline triangle arrows — inside top card */
.ak-inline-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 4px;
}

.ak-tri-btn {
    background-color: #e89e3b;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: background 0.3s;
}

.ak-tri-btn:hover {
    background-color: #1a4b84;
}

.ak-tri-left {
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-right: 11px solid #fff;
}

/* White triangle RIGHT */
.ak-tri-right {
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 11px solid #fff;
}


.ak-bottom-slide-wrap {
    padding-bottom: 22px;
}

/* 🔥 Equal height + flex fix */
.ak-bottom-card {
    background: #fff;
    text-align: center;
    height: 20rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 22px 20px;
    position: relative;
}

/* heading same */
.ak-bottom-card .ak-bottom-card-heading {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    color: #030303;
    margin-bottom: 12px;
}

/* content grow kare */
.ak-bottom-card p {
    font-size: 18px;
    line-height: 1.7;
    color: #1b1b1b;
    margin-bottom: 24px;
    flex-grow: 1;
}

/* 🔥 Button always same line bottom */
.ak-bottom-card .ak-card-btn {
    display: inline-block;
    background: #e89e3b;
    padding: 11px 26px;
    color: #fff;
    transform: skewX(-8deg);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: background 0.3s;
    margin-top: auto;
    margin-bottom: -34px;
}

.ak-bottom-card .ak-card-btn:hover {
    border: 2px solid #e89e3b;
    background: none;
    color: #e89e3b;
}

.ak-arrow-tri {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    background-color: #e89e3b;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.ak-arrow-tri:hover {
    background-color: #000000;
}

.ak-prev-bottom-tri {
    left: 6px;
}

.ak-prev-bottom-tri::after {
    content: "";
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-right: 11px solid #fff;
}

.ak-next-bottom-tri {
    right: 6px;
}

.ak-next-bottom-tri::after {
    content: "";
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 11px solid #fff;
}

/* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */
@media (max-width: 768px) {
    .ak-arrow-tri {
        display: none;
    }

    .ak-swiper-wrap {
        padding: 0;
    }

    .ak-edlevel-main-title {
        font-size: 20px;
    }

    .ak-edlevel-sub-title {
        font-size: 18px;
    }
}


.services-section {
    padding: 40px 0;
    background-color: #fff;
}

.section-title {
    font-weight: 700;
    padding: 0 8%;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a1a;
}

.section-subtitle {
    color: #020202;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

/* Card Styling */
.custom-card {
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #ededed !important;
    padding: 40px 25px;
    height: 32rem;
    text-align: left;
    background: #ffffff;
}

.custom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.icon-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 10px;
}

.card-title {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 10px;
    color: #222;
}

.card-text {
    color: #111111;
    font-size: 18px;
    line-height: 1.6;
}

/* Swiper / Pagination Styling */
.swiper {
    padding-bottom: 60px !important;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #d1d1d1;
    opacity: 1;
    margin: 0 6px !important;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #f39c12 !important;
    /* Orange Theme */
    width: 35px;
    /* Pill Shape */
    border-radius: 20px;
}


.assignment-section {
    padding: 40px 0;
    color: #333;
    background-image: url('../img/complete-bg.png');
    background-size: cover;
    background-position: center;
}

/* Headings */
.moodle-mgmt-title {
    color: #0b132b;
    /* Dark Navy Color */
    font-size: 40px;
    max-width: 500px;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.lms-command-title {
    color: #0b132b;
    font-size: 45px;
    line-height: 1.2;
    letter-spacing: normal;
}

/* Base Slanted Button Style */
.btn-slanted {
    background-color: #e89e3b;
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 12px 35px;
    transform: skewX(-8deg);
    transition: 0.3s;
    display: inline-block;
    cursor: pointer;
}

.btn-left-side {
    margin-left: 10px;
}

.btn-right-side {
    margin-left: 10px;
}


.btn-slanted:hover {
    background: #1a4b84;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Image Wrapper */
.lms-image-wrapper {
    margin: 20px 0;
    margin-right: 35%;
}

.main-lms-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .assignment-section {
        text-align: center;
    }

    .assignment-list {
        display: inline-block;
        text-align: left;
        /* list left but container center */
    }

    .btn-slanted {
        margin: 10px auto;
        display: inline-block;
    }
}


.tech-support-section {
    padding: 40px 0;
    background-color: #ffffff;
}

.main-heading {
    font-weight: 700;
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #000;
    text-transform: uppercase;
}

.support-text {
    color: #111111;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 35px;
    text-align: justify;
}

/* Orange Button Styling */
.btn-expert {
    background-color: #e89e3b;
    color: white;
    font-weight: 600;
    padding: 15px 30px;
    transform: skewX(-8deg);
    border-radius: 0px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease;
}

.btn-expert:hover {
    background-color: #1a4b84;
    color: #fff;
}

/* Image Container Logic */
.image-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.main-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 4px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .main-heading {
        font-size: 2rem;
    }

    .image-wrapper {
        margin-top: 50px;
        justify-content: center;
    }
}


/* Section Global Styles */
.expert-helpers-section {
    background-color: #ffffff;
    font-family: sans-serif;
}

.sub-title {
    max-width: 750px;
    color: #000;
    font-size: 0.95rem;
}

/* Upper Navigation Buttons */
.nav-btn-card {
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid #e9e9e9;
}

.nav-btn-card:hover {
    border-color: #000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.thumb-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

/* Slider Spacing */
.slider-padding {
    padding: 10px 15px;
}

.helper-card {
    height: 330px;
    border-radius: 12px;
    background-color: #f9f9f9;
    border: 1px solid #f0f0f0 !important;
}

.profile-lg {
    width: 65px;
    height: 65px;
    object-fit: cover;
}

.helper-text {
    font-size: 0.9rem;
    line-height: 1.6;
    /* display: -webkit-box; */
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Arrow Removal */
.slick-prev,
.slick-next {
    display: none !important;
}

.badge {
    padding: 6px 10px;
}



/* --- Section Main Container --- */
.proven-results-section {
    background-color: #ffffff;
    padding: 40px 0;
    overflow: hidden;
}

/* Image Column Styling */
.proven-results-img-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.proven-main-img {
    width: 100%;
    max-width: 550px;
    height: auto;
    filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.1));
}

/* Text Content Styling */
.proven-results-title {
    color: #000000;
    font-family: "Oswald", sans-serif;
    font-size: 2.6rem;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.proven-results-desc {
    color: #111111;
    font-size: 1rem;
    line-height: 1.65;
    text-align: justify;
}

.proven-results-btn {
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 14px 40px;
    background-color: #e89e3b;
    transform: skewX(-8deg);
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}



.proven-results-btn:hover {
    background: #1a4b84;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .proven-results-section {
        padding: 50px 0;
    }

    .proven-results-title {
        font-size: 2rem;
        text-align: center;
    }

    .proven-results-desc {
        text-align: center;
    }

    .proven-results-text-col {
        margin-top: 30px;
    }

    /* .mt-4 {
        text-align: center;
    } */
}



.ak-algebra-section {
    position: relative;
    overflow: hidden;
    background-color: #f2f1ef;
    color: #000;
}

.ak-rel-content {
    position: relative;
    z-index: 5;
}


.ak-abs-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    top: -30px;
    /* height: calc(78% + 100px); */
    object-position: center top;
}


.ak-btn-primary-gold {
    background: #e89e3b;
    color: #ffffff;
    transform: skewX(-8deg);
    border: none;
    padding: 12px 35px;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.ak-btn-primary-gold:hover {
    background: #1a4b84;
    color: #ffffff;
}

.ak-btn-secondary-outline {
    background: transparent;
    color: #000000;
    border: 1.5px solid #000000;
    padding: 12px 35px;
    transform: skewX(-8deg);
    border-radius: 0px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.ak-btn-secondary-outline:hover {
    background: none;
    border: 2px solid #e89e3b;
    color: #e89e3b;
}


.ak-right-img {
    max-width: 350px;
    margin-left: auto;
}


.ak-algebra-section {
    margin-top: -10px;
    padding: 120px 0 80px;
}

.ak-algebra-title {
    font-size: 2.3rem;
    color: #000;
}

.ak-algebra-p {
    max-width: 600px;
    margin: 10px auto 0;
    color: #000;
}

.ak-gold-clr {
    color: #e89e3b;
}

.ak-stat-item {
    color: #000;
    font-size: 18px;
}


@media (max-width: 991px) {
    /* .ak-abs-bg {
        left: 5%;
        width: 90%;
        top: -50px;
        height: calc(100% + 50px);
    } */

    .text-end-lg {
        text-align: center !important;
    }

    .ak-right-img {
        margin: 20px auto;
        display: block;
    }
}

@media (max-width: 576px) {

    .ak-btn-primary-gold,
    .ak-btn-secondary-outline {
        width: 100%;
        margin-bottom: 15px;
    }
}



/* --- MAIN SECTION --- */
.fs-showcase-area {
    position: relative;
    padding: 60px 0;
    background-image: url('../img/scroll-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: left;
}

/* --- OVERLAY --- */
.fs-backdrop-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.5);  */
    z-index: 1;
}

.fs-content-stack {
    position: relative;
    z-index: 2;
}

/* --- TYPOGRAPHY --- */
.fs-hero-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    text-transform: uppercase;
    line-height: 1.2;
}

.fs-section-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    font-family: "Oswald", sans-serif;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.fs-showcase-area p {
    font-size: 16px;
    line-height: 1.8;
    color: #ffffff !important;
    margin-bottom: 20px;
}

.fs-bullet-list {
    font-size: 17px;
    color: #ffffff;
    padding-left: 20px;
    margin-bottom: 25px;
}

.fs-bullet-list li {
    margin-bottom: 10px;
}

/* --- SCROLLING LOGIC --- */
.fs-scrollable-container {
    max-height: 350px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 25px;
}

.fs-content-body {
    padding-bottom: 20px;
}

/* --- CUSTOM SCROLLBAR --- */
.fs-scrollable-container::-webkit-scrollbar {
    width: 6px;
    background: rgb(255, 255, 255);
}

.fs-scrollable-container::-webkit-scrollbar-thumb {
    background: #e89e3b;
    border-radius: 10px;
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .fs-hero-title {
        font-size: 26px;
    }

    .fs-section-subtitle {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .fs-showcase-area {
        padding: 40px 0;
    }

    .fs-hero-title {
        font-size: 22px;
    }

    .fs-scrollable-container {
        max-height: 55vh;
    }
}


/* HEADER */
.review-header h2 {
    font-weight: 700;
    text-align: center;
    padding: 0 18%;
    color: #222;
    letter-spacing: -1px;
}


/* SLIDER WRAPPER */
.slider-wrapper {
    position: relative;
    padding: 20px 40px;
    max-width: 1200px;
    margin: auto;
}

.slider-container {
    overflow: hidden;
}

.cards-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* CARD RESPONSIVE LOGIC */
.card-item {
    min-width: 33.333%;
    padding: 15px;
    box-sizing: border-box;
}

@media (max-width: 992px) {
    .card-item {
        min-width: 50%;
        /* TABLET = 2 CARDS */
    }
}

@media (max-width: 768px) {
    .card-item {
        min-width: 100%;
        /* MOBILE = 1 CARD */
    }
}

/* CARD DESIGN (UNCHANGED) */
.review-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    position: relative;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.user-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ddd;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-name {
    font-weight: 700;
    font-family: "Oswald", sans-serif;
    font-size: 20px;
}

.sat-rate {
    font-size: 12px;
    color: #666;
}

.star-rating {
    color: #f39c12;
}

.social-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 1.4rem;
}

.review-text {
    color: #000;
    font-size: 16px;
    line-height: 1.6;
}

/* NAV ARROWS */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #e89e3b;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.nav-arrow:hover {
    background: #1a4b84;
}

.arrow-left {
    left: -20px;
}

.arrow-right {
    right: -20px;
}

@media (max-width: 992px) {
    .hide-arrows {
        display: none !important;
    }
}

/* BOTTOM NAV */
.bottom-nav {
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 20px;
    height: 100%;
}

/* ONLY ACTIVE TAB BLACK */
.tab-active {
    background-color: #0b162b !important;
    color: white !important;
    transform: translateY(-5px);
    outline: 3px solid #e89e3b;
}


.bottom-nav:hover {
    transform: translateY(-5px);
    outline: 3px solid #e89e3b;
}


.tab-fb {
    background-color: #0b162b;
    color: white;
}

.tab-others {
    background-color: #c5d3ed;
    color: #333;
}

.tab-active {
    outline: 3px solid #e89e3b;
    transform: translateY(-5px);
}

.nav-title {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-stats {
    font-size: 0.9rem;
    font-weight: 600;
}



/* Background Wrapper */
.faq-section {
    position: relative;
    background-color: #f8f8f8;
    padding: 40px 0;
    color: rgb(0, 0, 0);
    overflow: hidden;
}


.faq-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.4);
}

.faq-title {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.faq-subtitle {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 50px auto;
    opacity: 0.9;
}

/* Accordion Styling */
.accordion-item {
    background-color: white;
    border-radius: 12px !important;
    margin-bottom: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.accordion-button {
    font-weight: 500;
    /* color: #333; */
    background-color: #fff;
    padding: 20px;
    border-radius: 12px !important;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: #1a4b84;
    color: #ffffff
}

.accordion-button::after {
    background-size: contain;
    width: 1.4rem;
    height: 1.4rem;
    filter: brightness(0) saturate(100%) invert(77%) sepia(47%) saturate(600%) hue-rotate(10deg);

}


/* Section Background */
.help-custom-section {
    padding: 60px 0;
    background: url('../img/contact-us-bg.png');
    background-size: cover;
    background-position: center;
}

.form-separated-card {
    background: rgba(0, 0, 0, 0.4);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #e89e3b;
    /* Gold Border */
    height: 100%;
}

.main-title-text {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5px;
    color: #000000;
}

.sub-title-text {
    font-size: 16px;
    color: #363636;
    text-align: center;
    margin-bottom: 30px;
}

.input-wrapper {
    margin-bottom: 18px;
}

.input-field {
    width: 100%;
    padding: 14px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    outline: none;
    color: #fff;
}

.input-field::placeholder {
    color: #aaa;
}

/* Submit Button */
.submit-btn-wrapper {
    text-align: center;
    margin-top: 25px;
}

.gr-submit-btn {
    background: #e89e3b;
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 14px 55px;
    transform: skewX(-8deg);
    border-radius: 0;
    font-size: 18px;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(191, 144, 45, 0.3);
}

.gr-submit-btn:hover {
    background: #1a4b84;

}

.image-separated-box {
    height: 100%;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.sidebar-img-full {
    width: 100%;
    height: 100%;
    display: block;
}

/* Responsive Fix */
@media (max-width: 991px) {
    .image-separated-box {
        height: 400px;
        margin-top: 20px;
    }
}


/* Section Background */
.help-custom-section {
    padding: 30px 0;
    background-color: #fcfcfc;
}

/* 1. Form Card Styling (Separated) */
.form-separated-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    /* Column ki poori height le lega */
}

.main-title-text {
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5px;
}

.sub-title-text {
    font-size: 15px;
    color: #666;
    text-align: center;
    margin-bottom: 25px;
}

.team-title-name {
    font-size: 1rem;
    line-height: 0.5;
    margin-top: 0px;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #000;
}

.title-heading {
    font-size: 1.25rem;
    font-weight: 700
}

.input-wrapper {
    margin-bottom: 15px;
}

.input-field {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
}

.submit-btn-wrapper {
    text-align: center;
    width: 100%;
    margin-top: 20px;
    display: block;
}


.image-separated-box {
    height: 100%;
    width: 100%;
}

.sidebar-img-full {
    width: 100%;
    height: 100%;
    display: block;
}

/* Mobile Fix */
@media (max-width: 991px) {
    .image-separated-box {
        height: 350px;
    }
}


/* --- General Footer Styling --- */
.footer-section {
    background-color: #002b2b;
    color: #ffffff;
    padding-top: 60px;
    padding-bottom: 20px;
}

.footer-section .footer-heading {
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.text-muted-custom {
    color: #bdc3c7;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-links {
    padding: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #bf902d;
    padding-left: 5px;
}

/* --- SCROLLABLE SUBJECTS LOGIC --- */
.subjects-scroll-container {
    max-height: 220px;
    /* Adjust as needed */
    overflow-y: auto;
    padding-right: 10px;
}

/* Custom Scrollbar Styling */
.subjects-scroll-container::-webkit-scrollbar {
    width: 4px;
}

.subjects-scroll-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.subjects-scroll-container::-webkit-scrollbar-thumb {
    background: #20c997;
    border-radius: 10px;
}

.contact-col {
    padding-left: 30px;
}

.contact-info p {
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* Contact Hover Effect */
.contact-info p:hover {
    color: #bf902d;
    transform: scale(1.02);
}

.contact-info i {
    margin-right: 10px;
    color: #ffffff;
}

/* Whatsapp Button */
.btn-whatsapp {
    background-color: #e89e3b;
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 0;
    width: 50%;
    transform: skewX(-8deg);
    padding: 12px;
    display: block;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
    margin-top: 20px;
}

.btn-whatsapp:hover {
    background-color: none;
    color: #e89e3b;
    border: 2px solid #e89e3b;
}

/* Social Media Icons & Hover */
.social-icons {
    margin-top: 20px;
}

.social-icons a {
    color: white;
    font-size: 1.2rem;
    margin-right: 18px;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-icons a:hover {
    transform: translateY(-5px);
    /* Bouncing effect */
}

/* Individual Social Colors on Hover */
.social-icons a.fa-facebook-f:hover {
    color: #1877F2;
}

.social-icons a.fa-instagram:hover {
    color: #E4405F;
}

.social-icons a.fa-x-twitter:hover {
    color: #000000;
}

.social-icons a.fa-pinterest-p:hover {
    color: #BD081C;
}

.social-icons a.fa-linkedin-in:hover {
    color: #0A66C2;
}

/* Payment Icons */
.payment-img {
    max-width: 100%;
    margin-top: 20px;
    /* filter: brightness(0.9); */
}

/* Bottom Copyright Section */
.copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-col {
        border-left: none;
        padding-left: 12px;
        margin-top: 30px;
    }
}



/* ══ HERO ══ */
.phys-hero-wrap {
    text-align: center;
    padding: 60px 20px 40px;
    max-width: 860px;
    margin: 0 auto;
}

.phys-hero-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 18px;
    line-height: 1.3;
}

.phys-hero-highlight {
    color: #0dbfbf;
}

.phys-hero-desc {
    font-size: 1rem;
    color: #111111;
    line-height: 1.8;
    margin: 0;
}

.phys-slider-container {
    position: relative;
    padding: 10px 58px 50px;
}

.phys-slider-window {
    overflow: hidden;
}


.phys-slider-track {
    transition: transform 0.4s ease;
    margin: 0;
    will-change: transform;
}


.phys-col-item {
    padding: 10px 12px;
    box-sizing: border-box;
    flex-shrink: 0;
}

/* ══ EDU CARD ══ */
.phys-edu-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 32px 22px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(255, 196, 3, 0.06);
    transition: border-color 0.3s, box-shadow 0.3s;
    min-height: 340px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.phys-edu-card:hover,
.phys-edu-card--active {
    border-color: #e89e3b;
    box-shadow: 0 6px 24px rgba(250, 183, 0, 0.18);
}

.phys-card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
    object-fit: contain;
}

.phys-card-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.phys-card-body {
    font-size: 0.9rem;
    color: #0a0a0a;
    line-height: 1.7;
}

/* ══ ARROWS ══ */
.phys-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    background: #e89e3b;
    border: none;
    color: #fff;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
    transition: background 0.2s, transform 0.2s;
}

.phys-arrow:hover {
    background: #1a4b84;
    transform: translateY(-60%) scale(1.08);
}

.phys-arrow--prev {
    left: 6px;
}

.phys-arrow--next {
    right: 6px;
}

/* ══ MOBILE ══ */
@media (max-width: 767px) {
    .phys-slider-container {
        padding: 10px 10px 40px;
    }

    .phys-hero-title {
        font-size: 1.4rem;
    }
}

/* ================= TOP SECTION ================= */
.exam-top {
    padding: 30px 20px 40px;
    text-align: center;
    background: #fff;
    color: #000;
}

.exam-top-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.exam-top-title {
    font-size: 40px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
    line-height: 1.4;
}

.exam-top-desc {
    font-size: 15px;
    color: #000000;
    line-height: 1.7;
}

.exam-top-desc a {
    color: #000000;
    text-decoration: none;
}

/* ================= SPLIT ROW ================= */
.exam-split-row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

/* ================= COL BASE ================= */
.exam-col {
    width: 50%;
    padding: 45px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* LEFT â€” Orange */
.exam-col-left {
    background: #e89e3b;
}

/* RIGHT â€” Blue */
.exam-col-right {
    background: #1a4b84;
}

/* ================= COL TITLE ================= */
.exam-col-title {
    font-size: 30px;
    font-weight: 700;
    font-family: "Oswald", sans-serif;
    /* font-style: italic; */
    color: #ffffff;
    margin-bottom: 16px;
}

/* ================= COL TEXT ================= */
.exam-col-text {
    font-size: 18px;
    color: #ffffff;
    line-height: 1.75;
    margin-bottom: 28px;
}

/* ================= BUTTONS ================= */
.exam-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    width: fit-content;
    transition: background 0.3s ease;
    color: #fff;
}

.exam-btn-whatsapp {
    border: none;
    padding: 14px 35px;
    transform: skewX(-8deg);
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    background-color: #51C8E8;
    transition: all 0.3s ease;
}

.exam-btn-whatsapp:hover {
    background: #a6bdcd;
    transform: skewX(-8deg) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.exam-btn-experts {
    border: none;
    padding: 14px 35px;
    transform: skewX(-8deg);
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    background-color: #a6bdcd;
    transition: all 0.3s ease;

}

.exam-btn-experts:hover {
    background: #51C8E8;
    transform: skewX(-8deg) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
    .exam-top-title {
        font-size: 28px;
    }

    .exam-col-title {
        font-size: 21px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .exam-col {
        width: 100%;
        padding: 35px 25px;
    }

    .exam-top-title {
        font-size: 20px;
    }

    .exam-top-desc {
        font-size: 13px;
    }

    .exam-col-title {
        font-size: 19px;
    }
}


.custom-edu-wrapper {
    padding: 40px 0;
    background-color: #f2f1ef;
}

.custom-edu-title {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #111;
}

.custom-edu-lead-text {
    font-size: 16px;
    color: #181818;
    margin-bottom: 50px;
}

.custom-edu-slider .owl-stage {
    display: flex;
}

.custom-edu-card {
    background: #fff;
    padding: 40px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #f2f2f2;
    margin: 15px 5px;
    height: 22rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.3s ease;
}

/* Heading alignment logic */
.custom-edu-card-head {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 0px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-edu-card-body {
    font-size: 16px;
    color: #0a0a0a;
    line-height: 1.7;
    margin-bottom: 0;
    flex-grow: 1;
}

/* --- DOTS SETUP --- */
.custom-edu-slider .owl-dots {
    text-align: center;
    margin-top: 30px !important;
}

.custom-edu-slider .owl-dot span {
    width: 10px !important;
    height: 10px !important;
    background: #e0e0e0 !important;
    display: inline-block;
    border-radius: 50%;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.custom-edu-slider .owl-dot.active span {
    background: #ff9800 !important;
    width: 28px !important;
    border-radius: 12px;
}


.service-slider-wrapper {
    padding: 60px 0;
    background-color: #f2f1ef;
}

.service-card-main-title {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 20px;
}

.service-card-sub-text {
    font-size: 16px;
    color: #020202;
    margin-bottom: 50px;
}

/* Equal Height Cards */
.service-card-slider .owl-stage {
    display: flex;
}

.service-card-box {
    background: #fff;
    padding: 40px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
    margin: 15px 5px;
    height: 22rem;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.service-card-head {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-p {
    font-size: 16px;
    color: #131313;
    line-height: 1.7;
    flex-grow: 1;
}

/* Fixed Dots Styling */
.service-card-slider .owl-dots {
    text-align: center;
    margin-top: 30px !important;
}

.service-card-slider .owl-dot span {
    width: 10px !important;
    height: 10px !important;
    background: #e0e0e0 !important;
    margin: 0 6px;
    transition: 0.3s ease;
    border-radius: 50%;
    display: inline-block;
}

.service-card-slider .owl-dot.active span {
    background: #ff9800 !important;
    width: 28px !important;
    border-radius: 12px;
}