/* ===========================
   NSID Website — style.css
   Design System & Component Styles
   =========================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=DM+Serif+Display&family=Inter:wght@400&family=Raleway:wght@600&family=Sora:wght@600&display=swap');

/* ---------- Design Tokens ---------- */
:root {
    --primary: #ff622d;
    --primary-light: #ffd6c7;
    --black: #000000;
    --white: #ffffff;
    --gray-bg: #d9d9d9;
    --border-color: #d8d8d8;

    --font-heading: 'DM Serif Display', serif;
    --font-body: 'DM Sans', sans-serif;
    --font-brand: 'Raleway', sans-serif;
    --font-button: 'Sora', sans-serif;

    --navbar-height: 86px;
    --section-padding: 60px 0;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

h2 {
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 400;
    font-size: 44px;
    line-height: 66px;
    color: var(--black);
    text-align: center;
    margin-bottom: 50px;
}

@media (max-width: 767.98px) {
    h2 {
        font-size: 28px;
        line-height: 40px;
    }
}


/* ===========================
   NAVBAR
   =========================== */
.navbar-wrapper {
    position: sticky;
    top: 0;
    z-index: 1050;
    background: var(--white);
    transition: box-shadow 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
    margin-top: 2.5rem;
}

.navbar-wrapper.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar-wrapper.navbar-hidden {
    transform: translateY(-100%);
}

.nsid-navbar {
    display: flex;
    align-items: center;
    min-height: var(--navbar-height);
    padding: 0;
}

/* --- Brand / Logo Area --- */
.navbar-brand-area {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 24px;
    min-height: var(--navbar-height);
    border-right: 0.746px solid var(--border-color);
    border-top: 0.746px solid var(--border-color);
    border-bottom: 0.746px solid var(--border-color);
    background: linear-gradient(90deg, #fff 0%, #fff 100%);
    flex-shrink: 0;
}

.navbar-logo {
    width: 90px;
    height: auto;
}

.navbar-brand-text {
    font-family: var(--font-brand);
    font-weight: 600;
    font-size: 15.29px;
    line-height: 16.62px;
    color: var(--black);
    white-space: nowrap;
}

/* --- Nav Links Area --- */
.navbar-links-area {
    align-items: center;
    justify-content: flex-end;
    flex-grow: 1;
    min-height: var(--navbar-height);
    padding: 0 40px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    gap: 40px;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* On large screens, ensure flex-row layout */
@media (min-width: 992px) {
    .navbar-links-area {
        display: flex !important;
        flex-direction: row;
    }
}

/* On small screens (collapsed), stack vertically */
@media (max-width: 991.98px) {
    .navbar-links-area {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 24px;
        gap: 16px;
        border-top: none;
        border-bottom: 1px solid var(--border-color);
        min-height: auto;
    }
}

.nav-link-custom {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    color: var(--black) !important;
    transition: color 0.25s ease;
    padding: 0 !important;
    position: relative;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link-custom:hover::after {
    width: 100%;
}

.nav-link-custom:hover {
    color: var(--primary) !important;
}

@media (max-width: 767.98px) {
    header>nav {
        border-right: 0.746px solid var(--border-color);
        border-top: 0.746px solid var(--border-color);
        border-bottom: 0.746px solid var(--border-color);
    }
}

/* --- Join Us Button (Navbar) --- */
.btn-join {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    line-height: 32px;
    color: var(--white);
    background: var(--primary);
    border: none;
    border-radius: 100px;
    padding: 4px 28px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    white-space: nowrap;
}

.btn-join:hover {
    background: #e5521f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 98, 45, 0.35);
    color: var(--white);
}

/* --- Mobile Toggle --- */
.navbar-toggler {
    border: none !important;
    box-shadow: none !important;
    padding: 8px;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cpath stroke='%23000' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

/* ===========================
   VIDEO SECTION
   =========================== */
.video-section {
    background: #fff;
    padding: 0;
}

.video-container {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #1a1a1a;
    aspect-ratio: 16 / 9;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
    transition: opacity 0.4s ease;
}

.play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-btn-circle {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.play-btn-circle:hover {
    transform: scale(1.1);
    background: #ffffff;
}

.play-btn-circle svg {
    width: 32px;
    height: 32px;
    fill: #FF6B35;
    margin-left: 4px;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
    text-align: center;
    padding: 100px 20px 60px;
    background: var(--white);
    /* min-height: calc(100vh - var(--navbar-height)); */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.hero-heading {
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 400;
    font-size: 80px;
    line-height: 90px;
    color: var(--black);
    margin-bottom: 30px;
}

.hero-subheading {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 24px;
    line-height: 40px;
    color: var(--black);
    max-width: 904px;
    margin: 0 auto 50px;
}

/* --- CTA Buttons --- */
.hero-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-explore {
    font-family: var(--font-button);
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.7px;
    color: var(--white);
    background: var(--primary);
    border: none;
    border-radius: 100px;
    padding: 12px 40px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-explore:hover {
    background: #e5521f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 98, 45, 0.4);
    color: var(--white);
}

.btn-chat {
    font-family: var(--font-button);
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.7px;
    color: var(--black);
    background: var(--primary-light);
    border: none;
    border-radius: 100px;
    padding: 12px 40px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-chat:hover {
    background: #ffc4ae;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 214, 199, 0.6);
}

/* ===========================
   VIDEO SECTION
   =========================== */
.video-section {
    padding: 0 0 80px;
    display: flex;
    justify-content: center;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 1280px;
    aspect-ratio: 16 / 9;
    background: var(--gray-bg);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* --- Play Button Overlay --- */
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity 0.4s ease;
    cursor: pointer;
}

.play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-btn-circle {
    width: 120px;
    height: 120px;
    background: rgba(30, 30, 30, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.play-btn-circle:hover {
    transform: scale(1.1);
    background: rgba(30, 30, 30, 0.95);
}

.play-btn-circle svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
    margin-left: 6px;
    /* visual offset to center the triangle */
}

/* Video thumbnail / poster image */
.video-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 5;
    transition: opacity 0.4s ease;
}

.video-poster.hidden {
    opacity: 0;
    pointer-events: none;
}

/* ===========================
   COURSES SECTION
   =========================== */
.courses-section {
    background: #f3f1ec;
    padding: 80px 0 60px;
}

.courses-section-heading {
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 400;
    font-size: 44px;
    line-height: 66px;
    color: var(--black);
    text-align: center;
    margin-bottom: 50px;
}

.courses-grid {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Course Card --- */
.course-card {
    background: var(--white);
    border: 1px solid #e6e6e6;
    border-radius: 24px;
    padding: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

/* Card Image */
.course-card-img {
    width: 100%;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

.course-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.4s ease;
}

.course-card:hover .course-card-img img {
    transform: scale(1.05);
}

/* Card Title */
.course-card-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    color: var(--black);
    margin: 0;
}

.course-card-title span {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #D76B00
}

/* Divider */
.course-card-divider {
    width: 100%;
    height: 1px;
    background: #e6e6e6;
}

/* Tags Row */
.course-card-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.course-tag {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 20px;
    color: #c94f27;
    background: #fbfbfb;
    padding: 4px 8px;
    border-radius: 4px;
    text-align: center;
    white-space: nowrap;
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: #e6e6e6;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Skills */
.course-card-skills {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--black);
    margin: 0;
}

.course-card-skills strong {
    font-weight: 700;
}

/* ===========================
   WHO'S THIS FOR SECTION
   =========================== */
.whos-section {
    background: #FFFFFF;
    padding: 100px 0;
}

.whos-title {
    color: #993B18;
    text-align: left;
    margin-bottom: 3rem;
    font-size: 36px;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    line-height: 44px;
}

/* Who's Cards */
.whos-card {
    background: #F7F8FC;
    border-radius: 0;
    padding: 36px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
    border: 0.5px solid #D9D9D9;
}

.whos-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 4px 12px rgba(31, 64, 203, 0.25);
}

/* Card Title */
.whos-card-title {
    color: #1A1D2E;
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    word-wrap: break-word;
    font-family: var(--font-body);
}

/* Separator Line */
.whos-separator {
    width: 100%;
    height: 1px;
    background: #333333;
    margin-bottom: 20px;
    margin-top: 20px;
}

/* Description */
.whos-description {
    font-size: 1rem;
    font-weight: 300;
    color: #1A1D2E;
    line-height: 1.6;
    margin-bottom: 32px;
    flex-grow: 1;
    font-family: var(--font-body);
}

/* Profile Section */
.whos-profile {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: auto;
    padding-top: 3rem;
}

.profile-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Profile Background Colors */
.profile-yellow {
    background: #FCD34D;
}

.profile-blue {
    background: #93C5FD;
}

.profile-green {
    background: #86EFAC;
}

/* ===========================
   PORTFOLIO SECTION
   =========================== */
.portfolio-section {
    background: #FBF1E0;
    padding: 100px 0;
}

.course-portfolio-section {
    background: #ffffff;
    padding: 100px 0;
}

/* Portfolio Title */
.portfolio-title {
    color: #993B18;
    padding: 12px 0;
    margin-bottom: 36px;
    font-size: 36px;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    line-height: 44px;
}

/* Portfolio Description */
.portfolio-description {
    margin-bottom: 36px;
}

.desc-line {
    color: #1A1D2E;
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 30px;
    word-wrap: break-word;
    margin-bottom: 0.5rem;
}

.desc-line:last-child {
    margin-bottom: 0;
}

/* Social Proof - Student Avatars */
.social-proof {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
}

.student-avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #ffffff;
    margin-left: -8px;
    position: relative;
    z-index: 1;
}

.avatar:first-child {
    margin-left: 0;
    z-index: 3;
}

.avatar:nth-child(2) {
    z-index: 2;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.more-students {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #757575;
    margin-left: 8px;
    height: 100%;
    padding: 4px 5px;
    border-radius: 8px;
    background: #f5f5f5;
    text-align: center;
}

/* Portfolio Slider */
.portfolio-slider {
    padding: 36px 0;
}

/* Portfolio Cards */
.portfolio-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.portfolio-card:hover {
    transform: translateY(-4px);
}

.portfolio-image {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    padding: 12px;
    margin-bottom: 12px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border: 1px solid #E6E6E6;
    border-radius: 16px;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-info {
    padding: 12px;
}

.portfolio-info a {
    text-decoration: none;
}

.student-name {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
    line-height: 36px;
    text-decoration: none;
}

.student-name:hover {
    color: #FF6B35;
}

.portfolio-link {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 24px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.portfolio-link:hover {
    color: #FF6B35;
}

/* Swiper Pagination */
.swiper-pagination-bullet-active {
    background: #FF6B35 !important;
}

/* Call to Action - Next Cohort */
.brand {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 36px 0;
}

.brand-left {
    flex: 1 1 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: inline-flex;
}

.brand-left p {
    color: #1A1D2E;
    font-size: 16px;
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 24px;
    word-wrap: break-word;
    margin: 0;
}

.brand-logos {
    align-self: stretch;
    justify-content: space-between;
    align-items: flex-start;
    display: inline-flex;
}

.brand-logo-img {
    flex: 1 1 0;
    padding-top: 8px;
    padding-bottom: 8px;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.brand-logo-img>img {
    width: 72px;
    height: 66px;
    /* mix-blend-mode: difference; */
}

.brand-right {
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
}

.brand-right-btn {
    justify-content: center;
    align-items: center;
    gap: 12px;
    display: inline-flex;
}

.btn-apply {
    background: #FF622D;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    padding: 12px;
    border-radius: 100px;
    line-height: 20px;
    letter-spacing: 0.70px;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.btn-apply:hover {
    background: #ff622d;
    color: #fff;
    box-shadow: 0 6px 20px rgba(255, 98, 45, 0.35);
    transform: translateY(-1px);
}

/* ===========================
   QUOTE SECTION
   =========================== */
.quote-sections {
    background: #ffffff;
    padding: 100px 0;
}

.capabilities-block {
    max-width: 1920px;
    width: 100%;
    border-top: 1px solid #f09b24;
    margin: 0;
}

.main-content {
    padding: 36px 0;
}

.quote-text p {
    color: #FF622D;
    font-size: 48px;
    font-family: DM Serif Display;
    font-style: italic;
    font-weight: 400;
    line-height: 64px;
    text-align: center;
    margin-bottom: 18px;
}

.quote-text p:last-child {
    margin-bottom: 0;
}

.attribution-wrapper {
    padding: 24px 0;
}

.attribution-text {
    color: black;
    font-size: 24px;
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
}

@media (max-width: 767.98px) {
    .quote-text p {
        color: #FF622D;
        font-size: 36px;
        font-family: DM Serif Display;
        font-style: italic;
        font-weight: 400;
        line-height: 48px;
        text-align: center;
    }
}

/* ===========================
   MOMENTS @ NSID SECTION
   =========================== */
.moments-section {
    background: #fff;
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.moments-header {
    margin-bottom: 36px;
    text-align: left;
}

.moments-title {
    font-family: 'Sora', sans-serif;
    margin-bottom: 20px;
    letter-spacing: 0em;
    color: #993B18;
    font-size: 36px;
    font-weight: 600;
    line-height: 44px;
}

.moments-description {
    color: black;
    font-size: 24px;
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 40px;
    margin: 0 auto 50px;
    max-width: 900px;

}

/* Moments Grid */
.moments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 72px;
    margin-bottom: 36px;
}

.moment-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.moment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
}

.moment-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.moment-card:hover img {
    transform: scale(1.05);
}

/* Pagination Dots (Moments specific) */
.moments-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
    margin: 36px 0;
}

.moments-pagination .pagination-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.moments-pagination .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #D9D9D9;
    transition: all 0.3s ease;
    cursor: pointer;
}

.moments-pagination .dot.active {
    background: #CD6633;
    transform: scale(1.2);
}

.moments-pagination .dot:hover {
    background: #CD6633;
    opacity: 0.7;
}

@media (max-width: 991.98px) {
    .portfolio-section {
        padding: 60px 0;
    }

    .portfolio-title {
        font-size: 2rem;
        text-align: center;
    }

    .portfolio-description {
        text-align: center;
        margin-bottom: 2rem;
    }

    .social-proof {
        justify-content: center;
        margin-top: 1rem;
    }

    .portfolio-slider {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
    }

    .brand {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .brand-left {
        width: 100%;
    }

    .brand-right {
        width: 100%;
        justify-content: flex-start;
    }

    .brand-logo-img {
        flex-wrap: wrap;
        gap: 12px;
    }

    .brand-logo-img>img {
        width: 60px;
        height: 55px;
    }
}

@media (max-width: 767.98px) {
    .portfolio-section {
        padding: 50px 0;
    }

    .portfolio-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .desc-line {
        font-size: 16px;
        line-height: 24px;
    }

    .portfolio-slider {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px 0;
    }

    .student-name {
        font-size: 20px;
        line-height: 30px;
    }

    .portfolio-link {
        font-size: 14px;
    }

    .brand-left p {
        font-size: 14px;
        line-height: 20px;
    }

    .brand-logo-img>img {
        width: 50px;
        height: 46px;
    }

    .btn-apply {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .portfolio-title {
        font-size: 1.5rem;
    }

    .desc-line {
        font-size: 14px;
        line-height: 20px;
    }

    .avatar {
        width: 32px;
        height: 32px;
    }

    .more-students {
        font-size: 12px;
        padding: 2px 4px;
    }

    .brand-right {
        justify-content: center;
    }

    .brand-logo-img {
        justify-content: center;
    }

    .brand-logo-img>img {
        width: 45px;
        height: 41px;
    }
}

/* ===========================
   TESTIMONIALS SECTION
   =========================== */
.testimonial-sections {
    padding: 100px 0;
    background-color: #F7F8FC;
}

.testimonial-section {
    background-color: #f7f8fc;
    border-radius: 16px;
    width: 100%;
    max-width: 1920px;
    padding: 36px 72px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.06);
    border: 0.5px solid #e4e8f0;
}

.testimonial-section-title {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    color: #993B18;
    text-align: left;
    margin-bottom: 36px;
    padding: 12px 0;
}

.section-description {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    color: #33354A;
    margin-bottom: 36px;
    word-wrap: break-word;
}

/* Testimonial Card Interaction */
.cards-wrapper {
    height: 400px;
    display: flex;
    width: 100%;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    flex: 1;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.06);
}

.testimonial-card.active {
    flex: 2.5;
    background: #ffffff;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.06);
    border-color: transparent;
}

/* Inner Content Transition */
.card-view {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.testimonial-card .expanded {
    display: none;
    opacity: 0;
    transform: translateY(10px);
}

.testimonial-card .collapsed {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card.active .expanded {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInTestimonial 0.5s forwards;
}

.testimonial-card.active .collapsed {
    display: none;
    opacity: 0;
}

@keyframes fadeInTestimonial {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typography & elements */
.avatar-lg {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.avatar-sm {
    width: 48px;
    height: 48px;
    object-fit: cover;
}

.quote-mark {
    color: #ff8e6e;
    position: absolute;
    top: -40px;
    right: 20px;
    font-size: 128px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 500;
    line-height: 36px;
}

.quote-mark-small {
    color: #ff8e6e;
    display: block;
    margin-bottom: 10px;
    font-size: 64px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 500;
    line-height: 36px;
    text-align: right;
}

.testimonial-box {
    margin-top: auto;
}

.testimonial-text {
    color: #2E3246;
    font-size: 14px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    line-height: 20px;
    margin: 25% 0;
    padding: 12px 0;
}

.testimonial-text-collapsed {
    color: #2E3246;
    font-size: 14px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    line-height: 20px;
    margin: 10% 0;
    padding: 12px 0;
}

.testimonial-name {
    color: #1A1D2E;
    font-size: 20px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 500;
    line-height: 30px;
}

.designation-box {
    padding: 12px 0;
}

.testimonial-designation {
    color: #2E3246;
    font-size: 14px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 10px;
}

.testimonial-designation2 {
    color: #2E3246;
    font-size: 14px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 0;
}

/* Bottom Section */
.bottom-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 36px;
}

.trusted-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    color: #ff8b66;
}

.avatar-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.avatars-wrapper {
    display: flex;
    align-items: center;
    padding-right: 8px;
    z-index: 2;
}

.avatar-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: -8px;
    box-shadow: 0px 1px 4px rgba(12, 12, 13, 0.1), 0px 1px 4px rgba(12, 12, 13, 0.05);
    overflow: hidden;
}

.avatar-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overflow-badge {
    background-color: #e5e5e5;
    border-radius: 8px;
    padding: 5px 4px;
    min-width: 24px;
    z-index: 1;
}

.overflow-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: #757575;
    text-align: center;
}

@media (max-width: 991.98px) {
    .testimonial-wrapper {
        padding: 24px;
    }

    .cards-wrapper {
        flex-direction: column;
        height: auto;
        gap: 16px !important;
    }

    .testimonial-card {
        flex: 1 !important;
    }

    .testimonial-card.active {
        flex: 1 !important;
    }

    .bottom-section {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
}

@media (max-width: 767.98px) {
    .testimonial-sections {
        padding: 50px 0;
    }

    .testimonial-wrapper {
        padding: 20px;
    }

    .testimonial-section-title {
        font-size: 20px;
        line-height: 30px;
    }

    .section-description {
        font-size: 16px;
        line-height: 24px;
    }

    .quote-mark {
        font-size: 80px;
    }

    .quote-mark-small {
        font-size: 48px;
    }
}

@media (max-width: 575.98px) {
    .testimonial-wrapper {
        padding: 16px;
    }

    .avatar-lg {
        width: 80px;
        height: 80px;
    }

    .avatar-sm {
        width: 40px;
        height: 40px;
    }
}

/* ===========================
   ADVISORY BOARD SECTION
   =========================== */
.advisory-section {
    background: #ffffff;
    padding: 100px 0;
}

.advisory-header {
    text-align: left;
    margin-bottom: 18px;
}

.advisory-description {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 500;
    color: #33354A;
    line-height: 30px;
    margin: 0;
}

/* Advisory Card */
.advisory-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.advisory-card:hover {
    transform: translateY(-4px);
}

/* Advisory Image */
.advisory-image {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.advisory-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.advisory-card:hover .advisory-image img {
    transform: scale(1.05);
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

/* Advisory Info */
.advisory-info {
    padding: 18px 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.advisory-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #1E1E1E;
    margin: 0;
    line-height: 36px;
    letter-spacing: -0.01em;
}

.advisory-role {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #757575;
    margin: 0;
    line-height: 30px;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
    background: #ffffff;
    padding: 36px 0;
}

.cta-hero-banner {
    background: #F7F8FC;
    border-radius: 0;
    padding: 36px 72px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.06);
    border: .5px solid #dfdfdf;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

.cta-hero-content {
    flex-grow: 1;
}

.cta-hero-headline {
    color: #712D17;
    font-size: 24px;
    font-family: 'DM Serif Display';
    font-weight: 400;
    line-height: 36px;
    margin-bottom: 36px;

}

.cta-hero-description {
    margin-bottom: 0;
}

.cta-hero-desc-line {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #1A1D2E;
    line-height: 30px;
    margin-bottom: 0;
}

.hero-action {
    flex-shrink: 0;
}

.btn-enroll {
    background: #FF6B35;
    color: #ffffff;
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 12px;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-enroll:hover {
    background: #e55a2b;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(255, 98, 45, 0.35);
    transform: translateY(-1px);
}

@media (max-width: 991.98px) {
    .cta-hero-banner {
        padding: 36px 72px;
    }
}

@media (max-width: 767.98px) {
    .cta-hero-banner {
        padding: 36px 18px;
        flex-direction: column;
        gap: 18px;
        margin-bottom: 0;
    }
}

/* ===========================
   CONTACT FORM / LEAD GEN SECTION
   =========================== */
.lead-gen-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.left-content {
    padding-right: 40px;
}

.main-heading {
    font-size: 36px;
    font-family: DM Serif Display;
    font-weight: 400;
    line-height: 44px;
    color: #000;
    text-align: left;
}

.quote-text-contact {
    font-size: 20px;
    color: #33354A;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    line-height: 30px;
    margin: 0 !important;
}

.illustration-wrapper {
    max-width: 420px;
    margin: 0 auto;
}

/* Form Card */
.form-card {
    border: 1px solid #FF8B66;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    padding: 35px 30px;
    background: #ffffff;
}

/* Custom Inputs */
.custom-input {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: #333;
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-input::placeholder {
    color: #aaa;
    font-weight: 400;
}

.custom-input:focus {
    border-color: #e85d2a;
    box-shadow: 0 0 0 3px rgba(232, 93, 42, 0.1);
    outline: none;
}

/* Course Cards */
.course-card-select {
    display: block;
    cursor: pointer;
    height: 100%;
}

.course-card-select input[type="radio"] {
    display: none;
}

.course-card-inner {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 16px;
    height: 100%;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.course-card-select input[type="radio"]:checked+.course-card-inner {
    border-color: #e85d2a;
    box-shadow: 0 0 0 2px rgba(232, 93, 42, 0.15);
}

.course-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.course-checkbox-mark {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #c0392b;
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.course-card-select input[type="radio"]:checked+.course-card-inner .course-checkbox-mark {
    background-color: #e85d2a;
}

.course-card-select input[type="radio"]:checked+.course-card-inner .course-checkbox-mark::after {
    content: '✓';
    color: #fff;
    font-size: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
}

.course-name {
    font-size: 0.88rem;
    font-weight: 500;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

/* Submit Button */
.btn-submit {
    background-color: #e85d2a;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #d14d1f;
    color: #fff;
    transform: translateY(-1px);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Privacy Policy */
.privacy-check {
    border-color: #e85d2a;
    cursor: pointer;
}

.privacy-check:checked {
    background-color: #e85d2a;
    border-color: #e85d2a;
}

.privacy-check:focus {
    box-shadow: 0 0 0 3px rgba(232, 93, 42, 0.15);
    border-color: #e85d2a;
}

.privacy-label {
    font-size: 0.88rem;
    color: #555;
    cursor: pointer;
}

.privacy-link {
    color: #e85d2a;
    text-decoration: underline;
    font-weight: 500;
}

.privacy-link:hover {
    color: #d14d1f;
}

@media (max-width: 767.98px) {
    .privacy-label {
        font-size: 0.85rem;
    }

    .privacy-check {
        width: 14px;
        height: 14px;
    }

    .main-heading {
        text-align: center;
    }

    .left-content {
        padding-right: 0;
    }

    .quote-text-contact {
        text-align: center;
    }
}

/* ===========================
   FAQ SECTION
   =========================== */
.faq-section {
    background: #F3F1EC;
    padding: 100px 0;
}

.faq-main {
    padding: 36px 0;
}

.faq-about {
    padding: 18px 0;
}

.faq-header {
    text-align: left;
}

.faq-title {
    color: #993B18;
    font-size: 36px;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
}

.faq-description {
    color: #000;
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 300;
    line-height: 40px;
    margin: 0 auto 50px;
    max-width: 900px;
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 12px 36px;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: rgba(195, 81, 44, 0.02);
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #ffffff;
}

.faq-number {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #374151;
}

.faq-text {
    font-family: 'DM Sans', sans-serif;
    flex-grow: 1;
    color: #2E3246;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;

}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-plus {
    color: #374151;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 48px;
    padding-right: 48px;
}

.faq-answer p {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #2E3246;
    line-height: 24px;
    margin: 0;
    padding: 16px 0 24px 0;
}

.faq-answer ul li {
    line-height: 2;
    color: #2E3246;
    font-weight: 500;
}

.faq-item.active .faq-plus {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 750px;
}

@media (max-width: 767.98px) {
    .faq-section {
        padding: 36px 0;
    }

    .faq-description {
        font-size: 18px;
        line-height: 28px;
    }

    .faq-container {
        padding: 12px 18px;
    }

    .faq-question {
        padding: 12px 18px;
    }

    .faq-number {
        font-size: 14px;
    }
}

/* ===========================
   COMPREHENSIVE FOOTER
   =========================== */
.comprehensive-footer {
    background: #ffffff;
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

.footer-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.footer-main {
    position: relative;
    z-index: 1;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 36px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    flex-shrink: 0;
}

.scroll-to-top {
    flex-shrink: 0;
}

.scroll-btn {
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6B35;
    cursor: pointer;
    transition: all 0.2s ease;
}

.scroll-btn:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}

.footer-middle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 36px;
    padding: 18px 0;
    height: 494px;
}

.footer-locations {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.location-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.location-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: #1A1D2E;
    margin: 0;
    line-height: 44px;
}

.location-address {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #000000;
    margin: 0;
}

.footer-navigation {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.footer-navigation .nav-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: #1A1D2E;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-navigation .nav-link:hover {
    color: #C94F27;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    position: relative;
    z-index: 1;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-icon:hover {
    background: #FFD6C7;
    transform: translateY(-1px);
    border-radius: 36px;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item,
.contact-separator {
    color: #333333;
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    line-height: 24px;
}

.contact-item a {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    line-height: 24px;
    text-decoration: none;
}

.contact-item a:hover {
    color: #C94F27;
}

.footer-copy {
    text-align: center;
    padding-top: 24px;
    font-size: 14px;
    color: #999;
}

/* ===========================
   RESPONSIVE — Tablet (≤ 991px)
   =========================== */
@media (max-width: 991.98px) {
    .navbar-brand-area {
        border-right: none;
        padding: 0 16px;
    }

    .courses-section-heading {
        font-size: 36px;
        line-height: 48px;
    }

    .hero-heading {
        font-size: 56px;
        line-height: 66px;
    }

    .hero-subheading {
        font-size: 20px;
        line-height: 34px;
    }

    .hero-section {
        padding: 70px 20px 50px;
    }

    .play-btn-circle {
        width: 100px;
        height: 100px;
    }

    .play-btn-circle svg {
        width: 34px;
        height: 34px;
    }

    .whos-section {
        padding: 60px 0;
    }

    .whos-title {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .whos-card {
        padding: 24px;
    }

    .whos-card-title {
        font-size: 1.375rem;
    }

    .profile-image {
        width: 100px;
        height: 100px;
    }

    .moments-section {
        padding: 60px 0;
    }

    .moments-header {
        margin-bottom: 40px;
        text-align: center;
    }

    .moments-title {
        font-size: 2rem;
    }

    .moments-description {
        font-size: 0.95rem;
        max-width: 500px;
        margin: 0 auto;
    }

    .moments-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 14px;
        margin-bottom: 40px;
    }
}


/* Comprehensive Footer Section Responsive */
@media (max-width: 1199.98px) {
    .footer-watermark {
        font-size: 10rem;
    }

    .footer-middle {
        gap: 40px;
    }
}

@media (max-width: 991.98px) {
    .comprehensive-footer {
        padding: 50px 0 20px 0;
    }

    .footer-watermark {
        font-size: 8rem;
    }

    .footer-top {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }

    .footer-brand {
        align-self: flex-start;
    }

    .scroll-to-top {
        align-self: flex-end;
    }

    .footer-middle {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .footer-navigation {
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 767.98px) {
    .comprehensive-footer {
        padding: 40px 0 16px 0;
    }

    .footer-watermark {
        font-size: 6rem;
    }

    .footer-top {
        margin-bottom: 30px;
    }

    .footer-brand {
        gap: 12px;
    }

    .scroll-btn {
        width: 36px;
        height: 36px;
    }

    .footer-middle {
        gap: 24px;
        margin-bottom: 30px;
    }

    .footer-locations {
        gap: 20px;
    }

    .location-title {
        font-size: 0.9rem;
    }

    .location-address {
        font-size: 0.8rem;
    }

    .footer-navigation {
        gap: 12px;
    }

    .footer-navigation .nav-link {
        font-size: 0.9rem;
    }

    .footer-bottom {
        gap: 16px;
    }

    .footer-social {
        gap: 12px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .social-icon svg {
        width: 18px;
        height: 18px;
    }

    .footer-contact {
        gap: 8px;
    }

    .contact-item {
        font-size: 0.8rem;
    }

    .contact-separator {
        font-size: 0.8rem;
    }
}

@media (max-width: 575.98px) {
    .comprehensive-footer {
        padding: 30px 0 12px 0;
    }

    .footer-watermark {
        font-size: 4rem;
    }

    .footer-top {
        margin-bottom: 25px;
    }

    .footer-brand {
        gap: 10px;
    }

    .scroll-btn {
        width: 32px;
        height: 32px;
    }

    .footer-middle {
        gap: 20px;
        margin-bottom: 25px;
    }

    .footer-locations {
        gap: 16px;
    }

    .location-title {
        font-size: 0.85rem;
    }

    .location-address {
        font-size: 0.75rem;
    }

    .footer-navigation {
        gap: 10px;
    }

    .footer-navigation .nav-link {
        font-size: 0.85rem;
    }

    .footer-bottom {
        gap: 14px;
    }

    .footer-social {
        gap: 10px;
    }

    .social-icon {
        width: 32px;
        height: 32px;
    }

    .social-icon svg {
        width: 16px;
        height: 16px;
    }

    .footer-contact {
        flex-direction: column;
        gap: 6px;
    }

    .contact-separator {
        display: none;
    }

    .contact-item {
        font-size: 0.75rem;
    }

    /* copy header html  footer */
    .footer-top {
        display: flex;
        flex-direction: row;
    }


    /* .footer-middle */

    .footer-locations {
        order: 2;
    }

    .footer-navigation {
        order: 1;
        align-items: flex-end;
    }

    .location-title {
        color: #1A1D2E;
        font-size: 18px;
        font-family: 'Sora', sans-serif;
        font-weight: 600;
        line-height: 24px;

    }

    .location-address {
        color: #1A1D2E;
        font-size: 12px;
        font-family: 'Sora', sans-serif;
        font-weight: 400;
        line-height: 16px;

    }

    .footer-navigation a {
        color: #1A1D2E;
        font-size: 18px;
        font-family: 'Sora', sans-serif;
        font-weight: 600;
        line-height: 24px;


    }

    .footer-watermark {
        bottom: 0px;
    }

    .footer-social {
        order: 1;
    }

    .footer-contact {
        order: 0;
    }

    .footer-copy {
        text-align: center;
        margin-top: 12px;
    }

    .footer-copy p {
        color: #33354A;
        font-size: 12px;
        font-family: 'IBM Plex Sans', sans-serif;
        font-weight: 500;
        line-height: 24px;

    }

    .m-footer-bottom {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }

    .m-footer-bottom {
        display: flex;
        flex-direction: row;
        gap: 16px;
        text-align: center;
        padding: 16px 24px;
        background: #F7F8FC;
        box-shadow: 0px -4px 12px rgba(0, 0, 0, 0.12);
    }

    .m-f-b-right {
        display: flex;
        align-content: center;
        align-items: center;
        gap: 12px;
    }

    .m-f-b-right-text>h5 {
        color: #757575;
        font-size: 12px;
        font-family: 'DM Sans', sans-serif;
        font-weight: 600;
        line-height: 16px;
        letter-spacing: 0.60px;
        word-wrap: break-word;
    }

    .m-f-b-right>.social-proof {
        justify-content: flex-start;
    }
}

/* ===========================
   RESPONSIVE — Mobile (≤ 575px)
   =========================== */
@media (max-width: 575.98px) {
    :root {
        --navbar-height: 64px;
    }

    .navbar-brand-area {
        padding: 0 12px;
    }

    .navbar-logo {
        width: 60px;
    }

    .navbar-brand-text {
        font-size: 12px;
        line-height: 14px;
    }

    .hero-section {
        padding: 50px 16px 40px;
        min-height: auto;
    }

    .whos-section {
        padding: 50px 0;
    }

    .whos-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .whos-card {
        padding: 20px;
    }

    .whos-card-title {
        font-size: 1.25rem;
    }

    .whos-description {
        font-size: 0.9rem;
    }

    .profile-image {
        width: 70px;
        height: 70px;
    }

    .moments-section {
        padding: 40px 0;
    }

    .moments-title {
        font-size: 1.5rem;
    }

    .moments-description {
        font-size: 0.85rem;
        line-height: 24px;
        margin-bottom: 30px;
        /* max-width: 300px; */
    }

    .moments-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 10px;
        margin-bottom: 25px;
    }

    .moments-pagination .dot {
        width: 10px;
        height: 10px;
    }

    .courses-section {
        padding: 50px 0 30px;
    }

    .courses-section-heading {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 30px;
    }

    .course-card-img {
        height: 180px;
    }

    .course-card-title {
        font-size: 20px;
        line-height: 30px;
    }

    .hero-heading {
        font-size: 38px;
        line-height: 46px;
        margin-bottom: 20px;
    }

    .hero-subheading {
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 36px;
    }

    .btn-explore,
    .btn-chat {
        padding: 10px 28px;
        font-size: 13px;
    }

    .video-section {
        padding: 0 12px 50px;
    }

    .play-btn-circle {
        width: 72px;
        height: 72px;
    }

    .play-btn-circle svg {
        width: 26px;
        height: 26px;
        margin-left: 4px;
    }
}

/* ========================================
   Capabilities Number Block (Advanced UI UX Page)
   ======================================== */
.capabilities-number-block {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 2rem;
}

.resource-card {
    min-height: 120px;
}

.resource-card .card-text p {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    color: #2e3246;
}

.resource-card .card-text strong {
    font-weight: 700;
}

/* Border Management for Cards */
@media (min-width: 992px) {
    .resource-card:last-child {
        border-right: none !important;
    }
}

@media (max-width: 991.98px) and (min-width: 768px) {
    .resource-card {
        border-right: none !important;
        border-bottom: 1px solid #e6e6e6;
    }

    .resource-card:nth-child(odd) {
        border-right: 1px solid #e6e6e6 !important;
    }

    .resource-card:nth-last-child(-n+2) {
        border-bottom: none !important;
    }
}

@media (max-width: 767.98px) {
    .resource-card {
        border-right: none !important;
        border-bottom: 1px solid #e6e6e6;
    }

    .resource-card:last-child {
        border-bottom: none !important;
    }
}

/* ========================================
   About Us Section (Advanced UI UX Page)
   ======================================== */
.aboutus-section {
    padding: 72px 0;
    background-color: #F3F1EC;
}

/* Two Column Layout */
.two-column-layout {
    display: flex;
    gap: 72px;
    height: 338px;
    align-items: center;
}

.column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Left Column (About) */
.about-section {
    display: flex;
    flex-direction: column;
    gap: 36px;
    padding: 18px 0;
}

/* Right Column (What You'll Learn) */
.learn-section {
    flex: 1;
    border-radius: 16px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Heading */
.heading-2 {
    text-align: left;
    margin-bottom: 0px;
}

/* Description Text */
.description-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    color: #33354A;
    font-weight: 400;
    line-height: 32px;

}

/* Tag Pills */
.about-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
}

.tag-pill {
    background-color: #FFF1EA;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tag-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #fff;
    white-space: nowrap;
    padding: 6px 16px;
    background: #FF622D;
    border-radius: 8px;
}

/* Footer Section */
.footer-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 36px;
}

.cohort-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.7px;
    color: #33354A;
    white-space: nowrap;
}

/* Avatar Group */
.avatar-group {
    display: flex;
    gap: 8px;
    align-items: center;
    isolation: isolate;
}

.avatars {
    display: flex;
    padding-right: 8px;
    z-index: 2;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    overflow: hidden;
    position: relative;
    box-shadow: 0px 1px 4px 0px rgba(12, 12, 13, 0.1), 0px 1px 4px 0px rgba(12, 12, 13, 0.05);
    margin-right: -8px;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.overflow-counter {
    background-color: #F5F5F5;
    border-radius: 8px;
    padding: 5px 4px;
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.overflow-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    color: #757575;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .two-column-layout {
        flex-direction: column;
        height: auto;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .heading {
        font-size: 28px;
        line-height: 36px;
    }

    .description-text {
        font-size: 16px;
        line-height: 24px;
    }

    .footer-section {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
}

/* ========================================
   Design Journey Section
   ======================================== */
.designjourney-sections {
    padding: 72px 0;
}

.breaker-leadgen-element {
    width: 100%;
    position: relative;
}

.nsid-leadgen-breaker {
    background-color: #f7f8fc;
    border-radius: 16px;
    position: relative;
    width: 100%;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.06);
    border: 0.5px solid #e4e8f0;
}

.content-wrapper {
    padding: 36px 72px;
}

.intro-container {
    display: flex;
    gap: 36px;
    align-items: center;
    justify-content: flex-end;
    flex-grow: 1;
}

/* Text block styles */
.blog-banner-block {
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex-grow: 1;
    color: #1a1d2e;
}

.dj-heading-text {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    max-height: 144px;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

.gradient-text {
    background: linear-gradient(to left, #c94f27, #632713);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.body-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    max-height: 144px;
    max-width: 600px;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

/* Button styles with exact dimensions */
.button-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-grow: 0;
}

.nsid-nav {
    background-color: #ff622d;
    border-radius: 8px;
    padding: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s;
}

.nsid-nav:hover {
    opacity: 0.9;
}

.button-text {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.7px;
    color: white;
    white-space: nowrap;
    margin: 0;
}

.nsid-nav a {
    color: white;
    text-decoration: none;
}

/* Responsive design */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 24px 36px;
    }

    .intro-container {
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
    }

    .button-container {
        align-items: center;
    }

    .dj-heading-text {
        font-size: 20px;
        line-height: 30px;
    }

    .body-text {
        font-size: 16px;
        line-height: 24px;
    }
}

/* ========================================
   Course Breakdown Section
   ======================================== */

/* Typography - exact from Figma */
.font-sora {
    font-family: 'Sora', sans-serif;
}

.font-ibm {
    font-family: 'IBM Plex Sans', sans-serif;
}

.font-ibm-devanagari {
    font-family: 'IBM Plex Sans Devanagari', sans-serif;
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

.font-dm-sans {
    font-family: 'DM Sans', sans-serif;
}

/* Course Breakdown Section */
.nsid-course-breakdown {
    padding: 72px 0;
    background-color: #FBF1E0;
}

.course-heading {
    font-size: 36px;
    line-height: 44px;
    color: #993B18;
    font-weight: 400;
    margin-bottom: 0;
    text-align: left;
}

.course-section {
    padding: 18px 0;
}

.question-open {
    width: 812px;
    padding: 12px 36px;
}

/* FAQ Module Item - exact dimensions */
.faq-module {
    width: 740px;
    padding: 12px 24px;
    border-bottom: 1px solid #6B6F83;
    position: relative;
}

/* Module number badge - exact styling */
.module-number {
    width: 24px;
    height: 24px;
    border: 1px solid #2e3246;
    border-radius: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.module-number p {
    font-size: 14px;
    line-height: 20px;
    color: #2e3246;
    margin: 0;
    font-weight: 500;
}

/* Module text */
.module-text {
    font-size: 16px;
    line-height: 24px;
    color: #2e3246;
    font-weight: 500;
    margin: 0;
}

/* Chevron button - exact styling */
.chevron-btn {
    /* width: 24px;
    height: 24px; */
    border: 0.75px solid #993b18;
    border-radius: 9999px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.chevron-icon {
    width: 16px;
    height: 16px;
}

.faq-header {
    cursor: pointer;
    width: 100%;
}

.faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease-out;
}

.faq-inner {
    overflow: hidden;
}

.faq-module.active .faq-content {
    grid-template-rows: 1fr;
}

.faq-module.active .chevron-btn {
    background-color: #993B18;
    transition: all 0.3s ease;
    transform: rotate(180deg);
}

.faq-module.active .chevron-icon path {
    fill: white;
}

/* Right sidebar cards - exact styling */
.sidebar-section {
    padding: 18px 0;
}

.mentor-card {
    background: #f7f8fc;
    border: 0.5px solid #e4e8f0;
    border-radius: 16px;
    padding: 36px;
    /* box-shadow: 0px 4px 12px 0px rgba(31, 64, 203, 0.12); */
}

.card-title {
    font-size: 16px;
    line-height: 24px;
    color: #1a1d2e;
    font-weight: 500;
    margin-bottom: 8px;
}

.card-text {
    font-size: 14px;
    line-height: 20px;
    color: #1a1d2e;
    font-weight: 400;
    margin-bottom: 0;
}

/* Avatar group - exact styling */
.avatar-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.avatars-container {
    display: flex;
    align-items: center;
    padding-right: 8px;
    z-index: 2;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: -8px;
    box-shadow: 0px 1px 4px 0px rgba(12, 12, 13, 0.1), 0px 1px 4px 0px rgba(12, 12, 13, 0.05);
    overflow: hidden;
    flex-shrink: 0;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overflow-count {
    background: #e5e5e5;
    min-width: 24px;
    padding: 5px 4px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
    color: #757575;
    text-align: center;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .question-open {
        width: 100%;
        padding: 12px 0;
    }

    .faq-module {
        width: 100%;
    }
}

/* ===========================
   RELATED COURSES SECTION
   =========================== */
.related-courses-section {
    padding: 72px 0;
    width: 100%;
    background: #F7F8FC;
}

.course-cards-wrapper {
    display: flex;
    gap: 72px;
    justify-content: flex-start;
}

.course-card-footer {
    background: white;
    border-radius: 16px;
    position: relative;
    flex-shrink: 0;
    flex: 1;
    transition: all 0.3s ease;
    width: 360px;
    border: 1px solid rgb(230, 230, 230);
    padding: 12px;
}

.course-card-footer:hover {
    opacity: 1;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.06);
}

.course-card-footer.with-nav .course-content {
    justify-content: space-between;
}

.course-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.course-image {
    width: 100%;
    height: 220px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 18px;
}

.course-title {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    line-height: 36px;
    color: #000000;
    margin-bottom: 18px;
}

.course-title a {
    text-decoration: none;
    color: inherit;
}

.divider-line {
    width: 100%;
    height: 1px;
    background-color: #333333;
    margin-bottom: 18px;
}

.tags-container {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.tag {
    background-color: #fbfbfb;
    color: #c94f27;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
    text-align: center;
}

.dot-separator {
    width: 8px;
    height: 8px;
    background-color: #e6e6e6;
    border-radius: 8px;
    flex-shrink: 0;
}

.related-courses-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    width: 120px;
    margin-left: auto;
    transition: opacity 0.3s ease;
}

.course-card-footer:hover .related-courses-nav {
    opacity: 1;
}

.read-more-text a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: #993b18;
    margin: 0;
    text-decoration: none;
}

.arrow-button {
    width: 16px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-icon {
    width: 16px;
    height: 16px;
}

@media (max-width: 992px) {
    .course-cards-wrapper {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .course-cards-wrapper {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
}

@media (max-width: 500px) {
    .related-courses-section {
        display: none;
        padding: 0;
    }
}