/* Scoped Scss/CSS mapping to Dunes global styling system variables */
:root {
    --fd-primary: var(--rt-primary, #002f79);             /* Dunes Navy Blue */
    --fd-secondary: var(--rt-white, #FFFFFF);
    --fd-accent: var(--rt-secondary, #F56239);            /* Dunes Orange */
    --fd-accent-secondary: var(--rt-primary-2, #0b47b2);   /* Dunes Blue */
    --fd-bg: var(--light-white, #f6f6f6);                 /* Clean light-gray section bg */
    --fd-text-dark: var(--rt-heading, #262626);
    --fd-text-light: var(--rt-body, #737477);
    
    --fd-font-serif: "Playfair Display", "Didot", "Bodoni MT", "Georgia", serif;
    --fd-font-sans: "Outfit", "Inter", "Helvetica Neue", sans-serif;

    /* Standard border radiuses and shadows to match site defaults */
    --radius-lg: 20px;
    --radius-md: 8px;
    --shadow-soft: 0 15px 45px rgba(0, 47, 121, 0.02), 0 5px 15px rgba(0, 0, 0, 0.01);
    --shadow-hover: 0 35px 70px rgba(0, 47, 121, 0.06), 0 10px 30px rgba(0, 0, 0, 0.02);
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Page Wrapper */
.fashion-design-premium-page {
    color: var(--fd-text-light);
    background-color: var(--fd-secondary);
    overflow-x: hidden;
    line-height: 1.75;
    font-family: var(--fd-font-sans);
}

/* Headings */
.fashion-design-premium-page h1,
.fashion-design-premium-page h2,
.fashion-design-premium-page h3,
.fashion-design-premium-page h4,
.fashion-design-premium-page h5,
.fashion-design-premium-page h6 {
    color: var(--fd-text-dark);
    font-family: var(--fd-font-sans);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

/* Global Elements & Utilities */
.sec-padding {
    padding: clamp(60px, 8vw, 120px) 0;
}

.bg-light-sec {
    background-color: var(--fd-bg);
}

.subtitle-caps {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--fd-accent);
    font-weight: 800;
    margin-bottom: 16px;
    display: block;
}

.editorial-title {
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.editorial-title span {
    font-family: var(--fd-font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--fd-primary);
    letter-spacing: -0.01em;
}

/* Premium Buttons */
.btn-luxury {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 30px;
    transition: var(--transition-smooth);
    cursor: pointer;
    outline: none;
    border: 2px solid transparent;
}

.btn-luxury-primary {
    background-color: var(--fd-primary);
    color: var(--fd-secondary) !important;
    border-color: var(--fd-primary);
}

.btn-luxury-primary:hover {
    background-color: var(--fd-accent);
    color: var(--fd-secondary) !important;
    border-color: var(--fd-accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(245, 98, 57, 0.2);
}

.btn-luxury-accent {
    background-color: var(--fd-accent);
    color: var(--fd-secondary) !important;
    border-color: var(--fd-accent);
}

.btn-luxury-accent:hover {
    background-color: var(--fd-primary);
    color: var(--fd-secondary) !important;
    border-color: var(--fd-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 47, 121, 0.2);
}

.btn-luxury-secondary {
    background-color: transparent;
    color: var(--fd-primary) !important;
    border: 2px solid var(--fd-primary);
}

.btn-luxury-secondary:hover {
    background-color: var(--fd-primary);
    color: var(--fd-secondary) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 47, 121, 0.15);
}

/* 1. PROGRAM INTRODUCTION */
.hero-content {
    padding-right: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-img-wrap {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    aspect-ratio: 1.05 / 1;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-img-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.hero-img-wrap:hover img {
    transform: scale(1.02);
}

/* Collaboration logos row in intro */
.collab-logos-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 30px 0 35px 0;
    flex-wrap: nowrap !important;
    max-width: 100%;
}

.collab-logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 1;
    min-width: 0;
}

.collab-logo-box img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.collab-logo-box img.collab-logo-dunes {
    height: 60px;
    width: auto;
    flex-shrink: 0;
}

.collab-logo-box img.collab-logo-jd {
    height: 115px;
    width: auto;
    flex-shrink: 1;
    max-width: 100%;
}

.collab-logo-box svg {
    height: 65px;
    width: auto;
    display: block;
}

.collab-plus-sign {
    font-size: 28px;
    font-weight: 800;
    color: #0d42b4;
    margin: 0 8px;
    flex-shrink: 0;
    line-height: 1;
}

/* 2. WHY CHOOSE DUNES */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.why-card {
    background-color: var(--fd-secondary);
    border: 1px solid #eaeaea;
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--fd-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 47, 121, 0.15);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 50px;
    height: 50px;
    background-color: var(--fd-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--fd-primary);
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.why-card:hover .why-icon {
    background-color: var(--fd-primary);
    color: var(--fd-secondary);
}

.why-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--fd-text-dark);
}

.why-desc {
    font-size: 13.5px;
    color: var(--fd-text-light);
    line-height: 1.6;
    margin: 0;
}

/* 3. LOGO CAROUSELS (AUTO SCROLL) */
.logo-carousel-wrap {
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}

.logo-carousel-inner {
    display: flex;
    width: max-content;
    animation: scrollLogos 25s linear infinite;
    gap: 60px;
    align-items: center;
}

.logo-item {
    width: 150px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(1) opacity(0.6);
    transition: var(--transition-smooth);
}

.logo-item:hover {
    filter: grayscale(0) opacity(1);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* 4. PLACEMENT & COUNTERS */
.counters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    border-top: 1px solid #eaeaea;
    padding-top: 50px;
}

.counter-card {
    text-align: center;
}

.counter-val {
    font-size: 52px;
    font-weight: 700;
    color: var(--fd-primary);
    line-height: 1;
    margin-bottom: 10px;
}

.counter-val span.accent {
    color: var(--fd-accent);
}

.counter-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--fd-text-light);
}

/* 5. GSAAA ACCREDITATION */
.accreditation-sec {
    background-color: var(--fd-bg);
}

.accred-badge-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.accred-badge-wrap {
    text-align: center;
    padding: 30px;
    border: 2px solid var(--fd-primary);
    border-radius: 50%;
    width: 240px;
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: var(--fd-secondary);
    box-shadow: var(--shadow-soft);
}

.accred-badge-wrap::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px dashed var(--fd-primary);
    border-radius: 50%;
}

.accred-badge-wrap i {
    font-size: 36px;
    color: var(--fd-primary);
    margin-bottom: 12px;
}

.accred-badge-wrap h4 {
    font-size: 24px;
    font-weight: 800;
    color: var(--fd-text-dark);
    margin: 0;
}

.accred-badge-wrap p {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 5px;
    color: var(--fd-text-light);
}

/* 6. COURSE OVERVIEW */
.overview-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.overview-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.overview-img-wrap:hover img {
    transform: scale(1.03);
}

.overview-accordion {
    margin-top: 30px;
}

.overview-accord-item {
    border-bottom: 1px solid #f1f4f6;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

.overview-accord-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.overview-accord-header h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: var(--fd-text-dark);
    transition: var(--transition-smooth);
}

.overview-accord-header:hover h4 {
    color: var(--fd-primary);
}

.overview-accord-header i {
    font-size: 13px;
    transition: var(--transition-smooth);
    color: var(--fd-text-light);
}

.overview-accord-item.active .overview-accord-header h4 {
    color: var(--fd-primary);
}

.overview-accord-item.active .overview-accord-header i {
    transform: rotate(180deg);
    color: var(--fd-accent);
}

.overview-accord-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.overview-accord-content p {
    font-size: 14px;
    color: var(--fd-text-light);
    margin-top: 15px;
    line-height: 1.7;
}

/* 7. CURRICULUM */
.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 45px;
}

.curr-card {
    background-color: var(--fd-secondary);
    border: 1px solid #f0f3f6;
    border-radius: var(--radius-lg);
    padding: 35px 20px;
    text-align: center;
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-soft);
}

.curr-card:hover {
    border-color: rgba(0, 47, 121, 0.1);
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.curr-icon {
    font-size: 26px;
    color: var(--fd-primary);
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.curr-card:hover .curr-icon {
    color: var(--fd-accent);
    transform: scale(1.15) translateY(-2px);
}

.curr-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--fd-text-dark);
    margin: 0;
    line-height: 1.4;
}

/* 8. EVENTS SECTION */
.events-section {
    background-color: var(--fd-bg);
}

.event-block {
    margin-bottom: 70px;
}

.event-block:last-child {
    margin-bottom: 0;
}

.event-hero-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    margin-bottom: 25px;
    aspect-ratio: 16/9;
}

.event-hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.event-hero-img-wrap:hover img {
    transform: scale(1.02);
}

/* Masonry Grid for Events */
.event-masonry {
    display: block;
    column-count: 4;
    column-gap: 20px;
    margin-top: 25px;
}

.event-masonry-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    break-inside: avoid;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    border: 1px solid #eaeaea;
    position: relative;
    background-color: var(--fd-secondary);
}

.event-masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.event-masonry-item:hover img {
    transform: scale(1.03);
}

.event-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 47, 121, 0.4);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fd-secondary);
    font-size: 18px;
}

.event-masonry-item:hover .event-item-overlay {
    opacity: 1;
}

/* 9. INDUSTRY MASTERCLASSES TIMELINE */
.timeline-master {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
    padding-left: 25px;
}

.timeline-master::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--fd-primary);
}

.tm-item {
    position: relative;
    margin-bottom: 35px;
}

.tm-item:last-child {
    margin-bottom: 0;
}

.tm-dot {
    position: absolute;
    left: -31px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--fd-secondary);
    border: 3px solid var(--fd-primary);
    z-index: 2;
}

.tm-content {
    background-color: var(--fd-bg);
    border: 1px solid #eaeaea;
    border-radius: var(--radius-lg);
    padding: 25px;
    transition: var(--transition-smooth);
}

.tm-content:hover {
    border-color: var(--fd-primary);
    background-color: var(--fd-secondary);
    box-shadow: var(--shadow-hover);
    transform: translateX(4px);
}

.tm-role {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--fd-accent);
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
}

.tm-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--fd-text-dark);
    margin-bottom: 8px;
}

.tm-desc {
    font-size: 13.5px;
    color: var(--fd-text-light);
    margin: 0;
}

/* 10. CAREERS */
.career-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.career-card {
    background-color: var(--fd-bg);
    border: 1px solid #eaeaea;
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition-smooth);
    height: 100%;
}

.career-card:hover {
    background-color: var(--fd-secondary);
    border-color: var(--fd-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.career-icon-wrap {
    width: 46px;
    height: 46px;
    background-color: var(--fd-secondary);
    color: var(--fd-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin: 0 auto 15px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.career-card:hover .career-icon-wrap {
    background-color: var(--fd-primary);
    color: var(--fd-secondary);
}

.career-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--fd-text-dark);
}

.career-desc {
    font-size: 13px;
    color: var(--fd-text-light);
    line-height: 1.5;
    margin: 0;
}

/* 11. STUDENT JOURNEY */
.journey-wrap {
    position: relative;
    margin-top: 70px;
    padding: 20px 0;
}

.journey-line {
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 2px;
    background-color: var(--fd-primary);
    transform: translateY(-50%);
    z-index: 1;
}

.journey-steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.journey-step-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 12%;
}

.journey-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--fd-secondary);
    border: 3px solid var(--fd-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 12px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    color: var(--fd-text-dark);
}

.journey-step-node:hover .journey-circle {
    background-color: var(--fd-primary);
    color: var(--fd-secondary);
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(0, 47, 121, 0.3);
}

.journey-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--fd-text-dark);
}

/* 12. FAQ */
.faq-sec {
    background-color: var(--fd-bg);
}

.faq-accordion-custom {
    max-width: 850px;
    margin: 40px auto 0;
}

.faq-item-custom {
    background-color: var(--fd-secondary);
    border: 1px solid #eaeaea;
    border-radius: var(--radius-lg) !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.faq-item-custom:hover {
    border-color: rgba(0, 47, 121, 0.2);
}

.faq-header-custom {
    padding: 18px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-header-custom h5 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: var(--fd-text-dark);
}

.faq-header-custom i {
    font-size: 12px;
    transition: var(--transition-smooth);
    color: var(--fd-text-light);
}

.faq-item-custom.open .faq-header-custom i {
    transform: rotate(180deg);
    color: var(--fd-primary);
}

.faq-content-custom {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-body-custom {
    padding: 0 24px 20px;
    color: var(--fd-text-light);
    font-size: 13.5px;
    line-height: 1.6;
}

/* 13. APPLY NOW (CTA) */
.apply-cta-sec {
    background: linear-gradient(rgba(0, 47, 121, 0.88), rgba(0, 47, 121, 0.88)), url('../images/about-bg.jpg') center/cover no-repeat;
    color: var(--fd-secondary);
    text-align: center;
    position: relative;
}

.apply-cta-sec h2 {
    color: var(--fd-secondary);
    font-size: clamp(28px, 4.5vw, 50px);
    font-weight: 700;
    margin-bottom: 20px;
}

.apply-cta-sec p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    max-width: 650px;
    margin: 0 auto 35px;
}

.apply-cta-sec .hero-buttons {
    justify-content: center;
}

.apply-cta-sec .btn-luxury-primary {
    background-color: var(--fd-secondary);
    color: var(--fd-primary) !important;
    border-color: var(--fd-secondary);
}

.apply-cta-sec .btn-luxury-primary:hover {
    background-color: var(--fd-accent);
    border-color: var(--fd-accent);
    color: var(--fd-secondary) !important;
}

.apply-cta-sec .btn-luxury-secondary {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--fd-secondary) !important;
}

.apply-cta-sec .btn-luxury-secondary:hover {
    background-color: var(--fd-secondary);
    color: var(--fd-primary) !important;
}

/* 14. CONTACT */
.contact-info-wrap {
    padding-right: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background-color: var(--fd-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fd-primary);
    font-size: 14px;
    box-shadow: var(--shadow-soft);
}

.contact-info-text h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--fd-text-dark);
}

.contact-info-text p {
    font-size: 13.5px;
    color: var(--fd-text-light);
    margin: 0;
    line-height: 1.5;
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid #eaeaea;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Lightbox Modal Override */
.lightbox-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 26, 76, 0.95);                    /* Theme coordinated overlay */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--fd-secondary);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 10002;
}

.lightbox-close:hover {
    background: var(--fd-primary);
    border-color: var(--fd-primary);
    transform: rotate(90deg);
}

.lightbox-body {
    display: flex;
    max-width: 1000px;
    width: 100%;
    background: var(--fd-secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lightbox-modal.active .lightbox-body {
    transform: scale(1);
}

.lightbox-img-wrap {
    width: 55%;
    max-height: 80vh;
    background: radial-gradient(circle, #fcfcfc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.lightbox-details {
    width: 45%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lightbox-details .cat {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--fd-accent);
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.lightbox-details .title {
    font-size: 26px;
    font-weight: 800;
    color: var(--fd-primary);
    margin-bottom: 15px;
    line-height: 1.2;
}

.lightbox-details .desc {
    font-size: 14.5px;
    color: var(--fd-text-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* ----------------------------------
       RESPONSIVE BREAKPOINTS
       ---------------------------------- */
@media (max-width: 1200px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .curriculum-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .career-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .event-masonry {
        column-count: 3;
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding-top: 150px;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .badge-1 { left: 0; }
    .badge-2 { right: 0; }

    .curriculum-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .career-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .journey-line {
        display: none;
    }

    .journey-steps-container {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    .journey-step-node {
        width: 100%;
        flex-direction: row;
        align-items: center;
        gap: 20px;
        text-align: left;
    }

    .journey-circle {
        margin-bottom: 0;
    }

    .counters-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .sec-padding {
        padding: 60px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .curriculum-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .event-masonry {
        column-count: 2;
    }

    .accred-badge-col {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .curriculum-grid {
        grid-template-columns: 1fr;
    }

    .career-grid {
        grid-template-columns: 1fr;
    }

    .event-masonry {
        column-count: 1;
    }

    .logos-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .collab-logos-row {
        gap: 12px !important;
        flex-wrap: nowrap !important;
        max-width: 100%;
    }

    .collab-logo-box img.collab-logo-dunes {
        height: 48px !important;
        flex-shrink: 0;
    }

    .collab-logo-box img.collab-logo-jd {
        height: 92px !important;
        max-width: 100%;
        flex-shrink: 1;
    }

    .collab-plus-sign {
        font-size: 22px !important;
        margin: 0 4px !important;
        flex-shrink: 0;
    }

    .btn-luxury {
        width: 100%;
    }

    .btn-luxury-secondary {
        margin-left: 0;
        margin-top: 10px;
    }
}

@media (max-width: 400px) {
    .collab-logos-row {
        gap: 8px !important;
        flex-wrap: nowrap !important;
    }

    .collab-logo-box img.collab-logo-dunes {
        height: 38px !important;
    }

    .collab-logo-box img.collab-logo-jd {
        height: 72px !important;
    }

    .collab-plus-sign {
        font-size: 18px !important;
        margin: 0 2px !important;
    }
}

/* Collaboration brand logo badge */
.collab-logos-wrap {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    background-color: var(--fd-secondary);
    padding: 15px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-soft);
}

.collab-logo-box img {
    width: auto;
    object-fit: contain;
    display: block;
}

.collab-divider {
    font-size: 24px;
    font-weight: 700;
    color: var(--fd-text-light);
}

/* 15. STUDENT FASHION GALLERY (PREVIEW) */
.gallery-grid {
    display: block;
    column-count: 4;
    column-gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
    break-inside: avoid;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--fd-secondary);
    border: 1px solid #eaeaea;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.gallery-item-hidden {
    display: none !important;
}

.gallery-item-fade-in {
    animation: galleryFadeIn 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes galleryFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-img-wrap {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
    background: radial-gradient(circle, #fcfcfc 0%, #e9edf3 100%);
}

.gallery-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover .gallery-img-wrap img {
    transform: scale(1.04);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 47, 121, 0.95) 0%, rgba(0, 47, 121, 0.4) 60%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    z-index: 2;
    border-radius: var(--radius-lg);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-cat {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #38bdf8;
    font-weight: 700;
    margin-bottom: 6px;
}

.gallery-title {
    font-size: 20px;
    color: var(--fd-secondary);
    margin: 0 0 8px 0;
    font-weight: 700;
}

.gallery-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* Adjust column layouts on smaller breakpoints */
@media (max-width: 1200px) {
    .gallery-grid {
        column-count: 3;
    }
}
@media (max-width: 768px) {
    .gallery-grid {
        column-count: 2;
    }
}
@media (max-width: 576px) {
    .gallery-grid {
        column-count: 1;
    }
}

/* 16. DESIGN PLACEMENTS & INTERNATIONAL EXPOSURE */
.placement-subheading {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 20px;
    color: var(--fd-text-dark);
}

.placement-stat {
    font-size: clamp(48px, 6vw, 68px);
    display: block;
    font-weight: 900;
    color: #0b47b2;
    margin: 15px 0;
    line-height: 1;
    letter-spacing: -0.04em;
}

.placement-brands-card {
    background-color: var(--fd-secondary);
    border: 1px solid #f0f3f6;
    border-radius: 28px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.placement-brands-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.brands-grid-img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.international-logos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 45px;
}

.intl-logo-card {
    background-color: var(--fd-secondary);
    border: 1px solid #f1f4f6;
    border-radius: 16px;
    padding: 22px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.intl-logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.intl-logo-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: var(--shadow-hover);
    border-color: rgba(11, 71, 178, 0.15);
}

.intl-logo-card:hover img {
    transform: scale(1.05);
}

/* 17. SIDE-BY-SIDE EVENTS GALLERY */
.event-showcase-block {
    background-color: var(--fd-secondary);
    border: 1px solid #f0f3f6;
    border-radius: 28px;
    padding: 40px 30px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.event-showcase-block:hover {
    box-shadow: var(--shadow-hover);
}

.event-pill-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.event-pill-btn {
    background-color: var(--fd-primary);
    color: var(--fd-secondary);
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0, 47, 121, 0.1);
    transition: var(--transition-smooth);
    cursor: default;
}

.event-showcase-block:hover .event-pill-btn {
    background-color: var(--fd-accent);
    box-shadow: 0 10px 25px rgba(245, 98, 57, 0.2);
}

.event-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.event-img-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1.05 / 1;
    position: relative;
    cursor: pointer;
    background-color: var(--fd-primary);
}

.event-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.event-img-hover {
    position: absolute;
    inset: 0;
    background: rgba(0, 47, 121, 0.6);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fd-secondary);
    font-size: 24px;
    transition: var(--transition-smooth);
}

.event-img-item:hover img {
    transform: scale(1.05);
}

.event-img-item:hover .event-img-hover {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .international-logos-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 991px) {
    .international-logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .international-logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .international-logos-grid {
        grid-template-columns: 1fr;
    }
    .event-images-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Pinterest Grid for Event Galleries */
.event-images-pinterest {
    column-count: 3;
    column-gap: 20px;
}

.event-img-pinterest-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background-color: var(--fd-primary);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition-smooth);
}

.event-img-pinterest-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.event-img-pinterest-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.event-img-pinterest-item:hover img {
    transform: scale(1.04);
}

.event-img-pinterest-item:hover .event-img-hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .event-images-pinterest {
        column-count: 2;
        column-gap: 15px;
    }
}
@media (max-width: 480px) {
    .event-images-pinterest {
        column-count: 1;
    }
}

/* 18. PREMIUM FACULTY CARDS */
.faculty-card-premium {
    background: #FFFFFF;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid #f0f3f6;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.faculty-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(11, 71, 178, 0.1);
}

.faculty-img-wrap {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
    background-color: var(--fd-bg);
}

.faculty-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: var(--transition-smooth);
}

.faculty-card-premium:hover .faculty-img-wrap img {
    transform: scale(1.04);
}

.faculty-info-wrap {
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.fac-tag {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #0b47b2;
    margin-bottom: 12px;
    display: block;
}

.fac-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--fd-text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.fac-bio {
    font-size: 14px;
    line-height: 1.65;
    color: #555555;
    margin-bottom: 25px;
}

.fac-highlights {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-top: 1px solid #f1f4f6;
    padding-top: 25px;
    margin-top: auto;
}

.fac-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13.5px;
    line-height: 1.55;
    color: #444444;
}

.highlight-icon {
    color: #0b47b2;
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.faculty-card-premium:hover .highlight-icon {
    color: var(--fd-accent);
    transform: scale(1.1);
}
