:root {
    --primary-orange: #0056B3;
    --top-bar-bg: #25A449;
    --dark-blue: #2D3E8E;
    --text-gray: #555;
    --banner-gradient: linear-gradient(135deg, #3f51b5 0%, #2d3e8e 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Montserrat;
}

/* --- 0. TOP BAR --- */
.top-bar {
    background-color: var(--top-bar-bg);
    color: white;
    text-align: center;
    padding: 16px 10px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* --- 1. NAVBAR REFINED --- */
.navbar {
    background: white;
    padding: 25px 0 !important;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.container {
    max-width: 80%;
    margin: 0 auto;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: url("../images/29.png");
}

.logo {
    font-weight: 800;
    font-size: 40px;
    color: #000 !important;
    cursor: pointer;
}

.logo a {
    color: #000;
    text-decoration: none;
}



.logo img {
    position: absolute;
    margin: -90px 0 0;
    width: 10%;
}

/* Navbar container styling */
.nav-links {
    display: flex;
    gap: 30px;
    padding-bottom: 0;
    margin: 0px;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    color: #333;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 5px 0px 5px;
    /* Niche space bar ke liye */
    transition: color 0.3s ease;
}

/* Hover Effect: Green Bar with Triangle */
.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 90px;
    height: 27px;
    background-image: url(../images/nav.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover karne par effect dikhega */
.nav-links a:hover {
    color: #000;
    /* Text thoda dark ho jayega */
}

.nav-links a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* Active state */
.nav-links a.active {
    color: #000;
}

.nav-links a.active::after {
    transform: translateX(-50%) scaleX(1);
}



.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.login-text {
    font-size: 15px;
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 700;
}

.btn-login {
    background: var(--primary-orange);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 34px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark-blue);
}

/* --- 2. BANNER --- */
.banner {
    background-image: url("../images/banner.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: white;
    overflow: hidden;
    height: 930px;
    align-content: center;
}

.banner-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

p.c-p {
    line-height: 35px;
    font-weight: 500;
    margin: 0 60px 40px 0;
    font-size: 18px;
}

.banner h1 {
    font-size: 55px;
    line-height: 70px;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 23px;
    margin-bottom: 25px;
    font-weight: 600;
}

.bg-blue-545:hover {
    background-color: #0056b3 !important;
}

.input-group {
    background: white;
    padding: 12px 20px;
    border-radius: 60px;
    display: flex;
    width: 83%;
}

.input-group input {
    border: none;
    padding: 15px;
    flex: 1;
    font-size: 15px;
    border-radius: 10px;
    color: #000;
    font-weight: 400;
}

.btn-para {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-prep {
    background: #25A449;
    color: white;
    border: none;
    padding: 22px 40px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    margin: 20px 0 0 0;
    font-size: 17px;
    height: 70px;
}

.stats-info {
    margin-top: 15px;
    font-size: 16px;
    font-weight: 600;
}

.rating-box {
    margin-top: 110px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
}

.avatars {
    display: flex;
}

.avatar {
    width: 34px;
    height: 34px;
    background: #ccc;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatars img {
    width: 120px;
}

.stars {
    color: #FFD700;
    font-size: 25px;
    margin: -4px 0 0 20px;
}

/* --- 3. COUNTERS --- */
.counter-section {
    padding: 80px 0 30px;
    position: relative;
    width: 58%;
    margin: 0 auto;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
    background-color: #EBF5FF;
    padding: 12px 15px;
    border-radius: 20px;
}

.counter-card {
    background: white;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    align-items: center;
    display: flex;
}

.info {
    float: left;
    width: 64%;
    margin: 0 0 0 15px;
}

.c-dot {
    height: 90px;
    border-radius: 50%;
    width: 30%;
    float: left;
}

.c-dot img {
    margin: -15px 0 0 -25px;
}

.counter-card h2 {
    font-size: 45px;
    color: #151834;
}

.info p {
    font-weight: 400;
    margin: 5px 0 0;
    color: #151834;
}

/* --- 4. EVERYTHING SECTION --- */
.everything {
    padding: 90px 0;
    text-align: center;
    width: 70% !important;
}

.everything h2,
.tools h2,
.reviews-section h2,
.header-section h2 {
    font-size: 45px !important;
    margin-bottom: 50px;
    color: #151834;
    font-weight: 600;
}

.everything h2 span,
.tools h2 span,
.reviews-section h2 span,
.header-section h2 span {
    color: var(--primary-orange);
}

.card {
    background: white;
    border: 1px solid #eee;
    border-radius: 30px;
    padding: 15px;
    text-align: left;
    margin-bottom: 30px;
}

.feat-large div {
    width: 50%;
}

.card-content1 {
    padding: 0 40px 0 70px;
}

.feat-large {
    display: flex;
    gap: 40px;
    align-items: center;
    margin: 70px 0 50px !important;
    box-shadow: 0 0 30px #00000029;
}

.card-content {
    padding: 40px 40px 10px;
}

.feat-large h3 {
    font-size: 30px;
    margin: 0 0 40px !important;
}

.card h3 {
    font-size: 30px;
    margin: 0 0 10px;
}

.feat-img img {
    width: 100%;
}

.card-content2 {
    padding-top: 17px !important;
}

.card p {
    font-size: 18px;
    line-height: 36px;
}

.feat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* --- 5. TOOLS SECTION --- */
.tools {
    background: #f8faff;
    padding: 110px 0 120px;
    text-align: center;
    position: relative;
}

.tool-box h4 {
    font-size: 24px;
    margin: 45px 0 0;
}

section.tools::after {
    content: "";
    background-image: url("../images/29.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 65%;
    height: 700px;
    position: absolute;
    display: block;
    top: 222px;
    left: 320px;
}

.tools h2 {
    margin-bottom: 110px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.tool-box {
    padding: 30px 55px;
    transition: 0.3s;
}

.tools h2 {
    margin-bottom: 25px;
}

.tool-box:hover {
    transform: translateY(-5px);
}

.tools-grid p {
    font-weight: 500;
    padding: 10px 80px 0;
    line-height: 1.7;
}

p.t-p-10 {
    font-weight: 500;
    margin: 0px 0 90px;
}

.t-icon {
    width: 60px;
    height: 60px;
    background: #eef2ff;
    color: var(--dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
}

/* --- RESPONSIVE 1024PX BREAKPOINT --- */
@media (max-width: 1024px) {
   .menu-toggle {
    display: block;
    margin: 0 70px 0 0px;
}
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid #eee;
    }

    .nav-links.active {
        display: flex;
    }

.nav-right {
    display: flex;
    margin: 0 auto;
    width: 60%;
}
.login-text {
    width: 60%;
}
a.btn-login {
    width: 40% !important;
    color: #fff !important;
}

    /* Mobile mein buttons hide ya toggle ke andar */
    .nav-links a {
        padding: 10px 0;
        font-size: 16px;
        border-bottom: 1px solid #f9f9f9;
        width: 100%;
        text-align: center;
    }

    .banner-grid,
    .counter-grid,
    .feat-large,
    .feat-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }

    .banner {
        text-align: center;
    }

    .input-group {
        margin: 0 auto;
    }

    .rating-box {
        justify-content: center;
    }

    .banner-visual {
        display: none;
    }
}

.reviews-section {
    padding: 120px 0 120px;
    text-align: center;
}

.reviews-header p {
    color: #1518347a;
    margin: -15px 0 40px;
    font-weight: 500;
    font-size: 20px;
}

.reviews-grid {
    display: flex;
    gap: 30px;
}

.review-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.video-container {
    background: #131629;
    border-radius: 15px;
    overflow: hidden;
    height: 320px;
    position: relative;
}

.video-container.tall {
    height: 320px;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.reviews-header {
    margin: 0px 0 80px !important;
}

.review-bubble {
    background: white;
    padding: 20px 32px;
    border-radius: 20px;
    font-size: 18px;
    color: #151834;
    border: 1px solid #f0f0f0;
    text-align: left;
    font-weight: 600;
    line-height: 28px;
}

.review-bubble.top {
    order: -1;
}

/* --- 2. FEATURED COURSES SECTION (Smooth Slider) --- */
.courses-section {
    background-color: #0056B3;
    padding: 120px 0;
    color: white;
    overflow: hidden;
}

.courses-title {
    font-size: 45px;
    margin-bottom: 40px;
    font-weight: 600;
    margin-left: 40px;
}

span.orange-text {
    color: #25a449;
}

/* Tabs */
.tabs-wrapper5r2 {
    display: flex;
    gap: 40px;
    margin-bottom: 10px;
    width: fit-content;
    margin-left: 46px;
}

.tab-btn5r2 {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
    font-weight: 600;
    padding: 15px 0;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
}

.tab-btn5r2.active5r2 {
    color: #21A74A;
    border-bottom: 1px solid;
}

/* Slider Window */
.slider-window5r2 {
    width: 100%;
    overflow: hidden;
    padding: 50px 110px;
}

.slides-track5r2 {
    display: flex;
    gap: 40px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 -70px 0 -70px;
}

/* Cards */
.course-card5r2 {
    min-width: calc(34.333% - 28.5px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 7px;
    transition: 0.4s ease;
    margin: 0 18px 0 -20px;
    height: 465px;
}

.course-card5r2.active-slide5r2 .card-img5r2 {
    height: 250px;
}

.course-card5r2.active-slide5r2 {
    background: #ffffff;
    color: #000;
    box-shadow: 0 0 40px #000000b0;
    height: 520px;
    margin: 0 20px 0 0px;
}

.course-card5r2 h3 {
    font-size: 30px;
    font-weight: 600;
    margin: 20px 30px 20px;
}

.course-card5r2 p {
    margin: 0px 30px 20px;
    font-size: 17px;
    line-height: 32px;
}

.card-img5r2 {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    object-fit: cover;
    margin-bottom: 20px;
}

/* Controls */
.nav-controls5r2 {
    display: flex;
    gap: 15px;
    position: absolute;
    right: 190px;
    margin: -80px 0 0 0;
}

button.arrow-btn5r2 {
    background-color: #ff00;
    border: none;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .course-card5r2 {
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 650px) {
    .course-card5r2 {
        min-width: 100%;
    }
}

/* --- TESTIMONIALS SECTION --- */
.testimonial-section {
    padding: 120px 0;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.testi-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 20px;
    border: 1px solid #d0cece9e;
    text-align: left;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testi-card:hover {
    box-shadow: 0 5px 40px #00000066;
    transform: translateY(-10px);
    border: 1px solid #d0cece9e;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testi-user img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.user-meta h4 {
    font-size: 16px;
    margin: 0;
    color: #111827;
}

.user-meta .stars {
    color: #FFD700;
    font-size: 20px;
    margin: 0;
}

.testi-content {
    font-size: 15px;
    color: #374151;
    line-height: 1.6;
    margin: 10px 0 20px;
}

.testi-time {
    font-size: 12px;
    color: #aaa;
    font-weight: 500;
}

.customer-badge {
    display: inline-flex;
    align-items: center;
    background-color: #0056B3;
    color: white;
    padding: 23px 35px;
    border-radius: 50px;
    margin-top: 70px;
    font-size: 18px;
    box-shadow: 0 10px 20px rgba(45, 62, 142, 0.3);
}

.avatar-stack {
    display: flex;
    margin-right: 15px;
}

.avatar-stack img {
    width: 140px;
    height: 40px;
    margin-left: -12px;
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.count-plus {
    background: var(--primary-orange);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -12px;
    border: 2px solid var(--dark-blue);
}

/* --- FAQ SECTION --- */
.faq-section {
    background-color: #EBF5FF;
    width: 100%;
    padding: 100px 0;
}

.faq-container {
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 80px auto 0;
}

/* Single Accordion Item */
.faq-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 20px #00000036;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

/* Header Style */
.faq-header {
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    transition: var(--transition);
}

.faq-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: #000;
}

/* Icon styling */
.icon {
    font-size: 45px;
    font-weight: 400;
    color: #003366;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Active State (Jab open ho) */
.faq-item.active {
    box-shadow: none;
    background-color: #ff00;
}

.faq-item.active .faq-header {
    background-color: #25A449;
    border-radius: 15px;
}

.faq-item.active .faq-header h3,
.faq-item.active .icon {
    color: #ffffff;
}

/* Content Area */
.faq-content {
    max-height: 0;
    overflow: hidden;
    background: #ff00;
}

.faq-item.active .faq-content {
    max-height: 200px;
    padding-bottom: 0px;
    transition: 0.6s;
}

.faq-text {
    padding: 30px 30px 0px 75px;
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-dark);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    font-weight: 500;
}

.faq-item.active .faq-text {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Effect */
.faq-item:not(.active):hover {
    transform: translateX(0px);
    box-shadow: 0 0 20px #00000063;
    transition: 0.3s;
}

/* Mobile */
@media (max-width: 1024px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }
}

.section-title {
    text-align: center;
    font-size: 45px;
    margin-bottom: 50px;
    color: #151834;
    font-weight: 600;
}

.section-title span {
    color: #0056B3;
}

.blog-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.featured-post {
    flex: 1.3;
    position: relative;
}

/* Image Placeholder with Animation */
.main-image img {
    width: 100%;
    height: 640px;
    border-radius: 15px;
    transition: 0.5s;
    overflow: hidden;
}

div#mainImage {
    background-image: url(../images/8.png);
    background-size: cover;
    background-position: center center;
    border-radius: 20px !important;
}

.featured-overlay {
    background: #0056B3;
    color: white;
    padding: 35px 170px 25px 40px;
    border-radius: 20px;
    position: absolute;
    bottom: -50px;
    left: 30px;
    right: -30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: 0.4s;
}

.meta-info {
    margin: 0 0 20px;
}

.card-content3 .meta-info {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 16px;
    color: #1C2835;
    font-weight: 600 !important;
}

.meta-info span {
    font-weight: 400;
    margin: 0 0 0 5px;
}

.card-content3 i {
    color: #49535d;
}

.card-content3 h4 {
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0 15px !important;
}

.card-content3 {
    padding: 15px 20px;
}

.card-content3 p {
    color: #1C2835;
    font-size: 16px;
    line-height: 30px;
}

.featured-overlay h2 {
    font-size: 23px;
    margin-bottom: 15px;
}

.featured-overlay p {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 30px;
}

.nav-controls {
    position: absolute;
    right: 25px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.featured-overlay .nav-btn {
    cursor: pointer;
    transition: 0.3s;
    font-weight: 500;
    position: absolute;
    bottom: 0;
    right: 35px;
    border: none;
}

.featured-overlay .nav-btn:hover {
    background-color: #ff00;
    color: #ff00;
}

.featured-overlay .next-btn {
    margin: 0 0 80px;
    background: none;
}

.featured-overlay .prev-btn {
    background: none;
    margin: 0 0 15px;
}


section.blog-section {
    width: 73%;
    margin: 0 auto;
    padding: 120px 0;
    overflow: hidden;
}

.blog-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 30px 0 0px;
}

.blog-card {
    background: white;
    padding: 10px;
    border-radius: 20px;
    display: flex;
    gap: 15px;
    box-shadow: 0 5px 25px rgb(0 0 0 / 17%);
    cursor: pointer;
    border: 2px solid transparent;
}

.blog-card.active {
    border-color: #ff6600;
}

.thumb {
    width: 170px;
    height: 170px;
    border-radius: 10px;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .blog-container {
        flex-direction: column;
    }

    .featured-overlay {
        position: static;
        margin-top: -50px;
        width: 100%;
    }
}

/* Fade Animation Class */
.fade {
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- CTA SECTION --- */
.cta-section {
    max-width: 85%;
    margin: 80px auto;
    padding: 144px 20px 180px;
    border-radius: 30px;
    position: relative;
    text-align: center;
    overflow: hidden;
    background-image: url("../images/bg3.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-section h2 {
    color: white;
    font-size: 45px;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-section p {
    color: white;
    font-size: 16px;
    max-width: 600px;
    margin: 25px auto 30px;
    line-height: 1.6;
    opacity: 0.9;
}

.trial-btn {
    background: #0056B3;
    color: white;
    padding: 20px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    margin: 10px 0 0 0;
    font-size: 18px;
}

.trial-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* --- FOOTER SECTION --- */
footer {
    max-width: 85%;
    margin: 50px auto 0;
    padding: 40px 20px;
}

.footer-grid {
    display: flex;
    gap: 50px;
    padding-bottom: 40px;
}

.footer-about {
    width: 60%;
}

.footer-about h2 {
    font-weight: 800;
    font-size: 40px;
    color: #000 !important;
    cursor: pointer;
}

.footer-about p {
    color: #131629;
    font-size: 16px;
    line-height: 2;
    margin: 25px 0;
}

.footer-links {
    width: 20%;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.fb {
    background-image: linear-gradient(45deg, #11132A, #5B7DFB);
    color: white;
}

.ig {
    border: 1px solid #11132A;
    color: #11132A;
}

.tw {
    border: 1px solid #11132A;
    color: #11132A;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 21px;
    font-size: 18px;
    color: #1C2835;
    cursor: pointer;
    font-weight: 500;
}

.footer-links li::before {
    content: "•";
    color: #333;
    margin-right: 10px;
}

.footer-links li:hover {
    color: #ff6600;
}

.copyright {
    text-align: center;
    padding: 35px 0 0;
    border-top: 1px solid #eee;
    font-size: 18px;
    color: #1C2835;
    font-weight: 500;
    margin: 40px 0 0;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 30px;
    }

    .floating-box {
        display: none;
    }

    /* Mobile pe boxes hata diye taaki text clear dikhe */
}

@media (max-width: 480px) {

    .container {
        max-width: 95%;
    }

    .counter-section {
        padding: 80px 0 30px;
        width: 90%;
    }

    .everything {
        padding: 90px 0;
        width: 90% !important;
    }

    .card-content1 {
        padding: 0 15px 0;
    }

    .feat-large {
        display: block;
        margin: 70px 0 30px !important;
    }

    .feat-large div {
        width: 100%;
    }

    .card-content {
        padding: 20px 10px 10px;
    }

    .tools-grid p {
        padding: 10px 0px 0;
    }

    .reviews-grid {
        display: block;
    }

    section.blog-section {
        width: 90%;
        padding: 80px 0;
    }

    .footer-grid {
        display: block;
    }

    .top-bar {
        font-size: 11px;
    }

    .logo {
        font-size: 25px;
    }

    .banner h1 {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 15px;
    }

    p.c-p {
        margin: 0 0 15px;
        font-size: 13px;
    }

    .input-group {
        padding: 8px 20px;
        width: 100%;
    }

    .btn-para {
        display: block;
    }

    .btn-prep {
        padding: 16px 30px;
        margin: 10px 0 0 0;
        font-size: 15px;
        height: 60px;
    }

    .rating-box {
        margin-top: 50px;
    }

}

/* inner pages */

.o-level-banner {
    background: url('../images/o.png') !important;
    background-size: cover !important;
    background-position: center;
    background-repeat: no-repeat !important;
    height: 800px;
    width: 100%;
    margin: -11px 0 0;
}

.o-level-banner-grid {
    text-align: center;
}

.o-level-banner h1 {
    font-size: 65px;
    line-height: 76px;
    margin-bottom: 30px;
    font-weight: 600;
}

.o-level-banner h1 span {
    font-weight: 200;
    font-size: 55px;
    position: relative;
    top: -9px;
    margin: 0 5px;
}

.o-level-banner .c-p {
    line-height: 1.9;
    font-weight: 400;
    margin: 0px 0 58px;
    font-size: 20px;
}

.o-level-banner .btn {
    background: #25a449;
    color: white;
    border: none;
    padding: 22px 42px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
}

.o-level-banner .rating-box {
    display: flex;
    margin: 70px auto 0;
    width: 36%;
}

/* ================= SECTION 1 ================= */

.features-section-545 {
    text-align: center;
    width: 80%;
    margin: 0 auto;
    padding: 70px 0 100px;
}

.features-section-545 h2,
.score-section-545 h2,
.platform-section h2 {
    font-size: 45px;
    margin-bottom: 60px;
    font-weight: 600;
}

.features-section-545 h2 span,
.score-section-545 h2 span {
    color: #0056b3;
}

.platform-section h2 span {
    color: #25A449;
}

.cards-container-545 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.row-545 {
    display: flex;
    justify-content: center;
    gap: 70px;
    flex-wrap: wrap;
}

.card-545 {
    width: 300px;
    padding: 35px 25px 35px 65px;
    border-radius: 15px;
    text-align: left;
    position: relative;
}

.bg-blue-545 {
    background: #EBF5FF;
}

.bg-green-545 {
    background: #ECFAEC;
}

.card-545 h3 {
    font-size: 17px;
}

.dot-545 {
    border-radius: 50%;
    position: absolute;
    left: -50px;
    top: 55%;
    transform: translateY(-50%);
}

.card-545 p {
    font-size: 13px;
    color: #000000;
    margin: 10px 0 0;
    line-height: 22px;
}

.card-545:hover {
    background-color: #25A449;
    cursor: pointer;
    box-shadow: 0 0 30px #0000005e;
    transition: 0.2s;
}

.card-545:hover p {
    color: #fff;
}

.card-545:hover h3 {
    color: #fff;
}

/* ================= SECTION 2 ================= */

.score-section-545 {
    background: #F4F8FF;
    text-align: center;
    padding: 100px 0;
}

.video-grid-545 {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 80px 0 0;
}

.video-card-545 {
    background: #fff;
    border-radius: 30px;
    width: 23%;
    text-align: left;
    padding: 10px;
}

.icon-box-545 {
    width: 100%;
    border-radius: 10px;
    padding: 35px 20px 25px;
    display: flex;
    gap: 25px;
}

.icon-box-blue-545 {
    background: var(--primary-blue-545);
}

.video-thumb-545 {
    width: 100%;
}

.video-thumb-545 img {
    width: 100%;
}

.con-090 h3 {
    font-size: 20px;
    font-weight: 700;
}

.con-090 p {
    font-size: 15px;
    line-height: 25px;
    margin: 20px 0 0;
}

/* Responsive */

@media(max-width:768px) {
    .row-545 {
        gap: 20px;
    }

    .dot-545 {
        left: 10px;
        top: -20px;
        transform: none;
    }

    .card-545 h3,
    .card-545 p {
        margin-left: 0;
    }

}

/* --- SECTION 2: BLUE PLATFORM GRID --- */
.platform-section {
    background-color: #0056B3;
    width: 100%;
    text-align: center;
    padding: 120px 0;
    color: white;
    margin: 0;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 75%;
    margin: 0 auto;
}

.grid-item {
    border-radius: 25px;
    padding: 40px 50px;
    text-align: left;
    height: 350px !important;
}

.green-card h4 {
    font-size: 25px;
    font-weight: 500;
}

.white-card {
    background: white;
    color: #000;
}

.white-card h3 {
    font-size: 30px;
    margin: 65px 0 12px;
    line-height: 1.4;
}

.green-card p {
    font-size: 30px !important;
    font-weight: 600 !important;
    line-height: 40px !important;
}

.green-card {
    background: #25A449;
    color: white;
    position: relative;
}

.grid-item p {
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
}

.green-card .stat-num {
    font-size: 100px;
    font-weight: 600;
    margin: 30px 0 0;
}

.black-card {
    background: #000;
    height: 312px;
}

.large-blue-card {
    background: #1967BB;
    grid-column: 1 / 3;
    display: flex;
    justify-content: center;
}

.graph-text h3 {
    font-size: 30px;
    font-weight: 600;
}

.graph-text p {
    font-weight: 400;
    margin: 80px 0 0;
}

.graph-text {
    justify-content: space-between;
    display: grid;
}

.icon-sq {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--primary-green);
    margin-bottom: 10px;
}

/* slider */

:root {
    --brand-green: #28a745;
    --surface-light: #f8f9fa;
    --ink-dark: #1d1d1f;
    --ink-gray: #86868b;
    --motion-smooth: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-section {
    padding: 100px 0 120px;
}

.showcase-wrapper {
    width: 100%;
    margin: 0 auto;
}

/* Swiper Customization */
.showcase-slider {
    padding: 40px 0 80px 0 !important;
}

.slider-section h2 {
    text-align: center;
    margin: 0 0 60px;
}

.swiper-slide {
    transition: var(--motion-smooth) !important;
    transform: scale(0.84) !important;
    opacity: 0.5;
    margin-top: -48px;
}

.swiper-slide-active {
    filter: blur(0) grayscale(0);
    transform: scale(1.05) !important;
    opacity: 1;
    z-index: 10;
    margin-top: 0 !important;
}

/* Media Frame Design */
.media-frame {
    background-image: url("../images/Group\ 23.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    aspect-ratio: 16 / 9;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

/* Navigation Layout */
.nav-panel {
    max-width: 1100px;
    margin: -40px auto 0;
    padding: 0 40px;
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    position: relative;
    z-index: 100;
}

button.ctrl-trigger {
    border: none;
    background: none;
    top: -95px;
    cursor: pointer;
}

.prev-anchor {
    position: absolute;
    left: -105px;
}

.next-anchor {
    position: absolute;
    right: -110px;
}

/* Information Block */
.info-block {
    max-width: 1000px;
    margin: 15px auto 0;
    padding: 0 40px;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.heading-col {
    flex: 1.2;
}

.description-col {
    flex: 1;
}

#main-heading {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    transition: 0.5s;
}

#sub-text {
    font-size: 15px;
    color: #000;
    line-height: 1.9;
    margin: 0;
    transition: 0.5s;
}

@media (max-width: 900px) {
    .info-block {
        flex-direction: column;
        gap: 20px;
    }

    #main-heading {
        font-size: 30px;
    }
}

@media (max-width: 1440px) {
    .container {
        max-width: 90%;
    }

    .banner h1 {
        font-size: 40px;
        line-height: 55px;
    }

    p.c-p {
        line-height: 30px;
        font-size: 16px;
        margin: 0 40px 30px 0;
    }

    .subtitle {
        font-size: 20px;
    }

    .input-group {
        padding: 7px 20px;
    }

    .btn-prep {
        padding: 16px 24px;
        font-size: 15px;
    }

    .btn-para {
        gap: 20px;
    }

    .stats-info {
        font-size: 15px;
    }

    .rating-box {
        margin-top: 80px;
        gap: 10px;
    }

    .banner {
        height: 800px;
    }

    .logo img {
        margin: -75px 0 0;
        width: 11%;
    }

    .counter-section {
        width: 80%;
    }

    .everything h2,
    .tools h2,
    .reviews-section h2,
    .header-section h2 {
        font-size: 35px !important;
        margin-bottom: 40px;
    }

    .everything {
        padding: 70px 0;
        width: 90% !important;
    }

    .card h3 {
        font-size: 25px;
    }

    .card p {
        font-size: 16px;
        line-height: 32px;
    }

    .tools-grid p {
        padding: 10px 0px 0;
        font-size: 15px;
    }

    .tool-box h4 {
        font-size: 20px;
        margin: 40px 0 0;
    }

    section.tools::after {
        height: 620px;
    }

    .reviews-header p {
        font-size: 16px;
    }

    .review-bubble {
        padding: 16px 22px;
        font-size: 15px;
        line-height: 25px;
    }

    .courses-title {
        font-size: 35px;
    }

    .tab-btn5r2 {
        font-size: 16px;
    }

    .courses-section {
        padding: 100px 0;
    }

    .slider-window5r2 {
        margin: 0 0 0 -10px;
    }

    .course-card5r2 h3 {
        font-size: 24px;
        margin: 10px 15px 10px;
    }

    .course-card5r2 p {
        font-size: 15px;
        line-height: 30px;
    }

    .course-card5r2 {
        height: 445px;
    }

    .course-card5r2.active-slide5r2 {
        height: 500px;
    }

    .nav-controls5r2 {
        right: 60px;
    }

    .testimonial-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 35px;
    }

    .testi-card {
        padding: 25px 20px;
    }

    .testi-content {
        font-size: 14px;
    }

    .customer-badge {
        padding: 16px 18px;
        margin-top: 60px;
        font-size: 16px;
    }

    .faq-container {
        width: 85%;
        margin: 0 auto;
    }

    .faq-header {
        padding: 12px 25px;
    }

    .faq-header h3 {
        font-size: 18px;
    }

    .faq-text {
        padding: 30px 30px 0px 65px;
        font-size: 16px;
    }

    section.blog-section {
        width: 90%;
        padding: 80px 0;
        overflow: visible;
    }

    .meta-info {
        margin: 0 0 18px;
        font-size: 15px;
    }

    .featured-overlay {
        padding: 30px 120px 20px 30px;
    }

    .featured-overlay h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .featured-overlay p {
        font-size: 15px;
        line-height: 28px;
    }

    .featured-overlay .nav-btn {
        right: 15px;
        border: none;
    }

    .card-content3 {
        padding: 15px 0px 0 10px;
    }

    .cta-section h2 {
        font-size: 35px;
        margin-bottom: 15px;
    }

    .cta-section p {
        font-size: 16px;
        margin: 20px auto 30px;
    }

    .trial-btn {
        padding: 16px 37px;
        font-size: 16px;
    }

    .cta-section {
        max-width: 90%;
        margin: 50px auto;
        padding: 108px 20px 180px;
    }

    footer {
        max-width: 90%;
    }

    .footer-links li {
        margin-bottom: 20px;
        font-size: 16px;
    }

    .copyright {
        font-size: 15px;
        margin: 20px 0 0;
    }
}

@media (max-width: 1024px) {

    .banner {
        background-image: url("../images/m-banner.png") !important;
        align-content: start;
        height: 1350px;
    }

    .banner-grid {
        margin: 100px auto 0;
    }

    .btn-para {
        justify-content: center;
        margin: 20px 0 -30px;
    }

    .card-content1 {
        padding: 0 0px 0 20px;
    }

    section.tools::after {
        display: none !important;
    }

    .tools-grid {
        margin-top: 30px;
    }

    .tools {
        padding: 80px 0;
    }

    .blog-container {
        display: block;
    }

    .featured-post {
        width: 90%;
        margin: 0 auto;
    }

    section.blog-section {
        overflow: hidden;
    }

    .blog-list {
        padding: 0 0px 0 0px;
        margin: 100px auto 0;
        width: 90%;
    }

    .nav-links {
        margin: 0;
    }

    .logo img {
        width: 15%;
    }

}

@media (max-width: 667px) {

    .logo img {
    width: 24%;
    margin: -50px 0 0 -15px;
}
.banner h1 {
    font-size: 25px !important;
    line-height: 40px !important;
}
p.c-p {
    font-size: 14px;
    margin: 0 0 20px;
}
.banner-grid {
    margin: 70px auto 0;
}
.btn-para {
    margin: 10px 0 -30px;
}
.banner {
    height: 1400px;
}
.avatars {
    display: block;
}
.rating-box {
    font-size: 13px;
}
.rating-box {
    margin-top: 70px;
    display: block;
}
.everything h2, .tools h2, .reviews-section h2, .header-section h2 {
    font-size: 25px !important;
    margin-bottom: -15px;
}
.counter-section {
    padding: 60px 0 0px;
}
.card-content1 {
    padding: 0 0px 20px 20px;
}
.feat-large h3 {
    margin: 20px 0 10px !important;
}
.card h3 {
    font-size: 20px;
}
.card p {
    font-size: 14px;
    line-height: 28px;
}
.feat-grid {
    gap: 0px;
}
.everything {
    padding: 40px 0;
}
p.t-p-10 {
    margin: 35px 0 40px;
    font-size: 14px;
    line-height: 26px;
}
.tools {
    padding: 60px 0;
}
.reviews-section {
    padding: 60px 0 60px;
}
.reviews-header p {
    margin: 35px 0 40px;
    line-height: 28px;
}
.review-card {
    margin: 30px 0;
}
.courses-title {
    font-size: 25px;
    margin: 0;
}
.tabs-wrapper5r2 {
    margin: 30px 0 0;
}
.slider-window5r2 {
    margin: 0 0 0 0px;
    overflow: visible;
    padding: 50px 70px;
}
.nav-controls5r2 {
    margin: 0px 0 0 0;
}
.customer-badge {
    font-size: 13px;
}
.section-title {
    font-size: 25px;
}
.faq-section {
    padding: 60px 0;
}
.faq-container {
    width: 100%;
}
.faq-header h3 {
    font-size: 14px;
}
.faq-text {
    padding: 20px;
    font-size: 14px;
}
.main-image img {
    height: 400px;
}
.featured-post {
    width: 100%;
}
.featured-overlay {
    padding: 20px 70px 20px 20px;
    left: 0px;
    right: 0px;
    z-index: 9999;
    position: relative !important;
    margin: -30px 0 0;
}
.nav-controls {
    position: absolute;
    right: 0px;
    bottom: 0px;
}
.blog-card {
    display: block;
}
section.blog-section {
    padding: 60px 0 40px;
}
.cta-section {
    margin: 0px auto;
}
.cta-section h2 {
    font-size: 25px;
}
.cta-section p {
    font-size: 14px;
    margin: 10px auto 20px;
}
footer {
    max-width: 100%;
}
.footer-about {
    width: 100%;
}
.footer-links {
    width: 80%;
    margin: 60px 0 0;
}
.copyright {
    margin: 0px 0 0;
}
.nav-right {
    width: 90%;
}
}
