*,
*::after,
*::before {
    box-sizing: border-box;
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    text-align: center;
    scroll-behavior: smooth;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: #000000;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    display: inline-block;
}

/* announcement bar css start */
.announcement-bar {
    background: #ef6a4b;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.02em;
    height: 44px;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.announcement-track {
    display: inline-flex;
    gap: 80px;
    padding: 14px 0;
    animation: scroll 25s linear infinite;
}

.announcement-track span {
    display: inline-block;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* =====================
   HEADER CONTAINER
===================== */
.header-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-container.scrolled .announcement-bar {
    height: 0;
    opacity: 0;
    pointer-events: none;
}

/* =====================
   BASE HEADER
===================== */
.header {
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1002;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    height: 72px;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .header-wrapper {
    height: 60px;
}

/* =====================
   LOGO
===================== */
.logo img {
    height: 56px;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .logo img {
    height: 44px;
}

/* =====================
   NAV (DESKTOP)
===================== */
.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    text-decoration: none;
    color: #1c2b3a;
    font-weight: 500;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.01em;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.2s ease;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #ef6a4b;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav a:hover {
    color: #ef6a4b;
}

.nav a:hover::after {
    width: 100%;
}

/* =====================
   ACTIONS
===================== */
.actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-apply-btn {
    background: #ef6a4b;
    color: #fff;
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.02em;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.header-apply-btn:hover {
    background: #d9563a;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(239, 106, 75, 0.35);
}

.header-apply-btn:active {
    transform: translateY(0);
}

/* =====================
   HAMBURGER
===================== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 10002;
}

.hamburger div {
    width: 24px;
    height: 2px;
    background: #1c2b3a;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger.active div:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active div:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active div:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =====================
   OVERLAY
===================== */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 9998;
    /* below nav (10001) but above everything else */
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* header css end */

/* hero section css start */
.hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
}

/* FIX 1: Make background full layer */
.hero-bg {
    position: absolute;
    /* 🔥 change */
    inset: 0;
    /* 🔥 full cover */

    background-image: url('../images/new-hero-banner.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    z-index: 1;
}

/* Overlay stays correct */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90.26deg, rgba(0, 0, 0, 0.79) 21.07%, rgba(0, 0, 0, 0) 88.2%);
}

/* FIX 2: Content alignment */
.hero-content {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    z-index: 3;
    height: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #fff;
    max-width: 600px;
    padding-left: 125px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.hero h1 {
    font-size: 40px;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 span {
    font-size: 18px;
    vertical-align: top;
}

.hero h3 {
    color: #ef6a4b;
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: 400;
}

.hero p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 45px;
    font-weight: 300;
    color: #ddd;
}

.banner-hero-button {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 16px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
}

/* hero section css end */

/* second section css fold2 start */
.program {
    background-color: #292929;
    color: #fff;
    padding: 99px 82px;
    text-align: left;
}

.program-title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 54px;
}

/* =====================
   TAGS (TOP BOXES)
===================== */
.program-tags {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 54px;
}

.program-tags span {
    padding: 25px 24px;
    background: #3a3a3a;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 500;
    border: 1px solid #ffffff;
    box-shadow: 0px 5.89848px 5.89848px rgba(0, 0, 0, 0.5);
    width: 285px;
    text-align: center;
}

/* =====================
   LIST
===================== */
.program-list {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.program-item {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 40px;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* LEFT */
.program-item .left {
    color: #F26045;
    font-weight: 600;
}

/* RIGHT */
.program-item .right {
    color: #ffffff;
    line-height: 1.6;
}

/* =====================
   BUTTONS
===================== */
.program-buttons {
    margin-top: 54px;
    display: flex;
    gap: 15px;
}

/* BUTTON BASE */
.btn {
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
}

/* LIGHT BUTTON */
.btn.light {
    background: #fff;
    color: #000;
}

/* GRADIENT BUTTON */
.btn.gradient {
    background: linear-gradient(90deg, #DB644D 0%, #972C4E 100%);
    color: #fff;
    padding: 16px 30px;
}

/* second section css fold2 end */

/* section counter css fold3 start */
.stats {
    padding: 80px 0 40px 0;
}

/* GRID */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* CARD */
.stat-card {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0px 5px 30px rgba(39, 35, 74, 0.1);
    transition: 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

/* NUMBER */
.counter {
    font-size: 40px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    color: #DB644D;
    margin-bottom: 10px;
}

/* TEXT */
.stat-card p {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    color: #01162C;
}

/* section counter css fold3 end */

/* section fold 4 tabs image change css start */
/* SECTION */
.design {
    padding: 0 0 83px 0;
}

/* TITLE */
.design-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 25px;
    font-weight: 500;
}

.design-sub {
    text-align: center;
    font-size: 18px;
    max-width: 700px;
    margin: auto;
    color: #666;
    margin-bottom: 60px;
}

/* WRAPPER */
.design-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* LEFT */
.design-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ITEM */
.design-item {
    position: relative;
    padding: 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.design-item.active {
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding-left: 30px;
}

.design-item.active::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 90%;
    background: #ef6a4b;
    border-radius: 6px 0 0 6px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

/* TEXT */
.design-item h3 {
    text-align: left;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 16px;
}

.design-item p {
    color: #666;
    text-align: left;
    font-size: 18px;
    line-height: 30px;
}

/* RIGHT IMAGE */
.design-right {
    position: relative;
    width: 500px;
    height: 500px;
    overflow: hidden;
    border-radius: 16px;
    margin-left: auto;
    /* keeps alignment clean */
}

/* FADE WRAPPER */
.image-fade {
    position: relative;
    width: 100%;
    height: 100%;
}

/* IMAGE */
.fade-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0;
    transition: opacity 0.6s ease;
}

/* ACTIVE */
.fade-img.active {
    opacity: 1;
    z-index: 2;
}

/* GRID FOR TILE EFFECT */
.image-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(6, 1fr);
    width: 100%;
    height: 100%;
}

.tile {
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.8);
    transition: 0.4s ease;
}

.tile.show {
    opacity: 1;
    transform: scale(1);
}

/* section fold 4 tabs image change css end */

/* background image slider section css start */
/* SECTION */
.program-slider {
    position: relative;
    height: 450px;
    overflow: hidden;
    color: #fff;
}

/* BACKGROUND */
.slider-bg {
    position: absolute;
    inset: 0;
    background: url('../images/slider-bg.png') left center/cover no-repeat;
    z-index: 1;
}

/* OVERLAY (optional for readability) */
.program-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 40%, rgba(0, 0, 0, 0.6));
    z-index: 2;
}

/* CONTENT AREA (IMPORTANT) */
.slider-container {
    position: relative;
    z-index: 3;
    width: 77%;
    margin-left: auto;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* TITLE */
.slider-container h2 {
    margin-bottom: 40px;
    text-align: right;
    padding-right: 60px;
    font-size: 40px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
}

/* SLIDER */
.slider-wrapper {
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.slider-viewport {
    overflow: hidden;
}

/* TRACK */
.slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
    will-change: transform;
    /* overflow: hidden;
    scroll-behavior: smooth; */
}

/* CARD */
.card {
    flex: 0 0 calc((100% - 40px) / 3);
    /*3cardswithgap*/
    background: #e0634a;
    padding: 30px 30px;
    border-radius: 5px;
    text-align: left;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.card h3 {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 30px;
}

.card p {
    font-size: 18px;
    font-weight: 300;
    line-height: 25px;
}

/* NAV BUTTONS */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    z-index: 5;
    /* 🔥 important */
    background: rgb(0, 0, 0);
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
}

.slider-nav.prev {
    top: 50%;
    left: 20px;
    width: 45px;
    height: 45px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

/* RIGHT */
.slider-nav.next {
    top: 50%;
    right: 20px;
    width: 45px;
    height: 45px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    /* 🔥 now visible */
}

/* background image slider section css end */

/* CEP section css start */
.cep-shift {
    background: #292929;
    padding: 80px 0;
    color: #fff;
    text-align: left;
}

/* WRAPPER */
.cep-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

/* LEFT */
.cep-left h2 {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 40px;
    text-align: left;
}

/* GRID */
.cep-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* CARD */
.cep-card {
    background: #e0634a;
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s;
}

.cep-card:hover {
    transform: translateY(-5px);
}

/* ICON */
.icon-with-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cep-card .icon {
    font-size: 22px;
    margin-bottom: 10px;
}

/* TEXT */
.cep-card h3 {
    font-size: 20px;
    font-weight: 600;
}

.cep-card p {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 25px;
    color: #ffece8;
}

/* RIGHT IMAGE */
.cep-right {
    display: flex;
    justify-content: center;
}

/* IMAGE WRAPPER */
.image-wrapper {
    position: relative;
    width: 100%;
}

/* IMAGE */
.image-wrapper img {
    width: 100%;
    border-radius: 12px;
    display: block;
    position: relative;
    z-index: 2;
}

/* ORANGE STRIP (RIGHT SIDE) */
/* .image-wrapper::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 20px;
    width: 8px;
    height: 90%;
    background: #ef6a4b;
    border-radius: 6px;
    z-index: 1;
} */

/* CEP section css end */

/* CEP FIT section css start */
/* SECTION */
.cep-fit {
    background-color: #292929;
    padding: 0 0 80px 0;
    color: #fff;
}

/* WRAPPER */
.cep-fit-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* HEADING */
.cep-fit-left h2 {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 40px;
    text-align: left;
}

/* =====================
   STEPS TIMELINE
===================== */

.cep-steps {
    position: relative;
    margin-bottom: 40px;
    padding-left: 40px;
}

/* vertical line */
.cep-steps::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: rgba(255, 255, 255, 0.25);
}

/* STEP */
.step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 28px;
}

/* NUMBER DOT */
.step-dot {
    position: absolute;
    left: -38px;
    width: 28px;
    height: 28px;
    background: #e0634a;
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 2;
}

/* TEXT */
.step p {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    text-align: left;
}

/* =====================
   BUTTONS
===================== */

.cep-buttons {
    display: flex;
    gap: 15px;
}

/* BUTTON BASE */
.btn {
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
}

/* LIGHT */
.btn.light {
    background: #fff;
    color: #000;
}

/* GRADIENT */
.btn.gradient {
    background: linear-gradient(90deg, #DB644D 0%, #972C4E 100%);
    color: #fff;
}

/* =====================
   RIGHT IMAGE
===================== */

.cep-fit-right {
    display: flex;
    justify-content: center;
}

.cep-image {
    position: relative;
    max-width: 420px;
    width: 100%;
}

/* IMAGE */
.cep-image img {
    width: 100%;
    border-radius: 12px;
    display: block;
    position: relative;
    z-index: 2;
}

/* ORANGE STRIP */
/* .cep-image::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 20px;
    width: 8px;
    height: 90%;
    background: #ef6a4b;
    border-radius: 6px;
    z-index: 1;
} */

/* CEP FIT section css end */

/* graduate section css start */
/* SECTION */
.graduate {
    padding: 60px 0 80px;
}

/* =====================
   TOP IMAGE
===================== */
.graduate-image {
    width: 100%;
    margin-bottom: 60px;
}

.graduate-image img {
    width: 100%;
    display: block;
}

/* =====================
   WRAPPER
===================== */
.graduate-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.grad-card-content {
    text-align: left;
}

/* =====================
   LEFT TITLE
===================== */
.graduate-left h2 {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    color: #0f1e2e;
    text-align: left;
}

/* =====================
   RIGHT GRID
===================== */
.graduate-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* CARD */
.grad-card {
    background: #fff;
    padding: 22px;
    border-radius: 12px;
    display: flex;
    gap: 15px;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.grad-card:hover {
    transform: translateY(-4px);
}

/* ICON */
.grad-card .icon {
    font-size: 22px;
    color: #ef6a4b;
    flex-shrink: 0;
}

/* TEXT */
.grad-card h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 26px;
    color: #0f1e2e;
}

.grad-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

/* graduate section css end */

/* org banner section css start */
/* SECTION */
.org-banner {
    position: relative;
    height: 590px;
    overflow: hidden;
}

/* BACKGROUND IMAGE */
.org-bg {
    position: absolute;
    inset: 0;

    background: url('../images/originalisation-shift-bg.png') center/cover no-repeat;
    z-index: 1;
}

/* CONTENT */
.org-content {
    position: relative;
    z-index: 3;
    height: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 0;
    color: #fff;
}

/* TITLE */
.org-content h2 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 15px;
}

/* SUBTEXT */
.org-content .sub {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 55px;
}

/* LIST */
.org-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.org-list li {
    position: relative;
    margin-bottom: 14px;
    font-size: 16px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
}

.org-list li p {
    font-size: 18px;
}

/* ICON CIRCLE */

/* ACTIVE ITEM */

/* BUTTON */
.btn.light {
    background: #fff;
    color: #000;
    padding: 16px 30px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
}

/* org banner section css end */

/* meet our team section css start */
/* SECTION */
.coaches {
    padding: 74px 0;
    text-align: left;
}

.coaches h2 {
    font-size: 40px;
    margin-bottom: 16px;
    font-weight: 500;
}

.coaches-sub {
    max-width: 700px;
    color: #666;
    font-size: 18px;
    margin-bottom: 40px;
}

/* CARD */
.coach-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 5px -2px 18px -8px #0000004a;
    border: 1px solid #e0e0e0;
    transition: 0.3s;
    height: 480px;
    display: flex;
    flex-direction: column;
}

/* .coach-card:hover {
    transform: translateY(-6px);
} */

/* IMAGE */
.coach-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.linkedin-link {
    margin-top: 20px;
    position: absolute;
    bottom: 25px;
}

.coach-card .linkedin-link .linkedin-icon {
    width: 30px;
    height: 30px;
}

/* TEXT */
.coach-info {
    padding: 20px 15px;
    display: flex;
    /* ✅ */
    flex-direction: column;
    /* ✅ */
    flex: 1;
}

.coach-info h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
}

.coach-info span {
    color: #ef6a4b;
    font-size: 13px;
    line-height: 16px;

}

/* NAV BUTTONS */
.swiper-button-next,
.swiper-button-prev {
    color: #000;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
}

/* meet our team section css end */

/* testimonial slider section css start */
.cohorts {
    padding: 80px 0;
    background: #f5f5f5;
    text-align: left;
}

.video-grid {
    padding: 20px 0;
    background: #f7f7f7;
}

.video-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* VIDEO CARD */
.video-item {
    position: relative;
    width: 100%;
    height: 350px;
    padding-top: 56.25%;
    /* 16:9 ratio */
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}

.video-item iframe,
.video-item video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 🔥 MAGIC */
    top: 0;
    left: 0;
}

/* IFRAME FULL COVER */
.video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* MOBILE */


/* TOP CONTENT */
.cohorts-top {
    margin-bottom: 40px;
}

.cohorts-top h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #0f1e2e;
    font-weight: 500;
}

.quote {
    max-width: 600px;
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

/* SLIDER */
.cohortSwiper {
    padding-bottom: 10px;
}

/* SLIDE IMAGE */
.cohortSwiper .swiper-slide {
    border-radius: 12px;
    overflow: hidden;
}

.cohortSwiper img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
}

/* spacing */
.swiper-wrapper {
    align-items: center;
}

/* testimonial slider section css end */

/* team info section css start */
/* SECTION */
.alumni {
    padding: 80px 0;
    text-align: left;
}

/* HEADER */
.alumni-top {
    margin-bottom: 50px;
}

.alumni-top h2 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #0f1e2e;
}

.alumni-top p {
    max-width: 600px;
    color: #666;
    font-size: 18px;
    line-height: 1.6;
}

/* GRID */
.alumni-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* CARD */
.alumni-card {
    display: flex;
    gap: 25px;
    align-items: center;
}

/* IMAGE */
.alumni-img {
    flex: 0 0 180px;
}

.alumni-img img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

/* CONTENT */
.alumni-content {
    position: relative;
}

/* QUOTE ICON */
.quote-icon {
    font-size: 60px;
    color: #ef6a4b;
    line-height: 1;
    margin-bottom: 10px;
}

/* TEXT */
.alumni-content .text {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* NAME */
.alumni-content h4 {
    font-size: 20px;
    margin-bottom: 14px;
    font-weight: 500;
    color: #0f1e2e;
    font-family: "Montserrat", sans-serif;
}

/* DESIGNATION */
.alumni-content span {
    font-size: 13px;
    color: #777;
}

/* team info section css end */

/* faq section css start */
/* SECTION */
.faq {
    background: linear-gradient(135deg, #1f1f1f, #2a2a2a);
    padding: 80px 0;
    color: #fff;
    text-align: left;
}

/* WRAPPER */
.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

/* LEFT */
.faq-left h2 {
    font-size: 80px;
    margin-bottom: 20px;
}

.faq-left p {
    color: #bbb;
    max-width: 300px;
    line-height: 1.6;
}

/* RIGHT */
.faq-item {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
}

/* QUESTION */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 500;
}

.faq-question .icon {
    font-size: 22px;
    transition: 0.3s;
}

/* ANSWER (ANIMATION MAGIC) */
.faq-answer {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
    opacity: 0;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    opacity: 1;
    margin-top: 10px;
}

.faq-item.active .icon {
    transform: rotate(180deg);
}

/* TEXT */
.faq-answer p {
    color: #bbb;
    font-size: 14px;
    line-height: 1.6;
}

/* LAST BORDER */
.faq-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* RESPONSIVE */
/* faq section css end */

/* two row column slider section css start */
.gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #e0634a, #f06b4f);
    text-align: center;
    color: #fff;
    position: relative;
}

/* TITLE */
.gallery h2 {
    font-size: 40px;
    margin-bottom: 16px;
    font-weight: 500;
}

.gallery-sub {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 18px;
    opacity: 1;
}

/* SLIDER */
.gallerySwiper {
    position: relative;
}

/* IMAGE */
.gallerySwiper .swiper-slide {
    border-radius: 12px;
    overflow: hidden;
}

.gallerySwiper img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
}

/* NAV BUTTONS */
.gallery-prev,
.gallery-next {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);

    width: 40px;
    height: 40px;
    border-radius: 50%;

    background: #fff;
    color: #000;

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

    cursor: pointer;
    z-index: 5;
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

/* BUTTON */
.gallery-btn {
    margin-top: 40px;
}

.gallery-btn a {
    background: #fff;
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
}

/* two row column slider section css end */

/* contact form section start css  */
/* SECTION */
.apply {
    padding: 80px 0;
    background: #f3f3f3;
    text-align: left;
}

/* WRAPPER */
.apply-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

/* LEFT */
.apply-left h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #0f1e2e;
    font-weight: 500;
}

.apply-left p {
    font-size: 18px;
    color: #000000;
    line-height: 1.6;
}

/* FORM */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    margin-bottom: 25px;
}

/* LABEL */
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
}

/* INPUT */
.form-group input,
.form-group textarea {
    width: 100%;
    background: #cfcfcf;
    border: none;
    padding: 14px;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
}

/* TEXTAREA */
.form-group textarea {
    resize: none;
}

/* BUTTONS */
.form-buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

/* BUTTON BASE */
.btn {
    padding: 12px 28px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

/* DARK BUTTON */
.btn.dark {
    background: #000;
    color: #fff;
}

/* OUTLINE BUTTON */
.btn.outline {
    background: #000;
    color: #fff;
}

/* HOVER */
.btn:hover {
    opacity: 0.85;
}

/* RESPONSIVE */
/* contact form section start end  */

/* footer section css start */
/* FOOTER */
.footer {
    background: #555758;
    color: #ccc;
    position: relative;
    text-align: left;
}

/* TOP */
.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 60px 0;
}

/* BRAND */
.footer-brand img {
    width: 150px;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 14px;
    color: #aaa;
}

/* LINKS */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
}

/* SOCIAL */
.footer-social h4 {
    margin-bottom: 15px;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}

/* ICONS */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffffff;
    color: #ef6b4c;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #ef6a4b;
}

/* BOTTOM BAR */
.footer-bottom {
    background: linear-gradient(90deg, #222, #111);
    padding: 15px 0;
}

.footer-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #aaa;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
}

.footer-links span {
    margin: 0 8px;
    color: #666;
}

.footer-links a:hover {
    color: #fff;
}

/* RESPONSIVE */

/* footer section css end */

/* media query start for all start */
@media (max-width: 900px) {

    /* Layout requirement:
     Logo left → Apply → Hamburger right */
    .container {
        justify-content: space-between;
    }

    .header-wrapper {
        padding: 0 20px;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
        padding: 100px 0 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 10001;
        /* 🔑 FIX: above header-container (9999) */
        box-shadow: -12px 0 48px rgba(0, 0, 0, 0.12);
        border-left: 1px solid rgba(0, 0, 0, 0.06);
    }

    .nav.active {
        right: 0;
    }

    .nav a {
        display: block;
        padding: 14px 32px;
        font-size: 15px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        color: #1c2b3a;
    }

    .nav a::after {
        display: none;
        /* remove underline animation on mobile */
    }

    .nav a:hover {
        background: rgba(239, 106, 75, 0.05);
        color: #ef6a4b;
        padding-left: 36px;
        /* subtle indent on hover */
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active {
        position: fixed;
        top: 18px;
        right: 20px;
        z-index: 10002;
        /* 🔑 FIX: above nav (10001) */
    }


    /* hero section mobile view code start */
    .hero {
        height: auto;
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero h3 {
        font-size: 16px;
    }

    .hero p {
        font-size: 14px;
    }

    /* hero section mobile view code end */

    /* fold2 section css start */
    .program-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .program-title {
        font-size: 24px;
    }

    .program-tags {
        gap: 10px;
    }

    /* fold2 section css end */

    /* fold3 counter section css start */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* fold3 counter section css end */

    .card {
        flex: 0 0 100%;
    }

    .cep-fit-wrapper {
        grid-template-columns: 1fr;
    }

    .cep-fit-left h2 {
        font-size: 26px;
    }

    .cep-steps {
        padding-left: 35px;
    }


    .graduate-wrapper {
        grid-template-columns: 1fr;
    }

    .graduate-right {
        grid-template-columns: 1fr;
    }

    .graduate-left h2 {
        font-size: 26px;
    }

    .graduate-image {
        margin-bottom: 40px;
    }

    .org-banner {
        height: auto;
        padding: 40px 20px;
    }

    .org-content {
        max-width: 100%;
    }

    .alumni-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .alumni-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .alumni-img {
        width: 150px;
    }

    .faq-wrapper {
        grid-template-columns: 1fr;
    }

    .faq-left h2 {
        font-size: 50px;
    }

    .gallerySwiper img {
        height: 180px;
    }

    .apply-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .apply-left p {
        max-width: 100%;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom-wrapper {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .video-wrapper {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 1024px) {
    .coach-card {
        flex: 0 0 calc(33.33% - 20px);
        /* 3 cards */
    }
}

@media (max-width: 768px) {
    .coach-card {
        flex: 0 0 calc(50% - 15px);
        /* 2 cards */
    }
}

@media (max-width: 480px) {
    .coach-card {
        flex: 0 0 100%;
        /* 1 card */
    }
}

/* media query start for all end */