/* ================= GLOBAL ================= */
html {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Open Sans", sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #000 !important;
}

h1,
h2,
h3 {
    font-family: "Oswald", sans-serif;
}

/* ================= NAVBAR ================= */
.navbar-wrapper {
    background: transparent;
    padding: 8px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.navbar-logo img {
    height: 55px;
}

/* MENU */
.navbar-menu .nav-link {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a !important;
    text-transform: uppercase;
    margin: 0 8px;
}

.navbar-menu .nav-link:hover {
    color: #292c6a !important;
}

.navbar-menu .nav-link.active-link {
    color: #292c6a !important;
    border-bottom: 2px solid #292c6a;
}

/* ===== ANGLED BUTTON ===== */
.navbar-btn-talk {
    position: relative;
    background: #a6bdcd;
    color: #fff !important;
    padding: 15px 30px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transform: skewX(-8deg);
    display: inline-block;
}

.navbar-btn-talk span {
    display: inline-block;
    transform: skewX(8deg);
}

.navbar-btn-talk:hover {
    background: #51c8ea;
    transform: skewX(-8deg) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


/* ================= HERO ================= */
.hero-section {
    background: url("../img/hero-banner.png") no-repeat left center;
    background-size: cover;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding-top: 50px;
}

/* RIGHT TEXT */
.hero-text-col {
    padding: 60px;
}

/* TITLE */
.hero-title {
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
}

/* DESCRIPTION */
.hero-description {
    font-size: 26px;
    margin-top: 15px;
    /* line-height: 1.8; */
    color: #333;
}

/* BUTTONS */
.hero-buttons {
    margin-top: 25px;
    display: flex;
    align-items: center;
}

/* LIVE CHAT */
.btn-live-chat {
    background: #a6bdcd;
    color: #fff;
    padding: 14px 40px;
    font-weight: 700;
    transform: skewX(-8deg);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-live-chat span {
    display: inline-block;
    transform: skewX(8deg);
}

.btn-live-chat:hover {
    background: #51c8ea;
    transform: skewX(-8deg) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* CALL NOW */
.btn-call-now {
    background: #51c8ea;
    color: #fff;
    padding: 14px 40px;
    font-weight: 700;
    transform: skewX(-8deg);
    margin-left: 10px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-call-now span {
    display: inline-block;
    transform: skewX(8deg);
}

.btn-call-now:hover {
    background: #a6bdcd;
    transform: skewX(-8deg) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {

    .navbar-collapse {
        text-align: center;
        background-color: #fff;
        padding: 20px;
    }

    .navbar-menu {
        flex-direction: column;
    }

    .navbar-btn-talk {
        margin-top: 15px;
    }

    .hero-text-col {
        padding: 30px;
        text-align: center;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-buttons {
        display: flex;
        /* flex-direction: column; */
        gap: 10px;
        align-items: center;
    }

    .btn-call-now {
        margin-left: 0;
    }
}

@media (max-width: 991.98px) {

    .navbar-menu .nav-link {
        display: inline-block;
        position: relative;
    }

    .navbar-menu .nav-link.active-link {
        border: none;
    }

    .navbar-menu .nav-link.active-link::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 5px;
        width: 100%;
        height: 2px;
        background: #292c6a;
        transform: translateX(-50%);
    }

}

/* consult-section container */
.consult-section {
    padding: 30px 0;
    text-align: center;
}

.main-heading {
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* Input Styles with Slant Effect */
.custom-input {
    border: 2px solid #51c8ea;
    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: #a6bdcd;
    color: white;
    border: none;
    height: 50px;
    width: 100%;
    transform: skewX(-8deg);
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
}

.signup-btn span {
    transform: skewX(-5deg);
    display: inline-block;
}

.signup-btn:hover {
    background-color: #8da4b1;
}

/* Smooth Logo Carousel */
.logo-slider {
    /* margin-top: 50px; */
    overflow: hidden;
    padding: 20px 0;
}

.logo-track {
    display: flex;
    width: calc(250px * 12);
    /* Adjust based on logo count */
    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));
    }
}


/* --- premium-hero-section --- */
.premium-hero-section {
    background-color: #ffffff;
    overflow: hidden;
    width: 100%;
}

/* --- Left Column Padding --- */
.premium-hero-text-col {
    padding-left: 8% !important;
    padding-right: 5% !important;
}

/* Heading Control */
.premium-hero-title {
    color: #000000;
    font-size: 2.8rem;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

/* Paragraph Control */
.premium-hero-desc {
    color: #333333;
    font-size: 1rem;
    line-height: 1.6;
}

/* --- Right Side Image Control --- */
.premium-hero-img-col {
    height: 100%;
    min-height: 500px;
}

.premium-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Slanted Button Base --- */
.premium-hero-btn {
    border: none;
    padding: 15px 35px;
    transform: skewX(-8deg);
    transition: all 0.3s ease;
    cursor: pointer;
}

.premium-hero-btn span {
    display: inline-block;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

/* Colors */
.premium-btn-grey {
    background-color: #a6bdcd;
}

.premium-btn-cyan {
    background-color: #51c8ea;
}

/* ✅ HOVER FIX (IMPORTANT) */
.premium-btn-grey:hover {
    background: #51c8ea;
    transform: skewX(-8deg) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.premium-btn-cyan:hover {
    background: #a6bdcd;
    transform: skewX(-8deg) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .premium-hero-text-col {
        padding: 40px !important;
    }

    .premium-hero-title {
        font-size: 2rem;
    }

    .premium-hero-img-col {
        min-height: 300px;
    }
}

/* subjects-section */
.subjects-section {
    padding: 30px 0;
    background-color: #ffffff;
}

.main-title {
    color: #0b132b;
    font-size: 2.5rem;
}


.subject-card {
    background-color: #e1f2f9;
    /* 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;
}


/* Hover Effect */
.subject-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background-color: #d4eaf3;
}

/* 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;
    }
}



.main-wrapper {
    min-height: 100vh;
    position: relative;
}

.bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: -1;
}

/* ================= UPPER ================= */
.upper-card {
    background: #fff;
    padding: 40px;
    border-radius: 6px;
}

.upper-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

/* ================= UPPER ARROWS POSITION ================= */

/* BUTTON */
#upperCarousel .carousel-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #7ecce4;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s ease;
}

/* ICON */
.math-feature-icon {
    font-size: 22px;
    color: #fff;
    /* WHITE ARROW */
}

/* HOVER */
#upperCarousel .carousel-btn:hover {
    background: #5bbbd6;
}

.upper-title {
    font-size: 28px;
    font-weight: 700;
    font-family: "Oswald", sans-serif;
}

/* #upperCarousel .carousel-btn:hover {
    background: #5fbad6;
} */

/* arrows layout */
#upperCarousel .upper-arrows {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

/* ================= HIDE ARROWS AFTER 991px ================= */
@media (max-width: 991px) {
    #upperCarousel .upper-arrows {
        display: none !important;
    }
}

/* ================= LOWER CARD ================= */
.lower-card {
    border-radius: 4px;
    position: relative;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    background: #fff;
    align-items: center;
    justify-content: center;
}

.lower-card-body {
    padding: 20px;
}

.lower-title {
    font-size: 28px;
    font-weight: 700;
    font-family: "Oswald", sans-serif;
}

.btn-talk {
    background: #a6bdcd;
    color: #fff;
    border: none;
    padding: 15px 25px;
    font-weight: 700;
    transform: skewX(-8deg);
    margin-top: -18px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-talk:hover {
    background: #51c8ea;
    transform: skewX(-8deg) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ================= LOWER ARROWS (SAME STYLE) ================= */

#lowerCarousel .carousel-control-prev {
    left: -10%;
}

#lowerCarousel .carousel-control-next {
    right: -10%;
}

/* REMOVE DEFAULT ICON */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: none;
}

/* CUSTOM ARROW DESIGN (SAME AS BEFORE) */
.custom-arrow {
    background-color: #0dcaf0;
    border-radius: 50%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ICON STYLE */
.custom-arrow i {
    color: #fff;
    /* WHITE */
    font-size: 22px;
}

/* .carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #7ecce4;
    border-radius: 50%;
    padding: 15px;
} */

/* ================= HIDE ARROWS AFTER 991px ================= */
@media (max-width: 991px) {

    #lowerCarousel .carousel-control-prev,
    #lowerCarousel .carousel-control-next,
    #upperCarousel .carousel-control-prev,
    #upperCarousel .carousel-control-next {
        display: none !important;
    }
}


/* benefits-section */

.benefits-section {
    background: #f9fbfd;
    padding: 40px 0;
    overflow: hidden;
}

.benefits-slider {
    overflow: hidden;
}

.benefits-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    will-change: transform;
}

/* CARD */
.benefit-card {
    flex: 0 0 calc(100% / 3 - 14px);
    background: #fff;
    padding: 20px;
    /* border-radius: 12px; */
    /* box-shadow: 0 10px 25px rgb(162 220 236); */
    /* display: flex; */
    align-items: center;
    gap: 15px;
    text-align: left;
}

/* ICON */
.benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    object-fit: contain;
}

/* TEXT */
.card-text .title {
    font-size: 24px;
    font-weight: 700;
    font-family: "Oswald", sans-serif;
    margin: 0;
}

.card-text .desc {
    font-size: 14px;
    margin-top: 5px;
    color: #555;
    line-height: 1.5;
}

/* DOTS */
.dots {
    text-align: center;
}

.dot {
    height: 10px;
    width: 10px;
    background: #ccc;
    display: inline-block;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background: #51c8ea;
    transform: scale(1.3);
    width: 20px;
    height: 10px;
    border-radius: 40%;
}

/* ================= RESPONSIVE FIX ================= */

/* Desktop */
@media (min-width: 993px) {
    .benefit-card {
        flex: 0 0 calc(100% / 3 - 14px);
    }
}

/* Tablet = 2 cards */
@media (max-width: 992px) {
    .benefit-card {
        flex: 0 0 calc(100% / 2 - 10px);
    }
}

/* Mobile = 1 card */
@media (max-width: 576px) {
    .benefit-card {
        flex: 0 0 100%;
    }
}

/* hide arrows (agar use karein future) */
.hide-on-mobile {
    display: flex;
}

@media (max-width: 991px) {
    .hide-on-mobile {
        display: none !important;
    }
}



.assignment-section {
    padding: 40px 0;
    color: #333;
    background-image: url('../img/full-proof-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: #a6bdcd;
    border: none;
    padding: 12px 35px;
    transform: skewX(-8deg);
    transition: 0.3s;
    display: inline-block;
    cursor: pointer;
}

/* Button Text Fix */
.btn-slanted span {
    display: inline-block;
    /* transform: skewX(20deg); */
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
}

/* Specific Classes for Both Buttons */
.btn-left-side {
    margin-left: 10px;
}

.btn-right-side {
    margin-left: 10px;
}


.btn-slanted:hover {
    background: #51c8ea;
    transform: skewX(-8deg) scale(1.05);
    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;
    }
}

/* Section Container */
.tech-support-wrapper {
    background-color: #ffffff;
    overflow: hidden;
    width: 100%;
}

/* Left Image Column */
.tech-support-visual-col {
    position: relative;
    background-image: url('../img/technical-suppoert.png');
    /* Aapki image ka path */
    background-size: cover;
    background-position: center;
    min-height: 550px;
}

/* Logo Box on Left Image */
.tech-support-brand-box {
    position: absolute;
    top: 40px;
    left: 40px;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tech-support-logo-img {
    max-width: 160px;
    height: auto;
}

/* Right Content Column */
.tech-support-content-col {
    padding-left: 6% !important;
    padding-right: 6% !important;
}

.tech-support-main-title {
    color: #000000;
    font-size: 2.6rem;
    line-height: 1.1;
}

.tech-support-paragraph {
    color: #444444;
    font-size: 1rem;
    line-height: 1.6;
}

/* --- Unique Slanted Buttons --- */
.tech-btn-slanted {
    border: none;
    padding: 14px 35px;
    transform: skewX(-8deg);
    /* Slant effect */
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.tech-btn-slanted span {
    display: inline-block;
    /* transform: skewX(20deg); */
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
}

/* Button Colors */
.tech-btn-expert {
    background-color: #a6bdcd;
    /* Grey-Blue */
}

.tech-btn-quote {
    background-color: #51c8ea;
    /* Cyan-Blue */
}

/* Hover Effects */
.tech-btn-expert:hover {
    background: #51c8ea;
    transform: skewX(-8deg) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.tech-btn-quote:hover {
    background: #a6bdcd;
    transform: skewX(-8deg) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
    .tech-support-content-col {
        text-align: center !important;
    }

    .tech-support-visual-col {
        min-height: 300px;
    }
}

/* math-boost-section */
.math-boost-section {
    position: relative;
    padding: 40px 0;
    overflow: hidden;
    width: 100%;
    background-color: #f8fbff;
}

/* BACKGROUND */
.math-boost-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.math-boost-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

/* CONTENT LAYER */
.tech-content-z {
    position: relative;
    z-index: 2;
}

/* TEXT */
.math-boost-title {
    color: #000;
    font-size: 2.5rem;
    line-height: 1.2;
}

.math-boost-subtitle {
    color: #444;
    font-size: 1.1rem;
}

/* FEATURE LIST */
.math-feature-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    text-align: left;
    justify-content: flex-start;
}

.math-feature-icon {
    color: #fff;
    font-size: 20px;
}

/* BUTTON CONTAINER */
.math-boost-buttons {
    width: 100%;
}

/* BUTTON STYLE */
.math-btn-custom {
    border: none;
    padding: 14px 35px;
    transform: skewX(-8deg);
    transition: 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.math-btn-custom span {
    display: inline-block;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
}

.math-btn-expert {
    background-color: #a6bdcd;
}

.math-btn-quote {
    background-color: #ffffff;
    /* border: 1px solid #eee; */
}

.math-btn-quote span {
    color: #333;
}

.math-btn-expert:hover {
    background: #51c8ea;
    transform: skewX(-8deg) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.math-btn-quote:hover {
    background: #a6bdcd;
    transform: skewX(-8deg) scale(1.05);
    border: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* MOBILE FIX */
@media (max-width: 768px) {

    .math-boost-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .math-boost-subtitle {
        text-align: center;
    }

    .math-feature-text {
        justify-content: flex-start;
        text-align: left;
    }
}

.prof-expert-section {
    background-color: #fff;
    padding: 40px 0;
}

/* Upper Tabs */
.prof-tab-card {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s ease;
}

.prof-tab-card.active {
    border-color: #00aeef;
    background: #fcfcfc;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.prof-name {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin: 0;
    line-height: 1.2;
}

.prof-footer {
    display: flex;
    /* justify-content: space-between; */
    gap: 12px;
    font-size: 14px;
}

.prof-orders {
    /* font-weight: 00; */
    color: #222;
}

.prof-degree {
    /* font-weight: 700; */
    color: #222;
    text-align: right;
}

.prof-tab-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 12px;
    object-fit: cover;
}

/* Slider Container */
.prof-slider-container {
    width: 100%;
    position: relative;
}

.prof-slider-track {
    transition: transform 0.7s ease-in-out;
}

/* Slide Pair (Shows 2 Cards) */
.prof-slide-pair {
    min-width: 100%;
}

/* Card Styling */
.prof-info-card {
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    background: #fff;
}

.prof-large-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.prof-bio {
    line-height: 1.5;
    min-height: 60px;
}

/* Mobile View: Show 1 card instead of 2 */
@media (max-width: 767px) {
    .prof-slide-pair {
        flex-direction: column;
    }

    .prof-slide-pair .col-md-6 {
        width: 100%;
    }
}


/* --- 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: #444444;
    font-size: 1rem;
    line-height: 1.65;
    text-align: justify;
}

.proven-results-btn {
    border: none;
    padding: 14px 40px;
    background-color: #a6bdcd;
    transform: skewX(-8deg);
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.proven-results-btn span {
    display: inline-block;
    /* transform: skewX(20deg); */
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.proven-results-btn:hover {
    background: #51c8ea;
    transform: skewX(-8deg) scale(1.05);
    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;
    }
}

/* --- expert-showcase-section --- */
.expert-showcase-section {
    position: relative;
    padding: 40px 0;
    background-image: url('../img/expert-section-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: left;
    /* Ensure left alignment */
}

.expert-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.expert-relative-content {
    position: relative;
    z-index: 2;
}

.expert-main-heading {
    font-size: 30px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: left;
    /* Force Left */
}

.expert-showcase-section .expert-sub-heading {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: "Oswald", sans-serif;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-align: left;
}



.expert-showcase-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #1a1a1a;
    margin-bottom: 20px;
    max-width: 100%;
    text-align: left;

}

/* --- SCROLLING --- */
.expert-scroll-wrapper {
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 20px;
}

.expert-inner-content {
    /* min-height: 1200px; */
}

/* Scrollbar Styling */
.expert-scroll-wrapper::-webkit-scrollbar {
    width: 6px;
    background: #ffff;
}

.expert-scroll-wrapper::-webkit-scrollbar-thumb {
    background: #a6bdcd;
    border-radius: 10px;
}

@media (max-width: 767px) {
    .expert-main-heading {
        font-size: 24px;
    }

    .expert-scroll-wrapper {
        max-height: 60vh;
    }
}



/* review-header */
:root {
    --primary-blue: #3498db;
    --dark-navy: #0b162b;
    --light-blue-bg: #c5d3ed;
}


/* HEADER */
.review-header h2 {
    font-weight: 900;
    color: #222;
    letter-spacing: -1px;
}

.review-header .blue-text {
    color: #3b9cd9;
    text-transform: uppercase;
}

/* 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: #89cff0;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.nav-arrow:hover {
    background: var(--primary-blue);
}

.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 #3498db;
}


/* HOVER = SAME AS ACTIVE */
.bottom-nav:hover {
    transform: translateY(-5px);
    outline: 3px solid #3498db;
}


.tab-fb {
    background-color: #0b162b;
    color: white;
}

.tab-others {
    background-color: #c5d3ed;
    color: #333;
}

.tab-active {
    outline: 3px solid #3498db;
    transform: translateY(-5px);
}

.nav-title {
    font-weight: 800;
    font-size: 1.5rem;
}

.nav-stats {
    font-size: 0.9rem;
    font-weight: 600;
}


/* ================= FAQ SECTION ================= */
.faq-cloud-section {
    position: relative;
    padding: 40px 0;
    overflow: hidden;
    width: 100%;
    background-image: url('../img/faq-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* TEXT */
.faq-main-title {
    color: #000;
    font-size: 2.5rem;
    line-height: 1.2;
}

.faq-subtitle {
    font-size: 1.05rem;
    color: #555;
}

/* BOX */
.faq-item-box {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: 0.3s ease;
}

/* HEADER */
.faq-item-header {
    padding: 15px 20px;
    cursor: pointer;
}

/* QUESTION */
.faq-question-text {
    color: #333;
    font-weight: 500;
    font-size: 1rem;
}

/* ARROW */
.faq-arrow-icon {
    transition: transform 0.3s ease;
}

/* HOVER ONLY BG */
.faq-item-box:hover .faq-item-header {
    background-color: #f8fbff;
}

/* OPEN STATE */
.faq-item-header:not(.collapsed) .faq-arrow-icon {
    transform: rotate(180deg);
}

/* ANSWER */
.faq-item-answer {
    padding: 0 20px 20px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .faq-main-title {
        font-size: 1.8rem;
    }

    .faq-subtitle {
        font-size: 1rem;
    }

    .faq-item-box {
        margin-bottom: 20px;
    }
}

.help-form-section {
    background: #fff;
    padding: 40px 0;
}

.form-container {
    border: 1px solid #eef2f6;
    border-radius: 15px;
    padding: 40px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.form-title h2 {
    font-size: 26px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.form-title p {
    text-align: center;
    font-weight: 600;
    color: #555;
    margin-bottom: 25px;
}

.form-control {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #d7d7d7;
    font-size: 14px;
}

.form-control:focus {
    border-color: #a6bdcd;
    box-shadow: none;
}

.btn-submit {
    background: #a6bdcd;
    color: #fff;
    font-weight: 700;
    border: none;
    padding: 12px 40px;
    width: 200px;
    display: block;
    margin: auto;
    transform: skewX(-8deg);
    transition: 0.3s;
}

.btn-submit:hover {
    background: #51c8ea;
    transform: skewX(-8deg) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.right-side {
    position: relative;
    text-align: center;
}

.form-pic {
    max-height: 500px;
    width: 100%;
    object-fit: contain;
}

.ratings-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    padding: 15px;
    width: 90%;
    margin: 0px auto 0 auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.rating-item {
    text-align: center;
}

.brand {
    font-weight: 800;
    font-size: 14px;
}

.google {
    color: #4285F4;
}

.trustpilot {
    color: #00b67a;
}

.sitejabber {
    color: #ff7f50;
}

.stars {
    color: #f5a623;
    font-size: 12px;
}

.score {
    font-size: 10px;
    color: #777;
}


/* Main Footer Section */
.footer-section {
    background-color: #002d2d;
    color: #ffffff;
    padding-top: 3rem;
    padding-bottom: 0;
}

/* Logo & Brand Styling */
.footer-logo-wrapper {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    width: 70%;
    height: auto;
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0;
    margin-left: 10px;
    letter-spacing: 1px;
}

.footer-description,
.footer-disclaimer {
    color: #c1c1c1;
    font-size: 20px;
    line-height: 1.6;
}

/* Headings */
.footer-heading {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Link Lists */
.footer-link-list p {
    margin-bottom: 10px;
}

.footer-link-list a {
    color: #c1c1c1;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link-list a:hover {
    color: #ffffff;
}

/* Subjects Scroll Logic */
.subject-scroll-container {
    max-height: 250px;
    overflow-y: auto;
    padding-right: 15px;
}

.subject-scroll-container::-webkit-scrollbar {
    width: 6px;
}

.subject-scroll-container::-webkit-scrollbar-track {
    background: #001f1f;
}

.subject-scroll-container::-webkit-scrollbar-thumb {
    background: #ff9800;
    border-radius: 10px;
}

/* Contact Section & Orange Border */
/* .footer-contact-column {
    border-left: 4px solid #ff9800;
    padding-left: 25px;
} */

/* Contact Links Hover */
.contact-link {
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: #ff9800;
    /* Orange color on hover */
    transform: translateX(5px);
}

/* Whatsapp Button Hover */
.btn-whatsapp-footer {
    display: block;
    width: 100%;
    background-color: #25d366;
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-whatsapp-footer:hover {
    background-color: transparent;
    color: #25d366;
    border-color: #25d366;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Social Icons Hover */
.footer-social-icons a {
    color: white;
    font-size: 1.3rem;
    margin-right: 15px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    color: #ff9800;
    transform: scale(1.2) rotate(8deg);
}

/* Footer Bottom Link Hover */
.footer-bottom-link {
    color: #888;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.payment-img {
    width: 100%;
    height: auto;
    margin-top: 15px;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.payment-img:hover {
    filter: grayscale(0%);
    cursor: pointer;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid #004d4d;
    margin-top: 50px;
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text,
.footer-bottom-link {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 0;
}

.footer-bottom-link {
    text-decoration: none;
}

.px-st-slider-section {
    background: #fff;
    padding: 30px 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    overflow: hidden;
}

.px-st-main-container {
    max-width: 1240px;
    margin: auto;
    padding: 0 15px;
    text-align: center;
}

.px-st-main-title {
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 800;
    margin-bottom: 20px;
    color: #333;
}

.px-st-main-desc {
    font-size: 15px;
    color: #666;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.px-st-carousel-wrapper {
    position: relative;
    padding: 0 10px;
}

.px-st-carousel-viewport {
    overflow: hidden;
    margin: 0 -10px;
    /* Counteracts card padding */
}

.px-st-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Card Sizing Logic */
.px-st-item {
    flex: 0 0 33.333%;
    /* 3 items */
    padding: 15px 10px;
    box-sizing: border-box;
}

@media (max-width: 992px) {
    .px-st-item {
        flex: 0 0 50%;
    }
}

@media (max-width: 576px) {
    .px-st-item {
        flex: 0 0 100%;
    }
}

.px-st-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 35px 25px;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.px-st-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    border-color: #2bb8c4;
}

.px-st-icon {
    width: 100px;
    height: auto;
    /* border-radius: 50%;
    background: linear-gradient(135deg, #2bb8c4, #e3f2fd); */
    margin: 0 auto 0px;
}

.px-st-name {
    font-size: 24px;
    font-weight: 700;
    font-family: "Oswald", sans-serif;
    margin-bottom: 15px;
    color: #222;
}

.px-st-info {
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
}

/* Navigation Buttons */
.px-st-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #2bb8c4;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(43, 184, 196, 0.3);
}

.px-st-nav-btn:hover {
    background: #1f8d96;
}

.px-st-prev {
    left: -8%;
}

.px-st-next {
    right: -8%;
}

/* Hide arrows on mobile */
@media (max-width: 576px) {
    .px-st-nav-btn {
        display: none;
    }

    .px-st-carousel-wrapper {
        padding: 0;
    }
}

/* ================= 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: 900;
    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: #a6bdcd;
}

/* RIGHT — Blue */
.exam-col-right {
    background: #51C8E8;
}

/* ================= COL TITLE ================= */
.exam-col-title {
    font-size: 30px;
    font-weight: 900;
    font-family: "Oswald", sans-serif;
    /* font-style: italic; */
    color: #050505;
    margin-bottom: 16px;
}

/* ================= COL TEXT ================= */
.exam-col-text {
    font-size: 18px;
    color: #000000;
    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;
    }
}


.phx-v3-slider-section {
    background: #fff;
    padding: 60px 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    overflow: hidden;
}

.phx-v3-main-container {
    max-width: 1240px;
    margin: auto;
    padding: 0 15px;
}

.phx-v3-main-title {
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 800;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
    /* Title stays center */
}

.phx-v3-main-desc {
    font-size: 17px;
    color: #000000;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.7;
    text-align: center;
    /* Description stays center */
}

.phx-v3-carousel-wrapper {
    position: relative;
    padding: 0 10px;
}

.phx-v3-carousel-viewport {
    overflow: hidden;
}

.phx-v3-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.phx-v3-item {
    flex: 0 0 33.333%;
    padding: 15px 10px;
    box-sizing: border-box;
}

@media (max-width: 992px) {
    .phx-v3-item {
        flex: 0 0 50%;
    }
}

@media (max-width: 576px) {
    .phx-v3-item {
        flex: 0 0 100%;
    }
}

.phx-v3-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: left;
    /* Content to the Left */
}

.phx-v3-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    border-color: #2bb8c4;
}

.phx-v3-icon {
    width: 100px;
    height: auto;
    /* border-radius: 12px; */
    /* background: linear-gradient(135deg, #2bb8c4, #e3f2fd); */
    margin-bottom: 20px;
    /* Removed margin auto to keep it left */
}

.phx-v3-name {
    font-size: 22px;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
}

.phx-v3-info {
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
}

.phx-v3-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #2bb8c4;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phx-v3-prev {
    left: -8%;
}

.phx-v3-next {
    right: -8%;
}

@media (max-width: 768px) {
    .phx-v3-nav-btn {
        display: none;
    }
}