/* =========================================================
   VOICE OF MOHAN — PROFESSIONAL STICKY HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;

    width: 100%;
    z-index: 9999;

    background: rgba(255, 255, 255, 0.96);

    border-bottom: 1px solid rgba(226, 232, 240, 0.8);

    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);

    transition:
        box-shadow 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}


/* =========================================================
   HEADER CONTAINER
========================================================= */

.header-container {
    width: min(1180px, calc(100% - 40px));
    height: 76px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}


/* =========================================================
   LOGO
========================================================= */

.site-logo {
    display: inline-flex;
    align-items: center;

    flex-shrink: 0;

    text-decoration: none;
}

.site-logo img {
    display: block;

    width: auto;
    height: 44px;

    object-fit: contain;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.site-logo:hover img {
    opacity: 0.92;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;

    gap: 8px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    position: relative;

    display: flex;
    align-items: center;

    padding: 10px 14px;

    color: #334155;

    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;

    text-decoration: none;

    border-radius: 8px;

    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.nav-menu a:hover {
    color: #2563eb;
    background: #f8fafc;
}


/* Small active/hover line */

.nav-menu a::after {
    content: "";

    position: absolute;

    left: 14px;
    right: 14px;
    bottom: 3px;

    height: 2px;

    background: #2563eb;

    border-radius: 10px;

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.25s ease;
}

.nav-menu a:hover::after {
    transform: scaleX(1);
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-toggle {
    width: 44px;
    height: 44px;

    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    padding: 0;

    background: #f8fafc;

    border: 1px solid #e2e8f0;
    border-radius: 10px;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}

.mobile-menu-toggle:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.mobile-menu-toggle span {
    display: block;

    width: 19px;
    height: 2px;

    background: #0f2748;

    border-radius: 10px;

    transition:
        transform 0.3s ease,
        opacity 0.2s ease;
}


/* Hamburger → X */

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

.mobile-navigation {
    display: none;

    position: absolute;

    top: 100%;
    left: 0;
    right: 0;

    padding: 12px 20px 20px;

    background: rgba(255, 255, 255, 0.98);

    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #e2e8f0;

    box-shadow:
        0 18px 35px rgba(15, 39, 72, 0.09);

    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}


/* Open state */

.mobile-navigation.is-open {
    display: block;

    animation: mobileMenuOpen 0.25s ease forwards;
}

@keyframes mobileMenuOpen {

    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* MOBILE LINKS */

.mobile-navigation > a,
.mobile-courses-toggle {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 15px 12px;

    color: #0f2748;
    background: transparent;

    border: 0;
    border-bottom: 1px solid #f1f5f9;

    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 600;

    text-align: left;
    text-decoration: none;

    cursor: pointer;

    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.mobile-navigation > a:hover,
.mobile-courses-toggle:hover {
    color: #2563eb;
    background: #f8fafc;
}


/* =========================================================
   MOBILE COURSES
========================================================= */

.mobile-courses {
    width: 100%;
}

.mobile-courses-toggle span {
    color: #2563eb;

    font-size: 21px;
    line-height: 1;

    transition: transform 0.25s ease;
}

.mobile-courses-toggle[aria-expanded="true"] span {
    transform: rotate(45deg);
}


/* SUB MENU */

.mobile-sub-menu {
    display: none;

    padding: 6px 0 8px 15px;
}

.mobile-sub-menu.is-open {
    display: block;
}

.mobile-sub-menu a {
    display: block;

    padding: 12px 14px;

    color: #64748b;

    border-left: 2px solid #e2e8f0;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.mobile-sub-menu a:hover {
    color: #2563eb;

    border-left-color: #2563eb;

    background: #f8fafc;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .header-container {
        width: calc(100% - 30px);
        height: 68px;
    }

    .site-logo img {
        height: 38px;
    }

    .main-navigation {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .header-container {
        width: calc(100% - 24px);
        height: 64px;
    }

    .site-logo img {
        height: 35px;
    }

    .mobile-menu-toggle {
        width: 41px;
        height: 41px;
    }

}

/* ========================================
   GENERAL PAGE CONTAINER
======================================== */

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 900px) {

    .header-container {
        height: 72px;
    }

    .site-logo img {
        width: 190px;
        max-height: 58px;
    }

    .main-navigation {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

}


@media (max-width: 480px) {

    .header-container {
        width: calc(100% - 28px);
    }

    .site-logo img {
        width: 170px;
    }

    .container {
        width: calc(100% - 28px);
    }

}
/* ========================================
   FOOTER
======================================== */

.site-footer {
    background: #071b3d;
    color: #ffffff;
    margin-top: 80px;
}

.footer-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;

    padding: 60px 0 45px;
}


/* ========================================
   FOOTER BRAND
======================================== */

.footer-brand {
    max-width: 430px;
}

.footer-logo {
    width: 230px;
    height: auto;
    margin-bottom: 20px;

    /* Logo has white background */
    background: #ffffff;
    border-radius: 6px;
}

.footer-tagline {
    max-width: 400px;

    color: #cbd3df;

    font-size: 15px;
    line-height: 1.7;
}


/* ========================================
   BUSINESS DETAILS
======================================== */

.footer-business {
    max-width: 520px;
}

.footer-business h4 {
    margin-bottom: 18px;

    color: #ffffff;

    font-size: 18px;
    font-weight: 700;
}

.footer-business p {
    margin-bottom: 10px;

    color: #cbd3df;

    font-size: 14px;
    line-height: 1.7;
}

.footer-business strong {
    color: #ffffff;
    font-weight: 600;
}

.footer-business a {
    color: #d3a63c;
    transition: opacity 0.2s ease;
}

.footer-business a:hover {
    opacity: 0.8;
}


/* ========================================
   FOOTER BOTTOM
======================================== */

.footer-bottom {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    padding: 22px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.12);
}


/* Legal Links */

.footer-legal {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-legal a {
    color: #cbd3df;

    font-size: 13px;

    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #d3a63c;
}

.footer-legal span {
    color: #66758c;
}


/* Copyright */

.footer-copyright {
    margin: 0;

    color: #8f9bad;

    font-size: 13px;

    white-space: nowrap;
}


/* ========================================
   FOOTER RESPONSIVE
======================================== */

@media (max-width: 800px) {

    .site-footer {
        margin-top: 60px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;

        padding: 45px 0 35px;
    }

    .footer-brand,
    .footer-business {
        max-width: 100%;
    }

    .footer-logo {
        width: 200px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

}


@media (max-width: 480px) {

    .footer-container,
    .footer-bottom {
        width: calc(100% - 32px);
    }

    .footer-container {
        padding: 38px 0 30px;
    }

    .footer-logo {
        width: 185px;
    }

    .footer-legal {
        gap: 7px;
    }

    .footer-copyright {
        white-space: normal;
    }

}

/* ========================================
   HOME - GLOBAL
======================================== */

.home-page {
    overflow: hidden;
}

.home-page section {
    position: relative;
}

.section-label,
.home-eyebrow {
    display: inline-block;
    margin-bottom: 16px;

    color: #b98b2f;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-heading h2,
.home-about h2 {
    color: #071b3d;

    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.section-heading h2 span,
.home-about h2 span {
    color: #b98b2f;
}

.section-heading > p {
    max-width: 610px;
    margin: 18px auto 0;

    color: #657084;

    font-size: 17px;
    line-height: 1.7;
}


/* ========================================
   BUTTONS
======================================== */

.btn {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 0 25px;

    border-radius: 7px;

    font-size: 15px;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #ffffff;
    background: #071b3d;
    border: 1px solid #071b3d;
}

.btn-primary:hover {
    background: #102b59;
}

.btn-secondary {
    color: #071b3d;
    background: #ffffff;
    border: 1px solid #d9dee7;
}

.btn-secondary:hover {
    border-color: #b98b2f;
}

/* ========================================
   HOME HERO
======================================== */

.home-hero {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 82% 38%,
            rgba(190, 143, 45, 0.08),
            transparent 32%
        ),
        #f8f9fb;
}

.home-hero__grid {
    min-height: 650px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;

    padding-top: 55px;
    padding-bottom: 55px;
}


/* ========================================
   LEFT CONTENT
======================================== */

.home-hero__content {
    max-width: 610px;
}


/* Eyebrow */

.home-eyebrow {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;

    margin-bottom: 28px;
}

.home-eyebrow span {
    color: #b88926;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 2.4px;
}

.home-eyebrow::after {
    content: "";

    width: 55px;
    height: 3px;

    background: #b88926;

    border-radius: 10px;
}


/* Heading */

.home-hero h1 {
    margin: 0;

    color: #071d43;

    font-size: clamp(48px, 4.5vw, 66px);
    font-weight: 800;

    line-height: 1.07;
    letter-spacing: -2.3px;
}

.home-hero h1 > span {
    display: block;

    margin-top: 8px;

    color: #bd8b26;
}


/* Description */

.home-hero__description {
    max-width: 580px;

    margin: 28px 0 0;

    color: #505b6d;

    font-size: 18px;
    line-height: 1.7;
}


/* ========================================
   HERO BUTTONS
======================================== */

.home-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 32px;
}

.hero-btn {
    min-height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 0 25px;

    border-radius: 7px;

    font-size: 15px;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
}


/* Primary */

.hero-btn--primary {
    color: #ffffff;
    background: #071d43;

    border: 1px solid #071d43;
}

.hero-btn--primary:hover {
    color: #ffffff;
    background: #0d2c5d;

    box-shadow: 0 8px 22px rgba(7, 29, 67, 0.15);
}

.hero-btn--primary span {
    transition: transform 0.2s ease;
}

.hero-btn--primary:hover span {
    transform: translateX(4px);
}


/* Secondary */

.hero-btn--secondary {
    color: #071d43;
    background: transparent;

    border: 1px solid #aeb7c5;
}

.hero-btn--secondary:hover {
    color: #071d43;
    background: #ffffff;

    border-color: #071d43;
}


/* ========================================
   SOCIAL MEDIA
======================================== */

.hero-social {
    max-width: 470px;

    margin-top: 42px;
}

.hero-social__title {
    display: flex;
    align-items: center;
    gap: 16px;

    margin-bottom: 18px;
}

.hero-social__title span {
    height: 1px;

    flex: 1;

    background: #d6dbe3;
}

.hero-social__title strong {
    color: #667080;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.6px;

    white-space: nowrap;
}


/* Social Links */

.hero-social__links {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.hero-social__item {
    min-width: 68px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;

    color: #071d43;

    font-size: 11px;
    font-weight: 700;

    transition: transform 0.2s ease;
}

.hero-social__item:hover {
    transform: translateY(-3px);
}


/* Icon Circle */

.hero-social__icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    border: 1px solid #e5e8ed;
    border-radius: 50%;

    box-shadow: 0 5px 18px rgba(7, 29, 67, 0.07);

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.hero-social__icon svg {
    width: 21px;
    height: 21px;

    fill: currentColor;
}

.hero-social__item:hover .hero-social__icon {
    border-color: #d0d5dd;

    box-shadow: 0 8px 22px rgba(7, 29, 67, 0.11);
}


/* Brand Colors */

.hero-social__icon.youtube {
    color: #ff0000;
}

.hero-social__icon.instagram {
    color: #d62976;
}

.hero-social__icon.facebook {
    color: #1877f2;
}

.hero-social__icon.linkedin {
    color: #0a66c2;
}


/* ========================================
   RIGHT PHOTO
======================================== */

.home-hero__visual {
    min-height: 540px;

    position: relative;

    display: flex;
    align-items: flex-end;
    justify-content: center;
}


/* Background circle */

.hero-photo-shape {
    position: absolute;

    width: 460px;
    height: 460px;

    left: 50%;
    bottom: 20px;

    transform: translateX(-50%);

    background: #f0e8da;

    border-radius: 50%;
}


/* Decorative rings */

.home-hero__visual::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    top: 0;
    right: -90px;

    border: 1px solid rgba(185, 137, 38, 0.12);
    border-radius: 50%;
}

.home-hero__visual::after {
    content: "";

    position: absolute;

    width: 470px;
    height: 470px;

    top: 25px;
    right: -65px;

    border: 1px solid rgba(185, 137, 38, 0.09);
    border-radius: 50%;
}


/* Photo */

.home-hero__image {
    width: 100%;
    max-width: 570px;
    max-height: 550px;

    position: relative;
    z-index: 3;

    object-fit: contain;
    object-position: center bottom;

    border-radius: 10px;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 950px) {

    .home-hero__grid {
        min-height: auto;

        grid-template-columns: 1fr;
        gap: 40px;

        padding-top: 70px;
        padding-bottom: 0;
    }

    .home-hero__content {
        max-width: 700px;

        margin: 0 auto;

        text-align: center;
    }

    .home-eyebrow {
        align-items: center;
    }

    .home-hero__description {
        margin-left: auto;
        margin-right: auto;
    }

    .home-hero__actions {
        justify-content: center;
    }

    .hero-social {
        margin-left: auto;
        margin-right: auto;
    }

    .home-hero__visual {
        min-height: 470px;
    }

    .hero-photo-shape {
        width: 400px;
        height: 400px;
    }

    .home-hero__image {
        max-height: 470px;
        max-width: 500px;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 600px) {

    .home-hero__grid {
        width: calc(100% - 32px);

        padding-top: 50px;
    }

    .home-eyebrow {
        margin-bottom: 22px;
    }

    .home-eyebrow span {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .home-hero h1 {
        font-size: 40px;

        line-height: 1.08;
        letter-spacing: -1.4px;
    }

    .home-hero__description {
        margin-top: 22px;

        font-size: 16px;
        line-height: 1.65;
    }

    .home-hero__actions {
        margin-top: 27px;
    }

    .hero-btn {
        min-height: 52px;
    }

    .hero-social {
        margin-top: 35px;
    }

    .hero-social__links {
        gap: 8px;
    }

    .hero-social__icon {
        width: 42px;
        height: 42px;
    }

    .hero-social__icon svg {
        width: 19px;
        height: 19px;
    }

    .hero-social__item {
        min-width: 60px;
        font-size: 10px;
    }

    .home-hero__visual {
        min-height: 360px;

        margin-top: 10px;
    }

    .hero-photo-shape {
        width: 300px;
        height: 300px;

        bottom: 10px;
    }

    .home-hero__image {
        max-width: 370px;
        max-height: 360px;
    }

}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 400px) {

    .home-hero h1 {
        font-size: 36px;
    }

    .home-hero__actions {
        flex-direction: column;
    }

    .hero-btn {
        width: 100%;
    }

    .hero-social__title {
        gap: 10px;
    }

    .hero-social__title strong {
        font-size: 10px;
    }

}
/* ========================================
   ABOUT MOHAN
======================================== */

.home-about {
    padding: 110px 0;
    background: #ffffff;
}


/* Main Layout */

.about-wrapper {
    display: grid;
    grid-template-columns: 380px 1fr;
    align-items: center;
    gap: 85px;

    max-width: 1100px;
    margin: 0 auto;
}


/* ========================================
   PHOTO
======================================== */

.about-photo {
    position: relative;
}


/* Gold background accent */

.about-photo::before {
    content: "";

    position: absolute;

    width: 90%;
    height: 92%;

    top: 22px;
    left: -18px;

    background: #f5efe2;

    border-radius: 14px;

    z-index: 0;
}


.about-photo__frame {
    position: relative;
    z-index: 1;

    overflow: hidden;

    background: #f4f5f7;

    border-radius: 14px;
}

.about-photo__frame img {
    width: 100%;
    height: 440px;

    display: block;

    object-fit: cover;
    object-position: center top;
}


/* Name */

.about-photo__caption {
    position: relative;
    z-index: 2;

    width: calc(100% - 35px);

    margin: -35px auto 0;

    padding: 18px 22px;

    display: flex;
    flex-direction: column;
    gap: 3px;

    background: #071d43;

    border-radius: 8px;

    box-shadow: 0 10px 30px rgba(7, 29, 67, 0.15);
}

.about-photo__caption strong {
    color: #ffffff;

    font-size: 16px;
    font-weight: 700;
}

.about-photo__caption span {
    color: #d7b665;

    font-size: 12px;
}


/* ========================================
   CONTENT
======================================== */

.about-content {
    max-width: 650px;
}


/* Eyebrow */

.about-eyebrow {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;

    margin-bottom: 22px;

    color: #b88926;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2.2px;
}

.about-eyebrow::after {
    content: "";

    width: 48px;
    height: 3px;

    background: #b88926;

    border-radius: 10px;
}


/* Heading */

.about-content h2 {
    margin: 0 0 27px;

    color: #071d43;

    font-size: clamp(40px, 4vw, 55px);
    font-weight: 800;

    line-height: 1.1;
    letter-spacing: -1.8px;
}

.about-content h2 span {
    color: #b88926;
}


/* Paragraphs */

.about-text {
    max-width: 620px;
}

.about-text p {
    margin: 0 0 17px;

    color: #566174;

    font-size: 16px;
    line-height: 1.85;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text strong {
    color: #071d43;
    font-weight: 700;
}


/* ========================================
   PROOF POINTS
======================================== */

.about-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin-top: 38px;
    padding-top: 30px;

    border-top: 1px solid #e1e5eb;
}


.about-proof__item {
    display: flex;
    align-items: center;
    gap: 12px;

    position: relative;

    padding-right: 18px;
}


/* Vertical separators */

.about-proof__item:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 4px;
    right: 15px;
    bottom: 4px;

    width: 1px;

    background: #e1e5eb;
}


/* Icons */

.about-proof__icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #b88926;

    background: #faf5e9;

    border-radius: 50%;
}

.about-proof__icon svg {
    width: 20px;
    height: 20px;

    fill: currentColor;
}


/* Proof text */

.about-proof__item > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.about-proof__item strong {
    color: #071d43;

    font-size: 14px;
    font-weight: 800;

    line-height: 1.3;
}

.about-proof__item span {
    color: #7a8494;

    font-size: 10px;
    line-height: 1.4;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 950px) {

    .about-wrapper {
        grid-template-columns: 300px 1fr;
        gap: 50px;
    }

    .about-photo__frame img {
        height: 370px;
    }

    .about-proof {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-proof__item {
        padding-right: 0;
    }

    .about-proof__item:not(:last-child)::after {
        display: none;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 700px) {

    .home-about {
        padding: 75px 0;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }


    /* Content first on mobile */

    .about-content {
        order: 1;

        max-width: 100%;
    }

    .about-photo {
        order: 2;

        width: min(340px, 92%);

        margin: 0 auto;
    }


    /* Center text */

    .about-content {
        text-align: center;
    }

    .about-eyebrow {
        align-items: center;
    }

    .about-content h2 {
        font-size: 40px;

        letter-spacing: -1.3px;
    }

    .about-text p {
        font-size: 15px;
        line-height: 1.8;
    }


    /* Proof */

    .about-proof {
        max-width: 360px;

        margin-left: auto;
        margin-right: auto;

        text-align: left;
    }

    .about-proof__item {
        padding-bottom: 15px;

        border-bottom: 1px solid #edf0f3;
    }

    .about-proof__item:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }


    /* Photo */

    .about-photo__frame img {
        height: auto;
        max-height: 430px;
    }

}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 420px) {

    .about-content h2 {
        font-size: 36px;
    }

    .about-photo {
        width: 90%;
    }

    .about-photo__caption {
        width: calc(100% - 24px);

        padding: 16px 18px;
    }

}
/* ========================================
   COURSES
======================================== */

.home-courses {
    padding: 105px 0;
    background: #f7f8fa;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.course-card {
    min-height: 390px;

    position: relative;

    padding: 42px;

    background: #ffffff;

    border: 1px solid #e5e8ed;
    border-radius: 14px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.course-card:hover {
    transform: translateY(-5px);

    border-color: rgba(185, 139, 47, 0.45);

    box-shadow: 0 18px 45px rgba(7, 27, 61, 0.08);
}

.course-card__number {
    position: absolute;

    top: 30px;
    right: 34px;

    color: #e6e8ec;

    font-size: 50px;
    font-weight: 800;
    line-height: 1;
}

.course-card__category {
    display: inline-block;

    margin-bottom: 17px;

    color: #b98b2f;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.course-card h3 {
    margin-bottom: 18px;

    color: #071b3d;

    font-size: 30px;
    line-height: 1.2;
}

.course-card p {
    max-width: 480px;

    color: #657084;

    font-size: 15px;
    line-height: 1.8;
}

.course-card__link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-top: 28px;

    color: #071b3d;

    font-size: 15px;
    font-weight: 800;
}

.course-card__link span {
    color: #b98b2f;

    transition: transform 0.2s ease;
}

.course-card__link:hover span {
    transform: translateX(4px);
}

.courses-all {
    margin-top: 30px;
    text-align: center;
}

.courses-all a {
    color: #071b3d;
    font-size: 14px;
    font-weight: 700;
}


/* ========================================
   FREE LEARNING
======================================== */

.home-learning {
    padding: 105px 0;
    background: #ffffff;
}

.learning-grid {
    max-width: 950px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.learning-card {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 22px;

    padding: 32px;

    border: 1px solid #e5e8ed;
    border-radius: 12px;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.learning-card:hover {
    transform: translateY(-3px);

    border-color: rgba(185, 139, 47, 0.5);

    box-shadow: 0 12px 35px rgba(7, 27, 61, 0.07);
}

.learning-card__icon {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    background: #071b3d;

    border-radius: 50%;

    font-size: 21px;
    font-weight: 800;
}

.learning-card span {
    color: #b98b2f;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.learning-card h3 {
    margin: 3px 0 9px;

    color: #071b3d;

    font-size: 24px;
}

.learning-card p {
    margin-bottom: 15px;

    color: #657084;

    font-size: 14px;
    line-height: 1.7;
}

.learning-card strong {
    color: #071b3d;

    font-size: 13px;
}

.learning-all {
    margin-top: 35px;
    text-align: center;
}




/* ========================================
   HOME RESPONSIVE
======================================== */

@media (max-width: 950px) {

    .home-hero,
    .home-hero__grid {
        min-height: auto;
    }

    .home-hero__grid {
        grid-template-columns: 1fr;
        gap: 20px;

        padding-top: 75px;
    }

    .home-hero__content {
        max-width: 720px;
        text-align: center;

        margin: 0 auto;
    }

    .home-hero h1 {
        margin: 0 auto;
    }

    .home-hero__description {
        margin-left: auto;
        margin-right: auto;
    }

    .home-hero__actions {
        justify-content: center;
    }

    .home-hero__visual {
        height: 450px;
    }

    .home-hero__visual::before {
        width: 350px;
        height: 350px;
    }

    .home-hero__image {
        max-height: 440px;
    }


    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 700px) {

    .home-about,
    .home-courses,
    .home-learning,
    .home-social {
        padding: 75px 0;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .course-grid,
    .learning-grid {
        grid-template-columns: 1fr;
    }

    .course-card {
        min-height: auto;
        padding: 32px 27px;
    }

    .course-card__number {
        top: 25px;
        right: 25px;

        font-size: 40px;
    }

}


@media (max-width: 520px) {

    .home-hero__grid {
        padding-top: 55px;
    }

    .home-hero h1 {
        font-size: 42px;
        letter-spacing: -1.7px;
    }

    .home-hero__description {
        font-size: 17px;
    }

    .home-hero__actions {
        flex-direction: column;
    }

    .home-hero__actions .btn {
        width: 100%;
    }

    .home-hero__visual {
        height: 360px;
    }

    .home-hero__visual::before {
        width: 290px;
        height: 290px;
    }

    .home-hero__image {
        max-height: 350px;
    }

    .home-about h2,
    .section-heading h2 {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .home-about__content {
        padding-left: 20px;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

}
/* =========================================================
   COURSES PAGE
========================================================= */

.courses-page {
    background: #ffffff;
    color: #0f2748;
    font-family: "Inter", "Noto Sans Telugu", sans-serif;
}

.courses-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.courses-hero {
    padding: 90px 20px 75px;

    background: #f8fafc;

    text-align: center;
}

.courses-hero .courses-container {
    width: min(900px, 100%);
}

.courses-eyebrow {
    display: inline-block;

    margin-bottom: 18px;
    padding: 7px 14px;

    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 999px;

    color: #ea580c;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.courses-hero h1 {
    margin: 0 auto 20px;

    color: #0f2748;

    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.courses-hero h1 span {
    display: block;

    margin-top: 8px;

    color: #2563eb;
}

.courses-hero p {
    max-width: 760px;
    margin: 0 auto;

    color: #64748b;

    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   QUICK CHOICE
========================================================= */

.course-choice {
    padding: 75px 20px;
    background: #ffffff;
}

.course-choice__heading {
    margin-bottom: 35px;

    text-align: center;
}

.course-choice__heading > span {
    display: block;
    margin-bottom: 10px;

    color: #ea580c;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.course-choice__heading h2 {
    margin: 0;

    color: #0f2748;

    font-size: clamp(30px, 4vw, 43px);
    font-weight: 800;
}

.course-choice__heading h2 strong {
    color: #2563eb;
}

.course-choice__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 18px;
}

.course-choice__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;

    padding: 25px;

    background: #f8fafc;

    border: 1px solid #e2e8f0;
    border-radius: 14px;
}

.course-choice__number {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eaf2ff;
    border-radius: 50%;

    color: #2563eb;

    font-size: 12px;
    font-weight: 800;
}

.course-choice__item h3 {
    margin: 0 0 8px;

    color: #0f2748;

    font-size: 17px;
    font-weight: 800;
}

.course-choice__item p {
    margin: 0 0 12px;

    color: #64748b;

    font-size: 14px;
    line-height: 1.6;
}

.course-choice__item strong {
    color: #ea580c;

    font-size: 13px;
    font-weight: 800;
}


/* =========================================================
   COURSE PLANS
========================================================= */

.course-plans {
    padding: 90px 20px 100px;

    background: #f8fafc;
}

.course-plans__heading {
    max-width: 760px;
    margin: 0 auto 50px;

    text-align: center;
}

.course-plans__heading > span {
    display: block;
    margin-bottom: 10px;

    color: #ea580c;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.course-plans__heading h2 {
    margin: 0 0 14px;

    color: #0f2748;

    font-size: clamp(32px, 4vw, 46px);
    font-weight: 800;
}

.course-plans__heading h2 strong {
    color: #2563eb;
}

.course-plans__heading p {
    margin: 0;

    color: #64748b;

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   COURSE GRID
========================================================= */

.course-plans__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    align-items: stretch;

    gap: 22px;
}


/* =========================================================
   CARD
========================================================= */

.course-card {
    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;

    background: #ffffff;

    border: 1px solid #e2e8f0;
    border-radius: 20px;

    box-shadow:
        0 12px 35px rgba(15, 39, 72, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.course-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 20px 45px rgba(15, 39, 72, 0.11);
}


/* BUNDLE */

.course-card--bundle {
    border: 2px solid #2563eb;

    box-shadow:
        0 18px 45px rgba(37, 99, 235, 0.12);
}

.course-card__best-value {
    position: absolute;

    top: 14px;
    right: 14px;

    z-index: 5;

    padding: 7px 11px;

    background: #ea580c;
    color: #ffffff;

    border-radius: 999px;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.07em;
}


/* =========================================================
   COURSE IMAGE
========================================================= */

.course-card__visual {
    height: 260px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 24px;

    background: #f8fafc;

    border-bottom: 1px solid #e2e8f0;
}

.course-card__visual img {
    display: block;

    max-width: 100%;
    max-height: 215px;

    object-fit: contain;
}


/* =========================================================
   BUNDLE IMAGES
========================================================= */

.course-card__bundle-visual {
    height: 260px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 28px 20px;

    background:
        linear-gradient(
            135deg,
            #eff6ff 0%,
            #ffffff 50%,
            #fff7ed 100%
        );

    border-bottom: 1px solid #dbeafe;
}

.course-card__bundle-image {
    width: 42%;
}

.course-card__bundle-image img {
    width: 100%;
    max-height: 205px;

    display: block;

    object-fit: contain;
}

.course-card__plus {
    color: #ea580c;

    font-size: 28px;
    font-weight: 800;
}


/* =========================================================
   CARD BODY
========================================================= */

.course-card__body {
    flex: 1;

    display: flex;
    flex-direction: column;

    padding: 30px 28px;
}

.course-card__type {
    display: block;

    margin-bottom: 9px;

    color: #ea580c;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.course-card__body h2 {
    margin: 0 0 12px;

    color: #0f2748;

    font-size: 27px;
    line-height: 1.2;
    font-weight: 800;
}

.course-card__promise {
    min-height: 54px;

    margin: 0;

    color: #64748b;

    font-size: 15px;
    line-height: 1.65;
}

.course-card__promise strong {
    color: #0f2748;
}

.course-card__divider {
    height: 1px;

    margin: 24px 0;

    background: #e2e8f0;
}


/* =========================================================
   FEATURES
========================================================= */

.course-card__features {
    display: grid;
    gap: 13px;

    margin: 0 0 28px;
    padding: 0;

    list-style: none;
}

.course-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 9px;

    color: #475569;

    font-size: 13px;
    line-height: 1.55;
    font-weight: 600;
}

.course-card__features li span {
    color: #10b981;

    font-weight: 800;
}


/* =========================================================
   PRICE
========================================================= */

.course-card__price-area {
    margin-top: auto;
    margin-bottom: 20px;

    padding-top: 5px;
}

.course-card__price-label {
    display: block;

    margin-bottom: 7px;

    color: #94a3b8;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.course-card__price {
    color: #0f2748;

    font-size: 36px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.course-card__price-row {
    display: flex;
    align-items: center;
    gap: 11px;
}

.course-card__old-price {
    position: relative;

    color: #94a3b8;

    font-size: 17px;
    font-weight: 700;
}

.course-card__old-price::after {
    content: "";

    position: absolute;

    left: -2px;
    right: -2px;
    top: 50%;

    height: 2px;

    background: #dc2626;
}


/* =========================================================
   BUNDLE PRICE
========================================================= */

.course-card__bundle-price {
    margin-top: auto;
    margin-bottom: 20px;

    padding: 18px;

    background: #f8fafc;

    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.course-card__individual-price {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 11px;

    color: #64748b;

    font-size: 12px;
}

.course-card__individual-price del {
    color: #94a3b8;

    font-size: 16px;
    font-weight: 700;
}

.course-card__bundle-current {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 15px;
}

.course-card__bundle-current span {
    color: #ea580c;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.course-card__bundle-current strong {
    color: #0f2748;

    font-size: 36px;
    line-height: 1;
    font-weight: 800;
}

.course-card__saving {
    display: inline-block;

    margin-top: 12px;
    padding: 5px 9px;

    background: #ecfdf5;

    border-radius: 999px;

    color: #047857;

    font-size: 11px;
    font-weight: 800;
}


/* =========================================================
   BUTTONS
========================================================= */

.course-card__button {
    min-height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 13px 18px;

    border-radius: 10px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 800;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.course-card__button--outline {
    background: #ffffff;
    color: #2563eb;

    border: 1.5px solid #2563eb;
}

.course-card__button--outline:hover {
    background: #eff6ff;

    transform: translateY(-1px);
}

.course-card__button--primary {
    background: #2563eb;
    color: #ffffff;

    border: 1.5px solid #2563eb;
}

.course-card__button--primary:hover {
    background: #1d4ed8;

    transform: translateY(-1px);
}


/* =========================================================
   MARKETING + SALES FLOW
========================================================= */

.course-system {
    padding: 95px 20px;

    background: #ffffff;
}

.course-system__heading {
    margin-bottom: 48px;

    text-align: center;
}

.course-system__heading > span {
    display: block;

    margin-bottom: 10px;

    color: #ea580c;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.course-system__heading h2 {
    margin: 0;

    color: #0f2748;

    font-size: clamp(31px, 4vw, 45px);
    font-weight: 800;
}

.course-system__heading h2 strong {
    color: #2563eb;
}

.course-system__flow {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto
        minmax(0, 1fr)
        auto
        minmax(0, 1fr);

    align-items: center;

    gap: 20px;
}

.course-system__step {
    min-height: 260px;

    padding: 30px 25px;

    background: #f8fafc;

    border: 1px solid #e2e8f0;
    border-radius: 16px;

    text-align: center;
}

.course-system__icon {
    margin-bottom: 15px;

    font-size: 34px;
}

.course-system__step > span {
    display: block;

    margin-bottom: 9px;

    color: #ea580c;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.course-system__step h3 {
    margin: 0 0 12px;

    color: #0f2748;

    font-size: 18px;
    line-height: 1.4;
    font-weight: 800;
}

.course-system__step p {
    margin: 0;

    color: #64748b;

    font-size: 14px;
    line-height: 1.7;
}

.course-system__arrow {
    color: #2563eb;

    font-size: 30px;
    font-weight: 800;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .course-plans__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .course-card--bundle {
        grid-column: 1 / -1;

        width: min(550px, 100%);
        margin: 0 auto;
    }

    .course-choice__grid {
        grid-template-columns: 1fr;
    }

    .course-system__flow {
        grid-template-columns: 1fr;
    }

    .course-system__arrow {
        transform: rotate(90deg);

        text-align: center;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

    .courses-container {
        width: min(100% - 30px, 1180px);
    }


    /* HERO */

    .courses-hero {
        padding: 65px 15px 55px;
    }

    .courses-hero h1 {
        font-size: 34px;
        line-height: 1.18;
    }

    .courses-hero p {
        font-size: 15px;
        line-height: 1.7;
    }


    /* CHOICE */

    .course-choice {
        padding: 55px 15px;
    }

    .course-choice__item {
        padding: 20px 18px;
    }


    /* PLANS */

    .course-plans {
        padding: 65px 15px 70px;
    }

    .course-plans__heading {
        margin-bottom: 34px;
    }

    .course-plans__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .course-card--bundle {
        grid-column: auto;

        width: 100%;
    }


    /* IMAGES */

    .course-card__visual,
    .course-card__bundle-visual {
        height: 220px;
    }

    .course-card__visual img {
        max-height: 180px;
    }

    .course-card__bundle-image img {
        max-height: 170px;
    }


    /* BODY */

    .course-card__body {
        padding: 25px 21px;
    }

    .course-card__body h2 {
        font-size: 24px;
    }

    .course-card__promise {
        min-height: auto;
    }


    /* PRICE */

    .course-card__price {
        font-size: 33px;
    }

    .course-card__bundle-current strong {
        font-size: 33px;
    }


    /* SYSTEM */

    .course-system {
        padding: 65px 15px;
    }

    .course-system__heading {
        margin-bottom: 32px;
    }

    .course-system__step {
        min-height: auto;

        padding: 25px 20px;
    }

}
.course-card__bundle-visual {
    height: 260px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: #f8fafc;

    border-bottom: 1px solid #e2e8f0;
}

.course-card__bundle-single-image {
    display: block;
width:100%;
    object-fit: contain;
}