/* ================= TOP GREEN BAR ================= */
.top-green-bar {
    height: 52px;
    background-color: #0F4C3A;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-inline: 1rem;
}

.top-right-content {
    display: flex;
    align-items: center;
    gap: 18px;
}


.social-links {
    display: flex;
    gap: 14px;
}

.social-links img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}


.btn-sign-up {
    width: 104px;
    height: 44px;
    padding: 22px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    color: #0F4C3A;
    border: 2px solid #0F4C3A;
    border-radius: 8px;
    text-decoration: none;
    background-color: white;
}

/* CREATE FREE ACCOUNT BUTTON */
.btn-create-account {
    width: 104px;
    height: 44px;
    padding: 22px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    background-color: #0F4C3A;
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
}

/* =====================
   HERO SECTION
===================== */
.hero {
    height: 665px;
    background: url("images/bg-hero.png") no-repeat center/cover;
    display: flex;
    align-items: center;
}

/* =====================
     HERO CONTAINER
  ===================== */
.hero-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

/* =====================
     LEFT CONTENT
  ===================== */
.hero-content {
    max-width: 600px;
    margin: 0px 19px;

}

/* TITLE */
.hero-title {
    font-size: 54px;
    font-weight: 700;
    line-height: 170%;
    color: #ffffff;
}


.confidence-line {
    position: relative;
    display: inline-block;
}

.confidence-line::after {
    content: "";
    position: absolute;

    left: 66px;
    bottom: 3px;
    /* text ke niche gap */

    width: 100%;
    height: 12px;

    background: url("images/line.png") no-repeat center;
    background-size: contain;
}


/* TEACHER BADGE */
.teacher-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 281px;
    height: 83px;

    background-color: #FDB913;
    /* yellow bg */
    border-radius: 10px;

    font-size: 54px;
    font-weight: 700;
    line-height: 1;
    color: #FFFFFF;

    transform: rotate(-2.79deg);

    margin: 0 6px;
    vertical-align: middle;
}



/* PARAGRAPH */
.hero-para {
    width: 560.63px;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    color: #ffffff;
    margin-top: 25px;
}

/* =====================
     BUTTON
  ===================== */
.hero-btn {
    width: fit-content;
    height: 65px;
    margin-top: 40px;

    background: #ffc21c;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 1.3rem;
    text-decoration: none;
    transition: all ease;
    color: #0c3b2e;

    &:hover {
        background: transparent;
        border: solid 1px var(--color-secondary);
        color: white;
    }
}

/* BUTTON TEXT */
.btn-text {
    font-size: 24px;
    font-weight: 600;

    white-space: nowrap;

}



/* =====================
     RIGHT IMAGE
  ===================== */
.hero-media {
    display: flex;

}

.hero-media img {
    width: fit-content;
    height: fit-content;
    border-radius: 20px;

}

/* =========================
   WHY ORELAO SECTION
========================= */
.why-orelao {
    background: #F0F4F5;
    padding: 100px 0px;
    /* outer padding same rehne do */
    text-align: center;
}

/* TOP BADGE */
.flexible-badge {
    width: 225px;
    height: 32px;
    margin: 0 auto 24px;
    background: #4A8881;
    border-radius: 30px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* TITLE */
.section-title {
    font-size: 60px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 24px;
    /* ✅ 24 */
}

/* PARA */
.section-para {
    max-width: 763px;
    margin: 0 auto 24px;
    /* ✅ 24 */
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #0F4C3A;
}

/* =========================
     TABS
  ========================= */
.tabs-wrapper {
    display: flex;
    justify-content: center;
    gap: 24px;
    /* ✅ 24 */
    margin-bottom: 24px;
    /* ✅ 24 */

    overflow-x: scroll;
}

.tab-btn {
    width: 274px;
    height: 49px;
    background: #0F4C3A;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* icon–text gap (ye internal hai, OK) */
}

.active.tab-btn {
    background-color: var(--color-secondary);
}

.tab-btn img {
    width: 18px;
    height: 18px;
}

/* =========================
     LINE BELOW TABS
  ========================= */
.tab-line {
    width: 802px;
    height: 3px;
    background: #0F4C3A;
    margin: 0 auto 24px;
    position: relative;
    overflow: hidden;
    /* 🔥 important */
}

/* WATER FLOW */
.active-indicator {
    position: absolute;
    top: -1.5px;
    left: -30%;
    width: 30%;
    height: 6px;
    background: #FDB913;
    border-radius: 10px;

}





/* =========================
     CHOOSE TEACHER SECTION
  ========================= */
.choose-teacher {
    background: #F0F4F5;
    padding-bottom: 100px;
    display: none;
}

.active.choose-teacher {
    display: block;
}

.choose-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* LEFT IMAGE */
.choose-media img {
    width: 100%;

}

/* RIGHT CONTENT */
.choose-content {
    max-width: 600px;
}

/* BADGE */
.choice-badge {
    width: 234px;
    height: 32px;
    background: #4A8881;
    border-radius: 30px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

/* TITLE */
.choose-title {
    width: 436px;
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    color: #000000;
    margin-bottom: 24px;
}

/* PARAGRAPH */
.choose-para {
    width: 582px;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    color: #000000;
    margin-bottom: 24px;
}

/* POINTS */
.choose-points {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.choose-points li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #000000;
    margin-bottom: 16px;
}

.choose-points img {
    width: 20px;
    margin-top: 2px;
}

.choose-btn {
    width: 218px;
    height: 50px;
    background: #F8C62F;
    border-radius: 50px;

    position: relative;
    /* IMPORTANT */
    display: flex;
    align-items: center;

    padding-left: 28px;
    /* text left space */
    padding-right: 6px;
    /* icon edge space */

    text-decoration: none;
    box-shadow: 4px 6px 0px 0px #03594E;
}

/* TEXT */
.choose-btn span {
    font-size: 18px;
    font-weight: 600;
    color: #0F4C3A;
    line-height: 1;
}

/* ICON – RIGHT EDGE TOUCH */
.choose-btn img {
    width: 48px;
    height: 48px;
    object-fit: contain;

    position: absolute;
    right: 1px;
    top: 50%;
    transform: translateY(-50%);

    filter: drop-shadow(0px 0px 19px rgba(0, 0, 0, 0.25));
}








/* ================= GLOBAL SECTION ================= */
.global-container {
    max-width: 1300px;
    margin: 0 auto;
    /* center */
}

.global-section {
    padding: 60px 100px;
    background: #ffffff;

}

.global-head {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

/* BADGE */
.global-badge {
    width: 251px;
    height: 32px;
    background: #4A8881;
    border-radius: 30px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

/* TITLE + BUTTON ROW */


/* TITLE */
.global-title {
    font-size: 54px;
    font-weight: 700;
    line-height: 150%;
    color: #000000;

}

/* BUTTON WIDTH FIX */
.global-btn {
    width: 219px;
}

.global-btn2 {
    width: 219px;
}

.choose-btn2 {
    width: 222px;
    height: 56px;
    background: #03594E;
    border-radius: 50px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 6px 0 28px;
    text-decoration: none;

    box-shadow: 9px 6px 0px #024B42;
}

.choose-btn2 span {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1;
}


/* ================= CARDS ================= */
.global-cards {
    display: flex;
    justify-content: center;
    /* boxes center */
    gap: 2rem;
    /* 50px spacing */
    margin-top: 60px;

}


/* CARD */
.global-card {
    background: #0F4C3A;
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 8px 8px 0px #F8C62F;
    color: #ffffff;
}

/* IMAGE */
.global-card-img {
    width: 338px;
    height: 295px;
    object-fit: cover;

    margin-bottom: 1rem;
}

/* CARD TITLE */
.global-card-title {
    font-size: 24px;
    font-weight: 600;
    width: 280px;
    margin-bottom: .2rem;
    margin-top: 1rem;
}

/* CARD PARA */
.global-card-para {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    width: 333px;
    margin-bottom: 1rem;
}

/* LEARN MORE */
.global-learn {
    width: 155px;
    height: 50px;

    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;

    border: 1px solid #F8C62F;
    border-radius: 40px;
    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    padding-right: 36px;
    /* text ke liye space, icon ke liye nahi */
}

/* ICON IMAGE */
.global-learn img {
    width: 40px;
    height: 40px;

    position: absolute;
    right: 1px;
    z-index: 1;
}


/* SECTION BG */
.community-section {
    background: url("images/Section.png") no-repeat center / cover;
    padding: 100px 0px;
    margin-bottom: -10px;
}

.container {
    max-width: 1300px;
    margin: auto;
    text-align: center;
}

/* BADGE */
.badge {
    width: 225px;
    height: 32px;
    margin: 0 auto 24px;
    background: #F0F4F5;
    border-radius: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;
    font-weight: 500;
    color: #0F4C3A;
}

/* TITLE */
.section-heading {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 48px;
}

/* CARDS WRAPPER */
.cards {
    display: flex;
    gap: 1rem;

}

/* CARD */
.community-card {
    width: fit-content;
    height: 320px;
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    align-items: center;


}

/* IMAGE */
.card-image img {
    /* width: 268px;
    height: 320px;*/
    aspect-ratio: 3/2;
    border-radius: 22px; 
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.card-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
}
.app-btn {
    display: flex;
    justify-content: center;
}
/* CONTENT */
.card-content {
    text-align: start;
    padding: 2rem;
    width: 100%;
}

.card-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
}

.card-content p {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    max-width: 300px;
}

/* BUTTON */
.cta-btn-Get {
    width: 216px;
    height: 50px;
    background: #FDB913;
    border-radius: 50px;

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    /* padding-right: 52px; */
    /* 👈 icon ke liye space */
    text-decoration: none;
    box-shadow: 5px 6px 0px 0px #0F4C3A;
}

/* TEXT */
.cta-btn-Get span {
    font-size: 16px;
    font-weight: 600;
    color: #0F4C3A;
    line-height: 1;
    white-space: nowrap;
}

/* ICON */
.cta-btn-Get img {
    position: absolute;
    right: 1px;
    width: 50px;
    height: 50px;
    object-fit: contain;

    filter: drop-shadow(0px 0px 19px rgba(0, 0, 0, 0.25));
}


/* =====================
     FOOTER
  ===================== */
.footer {
    background: #0F4C3A;
    color: #ffffff;
    width: 100%;
}

/* INNER CONTAINER */
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4px 24px;
}

/* =====================
     TOP MENU
  ===================== */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 24px 0;


    flex-wrap: wrap;
    margin-top: 60px;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 32px;


    font-size: 16px;
    font-weight: 400;
}

/* li reset */
.footer-menu li {
    white-space: nowrap;
}

/* anchor styling */
.footer-menu li a {
    text-decoration: none;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.3s ease;
}

/* hover effect */
.footer-menu li a:hover {
    color: #F8C62F;
}


/* =====================
     MAIN CONTENT
  ===================== */
.footer-main {
    display: flex;
    justify-content: space-between;
    padding: 60px 0;

}

/* COLUMNS */
.footer-col {
    flex: 1 1 200px;
    max-width: 200px;
}

/* COLUMNS */
.footer-col1 {
    flex: 1 1 350px;
    max-width: 350px;
}

/* LOGO */
.logo-footer {
    width: 200px;
    margin-bottom: 20px;
}

/* DESCRIPTION */
.desc {
    font-size: 17px;
    line-height: 28px;
    margin-bottom: 28px;
    color: #ffffff;
}

/* SOCIAL ICONS */
.socials {
    display: flex;
    gap: 10px;
}

.socials img {
    width: 45px;
    height: 45px;
}

/* =====================
     TITLES
  ===================== */
.footer-col h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 22px;
}

/* LINKS TEXT */
.footer-col p {
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 20px;
    cursor: pointer;
}

/* =====================
     REACH US
  ===================== */
.info {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.info img {
    width: 34px;

}

.info span {
    font-size: 17px;
    line-height: 24px;
}

/* =====================
     PAYMENTS
  ===================== */
.payments {
    text-align: center;
    padding: 40px 0;
}

.payments h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.payment-icons img {
    width: 48px;
}

/* =====================
     BOTTOM BAR
  ===================== */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;

    padding: 2px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    color: white !important;
    font-size: 10px;
    flex-wrap: wrap;
}



/* ===============================
   BANNER SECTION
================================ */
.mission-banner {
    width: 100%;
    height: 420px;
    background: url("images/abouts/About.png") center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* ===============================
   CONTENT WRAPPER
================================ */
.banner-content {
    max-width: 734px;
    width: 100%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;

    align-items: center;
}

/* ===============================
   HEADING
================================ */
.banner-content h1 {
    font-size: 54px;
    line-height: 66px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

.banner-content h1 span {
    color: #FDB913;
    display: block;
}

/* ===============================
   BREADCRUMB
================================ */
.breadcrumb {
    margin-top: 20px;
    font-size: 16px;
}

.breadcrumb a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 400;
}

.breadcrumb span {
    color: #FDB913;
    margin: 0 10px;
}


/* =========================
   ABOUT SECTION
========================= */
.about-section {
    background: #F0F4F5;
    padding: 100px 0;
    font-family: 'Inter', sans-serif;
}

.about-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    gap: 100px;
    align-items: center;
}

/* =========================
   LEFT IMAGES
========================= */
.about-images {
    position: relative;
    width: 600px;
}

.about-images img {
    width: 100%;
    border-radius: 24px;
}

.img-main {
    position: relative;
    z-index: 1;
}

.img-overlap {
    position: absolute;
    bottom: -80px;
    right: -60px;
    width: 320px;
    box-shadow: 0 6px 19px rgba(0, 0, 0, 0.25);
}

/* =========================
   RIGHT CONTENT
========================= */
.about-content {
    max-width: 633px;
}

/* BADGE */
.about-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 127px;
    height: 38px;
    background: #4A8881;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    border-radius: 20px;
    margin-bottom: 20px;
}

/* TITLE */
.about-title {
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 22px;
}

/* PARAGRAPH */
.about-para {
    font-size: 17px;
    line-height: 30px;
    font-weight: 400;
    color: #2D2C2C;

}

/* SUBTITLE */
.about-subtitle {
    font-size: 26px;
    font-weight: 700;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 24px 106px 24px;
}

.quote-icon {
    width: 20px;
    height: auto;
}

/* =========================
   BUTTON
========================= */
.about-btn {
    margin-top: 28px;
    width: 203px;
    height: 50px;
    background: #F8C62F;
    color: #0F4C3A;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;

    position: relative;

    display: flex;
    align-items: center;

    padding-left: 22px;
    /* text ka fixed start */
    padding-right: 18px;
    /* icon space */

    text-decoration: none;
    box-shadow: 4px 6px 0 #03594E;
}

/* TEXT — NEVER MOVE */
.about-btn .btn-text {
    white-space: nowrap;
}

/* ICON — ALWAYS RIGHT */
.about-btn img {
    position: absolute;
    right: 0px;
    width: 48px;

    filter: drop-shadow(0 0 19px rgba(0, 0, 0, 0.25));
}
