* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
}

p,
li {
    font-family: "Open Sans", sans-serif;

}

/* ─────────────────────────────────────────
       TOP BAR
    ───────────────────────────────────────── */
.top-bar {
    position: absolute;
    padding: 5px 0;
    top: 0;
    width: 100%;
    z-index: 1001;
}

.top-bar .top-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    flex-wrap: wrap;
}

.top-bar .top-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.top-bar .top-links a:hover {
    color: #8bc34a;
}

.top-bar .top-links a .icon-wrap {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #8bc34a;
    flex-shrink: 0;
}

.top-bar .top-links a span.label {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.08em;
}

/* ─────────────────────────────────────────
       MAIN HEADER / NAVBAR
    ───────────────────────────────────────── */
.main-header {
    position: absolute;
    top: 0px;
    width: 100%;
    z-index: 999;
}

.main-header .navbar {
    padding: 10px 0;
    min-height: 70px;
}

/* Logo area */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.navbar-brand img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-text .line1 {
    color: #8bc34a;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.brand-text .line2 {
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.03em;
}

/* Nav links */
.navbar-nav .nav-link {
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 12px 14px !important;
    transition: color 0.2s;
    position: relative;
}

/* .navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #8bc34a !important;
} */

/* Desktop: underline only as wide as text */
.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background: #8bc34a;
    border-radius: 2px;
}

/* CTA Button */
.btn-talk {
    background-color: #a9cf9b;
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 20px !important;
    border-radius: 4px;
    border: none;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.btn-talk:hover {
    background-color: #9cce5d;
    transform: translateY(-1px);
    color: #ffffff !important;
}

/* Toggler */
.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* ─────────────────────────────────────────
       MOBILE NAV FIXES
    ───────────────────────────────────────── */
@media (max-width: 991.98px) {

    /* Center all nav items */
    #mainNav {
        text-align: center;
        padding: 12px 0 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        margin-top: 10px;
    }

    .navbar-nav {
        align-items: center !important;
    }

    .navbar-nav .nav-item {
        width: auto;
        /* only as wide as the text */
    }

    /* Remove left/right padding so underline fits text */
    .navbar-nav .nav-link {
        padding: 9px 0 !important;
        display: inline-block;
    }

    /* Active underline: full width of text, no extra padding gap */
    .navbar-nav .nav-link.active::after {
        left: 0;
        right: 0;
    }

    /* Divider line only as wide as text */
    .navbar-nav .nav-item+.nav-item {
        border-top: 1px solid rgba(255, 255, 255, 0.07);
        width: 100%;
        text-align: center;
    }

    /* Talk to Experts button: centered, auto width */
    .navbar-nav .nav-item.ms-lg-3 {
        margin-top: 14px !important;
        width: auto;
        border-top: none !important;
    }

    .btn-talk {
        display: inline-block;
        padding: 10px 28px !important;
    }
}

/* ─────────────────────────────────────────
       HERO SECTION
    ───────────────────────────────────────── */
.hero-section {
    position: relative;
    min-height: 480px;
    margin-top: 0;
    /* IMPORTANT */
}

.hero-bg-img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(90deg,
            rgba(10, 10, 18, 0.88) 0%,
            rgba(10, 10, 18, 0.70) 55%,
            rgba(10, 10, 18, 0.10) 100%); */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 0;
}

.hero-content .hero-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.22;
    color: #ffffff;
    margin-bottom: 18px;
}

.hero-content .hero-title span {
    color: #a9cf9d;
}

.hero-content .hero-desc {
    font-size: 14px;
    font-weight: 400;
    color: #cccccc;
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-live-chat {
    background-color: #159cd4;
    color: #fcfcfc !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 11px 24px;
    border-radius: 4px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: background 0.2s, transform 0.15s;
}

.btn-live-chat:hover {
    background-color: #03b2fd;
    transform: translateY(-1px);
    color: #111 !important;
}

.btn-call-now {
    background-color: #a9cf9b;
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 11px 24px;
    border-radius: 4px;
    /* border: 2px solid #8bc34a; */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-call-now:hover {
    background-color: #8bc34a;
    color: #111 !important;
    transform: translateY(-1px);
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: 380px;
    }

    .hero-content {
        padding: 50px 0;
        text-align: center;
    }

    .hero-content .hero-title {
        font-size: 26px;
    }

    .hero-content .hero-desc {
        font-size: 13px;
        max-width: 100%;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-overlay {
        background: rgba(10, 10, 18, 0.75);
    }
}

/* 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: #26a3d6;
    color: white;
    border: none;
    width: 100%;
    height: 48px;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s ease;
}

.consult-submit-btn:hover {
    background-color: #1e8bb9;
}

/* Infinite Logo Carousel Styling */
.logo-carousel-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}

.logo-slider-track {
    display: flex;
    width: calc(260px * 16);
    /* 8 logos * 2 sets */
    animation: scrollInfinite 30s linear infinite;
}

.logo-slide-card {
    width: 260px;
    padding: 10px;
}

.logo-box {
    /* border: 1px solid #ececec; */
    border-radius: 10px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 5px; */
    /* background: #fff; */
    /* box-shadow: 0 2px 8px rgba(0,0,0,0.04); */
}

.logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Infinite Scroll Animation Logic */
@keyframes scrollInfinite {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-260px * 8));
    }

    /* Scroll exactly 8 items */
}

/* Pause animation on hover */
.logo-carousel-container:hover .logo-slider-track {
    animation-play-state: paused;
}


/* trusted section */
.trusted-help-section {
    background-color: #ffffff;
    overflow: hidden;
    padding: 30px 0;
}

/* Image Wrapper with Custom Shape */
.image-wrapper-custom {
    position: relative;
    padding: 10px;
}

.main-student-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Right Side Content Styling */
.content-box-right {
    padding-left: 20px;
}

.main-heading-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d233e;
    /* Dark Navy Blue */
    line-height: 1.2;
    margin-bottom: 20px;
}

.description-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}

/* Button Styling */
.talk-expert-btn {
    background-color: #24a1d1;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.talk-expert-btn:hover {
    background-color: #1b85ad;
    box-shadow: 0 5px 15px rgba(36, 161, 209, 0.3);
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .main-heading-title {
        font-size: 2rem;
        text-align: center;
    }

    .content-box-right {
        padding-left: 0;
        text-align: center;
    }

    .image-wrapper-custom {
        max-width: 400px;
        margin: 0 auto;
    }
}

#courses-services {
    background-color: #f0f0f0b3;
    padding: 30px 0;
}

.premium-title-heading {
    font-size: 36px;
    font-weight: 700;
}

.serivces-content-title {
    font-size: 36px;
    font-weight: 700;
}
.card-name-heading{
    font-size: 28px;
        margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--bs-heading-color);
}

.mycarousel-single-wrapper {
    position: relative;
    max-width: 550px;
    margin: 0 auto;
    overflow: hidden;
}

.mycarousel-single-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.mycarousel-single-card {
    min-width: 100%;
    background: #fff;
    height: auto;
    padding: 50px 40px;
    /* border-radius: 15px; */
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.05); */
    text-align: center;
}

/* Arrows Default Style */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #00a8e8;
    /* Default Blue */
    color: #ffffff;
    border: 2px solid #00a8e8;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.prev-btn {
    left: 0x;
}

.next-btn {
    right: 0px;
}

/* Hover State (White Background, Blue Arrow) */
.carousel-nav:hover {
    background: #ffffff;
    /* Background White */
    color: #00a8e8;
    /* Arrow Blue */
}

@media (max-width: 991px) {
    .carousel-nav {
        display: none;
    }
}

.premium-slider-section {
    background-color: #f0f0f0b3;
    padding: 30px 0;
}

.ps-slider-wrapper {
    position: relative;
    max-width: 1100px;
    margin: auto;
    /* padding: 0 50px; */
}

.ps-viewport {
    overflow: hidden;
}

.ps-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.ps-card {
    min-width: 50%;
    padding: 15px;
    box-sizing: border-box;
}

.ps-box {
    background: #fff;
    padding: 40px 20px;
    /* border-radius: 15px; */
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.05); */
    text-align: center;
}

.ps-box-title {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 600;
}

.ps-box button {
    margin-top: 15px;
    background-color: #24a1d1;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.ps-box button:hover {
    background: #ffffff;
    color: #00a8e8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 168, 232, 0.25);
}

/* Buttons */
.ps-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #00a8e8;
    color: #fff;
    cursor: pointer;
    z-index: 10;
}

.ps-prev {
    left: 0;
}

.ps-next {
    right: 0;
}

.ps-btn:hover {
    background: #fff;
    color: #00a8e8;
    border: 2px solid #00a8e8;
}

/* Mobile */
@media (max-width: 991px) {
    .ps-card {
        min-width: 100%;
    }

    .ps-btn {
        display: none;
    }

    .ps-slider-wrapper {
        padding: 0;
    }
}

/* Container for the single card view */
.custom-slider-container {
    overflow: hidden;
    border-radius: 15px;
    background: transparent;
}

/* Track holding all cards */
.custom-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Individual Card */
.custom-card {
    min-width: 100%;
    background: #ffffff;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    margin: 10px 0;
    /* Box shadow display ke liye */
}

/* Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #00a8e8;
    color: white;
    border: 2px solid #00a8e8;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.slider-arrow:hover {
    background: #fff;
    color: #00a8e8;
}

.prev {
    left: -25px;
}

.next {
    right: -25px;
}

/* Desktop Arrows style */
.prev::before {
    content: "";
}

/* Responsive: Choti screen par arrow show naah ho */
@media (max-width: 991px) {
    .slider-arrow {
        display: none !important;
    }
}


.services-carousel-section {
    padding: 30px 0;
    background-color: #fff;
}

.services-main-title {
    font-weight: 800;
    font-size: 2.5rem;
    color: #222;
}

.services-sub-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Card Styling */
.service-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    text-align: left;
    height: 30rem;
    margin: 10px 0;
}

.card-service-title {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #222;
}

.card-service-desc {
    /* color: #777; */
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.live-chat-btn {
    background-color: #24a1d1;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: 0.3s;
}

.live-chat-btn:hover {
    background-color: #1b85ad;
}


.slick-dots {
    bottom: -40px;
    display: flex !important;
    justify-content: center;
    list-style: none;
    padding: 0;
}

.slick-dots li {
    margin: 0 5px;
}

.slick-dots li button:before {
    /* font-size: 12px; */
    color: #b5e0b5 !important;
    font-size: 10px !important;
    opacity: 1 !important;
}

.slick-dots li.slick-active button:before {
    color: #8bc34a;
    width: 30px;
    content: '';
    background: #8bc34a;
    height: 8px;
    top: 5px;
    border-radius: 10px;
}

/* Section Main Background */
.benefits-section {
    background-color: #d1e8d1;
    padding: 30px 0;
}

.benefits-main-title {
    font-weight: 700;
    font-size: 2.2rem;
    color: #111;
    margin-bottom: 15px;
}

.benefits-sub-text {
    color: #444;
    font-size: 0.95rem;
    max-width: 900px;
    line-height: 1.5;
}

/* Benefit Card Styling */
.benefit-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 30px 25px;
    /* Thodi padding kam ki hai taake line length sahi rahe */
    border: none;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

/* Updated Icon Container for Inline Look */
.icon-holder {
    width: 45px;
    /* Size thoda chota kiya taake heading ke sath suit kare */
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* Icon heading ke sath dabey nahi */
}

.icon-holder img {
    max-width: 100%;
    object-fit: contain;
}

/* Updated Card Typography */
.benefit-card-title {
    font-weight: 700;
    font-size: 1.25rem;
    /* Size thoda adjust kiya inline look ke liye */
    color: #222;
}

.benefit-card-desc {
    color: #555;
    font-size: 0.88rem;
    line-height: 1.6;
    margin-top: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .benefits-main-title {
        font-size: 1.8rem;
    }
}


/* Section Background */
.tech-support-section {
    background-color: #fff;
    padding: 40px 0;
}

/* Title Styling */
.tech-main-title {
    font-weight: 700;
    font-size: 2.5rem;
    color: #000000;
    /* Dark blue color from image */
    line-height: 1.2;
}

/* Paragraph Styling */
.tech-sub-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

/* Button Styling */
.talk-experts-btn {
    background-color: #24a1d1;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

.talk-experts-btn:hover {
    background-color: #1b85ad;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Image Container & Custom Shape */
.img-container {
    position: relative;
    text-align: center;
}

.custom-shape-img {

    width: 100%;
    max-width: 500px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .tech-main-title {
        font-size: 2rem;
        text-align: center;
    }

    .tech-sub-text {
        text-align: center;
    }

    .content-wrapper {
        text-align: center;
        padding-right: 0 !important;
    }
}



.assignment-section {
    background: url('../img/full-proff-bg.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 0;
}

.moodle-mgmt-title,
.lms-command-title {
    color: #111;
    font-size: 2.3rem;
    line-height: 1.2;
    letter-spacing: -1px;
    font-weight: 700;
}


.section-desc,
.list-item {
    color: #000000;
    font-size: 0.98rem;
    line-height: 1.6;
}

.assignment-list {
    margin-bottom: 15%;
}

.list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.list-icon {
    color: #ff5722;
    margin-right: 12px;
    margin-top: 5px;
    font-size: 0.9rem;
}

/* Buttons - Sky Blue */
.btn-slanted {
    background-color: #24a1d1;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: inline-block;
    letter-spacing: 0.5px;
}

.btn-slanted:hover {
    background-color: #1b85ad;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(36, 161, 209, 0.3);
    color: #fff;
}

.lms-image-wrapper {
    margin: 30px 0;
}

.main-lms-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 991px) {

    .moodle-mgmt-title,
    .lms-command-title {
        font-size: 1.8rem;
        text-align: center;
    }
}

.info-hero-section {
    min-height: 100%;
    background: url("../img/info-hero-bg.png") no-repeat center center/cover;
    position: relative;
    padding: 60px 0;
    color: #fff;
}

/* DARK BLUE OVERLAY */
.info-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(90deg, rgba(0,50,150,0.85), rgba(0,120,255,0.65)); */
}

/* CONTENT ABOVE OVERLAY */
.info-hero-section .container {
    position: relative;
    z-index: 2;
}

.info-hero-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.info-hero-subtitle {
    font-size: 14px;
    opacity: 0.9;
}

.info-hero-points p {
    font-size: 14px;
    margin: 6px 0;
}

.info-hero-buttons .btn {
    padding: 10px 20px;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .info-hero-title {
        font-size: 22px;
    }
}


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
#meet-our-team {
    padding: 30px 0;
}

section#meet-our-team .section-title {
    text-align: center;
}

.section-main-heading{
    font-size: 36px;
    font-weight: 700;
}


.section-para {
    font-size: 18px;
    color: #000;
    font-weight: normal;
}

.features .nav-tabs {
    border: none;
    background: color-mix(in srgb, var(--surface-color), transparent 50%);
    border-radius: 16px;
    backdrop-filter: blur(8px);
}

.features .nav-tabs .nav-item {
    margin-bottom: 15px;
    box-shadow: 0 8px 32px rgb(0 0 0 / 6%);
}

.features .nav-tabs .nav-item:last-child {
    margin-bottom: 0;
}

.features .nav-tabs .nav-link {
    padding: 20px;
    border: none;
    border-radius: 12px;
    background: var(--surface-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.features .nav-tabs .nav-link .d-flex {
    position: relative;
    z-index: 1;
}

.features .nav-tabs .nav-link .icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.features .nav-tabs .nav-link .icon-box i {
    font-size: 24px;
    color: var(--accent-color);
    transition: all 0.4s ease;
}

.features .nav-tabs .nav-link h4 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #000;
    transition: all 0.4s ease;
}

.features .nav-tabs .nav-link .nav-tabs-titles{
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #000;
    transition: all 0.4s ease;
}

.features .nav-tabs .nav-link p {
    font-size: 14px;
    margin: 0;
    color: color-mix(in srgb, #231f20, transparent 0%);
    transition: all 0.4s ease;
    font-weight: 500;
}

.features .nav-tabs .nav-link:hover {
    transform: translateY(-2px);
}

.features .nav-tabs .nav-link:hover::before {
    opacity: 1;
}

.features .nav-tabs .nav-link:hover .icon-box i {
    color: var(--contrast-color);
}

.features .nav-tabs .nav-link:hover h4 {
    color: var(--accent-color);
}

.features .nav-tabs .nav-link:hover p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .nav-tabs .nav-link.active {
    border-left: 5px solid #00a8e8 !important;
    /* Blue indicator on active tab */
    background-color: #f0faff;
    /* Light blue tint */
}

.features .nav-tabs .nav-link.active::before {
    opacity: 0;
}

.features .nav-tabs .nav-link.active .icon-box {
    background: color-mix(in srgb, var(--contrast-color), transparent 85%);
}

.features .nav-tabs .nav-link.active .icon-box i {
    color: var(--contrast-color);
}

.features .nav-tabs .nav-link.active h4 {
    color: var(--contrast-color);
}

.features .nav-tabs .nav-link.active p {
    color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.features .tab-content .content-box {
    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;
}

.features .tab-content .content-box h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.features .tab-content .content-box p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.features .tab-content .content-box p.highlight {
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 92%), color-mix(in srgb, var(--accent-color), transparent 95%));
    padding: 20px;
    border-radius: 12px;
    position: relative;
}

.features .tab-content .content-box .features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0;
}

.features .tab-content .content-box .features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-left: 8px;
    transition: all 0.3s ease;
}

.features .tab-content .content-box .features-list li:last-child {
    margin-bottom: 0;
}

.features .tab-content .content-box .features-list li i {
    font-size: 20px;
    color: var(--accent-color);
    margin-right: 12px;
}

.features .tab-content .content-box .features-list li span {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .tab-content .content-box .features-list li:hover {
    transform: translateX(5px);
}

.features .tab-content .content-box .features-list li:hover span {
    color: var(--default-color);
}

.features .tab-content .content-box .image-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.features .tab-content .content-box .image-box img {
    transition: all 0.6s ease;
}

.features .tab-content .content-box .image-box:hover img {
    transform: scale(1.05);
}

.features .tab-content .content-box .image-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
}

.features .tab-pane {
    transition: all 0.4s ease;
}

.features .tab-pane.fade {
    transform: translateY(10px);
    opacity: 0;
}

.features .tab-pane.show {
    transform: translateY(0);
    opacity: 1;
}


#meet-our-team .section-title {
    padding-bottom: 30px;
}

.meet-profile-name {
    margin-left: 20px;
}

.row .col-lg-12 .meet-profile-section .meet-profile-name {
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.row .col-lg-12 .meet-profile-section .meet-profile-name .profile-heading{
     font-size: 28px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0px;
    position: relative;
    padding-bottom: 0px;
}

.profile-description {
    color: #4a4a4a;
    line-height: 1.6;
    margin: 20px 0 20px;
}

.profile-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
}

.stat {
    display: flex;
    gap: 11px;
    align-items: start;
    text-align: center;
}

.stat-number {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.stat-label {
    color: #666;
}

.stat-label,
.tab-label,
.writer-card-body {
    font-size: 14px;
}

.meet-button {
    padding-bottom: 30px;
}

.meet-button a {
    background-color: #00a8e8;
    /* Updated to Theme Blue */
    color: #ffffff;
    border: 2px solid #00a8e8;
    /* Updated to Theme Blue */
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    /* Essential for padding */
    text-decoration: none;
}

.row .col-lg-12 .meet-profile-section .meet-profile-name .meet-experience {
    margin-bottom: 0px;
}

span.star img {
    width: 110px;
}




@media (max-width: 991px) {
    .features .nav-tabs {
        margin-bottom: 30px;
    }

    .features .nav-tabs .nav-link {
        padding: 15px;
    }

    .features .nav-tabs .nav-link .icon-box {
        width: 40px;
        height: 40px;
    }

    .features .nav-tabs .nav-link .icon-box i {
        font-size: 20px;
    }

    .features .tab-content .content-box {
        padding: 30px;
    }

    .features .tab-content .content-box h3 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .features .nav-tabs .nav-item {
        margin-bottom: 10px;
    }

    .features .nav-tabs .nav-link h4 {
        font-size: 15px;
    }

    .features .nav-tabs .nav-link p {
        font-size: 13px;
    }

    .features .tab-content .content-box {
        padding: 25px;
    }

    .features .tab-content .content-box h3 {
        font-size: 22px;
    }

    .features .tab-content .content-box p {
        font-size: 15px;
    }
}

results-section {
    background-color: #ffffff;
    padding: 30px 0;
    overflow: hidden;
}

/* Heading Style */
.section-title {
    font-weight: 700;
    color: #000000;
    /* Dark Blue/Navy */
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

/* Paragraph Text Style */
.section-description p {
    color: #555555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

/* Image Hover Effect (Optional) */
.custom-img {
    transition: transform 0.3s ease;
}

.custom-img:hover {
    transform: translateY(-5px);
}

/* Responsive adjustments for mobile */
@media (max-width: 991px) {
    .section-title {
        font-size: 2rem;
        text-align: center;
    }

    .section-description {
        text-align: center;
    }
}

/* --- expert-showcase-section --- */
.expert-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;
    /* 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: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: left;
    /* Force Left */
}

.expert-showcase-section .expert-sub-heading {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    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: #ffffff !important;
    margin-bottom: 20px;
    max-width: 100%;
    text-align: left;

}

.expert-list {
    font-size: 18px;
    color: #ffff;
}

/* --- 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;
    }
}


/* FAQ Section Main Styling */
.faq-section {
    background-color: #f8f9fa;
    font-family: 'Poppins', sans-serif;
    padding: 30px 0;
}

/* H3 Heading only */
h3.faq-title {
    font-weight: 800;
    font-size: 2.4rem;
    color: #000000;
    margin-bottom: 20px;
    text-align: center;
}

/* Subtitle P Tag */
.faq-subtitle {
    color: #6c757d;
    max-width: 650px;
    margin: 0 auto 0px auto;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
}

/* White Card Style with Transition for Hover */
.custom-faq .accordion-item {
    border: none;
    border-radius: 12px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    margin-bottom: 18px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    /* Smooth hover transition */
}

/* --- HOVER EFFECT LOGIC --- */
.custom-faq .accordion-item:hover {
    transform: translateY(-5px);
    /* Card thoda upar uthega */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    /* Shadow gehri ho jayegi */
    cursor: pointer;
}

/* Button & Question P Tag */
.custom-faq .accordion-button {
    background-color: #ffffff;
    padding: 14px;
    border: none;
    box-shadow: none !important;
}

.custom-faq .faq-question {
    margin: 0;
    font-weight: 600;
    font-size: 1rem;
    color: #333333;
    padding-right: 10px;
}

/* Active State (Jab open ho) */
.custom-faq .accordion-button:not(.collapsed) {
    background-color: #ffffff;
    color: #000;
}

/* Arrow Logic */
.custom-faq .accordion-button::after {
    background-size: 0.9rem;
}

/* Answer Area P Tag */
.custom-faq .accordion-body {
    background-color: #ffffff;
    border-top: 1px solid #f8f9fa;
    padding: 0.5rem 1.2rem 1.5rem 1.2rem;
}

.custom-faq .faq-answer {
    margin: 0;
    color: #666666;
    font-size: 0.92rem;
    line-height: 1.7;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    h3.faq-title {
        font-size: 1.8rem;
    }

    .faq-section {
        padding: 40px 15px;
    }

    /* Mobile par hover effect disable karna behtar hota hai */
    .custom-faq .accordion-item:hover {
        transform: none;
    }
}

/* --- Updated Hover & Open State Logic --- */

/* 1. Normal Hover (Jab band ho) */
.custom-faq .accordion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* 2. Open State Styling (Jab FAQ khula ho) */
/* Isse open hone par card ka background ya border change kar sakte hain */
.custom-faq .accordion-item:has(.accordion-button:not(.collapsed)) {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    /* Khulne par thodi zyada shadow */
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Light border jab open ho */
}

/* 3. Open hone par Question ka color change */
.custom-faq .accordion-button:not(.collapsed) .faq-question {
    color: #1c6eda;
    /* Open hone par text blue ho jayega (Optional) */
    font-weight: 600;
}

/* 4. Hover effect jab FAQ open ho (Specific Hover) */
.custom-faq .accordion-item:has(.accordion-button:not(.collapsed)):hover {
    transform: translateY(-3px);
    /* Khule hue card par halka bounce */
    background-color: #ffffff;
}

/* Mobile par stability ke liye */
@media (max-width: 991px) {

    .custom-faq .accordion-item:hover,
    .custom-faq .accordion-item:has(.accordion-button:not(.collapsed)):hover {
        transform: none;
        /* Mobile par jittering rokne ke liye transform band */
    }
}


.custom-form-section {
    padding: 30px 0;
    /* Upar-niche padding */
}

/* Form Card Style */
.custom-form-card {
    background-color: #ffffff;
    border-radius: 12px;
    /* Rounded corners */
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    /* Soft shadow effect */
    height: 100%;
    /* Column ki full height use karein */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Title styling using <p> tag */
.custom-form-title {
    font-size: 34px;
    text-align: center;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

/* Subtitle styling using <p> tag */
.custom-form-subtitle {
    font-size: 1rem;
    text-align: center;
    color: #6c757d;
    margin-bottom: 25px;
    font-weight: 400;
}

/* Input field custom styles */
.custom-form-input,
.custom-form-textarea {
    background-color: #fcfcfc;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    /* Field corners */
    padding: 12px 18px;
    font-size: 0.95rem;
    margin-bottom: 15px;
    /* Gap between fields */
}

/* Focus state styling */
.custom-form-input:focus,
.custom-form-textarea:focus {
    border-color: #31b3e8;
    /* Blue border on click */
    box-shadow: none;
    /* Default bootstrap outline hatao */
}

/* Submit Button Custom style */
.custom-submit-btn {
    background-color: #31b3e8;
    /* Blue color jaisa image mein hai */
    border: none;
    border-radius: 8px;
    color: white;
    padding: 10px 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 10px;
    transition: 0.3s ease;
    text-transform: uppercase;
}

.custom-submit-btn:hover {
    background-color: #26a3d9;
    /* Darker blue on hover */
}

/* Image Wrapper for Right Side Column */
.custom-image-wrapper {
    /* background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden; */
    /* Corners wrap karne ke liye */
    /* height: 100%; */
    /* Full column height */
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06); */
    /* Soft shadow effect */
}

.custom-right-image {
    width: 100%;
    /* Image full width cover kare */
    height: 100%;
    /* Image full height cover kare */
    object-fit: cover;
    /* Image perfectly adjust ho, khinche nahi */
}

/* Mobile adjust */
@media (max-width: 991px) {
    .custom-form-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .custom-form-subtitle {
        text-align: center;
    }

    .custom-image-wrapper {
        margin-top: 30px;
        /* Mobile par gap */
    }
}


/* ============================================
   ALL CLASSES HAVE UNIQUE "cust-" PREFIX
   ============================================ */

/* ----- Section background ----- */
.cust-comments-section {
    padding: 30px 0;
    background: #f8f9fb;
}

.cust-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.clients-reviews h3 {
    position: relative;
    color: #231f20;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 0px;
    padding-bottom: 10px;
}

.clients-reviews h3 span {
    display: block;
}

.clients-reviews p {
    font-size: 18px;
    font-weight: 400;
    color: color-mix(in srgb, #231f20, transparent 0%);
    line-height: 1.5;
    width: 100%;
    margin: 0px auto;
}

/* ----- Carousel outer & wrapper ----- */
.cust-carousel-outer {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
}

.cust-carousel-wrapper {
    overflow: hidden;
    padding: 20px 0;
}

.cust-review-track {
    display: flex;
    will-change: transform;
}

/* ----- Card sizing (responsive) ----- */
.cust-review-card {
    min-width: 33.333%;
    padding: 12px;
    box-sizing: border-box;
}

@media (max-width: 992px) {
    .mycarousel-card {
        flex: 0 0 calc(50% - 10px);
    }

    .mycarousel2-card {
        padding: 25px;
    }

    .mycarousel2-prev {
        left: 15px;
    }

    .mycarousel2-next {
        right: 15px;
    }

    .mycarousel4-card {
        flex: 0 0 calc(50% - 10px);
        padding: 20px;
    }

    .mycarousel4-prev {
        left: 15px;
    }

    .mycarousel4-next {
        right: 15px;
    }

    .cust-review-card {
        min-width: 50%;
    }

    .mycarousel4-arrow {
        top: 60%;
    }
}

/* ----- Inner card design ----- */
.cust-card-inner {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 25px;
    position: relative;
    height: 100%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.cust-user-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #5dade2;
    margin-right: 12px;
}

.cust-stars {
    color: #f39c12;
    font-size: 0.85rem;
}

.cust-satisfaction-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
}

.cust-review-text {
    font-size: 0.9rem;
    color: #555;
    margin-top: 15px;
    line-height: 1.6;
}

/* ----- Navigation buttons (unique) ----- */
.cust-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #159cd4;
    color: #fff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    z-index: 999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.cust-prev-btn {
    left: -70px;
}

.cust-next-btn {
    right: -70px;
}

.cust-nav-btn:hover {
    background: #029ef8;
}

/* ----- Social badge (optional, inside card) ----- */
.cust-social-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.2rem;
    color: #1877f2;
}

/* ----- Filter boxes (platform tabs) ----- */
.cust-filter-box {
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: 0.3s ease;
    background: #eef4ff;
    border: 1px solid #dbe3f0;
    text-align: left;
    height: 100%;
}

/* active states per platform */
.cust-filter-box.active.cust-fb-box {
    background: #0f172a;
    color: #fff;
}

.cust-filter-box.active.cust-tp-box {
    background: #0f172a;
    color: #fff;
}

.cust-filter-box.active.cust-go-box {
    background: #0f172a;
    color: #fff;
}

.cust-filter-box.active.cust-sj-box {
    background: #0f172a;
    color: #fff;
}

.cust-review-count {
    font-weight: 700;
    font-size: 14px;
}

.cust-label-text {
    font-size: 13px;
    color: #666;
}

.cust-platform-name {
    margin-top: 5px;
    font-size: 26px;
    font-weight: 700;
}

.cust-filter-box .tab-fb {
    color: #1877f2;
}

.cust-filter-box .tab-trustpilot {
    color: #00b67a;
}

.cust-filter-box .tab-sitejabber {
    color: #ff6d00;
}

.cust-filter-box .tab-google {
    color: #4285f4;
}

/* ----- Responsive nav button positions ----- */
@media (max-width: 1200px) {
    .cust-prev-btn {
        left: -40px;
    }

    .cust-next-btn {
        right: -40px;
    }
}

@media (max-width: 768px) {
    .cust-prev-btn {
        left: 0;
    }

    .cust-next-btn {
        right: 0;
    }

    .myform-row {
        flex-direction: column;
    }

    .btn-group {
        max-width: 100%;
    }

    .mycarousel4-card {
        flex: 0 0 100%;
    }
}


.vscroll-box {
    height: 250px;
    overflow-y: auto;
    padding: 5px 1px;
    background: transparent;
    border-radius: 12px;
}

/* LIST STYLE */
.vscroll-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vscroll-box li {
    margin-bottom: 0px;
}

/* ITEM DESIGN */
.vscroll-box a {
    display: block;
    padding: 0px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: 0.3s;
}

/* HOVER */
.vscroll-box a:hover {
    background: #0f172a;
    color: #fff;
}

/* SCROLLBAR STYLE */
.vscroll-box::-webkit-scrollbar {
    width: 8px;
}

/* BACKGROUND (light grey area) */
.vscroll-box::-webkit-scrollbar-track {
    background: #09ca81;
    /* light background */
    border-radius: 10px;
}

/* SCROLLBAR THUMB (moving part) */
.vscroll-box::-webkit-scrollbar-thumb {
    background: #08823e;
    /* soft grey */
    border-radius: 10px;
    transition: 0.3s;
}

/* HOVER EFFECT */
.vscroll-box::-webkit-scrollbar-thumb:hover {
    background: #9aa7bd;
}

/* RESPONSIVE */
@media (max-width: 576px) {
    .vscroll-box {
        height: 300px;
    }

    .mycarousel-card {
        flex: 0 0 100%;
    }

    .mycarousel2-card {
        padding: 20px;
    }

    .mycarousel2-arrow {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .mycarousel2-prev {
        left: 10px;
    }

    .mycarousel2-next {
        right: 10px;
    }

    .mycarousel4-arrow {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .mycarousel4-prev {
        left: 10px;
    }

    .mycarousel4-next {
        right: 10px;
    }

    .cust-review-card {
        min-width: 100%;
    }

    .cust-nav-btn {
        width: 40px;
        height: 40px;
    }

    .cust-review-text {
        font-size: 0.85rem;
    }
}

/* --- 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;
}

/* --- 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;
    }
}



.comparison-wrapper {
    /* max-width: 950px; */
    margin: 0 auto;
}

.comparison-title {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 45px;
    color: #ffffff;
}

/* Table Structure Logic */
.table-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    padding: 18px 0;
}

/* Header row styling */
.table-header {
    border-bottom: none;
    margin-bottom: 5px;
}

.table-col {
    flex: 1;
}


/* Bold text for labels */
.feature-label p {
    font-weight: bold;
    color: #ffffff;
}

.header-label p {
    font-weight: bold;
    color: #f3f3f3;
}

/* Optional: Red underline highlight from your screenshot */
.highlight-text {
    border-bottom: 1px dotted red;
}