/* --- Base Styles --- */
body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
}

p,
li {
    font-family: "Open Sans", sans-serif;

}



/* --- TOP BAR --- */
.top-bar {
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1001;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-links a {
    color: #fff;
    font-size: 13px;
    margin-left: 20px;
    text-decoration: none;
    transition: 0.3s;
}

.top-links a:hover {
    color: #00c6ff;
}

.top-links i {
    margin-right: 5px;
    color: #00c6ff;
}

/* --- HEADER & NAVIGATION --- */
.main-header {
    position: absolute;
    width: 100%;
    top: 45px;
    /* Top bar ke niche */
    z-index: 999;
    padding: 10px 0;
}

.logo img {
    max-height: 60px;
    width: auto;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 10px;
    font-size: 14px;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #40a14f !important;
}

.talk-btn {
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 5px;
    background-color: #2ecc71;
    border: none;
}

/* --- MOBILE RESPONSIVE LOGIC --- */
@media (max-width: 991px) {
    .main-header {
        top: 0;
        /* Mobile par top bar hidden hai isliye top 0 */
        background: #111;
        /* Mobile menu visibility ke liye background dark */
        position: relative;
        /* Absolute hata diya taaki layout na bigde */
    }

    .navbar-collapse {
        background: #1a1a1a;
        padding: 20px;
        margin-top: 15px;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .navbar-nav .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .logo img {
        max-height: 45px;
    }
}

/* Fix for very small screens */
@media (max-width: 575px) {
    .logo img {
        max-height: 40px;
    }
}

/* HERO SECTION */
.hero-section {
    position: relative;
    min-height: 50rem;
    display: flex;
    align-items: center;
    padding: 20px 0 80px;

    background: url('../img/hero-banner.png') no-repeat center center/cover;
}



/* CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 550px;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.hero-content h1 span {
    color: #2ecc71;
}

.hero-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #ddd;
    margin-bottom: 20px;
}

/* BUTTONS */
.hero-btns .btn {
    padding: 10px 22px;
    margin-right: 10px;
    border-radius: 5px;
    font-weight: 500;
}

.btn-success{
    background-color: #40a14f;
}


@media (max-width: 991px) {

    .hero-content h1 {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 22px;
    }

    .top-links {
        display: none !important;
        /* top bar hide karo mobile par */
    }

    .main-header {
        top: 0;
        /* header top pe aa jaye */
        padding: 10px 0;
    }
}

/* Styling for Titles */
.consult-main-title {
    font-weight: 700;
    color: #212529;
    font-size: 2rem;
}

.offer-consultation-section {
    padding: 30px 0;
}

/* Form Styling */
.consult-input {
    border: 1px solid #d1e9ff !important;
    height: 48px;
    border-radius: 4px;
}

.consult-submit-btn {
    background-color: #40a14f;
    color: white;
    border: none;
    width: 100%;
    height: 48px;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s ease;
}

.consult-submit-btn:hover {
    background-color: #007411;
}

/* Infinite Logo Carousel Styling */
.logo-carousel-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}

.logo-slider-track {
    display: flex;
    gap: 20px;
    width: calc((260px + 20px) * 16);
    /* 16 items total */
    animation: scrollInfinite 25s linear infinite;
}

.logo-slide-card {
    width: 260px;
    padding: 10px;
}

.logo-box {
    display: flex;
    align-items: center;
    justify-content: center;

}

.logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Infinite Scroll Animation Logic */
@keyframes scrollInfinite {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50%));
    }
}

/* Pause animation on hover */
.logo-carousel-container:hover .logo-slider-track {
    animation-play-state: paused;
}


/* SECTION BACKGROUND */
.section {
    /* background-color: #f5f5f5; */
    padding: 30px 0;
}

/* REMOVE LEFT SPACE */
.container-fluid {
    padding-left: 0;
}

/* IMAGE SIDE */
.img-box {
    width: 100%;
    height: 100%;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT */
.content {
    padding: 40px;
    max-width: 760px;
}

.heading {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.heading span {
    color: #28a745;
}

.text {
    color: #0f0f0f;
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* BUTTON */
.btn-custom {
    background: #40a14f;
    color: #fff;
    padding: 15px 20px;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
}

.btn-custom:hover {
    background: #218838;
    color: #fff;
}

/* Section */
.course-section {
    padding: 30px 0;
    background: #fff;
}

/* Title */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #222;
}

.section-subtitle {
    color: #000000;
    max-width: 700px;
    margin: 10px auto 0;
}

/* Swiper Fix */
.swiper {
    padding-bottom: 50px;
}

.swiper-slide {
    height: auto;
    display: flex;
}

/* Card */
.custom-card {
    width: 100%;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 30px 20px;
    background: #fff;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.custom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Text */
.card-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
}

.card-text {
    font-size: 0.95rem;
    color: #0f0f0f;
    margin: 15px 0;
}

/* Button */
.btn-live {
    background: #40a14f;
    color: #fff;
    padding: 10px 25px;
    border-radius: 8px;
    border: none;
}

.btn-live:hover {
    background: #3e8e41;
}

/* Dots */
.swiper-pagination-bullet {
    background: #3498db;
    opacity: 0.5;
}


.swiper-pagination-bullet-active {
    opacity: 1;
    width: 25px;
    border-radius: 10px;
}


.stats-section {
    background-color: #f0f0f0b3;
    padding: 30px 0;
}


.stats-title{
    font-size:40px;
    font-weight: 800;
}

.stats-para{
    font-size: 22px;
}

.stats-slider-wrapper {
    position: relative;
    max-width: 550px;
    margin: auto;
    overflow: visible;
    /* Arrows visible rakhne ke liye */
}

.stats-viewport {
    overflow: hidden;
    /* Ek card dikhane ke liye zaroori hai */
    border-radius: 15px;
}

.stats-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.stats-card {
    min-width: 100%;
    /* Fixed: 1 card per view */
    background: #fff;
    padding: 50px 40px;
    text-align: center;
    box-sizing: border-box;
}

.card-icon {
    margin-bottom: 20px;
}

.card-icon img {
    width: 100px;
    height: auto;
}

.stats-card-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

/* Green Theme Navigation */
.stats-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #28a745;
    color: #fff;
    border: 2px solid #28a745;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.stats-nav:hover {
    background: #fff;
    color: #28a745;
}

.prev {
    left: -22px;
}

.next {
    right: -22px;
}

@media (max-width: 991px) {
    .stats-nav {
        display: none;
    }
}

.zb-stats-premium-section {
    background: #f0f0f0b3;
    padding: 30px 0;
    overflow: hidden;
}

.zb-stats-premium-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.zb-stats-premium-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.zb-stats-premium-viewport {
    overflow: hidden;
}

.zb-stats-premium-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    cursor: grab;
}

.zb-stats-premium-track:active {
    cursor: grabbing;
}

/* Desktop: 2 Cards */
.zb-stats-premium-card {
    min-width: 50%;
    padding: 15px;
    box-sizing: border-box;
}

.zb-stats-premium-box {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.zb-stats-premium-heading {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

/* GREEN THEME */
.zb-btn-green {
    margin-top: 20px;
    background: #40a14f;
    color: #fff;
    padding: 12px 35px;
    border: 2px solid #40a14f;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.zb-btn-green:hover {
    background: transparent;
    color: #4CAF50;
}

.zb-premium-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #4CAF50;
    color: #fff;
    border: 2px solid #4CAF50;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.zb-premium-nav-btn:hover {
    background: #fff;
    color: #4CAF50;
}

.zb-prev {
    left: -25px;
}

.zb-next {
    right: -25px;
}

/* RESPONSIVE BREAKPOINTS */

/* Tablet & Large Mobile: 1 Card */
@media (max-width: 1024px) {
    .zb-stats-premium-card {
        min-width: 100%;
    }

    .zb-prev {
        left: 0;
    }

    .zb-next {
        right: 0;
    }
}

/* Small Mobile: Hide Arrows, keep touch swipe */
@media (max-width: 768px) {
    .zb-premium-nav-btn {
        display: none !important;
    }

    .zb-stats-premium-title {
        font-size: 28px;
    }
}

/* MAIN SECTION */
.zb-section {
    position: relative;
    padding: 80px 0;
    background: url('../img/tech-bg.png') no-repeat center center/cover;
}

/* OVERLAY */
.zb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 70, 100, 0.85);
}

/* CONTENT */
.zb-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

/* HEADING */
.zb-heading {
    font-size: 34px;
    font-weight: 800;
}

/* SUB TEXT */
.zb-subtext {
    max-width: 800px;
    margin: 10px auto 40px;
    color: #ddd;
    line-height: 1.6;
}

/* CARD */
.zb-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    text-align: left;
    height: 100%;
    transition: 0.3s;
}

.zb-card:hover {
    transform: translateY(-5px);
}

/* ICON + TITLE ROW */
.zb-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

/* ICON */
.zb-icon {
    min-width: 45px;
}

.zb-icon img {
    width: 45px;
}

/* TITLE */
.zb-card-title {
    font-weight: 700;
    font-size: 1.25rem;
    color: #000000;
    margin: 0;
}

/* CARD TEXT */
.zb-card-text {
    font-size: 14px;
    color: #0a0a0a;
    line-height: 1.6;
}


.custom-ts-section {
    padding: 30px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.custom-ts-heading {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    color: #212529;
    /* Dark color for main text */
    margin-bottom: 25px;
}

.custom-ts-accent {
    color: #40a14f;
    /* Green color */
}

.custom-ts-paragraph {
    font-size: 16px;
    line-height: 1.7;
    color: #121111;
    margin-bottom: 35px;
    max-width: 90%;
}

.custom-ts-btn {
    background-color: #40a14f;
    color: #fff;
    padding: 14px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.custom-ts-btn:hover {
    background-color: #388e3c;
    color: #fff;
}

/* Image Side Logic */
.custom-ts-img-wrapper {
    position: relative;
    height: 100%;
    min-height: 450px;
}

.custom-ts-img-fluid {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .custom-ts-heading {
        font-size: 2rem;
    }

    .custom-ts-img-wrapper {
        clip-path: none;
        margin-top: 40px;
        min-height: 350px;
    }

    .custom-ts-paragraph {
        max-width: 100%;
    }
}


.lms-main-wrapper {
    position: relative;
    padding: 30px 0;
    /* Background image aap yahan lagayenge */
    background:
        url('../img/lms-bg.png') no-repeat center center;
    background-size: cover;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.lms-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.lms-desc {
    font-size: 16px;
    color: #444;
    margin-bottom: 25px;
}

/* Left side icons container */
.lms-icons-box {
    margin-bottom: 30px;
    max-width: 400px;
}

.lms-brand-img {
    max-width: 100%;
    height: auto;
    /* Aap icons ki image yahan handle karenge */
}

/* List styling for right side */
.lms-list {
    list-style: none;
    padding: 0;
}

.lms-list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.lms-list-item i {
    color: #43a047;
    /* Green arrow color */
    margin-right: 10px;
    margin-top: 5px;
    font-size: 14px;
}

/* Buttons */
.lms-btn {
    background-color: #40a14f;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    transition: 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.lms-btn:hover {
    background-color: #388e3c;
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .lms-main-wrapper {
        padding: 50px 0;
    }

    .lms-title {
        font-size: 26px;
    }

    .lms-space {
        margin-bottom: 40px;
    }
}


/*--------------------------------------------------------------
# Expert Showcase Section
--------------------------------------------------------------*/
#experts-display {
    padding: 30px 0;
}

.display-header {
    text-align: center;
    padding-bottom: 30px;
}

.display-title {
    font-size: 36px;
    font-weight: 700;
}

.display-subtitle {
    font-size: 18px;
    color: #000;
    font-weight: normal;
}

/* Tabs Styling */
.expert-tabs-list {
    border: none;
    background: color-mix(in srgb, var(--surface-color), transparent 50%);
    border-radius: 16px;
    backdrop-filter: blur(8px);
}

.tab-wrapper {
    margin-bottom: 15px;
    box-shadow: 0 8px 32px rgb(0 0 0 / 6%);
}

.tab-wrapper:last-child {
    margin-bottom: 0;
}

.tab-trigger {
    padding: 20px;
    border: none;
    border-radius: 12px;
    background: #ffff;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.avatar-holder {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.tab-main-name {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #000;
    transition: all 0.4s ease;
}

.tab-sub-info {
    font-size: 14px;
    margin: 0;
    color: #231f20;
    transition: all 0.4s ease;
    font-weight: 500;
}

.tab-trigger:hover {
    transform: translateY(-2px);
    background-color: #b7e7d7;
}

/* Active Tab Indicator */
.tab-trigger.active {
    border-left: 5px solid #4fe800 !important;
    background-color: #f0faff;
}

/* Content Box Styling */
.expert-details-area .expert-card {
    background: var(--surface-color);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid #80808045;
}

.card-inner-header {
    align-items: center;
}

.large-avatar {
    width: 80px;
    /* Adjusted to fit layout */
}

.header-text-block {
    margin-left: 20px;
}

.expert-full-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0;
}

.expert-tenure {
    margin-bottom: 0;
    font-size: 16px;
}

.rating-stars img {
    width: 110px;
}

.expert-bio {
    color: #0a0a0a;
    line-height: 1.6;
    margin: 20px 0;
    font-size: 16px;
}

.performance-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
}

.metric-item {
    display: flex;
    gap: 11px;
    align-items: start;
}

.metric-value {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.metric-text {
    font-size: 14px;
    color: #666;
}

/* Button Styling */
.action-footer {
    padding-bottom: 10px;
}

.connect-btn {
    background-color: #40a14f;
    color: #ffffff !important;
    border: 2px solid #40a14f;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.connect-btn:hover {
    background-color: transparent;
    color: #40a14f!important;
}

/* Animations */
.tab-pane {
    transition: all 0.4s ease;
}

.tab-pane.fade {
    transform: translateY(10px);
    opacity: 0;
}

.tab-pane.show {
    transform: translateY(0);
    opacity: 1;
}

/* Responsive Queries */
@media (max-width: 991px) {
    .expert-tabs-list {
        margin-bottom: 30px;
    }

    .tab-trigger {
        padding: 15px;
    }

    .expert-card {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .tab-main-name {
        font-size: 15px;
    }

    .expert-full-name {
        font-size: 22px;
    }

    .performance-stats {
        flex-direction: column;
        gap: 15px;
    }
}

/* Unique Prefix: math- */

.math-hero-section {
    position: relative;
    padding: 30px 0;
    /* Aapki Background Image Yahan Ayegi */
    background: url('../img/math-bg.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    min-height: 450px;
}

.math-main-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.math-subtitle {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 30px;
    opacity: 0.9;
}

.math-features-row {
    /* max-width: 850px; */
    margin: 0 auto;
}

.math-feature-list {
    list-style: none;
    padding: 0;
}

.math-feature-list li {
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

/* Same Arrow as Image (FontAwesome Caret) */
.math-feature-list li i {
    color: #43a047;
    /* Green arrow color */
    margin-right: 10px;
    font-size: 20px;
}

/* Button Group Styling */
.math-btn-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.math-btn-blue {
    background-color: #007bbd;
    /* Exact Blue from image */
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 14px;
    transition: 0.3s;
}

.math-btn-green {
    background-color: #40a14f;
    /* Exact Green from image */
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 14px;
    transition: 0.3s;
}

.math-btn-blue:hover,
.math-btn-green:hover {
    opacity: 0.9;
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .math-main-title {
        font-size: 28px;
    }

    .math-feature-list li {
        font-size: 14px;
    }

    .math-features-row {
        text-align: center;
    }
}


/* General Setup */
.ac-comments-section {
    padding: 80px 0;
    background-color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Carousel Layout */
.ac-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 40px;
}

.ac-carousel-viewport {
    overflow: hidden;
    width: 100%;
}

.ac-review-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Review Card */
.ac-review-card {
    min-width: 33.333%;
    padding: 15px;
    box-sizing: border-box;
}

#acReviewTrack {
    display: flex;
}

.ac-review-card {
    flex: 0 0 33.33%;
}

@media (max-width: 992px) {
    .ac-review-card {
        flex: 0 0 50%;
    }
}

@media (max-width: 576px) {
    .ac-review-card {
        flex: 0 0 100%;
    }
}

.ac-card-inner {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

/* Platform Badge (Top Right) */
.ac-platform-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 22px;
}

/* Star Color Fix (Yellow) */
.ac-star-icon,
.ac-stars i {
    color: #ffb400 !important;
}

.fb-color {
    color: #1877f2;
}

.tp-color {
    color: #00b67a;
}

.go-color {
    color: #4285f4;
}

.sj-color {
    color: #ff6d00;
}

/* User Info */
.ac-user-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #eee;
    margin-right: 15px;
}

.ac-review-text {
    font-size: 14.5px;
    color: #555;
    line-height: 1.6;
    margin-top: 20px;
}

/* Navigation Buttons */
.ac-nav-btn {
    width: 45px;
    height: 45px;
    background: #40a14f;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 10;
    transition: 0.3s;
}

.ac-prev {
    left: 0;
}

.ac-next {
    right: 0;
}

.ac-nav-btn:hover {
    background: #388e3c;
    transform: scale(1.1);
}

/* Platform Tabs & Hover Fix */
.ac-tab-box {
    background: #c7d2fe;
    padding: 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
    border-bottom: 5px solid transparent;
    color: #333;
    /* Default text color */
}

/* Hover Effect */
.ac-tab-box:hover {
    background: #0f172a;
    color: #fff !important;
    border-bottom-color: #4caf50;
    transform: translateY(-3px);
}

/* Active State */
.ac-tab-box.active {
    background: #0f172a;
    color: #fff !important;
    border-bottom-color: #4caf50;
}

/* Ensure active platform titles stay visible */
.ac-tab-box.active .ac-platform-title {
    color: #fff !important;
}

.ac-rating {
    font-weight: bold;
    font-size: 18px;
}

.ac-customer-label {
    font-size: 12px;
    margin: 5px 0;
    opacity: 0.8;
}

.ac-platform-title {
    font-weight: 800;
    margin: 0;
    font-size: 20px;
}

/* Responsive Settings */
@media (max-width: 991px) {
    .ac-review-card {
        min-width: 50%;
    }

    .ac-nav-btn {
        display: none !important;
    }

    .ac-carousel-container {
        padding: 0;
    }
}

@media (max-width: 576px) {
    .ac-review-card {
        min-width: 100%;
    }
}


/* Layout & Spacing */
.ac-service-wrapper {
    background-color: #ffffff;
    overflow: hidden;
}

.ac-row-spacing {
    margin-bottom: 70px;
}

/* Typography */
.ac-section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.ac-text-highlight {
    color: #28a745;
    /* Custom Green */
}

.ac-description {
    font-size: 1rem;
    color: #0e0e0e;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.ac-sub-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1rem;
}

/* Images & Effects */
.ac-image-box {
    width: 100%;
}

.ac-main-img {
    width: 100%;
    height: auto;
    display: block;
}


/* Buttons */
.ac-btn {
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.ac-btn-primary,
.ac-btn-secondary {
    background-color: #28a745;
    color: #fff;
}

.ac-btn:hover {
    background-color: #218838;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
}

.ac-showcase-section {
    position: relative;
    padding: 40px 0;
    background-image: url('../img/scroll-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: left;
}

.ac-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ac-relative-content {
    position: relative;
    z-index: 2;
}

.ac-main-heading {
    font-size: 30px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: left;
}

.ac-showcase-section .ac-sub-heading {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    font-family: "Oswald", sans-serif;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-align: left;
}

.ac-showcase-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #ffffff !important;
    margin-bottom: 20px;
    max-width: 100%;
    text-align: left;
}

.ac-list {
    font-size: 18px;
    color: #ffff;
}

/* --- SCROLLING --- */
.ac-scroll-wrapper {
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 20px;
}

.ac-inner-content {
    /* min-height: 1200px; */
}

/* Scrollbar Styling */
.ac-scroll-wrapper::-webkit-scrollbar {
    width: 6px;
    background: #ffff;
}

.ac-scroll-wrapper::-webkit-scrollbar-thumb {
    background: #a6bdcd;
    border-radius: 10px;
}

/* Comparison Table Styling (Added for consistency) */
.ac-comparison-wrapper {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
}

.ac-comparison-title {
    color: #fff;
    font-size: 22px;
    margin-bottom: 20px;
}

.ac-table-header {
    font-weight: bold;
    border-bottom: 2px solid #fff;
}

.ac-table-row {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.ac-table-col {
    flex: 1;
    color: #fff;
    padding: 5px;
}

.ac-highlight-text {
    color: #ffcc00;
}

@media (max-width: 767px) {
    .ac-main-heading {
        font-size: 24px;
    }

    .ac-scroll-wrapper {
        max-height: 60vh;
    }
}

/* General Setup */
.ac-comments-section {
    padding: 80px 0;
    background-color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Carousel Layout */
.ac-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 40px;
}

.ac-carousel-viewport {
    overflow: hidden;
    width: 100%;
}

.ac-review-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Review Card */
.ac-review-card {
    min-width: 33.333%;
    padding: 15px;
    box-sizing: border-box;
}

.ac-card-inner {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

/* Platform Badge (Top Right) */
.ac-platform-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 22px;
}

.fb-color {
    color: #1877f2;
}

.tp-color {
    color: #00b67a;
}

.go-color {
    color: #4285f4;
}

.sj-color {
    color: #ff6d00;
}

/* User Info */
.ac-user-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #eee;
    margin-right: 15px;
}

.ac-stars {
    color: #ff9800;
    font-size: 13px;
    margin-top: 5px;
}

.ac-review-text {
    font-size: 14.5px;
    color: #0c0c0c;
    line-height: 1.6;
    margin-top: 20px;
}

/* Navigation Buttons */
.ac-nav-btn {
    width: 45px;
    height: 45px;
    background: #4caf50;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 10;
    transition: 0.3s;
}

.ac-prev {
    left: 0;
}

.ac-next {
    right: 0;
}

.ac-nav-btn:hover {
    background: #388e3c;
    transform: scale(1.1);
}

/* Platform Tabs */
.ac-tab-box {
    background: #c7d2fe;
    padding: 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    border-bottom: 5px solid transparent;
}

/* .ac-tab-box.active {
    background: #0f172a;
    color: #fff;
    border-bottom-color: #4caf50;
} */

.ac-rating {
    font-weight: bold;
    font-size: 18px;
}

.ac-customer-label {
    font-size: 12px;
    margin: 5px 0;
    opacity: 0.8;
}

.ac-platform-title {
    font-weight: 800;
    margin: 0;
    font-size: 20px;
}

/* Responsive Settings */
@media (max-width: 991px) {
    .ac-review-card {
        min-width: 50%;
    }

    .ac-nav-btn {
        display: none !important;
    }

    /* Hide arrows on mobile */
    .ac-carousel-container {
        padding: 0;
    }
}

@media (max-width: 576px) {
    .ac-review-card {
        min-width: 100%;
    }
}


.faq-section {
    background-color: #f8f9fa;
    /* Light grey background jesa image mein hai */
}

.faq-section h3 {
    font-size: 2.2rem;
    color: #000;
    padding-bottom: 20px;
}

.faq-section .subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Accordion Item Styling */
.accordion-item {
    background: #ffffff;
    border: 1px solid #e0e0d8;
    border-radius: 10px !important;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Button Reset */
.accordion-button {
    padding: 18px 25px;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    background-color: transparent;
    box-shadow: none !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Hover State - Green */
.accordion-item:hover {
    border-color: #4caf50;
}

.accordion-item:hover .accordion-button {
    background-color: #4caf50;
}

.accordion-item:hover .accordion-button p {
    color: #ffffff !important;
}

.accordion-item:hover .accordion-button::after {
    filter: brightness(0) invert(1);
    /* Arrow becomes white */
}

/* Open State - Green */
.accordion-button:not(.collapsed) {
    background-color: #4caf50 !important;
    color: #ffffff !important;
}

.accordion-button:not(.collapsed) p {
    color: #ffffff !important;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
    transform: rotate(-180deg);
}

/* Answer Area */
.accordion-body {
    padding: 20px 25px;
    font-size: 0.9rem;
    color: #555;
    background-color: #ffffff;
    border-top: 1px solid #eee;
}

/* --- General Footer Styling --- */
.footer-section {
    background-color: #002b2b;
    /* Exact Dark Teal from Image */
    color: #ffffff;
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    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;
}


/* Section Background */
.help-custom-section {
    padding: 80px 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: 800;
    text-align: center;
    margin-bottom: 5px;
}

.sub-title-text {
    font-size: 15px;
    color: #666;
    text-align: center;
    margin-bottom: 25px;
}

.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;
    /* Text aur Inline elements ko center karta hai */
    width: 100%;
    margin-top: 20px;
    display: block;
    /* Ensure karta hai ke p tag poori width le */
}

.green-submit-btn {
    background-color: #40a14f;
    color: white;
    border: none;
    padding: 12px 45px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    display: inline-block;
    /* Center alignment ke liye zaroori hai */
    transition: background 0.3s ease;
}

.green-submit-btn:hover {
    background-color: #3d8e52;
}


/* 2. Image Side Styling (Separated) */
.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;
    }
}

/* --- Column 2 & 3: Links --- */
.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: #20c997;
    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;
}

/* --- COLUMN 4: CONTACT & HOVERS --- */
.contact-col {
    /* border-left: 4px solid #20c997; */
    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: #20c997;
    transform: scale(1.02);
}

.contact-info i {
    margin-right: 10px;
    color: #ffffff;
}

/* Whatsapp Button */
.btn-whatsapp {
    background-color: #12a5d9;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    padding: 12px;
    display: block;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
    margin-top: 20px;
}

.btn-whatsapp:hover {
    background-color: #0e8cb8;
    color: white;
    box-shadow: 0 4px 15px rgba(18, 165, 217, 0.3);
}

/* 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;
    }
}


.acc-slider-wrapper {
    overflow: hidden;
    position: relative;
}

.acc-heading{
    font-size: 40px;
    font-weight: 800;
}

.acc-subtext{
    font-size: 22px;
}

.acc-card-desc{
    font-size: 18px;
}

.acc-slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.acc-card {
    flex: 0 0 33.33%;
    padding: 15px;
}

.acc-card-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.acc-card-title {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 10px;
}

.acc-card-desc {
    margin: 0;
}

/* Tablet */
@media (max-width: 992px) {
    .acc-card {
        flex: 0 0 50%;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .acc-card {
        flex: 0 0 100%;
    }
}

/* DOTS */
.acc-dots {
    text-align: center;
    margin-top: 20px;
}

.acc-dots span {
    width: 10px;
    height: 10px;
    background: #ccc;
    margin: 5px;
    display: inline-block;
    border-radius: 50%;
}

.acc-dots .active {
    background: rgb(0, 233, 39);
}


/* ================= 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: #1a7db8;
}

/* RIGHT â€” Blue */
.exam-col-right {
    background: #40a353;
}

/* ================= COL TITLE ================= */
.exam-col-title {
    font-size: 30px;
    font-weight: 900;
    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;
    }
}


.finacc-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.finacc-track {
    display: flex;
    transition: transform 0.5s ease;
}
.finacc-heading{
    font-size: 36px;
    font-weight: 800;
}

.finacc-card {
    flex: 0 0 33.33%;
    padding: 15px;
}

.finacc-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
}

/* NEW */
.finacc-title {
    font-weight: 700;
    margin-bottom: 10px;
}

.finacc-desc {
    margin: 0;
}

/* Tablet */
@media (max-width: 992px) {
    .finacc-card {
        flex: 0 0 50%;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .finacc-card {
        flex: 0 0 100%;
    }

    .finacc-prev,
    .finacc-next {
        display: none;
    }
}

/* ARROWS */
.finacc-prev,
.finacc-next {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: #40a14f;
    border-radius: 50%;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 20px;
}

.finacc-prev { left: 10px; }
.finacc-next { right: 10px; }

.finacc-prev:hover,
.finacc-next:hover {
    background: darkgreen;
}


.acc20-slider-wrapper{
    overflow:hidden;
    cursor:grab;
}

.acc20-heading{
    font-size: 36px;
    font-weight: 800;
}

.acc20-track{
    display:flex;
    transition:transform 0.5s ease;
}

.acc20-card{
    flex:0 0 33.33%;
    padding:15px;
}

.acc20-box{
    background:#fff;
    padding:20px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);

    display:flex;
    flex-direction:column;
    height:100%;
    text-align:center;
}

.acc20-box h5{
    margin-bottom:10px;
}

.acc20-box p{
    flex:1;
}

/* BUTTON SAME LINE BOTTOM */
.acc20-btn{
    margin-top:auto;
    background:#40a14f;
    font-weight: 700;
    color:#fff;
    border:none;
    padding:10px 18px;
    border-radius:6px;
    cursor:pointer;
}

.acc20-btn:hover{
    background:darkgreen;
}

.acc20-card-title{
     font-weight: 700;
    font-size: 24px;
    margin-bottom: 10px;
}

/* RESPONSIVE */
@media(max-width:992px){
    .acc20-card{flex:0 0 50%;}
}

@media(max-width:576px){
    .acc20-card{flex:0 0 100%;}
}