/* ========== VARIABLES ========== */
:root {
    --primary: #000000;
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f5;
    --bg-card: #ffffff;
    --text-primary: #000000;
    --text-secondary: #666666;
    --accent: #000000;
    --nav-height: 90px;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ========== SCROLLING TEXT BAR ========== */
.scrolling-text-bar {
    background: #000;
    padding: 12px 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.scrolling-text-content {
    display: flex;
    animation: scrollText 20s linear infinite;
    white-space: nowrap;
}

.scrolling-text-content span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #fff;
    padding: 0 40px;
    text-transform: uppercase;
}

@keyframes scrollText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 44px;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-main {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
}

.logo-img-secondary {
    height: 86px;
    width: 88px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0,0,0,0.15);
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    flex-shrink: 0;
}

.nav-divider {
    width: 2px;
    height: 45px;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.3), transparent);
}

.nav-logo-secondary {
    display: flex;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
    display: none;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    padding: 5px 0;
    transition: var(--transition-smooth);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #000;
    transition: var(--transition-smooth);
}

.nav-links a:hover,
.nav-links a.active {
    color: #000;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-fill-form {
    background: #000;
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    display: inline-flex; align-items: center; gap: 8px;
}

.btn-fill-form i { font-size: 14px; }

.btn-fill-form:hover {
    background: #333;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.contact-number {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    letter-spacing: 1px;
}

/* ========== HERO SECTION ========== */
#hero {
    margin-top: 124px;
}

.hero {
    display: flex;
    height: calc(100vh - 124px);
    background: var(--bg-secondary);
}

.hero-left {
    flex: 0 0 70%;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 80px;
    overflow: hidden;
}

.video-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}

.video-bg-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    filter: brightness(1.3) contrast(1.1);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 5px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
    background: rgba(0,0,0,0.5);
    padding: 8px 16px;
    display: inline-block;
}

.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(35px, 5vw, 60px);
    font-weight: 900;
    color: #000;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.hero-headline br {
    display: block;
    margin-top: 5px;
}

.highlight {
    color: #fff;
    display: block;
}

.highlight-sector {
    color: #fff;
    background: #000;
    padding: 0 5px;
}

.hero-description {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    max-width: 550px;
    margin-bottom: 35px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-primary {
    display: inline-block;
    padding: 16px 35px;
    background: #000;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 35px;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
}

.btn-video {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #000;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
}

.btn-video:hover {
    color: #444;
    transform: translateX(5px);
}

.play-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.btn-video:hover .play-icon {
    background: #333;
    transform: scale(1.1);
}

/* Decorative elements */
.deco-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #000;
    opacity: 0.2;
    z-index: 0;
}

.deco-dot-1 {
    top: 20%;
    left: 15%;
}

.deco-dot-2 {
    bottom: 25%;
    left: 10%;
    width: 12px;
    height: 12px;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid #000;
    opacity: 0.1;
}

.deco-circle-1 {
    width: 150px;
    height: 150px;
    top: 15%;
    right: 5%;
}

.deco-circle-2 {
    width: 80px;
    height: 80px;
    bottom: 10%;
    right: 15%;
}

/* ========== HERO RIGHT - SCROLLING IMAGES ========== */
.hero-right {
    flex: 0 0 30%;
    position: relative;
    background: var(--bg-secondary);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.scroll-track {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 20px 15px;
    animation: scrollUp 12s linear infinite;
}

.scroll-track:hover {
    animation-play-state: paused;
}

@keyframes scrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.scroll-img {
    flex-shrink: 0;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
}

.scroll-img img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
}

.scroll-img:hover img {
    transform: scale(1.05);
}

/* ========== ABOUT SECTION ========== */
#about {
    padding: 0;
    background: #fff;
}

.about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 100px 40px;
}

.about-left {
    padding-right: 20px;
}

.about-overline {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #888;
    text-transform: uppercase;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    color: #111;
    margin: 15px 0 25px;
    line-height: 1.1;
}

.about-title .title-stroke {
    -webkit-text-stroke: 2px #111;
    color: transparent;
}

.about-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 35px 0;
    padding: 25px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.about-stat-item {
    text-align: center;
}

.stat-icon {
    display: block;
    font-size: 24px;
    margin-bottom: 8px;
}

.stat-count {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: #111;
    letter-spacing: 1px;
}

.stat-name {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.about-mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.about-mv-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.about-mv-item p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.about-right {
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.about-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========== COURSES SHOWCASE - BOLD & DYNAMIC ========== */
#courses {
    padding: 0;
    background: #111;
    overflow: hidden;
}

.courses-hero-header {
    text-align: center;
    padding: 120px 40px 80px;
    background: linear-gradient(180deg, #fff 0%, #111 100%);
    position: relative;
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.courses-hero-header.revealed {
    opacity: 1;
    transform: translateY(0);
}

.courses-hero-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: #fff;
}

.courses-overline {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 8px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.courses-main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(60px, 10vw, 120px);
    font-weight: 900;
    color: #fff;
    letter-spacing: 5px;
    line-height: 0.9;
    margin-bottom: 25px;
}

.title-stroke {
    -webkit-text-stroke: 0;
    color: #222;
}

.courses-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #666;
    letter-spacing: 3px;
}

.courses-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.course-reveal-card {
    position: relative;
    height: 600px;
    overflow: hidden;
    cursor: pointer;
}

.course-reveal-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
    transition: all 0.5s ease;
}

.course-reveal-card:hover::before {
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
}

.course-bg-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.course-bg-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.course-reveal-card:hover .course-bg-layer img {
    transform: scale(1.05);
}

.course-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
}

.course-content-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    z-index: 3;
}

.course-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 100px;
    font-weight: 400;
    color: rgba(255,255,255,0.1);
    position: absolute;
    top: 30px;
    right: 20px;
    line-height: 1;
    transition: all 0.5s ease;
}

.course-reveal-card:hover .course-number {
    color: rgba(255,255,255,0.3);
    transform: scale(1.2);
}

.course-icon-large {
    font-size: 50px;
    margin-bottom: 15px;
    display: block;
    transition: all 0.5s ease;
}

.course-reveal-card:hover .course-icon-large {
    transform: scale(1.3);
}

.course-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    margin: 0 0 15px;
    letter-spacing: 2px;
    line-height: 1.1;
}

.course-divider {
    width: 50px;
    height: 3px;
    background: #fff;
    margin-bottom: 20px;
    transition: all 0.5s ease;
}

.course-reveal-card:hover .course-divider {
    width: 80px;
    background: #fff;
}

.course-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.course-reveal-card:hover .course-features {
    max-height: 200px;
}

.course-features li {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    letter-spacing: 1px;
}

.course-cta {
    display: inline-block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: 3px;
    color: #fff;
    text-decoration: none;
    opacity: 0.7;
    transform: translateY(10px);
    transition: all 0.5s ease 0.1s;
    background: rgba(0,0,0,0.5);
    padding: 10px 20px;
    border-radius: 25px;
}

.course-reveal-card:hover .course-cta {
    opacity: 1;
    transform: translateY(0);
    background: #000;
}

/* Reveal animations */
.course-reveal-card {
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.course-reveal-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-1 { transition-delay: 0.1s; }
.reveal-2 { transition-delay: 0.2s; }
.reveal-3 { transition-delay: 0.3s; }
.reveal-4 { transition-delay: 0.4s; }

/* ========== PLACEMENTS - CLEAN STATS ========== */
.placements-section {
    background: #fafafa;
    padding: 0;
    overflow: hidden;
}

.placements-header {
    text-align: center;
    padding: 100px 40px 50px;
    background: #fff;
    position: relative;
}

.placements-overline {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 6px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.placements-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(50px, 8vw, 100px);
    font-weight: 900;
    color: #222;
    letter-spacing: 4px;
    line-height: 0.9;
}

.impact-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 40px 60px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.impact-counter {
    text-align: center;
    padding: 50px 20px;
    position: relative;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    opacity: 1;
    transform: translateY(0);
}

.impact-counter:last-child {
    border-right: none;
}

.impact-counter.revealed {
    opacity: 1;
    transform: translateY(0);
}

.impact-counter:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.impact-counter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #222;
    transition: width 0.5s ease;
}

.impact-counter:hover::before {
    width: 50px;
}

.impact-counter.revealed::before {
    width: 35px;
}

.counter-value {
    font-family: 'Playfair Display', serif;
    font-size: clamp(50px, 6vw, 80px);
    font-weight: 900;
    color: #222;
    line-height: 1;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.counter-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.counter-line {
    width: 30px;
    height: 2px;
    background: #ddd;
    margin: 0 auto;
    transition: all 0.5s ease;
}

.impact-counter:hover .counter-line {
    width: 50px;
    background: #222;
}

/* ========== PARTNERS SECTION ========== */
.partners-section {
    background: #f5f5f5;
    padding: 0;
    overflow: hidden;
}

.partners-header {
    text-align: center;
    padding: 80px 40px 40px;
}

.partners-overline {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.partners-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 6vw, 70px);
    font-weight: 900;
    color: #222;
    letter-spacing: 3px;
    line-height: 0.9;
}

.partners-title .title-stroke {
    -webkit-text-stroke: 0;
    color: #222;
}

/* ── Partners Marquee ── */
.partners-marquee-wrapper {
    overflow: hidden;
    padding: 30px 0;
}

.partners-track {
    display: flex;
    gap: 16px;
    align-items: center;
    width: max-content;
}

.partners-track-left {
    animation: marqueeLeft 25s linear infinite;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeLeft {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-item {
    flex-shrink: 0;
    width: 220px;
    height: 70px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.partner-item:hover {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.partner-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ── Certs Marquee ── */
.certs-marquee-wrapper {
    overflow: hidden;
    padding: 30px 0;
}

.certs-track {
    display: flex;
    gap: 16px;
    align-items: center;
    width: max-content;
}

.certs-track-right {
    animation: marqueeRight 22s linear infinite;
}

.certs-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeRight {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.cert-item {
    flex-shrink: 0;
    width: 220px;
    height: 70px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.cert-item:hover {
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.cert-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .partner-item,
    .cert-item {
        width: 150px;
        height: 55px;
        padding: 5px 8px;
    }

    .partners-track,
    .certs-track {
        gap: 12px;
    }

    .partners-header {
        padding: 50px 20px 30px;
    }
}

/* ========== CAREER SECTION ========== */
.career-section {
    padding: 80px 40px;
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
}

.career-header {
    text-align: center;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.career-header.revealed {
    opacity: 1;
    transform: translateY(0);
}

.career-overline {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.career-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 6vw, 72px);
    font-weight: 900;
    color: #111;
    margin-bottom: 0;
    letter-spacing: 2px;
}

.career-stroke {
    -webkit-text-stroke: 2px #111;
    color: transparent;
}

/* Career Path - Horizontal Cards */
.career-path {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto 50px;
    position: relative;
    padding: 20px 10px;
}

.path-line {
    position: absolute;
    top: 50%;
    left: 40px;
    right: 40px;
    height: 4px;
    background: linear-gradient(90deg, #444 0%, #888 50%, #444 100%);
    border-radius: 2px;
    z-index: 0;
}

.path-card {
    flex: 1;
    min-width: 150px;
    max-width: 170px;
    background: #fff;
    border-radius: 20px;
    padding: 28px 15px 22px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.path-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.path-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12), 0 5px 15px rgba(0, 0, 0, 0.06);
}

.path-card:nth-child(odd) {
    transform: translateY(-22px);
}

.path-card:nth-child(odd).revealed {
    transform: translateY(-22px);
}

.path-card:nth-child(odd):hover {
    transform: translateY(-32px);
}

.path-num {
    position: absolute;
    top: 10px;
    right: 12px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: #111;
    opacity: 0.1;
    line-height: 1;
}

.path-card:nth-child(even) {
    background: #3a3a3a;
    border-color: rgba(255, 255, 255, 0.08);
}

.path-card:nth-child(even) .path-num {
    color: #fff;
    opacity: 0.15;
}

.path-card:nth-child(even) h4 {
    color: #fff;
}

.path-card:nth-child(even) p {
    color: rgba(255, 255, 255, 0.7);
}

.path-icon {
    font-size: 36px;
    margin-bottom: 14px;
}

.path-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
}

.path-card p {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #666;
    line-height: 1.4;
}

/* Openings Section - Auto Scroll */
.career-openings {
    margin: 40px 0 60px;
}

.career-openings h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: #111;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.career-openings h3::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #111;
}

.openings-scroll-wrapper {
    overflow: hidden;
    padding: 20px 0;
}

.openings-scroll-track {
    display: flex;
    gap: 20px;
    animation: scrollOpenings 25s linear infinite;
}

.openings-scroll-track:hover {
    animation-play-state: paused;
}

.opening-card {
    flex-shrink: 0;
    width: 280px;
    background: #fff;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
}

.opening-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.opening-badge {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 700;
    color: #111;
    background: #f0f0f0;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.opening-badge.active-badge {
    background: #111;
    color: #fff;
}

.opening-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
}

.opening-card .opening-meta {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #999;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.opening-card p {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

@keyframes scrollOpenings {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* CTA Section */
.career-cta {
    text-align: center;
    background: #111;
    border-radius: 18px;
    padding: 45px;
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.career-cta.revealed {
    opacity: 1;
    transform: translateY(0);
}

.career-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.career-cta p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 25px;
}

.career-cta p a {
    color: #c9a84c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.career-cta p a:hover {
    color: #fff;
}

.btn-career {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: #111;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 15px;
    letter-spacing: 3px;
    text-decoration: none;
    transition: all 0.4s ease;
    border-radius: 6px;
}

.btn-career:hover {
    background: #c9a84c;
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .career-section {
        padding: 60px 20px;
    }

    .career-path {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .path-line {
        display: none;
    }

    .path-card {
        min-width: calc(50% - 10px);
        max-width: calc(50% - 10px);
        padding: 20px 12px;
        transform: translateY(20px) !important;
    }

    .path-card.revealed {
        transform: translateY(0) !important;
    }

    .path-card:hover {
        transform: translateY(-5px) !important;
    }

    .career-perks {
        gap: 10px;
        padding: 15px;
    }

    .perk-item {
        padding: 8px 12px;
    }

    .career-cta {
        padding: 30px 20px;
    }
}

/* ========== AEROSPACE & AVIATION MODAL ========== */
.aerospace-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
    visibility: hidden;
    align-items: center;
    justify-content: center;
}

.aerospace-modal.active {
    display: flex !important;
    visibility: visible !important;
}

.aerospace-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 90, 50, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
    backdrop-filter: blur(12px);
}

.aerospace-modal-content {
    position: relative;
    width: 96%;
    max-width: 1000px;
    max-height: 90vh;
    background: linear-gradient(180deg, #ffffff 0%, #f5fbf5 50%, #edf7ed 100%);
    border: 2px solid rgba(26, 95, 42, 0.25);
    border-top: 5px solid #246038;
    box-shadow: 0 30px 80px rgba(26, 95, 42, 0.35), 0 0 40px rgba(26, 95, 42, 0.15);
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateY(40px) scale(0.92);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 24px;
}

.aerospace-modal.active .aerospace-modal-content {
    transform: translateY(0) scale(1) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.aerospace-modal-content::-webkit-scrollbar {
    width: 6px;
}

.aerospace-modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.aerospace-modal-content::-webkit-scrollbar-thumb {
    background: rgba(26, 95, 42, 0.25);
    border-radius: 10px;
}

.aerospace-modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(26, 95, 42, 0.4);
}

.aerospace-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    background: linear-gradient(145deg, #ffffff, #f0fff0);
    border: 2px solid #246038;
    color: #246038;
    font-size: 26px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(26, 95, 42, 0.25);
}

.aerospace-modal-close:hover {
    background: linear-gradient(145deg, #246038, #357a52);
    color: #fff;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 8px 30px rgba(26, 95, 42, 0.4);
}

.aerospace-modal-inner {
    padding: 55px 65px;
}

/* Header Section */
.aerospace-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 3px solid rgba(26, 95, 42, 0.15);
    position: relative;
}

.aerospace-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 6px;
    background: linear-gradient(90deg, transparent, #246038, transparent);
    border-radius: 3px;
}

.nsdc-logo-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
    background: linear-gradient(135deg, rgba(26, 95, 42, 0.12), rgba(244, 161, 0, 0.12));
    padding: 18px 35px;
    border-radius: 60px;
    border: 2px solid rgba(26, 95, 42, 0.2);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 30px rgba(26, 95, 42, 0.12);
}

.nsdc-logo-circle {
    width: 65px;
    height: 65px;
    animation: pulseGreen 2s ease-in-out infinite;
}

@keyframes pulseGreen {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.nsdc-logo-svg {
    width: 100%;
    height: 100%;
}

.nsdc-logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nsdc-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    color: #246038;
    letter-spacing: 3px;
}

.nsdc-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #666;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

.aerospace-main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 6vw, 66px);
    font-weight: 900;
    color: #246038;
    letter-spacing: 6px;
    margin-bottom: 15px;
    text-shadow: 3px 3px 6px rgba(26, 95, 42, 0.15);
}

.aerospace-main-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #333;
    letter-spacing: 2px;
    font-weight: 600;
}

.aerospace-discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e53935, #d32f2f);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 30px;
    margin-top: 18px;
    box-shadow: 0 6px 25px rgba(229, 57, 53, 0.4);
    animation: pulseDiscount 2s ease-in-out infinite;
    letter-spacing: 1px;
}

@keyframes pulseDiscount {
    0%, 100% { transform: scale(1); box-shadow: 0 6px 25px rgba(229, 57, 53, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 8px 35px rgba(229, 57, 53, 0.6); }
}

/* Section Title */
.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: #246038;
    letter-spacing: 4px;
    margin-bottom: 30px;
    padding-bottom: 18px;
    border-bottom: 3px solid rgba(26, 95, 42, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
}

.title-icon {
    font-size: 32px;
    animation: bounceIcon 1.5s ease-in-out infinite;
}

@keyframes bounceIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* About Section */
.aerospace-about-section {
    margin-bottom: 50px;
}

.about-content-box {
    background: linear-gradient(145deg, #ffffff, #f8fff8);
    border: 2px solid rgba(26, 95, 42, 0.1);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(26, 95, 42, 0.08);
}

.about-content-box p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-content-box p:last-child {
    margin-bottom: 0;
}

.about-highlights {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    padding-top: 35px;
    border-top: 3px dashed rgba(26, 95, 42, 0.2);
}

.highlight-item {
    text-align: center;
    padding: 25px 35px;
    background: linear-gradient(145deg, #f8fff8, #e8f5e8);
    border-radius: 24px;
    border: 3px solid rgba(26, 95, 42, 0.1);
    transition: all 0.4s ease;
}

.highlight-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 50px rgba(26, 95, 42, 0.2);
    border-color: #246038;
}

.highlight-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 900;
    color: #246038;
    letter-spacing: 3px;
}

.highlight-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

/* Courses Grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.course-offer-card {
    background: linear-gradient(145deg, #ffffff, #f0fff0);
    border: 2px solid rgba(26, 95, 42, 0.15);
    border-radius: 20px;
    padding: 30px 22px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.course-offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #246038, #357a52, #246038);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.course-offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(26, 95, 42, 0.2);
    border-color: #246038;
}

.course-offer-card:hover::before {
    transform: scaleX(1);
}

.course-offer-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.course-offer-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #246038;
    margin-bottom: 12px;
}

.course-offer-card p {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.course-duration {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #246038, #357a52);
    padding: 8px 18px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(26, 95, 42, 0.3);
}

/* Jobs Scrolling Section */
.aerospace-jobs-section {
    margin-bottom: 40px;
}

.jobs-scroll-container {
    overflow: hidden;
    padding: 20px 0;
}

.jobs-scroll-track {
    display: flex;
    gap: 25px;
    animation: scrollJobs 20s linear infinite;
}

.jobs-scroll-track:hover {
    animation-play-state: paused;
}

@keyframes scrollJobs {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.job-scroll-card {
    flex-shrink: 0;
    width: 340px;
    background: linear-gradient(145deg, #ffffff, #f8fff8);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(26, 95, 42, 0.1);
    border: 3px solid rgba(26, 95, 42, 0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.job-scroll-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 70px rgba(26, 95, 42, 0.2);
    border-color: #246038;
}

.job-scroll-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.job-scroll-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, rgba(255,255,255,0.9));
}

.job-scroll-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.job-scroll-card:hover .job-scroll-image img {
    transform: scale(1.12);
}

.job-scroll-content {
    padding: 28px;
}

.job-scroll-content h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    color: #246038;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.job-scroll-content p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.job-salary {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #246038, #357a52);
    padding: 10px 20px;
    border-radius: 20px;
}

/* Eligibility Section - Clean Card Design */
.aerospace-eligibility-section {
    margin-bottom: 50px;
}

.eligibility-card {
    background: linear-gradient(145deg, #f8fff8, #e8f5e8);
    border: 2px solid rgba(36, 96, 56, 0.2);
    border-radius: 24px;
    padding: 35px 40px;
    position: relative;
    overflow: hidden;
}

.eligibility-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.eligibility-check-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(145deg, #246038, #357a52);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(36, 96, 56, 0.3);
}

.eligibility-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    color: #246038;
    letter-spacing: 3px;
    margin: 0;
}

.eligibility-divider {
    height: 2px;
    background: linear-gradient(90deg, rgba(36, 96, 56, 0.3), transparent);
    margin-bottom: 30px;
    border-radius: 2px;
}

.eligibility-content {
    position: relative;
}

.eligibility-items {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.eligibility-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 140px;
}

.eligibility-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(145deg, #246038, #357a52);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 15px;
    box-shadow: 0 8px 25px rgba(36, 96, 56, 0.35), 0 0 0 4px rgba(36, 96, 56, 0.1);
    transition: all 0.4s ease;
}

.eligibility-item:hover .eligibility-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(36, 96, 56, 0.45), 0 0 0 6px rgba(36, 96, 56, 0.15);
}

.eligibility-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #246038;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.eligibility-info p {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #555;
    line-height: 1.4;
}

.eligibility-snake {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1;
}

/* Placement Section */
.aerospace-placement-section {
    margin-bottom: 35px;
}

.placement-content {
    background: linear-gradient(145deg, #f8fff8, #e8f5e8);
    border: 1px solid rgba(26, 95, 42, 0.15);
    border-radius: 20px;
    padding: 35px;
}

.placement-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px dashed rgba(26, 95, 42, 0.2);
}

.placement-stat {
    text-align: center;
}

.stat-big {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    color: #246038;
    line-height: 1;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

.placement-partners {
    margin-bottom: 25px;
}

.placement-partners h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: #246038;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-align: center;
}

.partner-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.partner-badge {
    background: #fff;
    color: #246038;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 25px;
    border: 1px solid rgba(26, 95, 42, 0.2);
    transition: all 0.3s ease;
}

.partner-badge:hover {
    background: #246038;
    color: #fff;
    border-color: #246038;
}

.placement-process h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: #246038;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-align: center;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.process-num {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #246038, #357a52);
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-text {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #555;
    font-weight: 500;
}

.process-arrow {
    font-size: 20px;
    color: #246038;
}

/* CTA Section */
.aerospace-cta-section {
    text-align: center;
    background: linear-gradient(135deg, #246038, #357a52, #246038);
    border-radius: 24px;
    padding: 50px;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26, 95, 42, 0.35);
}

.aerospace-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 50%);
    animation: rotateGlow 8s linear infinite;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.aerospace-cta-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.aerospace-cta-section p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.btn-aerospace-cta {
    display: inline-block;
    padding: 18px 55px;
    background: #fff;
    color: #246038;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 3px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.btn-aerospace-cta:hover {
    background: linear-gradient(135deg, #f4a100, #ffc107);
    color: #246038;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive for Aerospace Modal */
@media (max-width: 900px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .placement-stats {
        gap: 30px;
    }

    .stat-big {
        font-size: 38px;
    }

    .eligibility-path {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }

    .eligibility-snake-container {
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {
    /* Aerospace Modal Mobile */
    .aerospace-modal-content {
        width: 96%;
        max-height: 92vh;
        border-radius: 20px;
        margin: 10px auto;
    }

    .aerospace-modal-inner {
        padding: 25px 18px;
    }

    .aerospace-header {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .nsdc-logo-badge {
        flex-direction: column;
        gap: 10px;
        padding: 12px 20px;
    }

    .nsdc-logo-circle {
        width: 50px;
        height: 50px;
    }

    .nsdc-logo-text {
        text-align: center;
    }

    .aerospace-main-title {
        font-size: 28px;
    }

    .aerospace-main-tagline {
        font-size: 13px;
    }

    .section-title {
        font-size: 20px;
    }

    .about-content-box p {
        font-size: 13px;
        line-height: 1.6;
    }

    .about-highlights {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }

    .highlight-item {
        flex: 1;
        max-width: 90px;
    }

    .courses-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .course-offer-card {
        padding: 15px;
    }

    .course-offer-icon {
        font-size: 28px;
    }

    .course-offer-card h4 {
        font-size: 14px;
    }

    .course-offer-card p {
        font-size: 12px;
    }

    /* Eligibility Mobile */
    .eligibility-card {
        padding: 25px 15px;
    }

    .eligibility-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .eligibility-check-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .eligibility-title {
        font-size: 22px;
    }

    .eligibility-items {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .eligibility-item {
        max-width: calc(50% - 10px);
        min-width: 100px;
    }

    .eligibility-icon {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }

    .eligibility-info h4 {
        font-size: 11px;
    }

    .eligibility-info p {
        font-size: 10px;
    }

    /* Jobs Scroll Mobile */
    .jobs-scroll-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .jobs-scroll-track {
        display: flex;
        gap: 15px;
        min-width: max-content;
        padding-bottom: 10px;
    }

    .job-scroll-card {
        width: 260px;
        flex-shrink: 0;
    }

    .job-scroll-image {
        height: 120px;
    }

    /* Placement Mobile */
    .placement-content {
        padding: 20px;
    }

    .placement-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .placement-stat {
        flex: 1;
        min-width: 80px;
    }

    .stat-big {
        font-size: 32px;
    }

    .stat-label {
        font-size: 9px;
    }

    .partner-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .partner-badge {
        font-size: 10px;
        padding: 6px 12px;
    }

    .process-steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .process-step {
        flex: 1;
        min-width: 70px;
    }

    .process-num {
        font-size: 18px;
    }

    .process-text {
        font-size: 10px;
    }

    .process-arrow {
        display: none;
    }

    .aerospace-cta-section {
        padding: 30px 20px;
    }

    .aerospace-cta-section h3 {
        font-size: 24px;
    }

    .btn-aerospace-cta {
        padding: 14px 30px;
        font-size: 14px;
    }
}

/* ========== BEAUTY & WELLNESS MODAL ========== */
.beauty-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
    visibility: hidden;
    align-items: center;
    justify-content: center;
}

.beauty-modal.active {
    display: flex !important;
    visibility: visible !important;
}

.beauty-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(168, 120, 144, 0.85) 0%, rgba(0, 0, 0, 0.9) 100%);
    backdrop-filter: blur(12px);
}

.beauty-modal-content {
    position: relative;
    width: 96%;
    max-width: 1000px;
    max-height: 90vh;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 50%, #f5f5f5 100%);
    border: 2px solid rgba(168, 120, 144, 0.25);
    border-top: 5px solid #a87890;
    box-shadow: 0 30px 80px rgba(168, 120, 144, 0.35), 0 0 40px rgba(168, 120, 144, 0.15);
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateY(40px) scale(0.92);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 24px;
}

.beauty-modal.active .beauty-modal-content {
    transform: translateY(0) scale(1) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.beauty-modal-content::-webkit-scrollbar {
    width: 6px;
}

.beauty-modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.beauty-modal-content::-webkit-scrollbar-thumb {
    background: rgba(168, 120, 144, 0.25);
    border-radius: 10px;
}

.beauty-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    background: linear-gradient(145deg, #ffffff, #fafafa);
    border: 2px solid #a87890;
    color: #a87890;
    font-size: 26px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(168, 120, 144, 0.25);
}

.beauty-modal-close:hover {
    background: linear-gradient(145deg, #a87890, #c494b0);
    color: #fff;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 8px 30px rgba(168, 120, 144, 0.4);
}

.beauty-modal-inner {
    padding: 50px 55px;
}

/* Beauty Header */
.beauty-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(168, 120, 144, 0.15);
    position: relative;
}

.beauty-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #a87890, transparent);
    border-radius: 2px;
}

.nsdc-bwss-logo-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, rgba(168, 120, 144, 0.08), rgba(255, 152, 0, 0.08));
    padding: 12px 25px;
    border-radius: 50px;
    border: 1px solid rgba(168, 120, 144, 0.15);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.nsdc-bwss-logo-circle {
    width: 50px;
    height: 50px;
}

.nsdc-bwss-logo-svg {
    width: 100%;
    height: 100%;
}

.nsdc-bwss-logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nsdc-bwss-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    color: #a87890;
    letter-spacing: 2px;
}

.nsdc-bwss-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: #666;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.beauty-main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: #a87890;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.beauty-main-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #333;
    letter-spacing: 2px;
    font-weight: 500;
}

/* Section Title */
.beauty-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #333;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

/* About Section */
.beauty-about-section {
    margin-bottom: 30px;
}

.beauty-about-content-box {
    background: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
}

.beauty-about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
    margin-bottom: 20px;
}

.beauty-about-text p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}

.beauty-institute-info {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.institute-badge {
    margin-bottom: 18px;
}

.institute-name {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: #000;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.institute-location {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #000;
}

.beauty-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding-top: 25px;
    border-top: 1px dashed rgba(168, 120, 144, 0.2);
}

.beauty-highlight-item {
    text-align: center;
}

.beauty-highlight-num {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: #a87890;
    letter-spacing: 2px;
}

.beauty-highlight-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Courses Section */
.beauty-courses-section {
    margin-bottom: 45px;
}

.beauty-courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.beauty-course-card {
    background: linear-gradient(145deg, #ffffff, #fafafa);
    border: 2px solid rgba(168, 120, 144, 0.15);
    border-radius: 20px;
    padding: 30px 22px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.beauty-course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #a87890, #c494b0, #a87890);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.beauty-course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(168, 120, 144, 0.2);
    border-color: #a87890;
}

.beauty-course-card:hover::before {
    transform: scaleX(1);
}

.beauty-course-icon {
    font-size: 55px;
    margin-bottom: 18px;
    transition: transform 0.4s ease;
}

.beauty-course-card:hover .beauty-course-icon {
    transform: scale(1.15);
}

.beauty-course-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #a87890;
    margin-bottom: 12px;
}

.beauty-course-card p {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

/* Eligibility Section */
.beauty-eligibility-section {
    margin-bottom: 45px;
}

.beauty-eligibility-snake-container {
    position: relative;
    background: linear-gradient(145deg, #ffffff, #fafafa);
    border: 2px solid rgba(168, 120, 144, 0.15);
    border-radius: 24px;
    padding: 40px 30px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(168, 120, 144, 0.1);
}

.beauty-snake-connector {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.beauty-snake-path {
    stroke-dashoffset: 0;
    animation: snakeDash 20s linear infinite;
}

.beauty-eligibility-path {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.beauty-eligibility-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.beauty-node-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(145deg, #a87890, #c494b0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 35px rgba(168, 120, 144, 0.4), 0 0 0 4px rgba(168, 120, 144, 0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.beauty-eligibility-node:hover .beauty-node-icon {
    transform: scale(1.2) rotate(12deg);
    box-shadow: 0 15px 45px rgba(168, 120, 144, 0.5), 0 0 0 6px rgba(168, 120, 144, 0.2);
}

.beauty-node-content {
    text-align: center;
    max-width: 120px;
}

.beauty-node-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #a87890;
    margin-bottom: 6px;
}

.beauty-node-content p {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #666;
    line-height: 1.4;
}

/* Careers Section */
.beauty-careers-section {
    margin-bottom: 30px;
}

.beauty-careers-scroll-container {
    overflow: hidden;
    padding: 15px 0;
}

.beauty-careers-scroll-track {
    display: flex;
    gap: 20px;
    animation: scrollBeautyCareers 25s linear infinite;
}

.beauty-careers-scroll-track:hover {
    animation-play-state: paused;
}

@keyframes scrollBeautyCareers {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.beauty-career-card {
    flex-shrink: 0;
    width: 280px;
    background: linear-gradient(145deg, #ffffff, #fafafa);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(168, 120, 144, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.beauty-career-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(168, 120, 144, 0.2);
    border-color: #a87890;
}

.beauty-career-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.beauty-career-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.beauty-career-card:hover .beauty-career-image img {
    transform: scale(1.1);
}

.beauty-career-content {
    padding: 20px;
    text-align: center;
}

.beauty-career-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #a87890;
    margin-bottom: 8px;
}

.beauty-career-card p {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 10px;
}

.beauty-career-salary {
    display: inline-block;
    background: linear-gradient(135deg, rgba(168, 120, 144, 0.15), rgba(168, 120, 144, 0.25));
    color: #a87890;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/* Contact Section */
/* Contact Section */
.beauty-contact-section {
    margin-bottom: 30px;
}

.beauty-contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    background: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
}

.beauty-contact-details {
    text-align: center;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.beauty-contact-details h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}

.beauty-phone {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.beauty-address {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.beauty-address h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.beauty-address p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.beauty-cta-section {
    text-align: center;
    background: linear-gradient(135deg, #a87890, #c494b0, #a87890);
    border-radius: 24px;
    padding: 50px;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(168, 120, 144, 0.35);
}

.beauty-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 50%);
    animation: rotateGlow 8s linear infinite;
}

.beauty-cta-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.beauty-cta-section p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.btn-beauty-cta {
    display: inline-block;
    padding: 18px 55px;
    background: #fff;
    color: #a87890;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 3px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.btn-beauty-cta:hover {
    background: linear-gradient(135deg, #ffc107, #c08050);
    color: #a87890;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Beauty Modal Responsive */
@media (max-width: 900px) {
    .beauty-courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .beauty-eligibility-path {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }

    .beauty-about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .beauty-modal-inner {
        padding: 30px 25px;
    }

    .beauty-modal-content {
        width: 94%;
        max-height: 88vh;
        border-radius: 20px;
    }

    .beauty-courses-grid {
        grid-template-columns: 1fr;
    }

    .beauty-highlights {
        flex-direction: column;
        gap: 20px;
    }

    .beauty-contact-content {
        grid-template-columns: 1fr;
    }

    .beauty-cta-section {
        padding: 35px 25px;
    }
}

/* ========== TOURISM & HOSPITALITY MODAL ========== */
.tourism-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
    visibility: hidden;
    align-items: center;
    justify-content: center;
}

.tourism-modal.active {
    display: flex !important;
    visibility: visible !important;
}

.tourism-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(176, 96, 48, 0.85) 0%, rgba(0, 0, 0, 0.9) 100%);
    backdrop-filter: blur(12px);
}

.tourism-modal-content {
    position: relative;
    width: 96%;
    max-width: 1000px;
    max-height: 90vh;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 50%, #f5f5f5 100%);
    border: 2px solid rgba(176, 96, 48, 0.25);
    border-top: 5px solid #b06030;
    box-shadow: 0 30px 80px rgba(176, 96, 48, 0.35), 0 0 40px rgba(176, 96, 48, 0.15);
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateY(40px) scale(0.92);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 24px;
}

.tourism-modal.active .tourism-modal-content {
    transform: translateY(0) scale(1) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.tourism-modal-content::-webkit-scrollbar {
    width: 6px;
}

.tourism-modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.tourism-modal-content::-webkit-scrollbar-thumb {
    background: rgba(176, 96, 48, 0.25);
    border-radius: 10px;
}

.tourism-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    background: linear-gradient(145deg, #ffffff, #fff8e1);
    border: 2px solid #b06030;
    color: #b06030;
    font-size: 26px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(176, 96, 48, 0.25);
}

.tourism-modal-close:hover {
    background: linear-gradient(145deg, #b06030, #c08050);
    color: #fff;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 8px 30px rgba(176, 96, 48, 0.4);
}

.tourism-modal-inner {
    padding: 50px 55px;
}

/* Tourism Header */
.tourism-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(176, 96, 48, 0.15);
    position: relative;
}

.tourism-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #b06030, transparent);
    border-radius: 2px;
}

.nsdc-thss-logo-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, rgba(176, 96, 48, 0.08), rgba(76, 175, 80, 0.08));
    padding: 12px 25px;
    border-radius: 50px;
    border: 1px solid rgba(176, 96, 48, 0.15);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.nsdc-thss-logo-circle {
    width: 50px;
    height: 50px;
}

.nsdc-thss-logo-svg {
    width: 100%;
    height: 100%;
}

.nsdc-thss-logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nsdc-thss-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    color: #b06030;
    letter-spacing: 2px;
}

.nsdc-thss-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: #666;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tourism-main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: #b06030;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.tourism-main-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #333;
    letter-spacing: 2px;
    font-weight: 500;
}

/* Section Title */
.tourism-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #333;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

/* About Section */
.tourism-about-section {
    margin-bottom: 45px;
}

.tourism-about-content-box {
    background: linear-gradient(145deg, #ffffff, #fff8e1);
    border: 2px solid rgba(176, 96, 48, 0.12);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(176, 96, 48, 0.08);
}

.tourism-about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
    margin-bottom: 20px;
}

.tourism-about-text p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}

.tourism-institute-info {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.tourism-institute-badge {
    margin-bottom: 18px;
}

.tourism-institute-name {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: #000;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.tourism-institute-location {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
}

.tourism-contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tourism-contact-item {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #000;
}

.tourism-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding-top: 25px;
    border-top: 1px dashed rgba(176, 96, 48, 0.2);
}

.tourism-highlight-item {
    text-align: center;
}

.tourism-highlight-num {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: #b06030;
    letter-spacing: 2px;
}

.tourism-highlight-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Courses Section */
.tourism-courses-section {
    margin-bottom: 45px;
}

.tourism-courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.tourism-course-card {
    background: linear-gradient(145deg, #ffffff, #fff8e1);
    border: 2px solid rgba(176, 96, 48, 0.15);
    border-radius: 20px;
    padding: 30px 22px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.tourism-course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #b06030, #c08050, #b06030);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.tourism-course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(176, 96, 48, 0.2);
    border-color: #b06030;
}

.tourism-course-card:hover::before {
    transform: scaleX(1);
}

.tourism-course-icon {
    font-size: 50px;
    margin-bottom: 18px;
    transition: transform 0.4s ease;
}

.tourism-course-card:hover .tourism-course-icon {
    transform: scale(1.15);
}

.tourism-course-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #b06030;
    margin-bottom: 10px;
}

.tourism-course-code {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    background: #b06030;
    padding: 4px 12px;
    border-radius: 10px;
    margin-bottom: 12px;
    display: inline-block;
}

.tourism-course-card p {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

/* Eligibility Section */
.tourism-eligibility-section {
    margin-bottom: 45px;
}

.tourism-eligibility-snake-container {
    position: relative;
    background: linear-gradient(145deg, #ffffff, #fff8e1);
    border: 2px solid rgba(176, 96, 48, 0.15);
    border-radius: 24px;
    padding: 40px 30px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(176, 96, 48, 0.1);
}

.tourism-snake-connector {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.tourism-snake-path {
    stroke-dashoffset: 0;
    animation: snakeDash 20s linear infinite;
}

.tourism-eligibility-path {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.tourism-eligibility-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.tourism-node-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(145deg, #b06030, #c08050);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 35px rgba(176, 96, 48, 0.4), 0 0 0 4px rgba(176, 96, 48, 0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tourism-eligibility-node:hover .tourism-node-icon {
    transform: scale(1.2) rotate(12deg);
    box-shadow: 0 15px 45px rgba(176, 96, 48, 0.5), 0 0 0 6px rgba(176, 96, 48, 0.2);
}

.tourism-node-content {
    text-align: center;
    max-width: 120px;
}

.tourism-node-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #b06030;
    margin-bottom: 6px;
}

.tourism-node-content p {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #666;
    line-height: 1.4;
}

/* Careers Section */
.tourism-careers-section {
    margin-bottom: 30px;
}

.tourism-careers-scroll-container {
    overflow: hidden;
    padding: 15px 0;
}

.tourism-careers-scroll-track {
    display: flex;
    gap: 20px;
    animation: scrollTourismCareers 25s linear infinite;
}

.tourism-careers-scroll-track:hover {
    animation-play-state: paused;
}

@keyframes scrollTourismCareers {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.tourism-career-card {
    flex-shrink: 0;
    width: 280px;
    background: linear-gradient(145deg, #ffffff, #fafafa);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(176, 96, 48, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tourism-career-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(176, 96, 48, 0.2);
    border-color: #b06030;
}

.tourism-career-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.tourism-career-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.tourism-career-card:hover .tourism-career-image img {
    transform: scale(1.1);
}

.tourism-career-content {
    padding: 20px;
    text-align: center;
}

.tourism-career-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #b06030;
    margin-bottom: 8px;
}

.tourism-career-card p {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 10px;
}

.tourism-career-salary {
    display: inline-block;
    background: linear-gradient(135deg, rgba(176, 96, 48, 0.15), rgba(176, 96, 48, 0.25));
    color: #b06030;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/* Contact Section */
.tourism-contact-section {
    margin-bottom: 30px;
}

.tourism-contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    background: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
}

.tourism-contact-details {
    text-align: center;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.tourism-contact-details h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}

.tourism-phone {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.tourism-address {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tourism-address h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.tourism-address p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.tourism-cta-section {
    text-align: center;
    background: linear-gradient(135deg, #b06030, #c08050, #b06030);
    border-radius: 24px;
    padding: 50px;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(176, 96, 48, 0.35);
}

.tourism-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 50%);
    animation: rotateGlow 8s linear infinite;
}

.tourism-cta-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.tourism-cta-section p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.btn-tourism-cta {
    display: inline-block;
    padding: 18px 55px;
    background: #fff;
    color: #b06030;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 3px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.btn-tourism-cta:hover {
    background: linear-gradient(135deg, #ffc107, #c08050);
    color: #b06030;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.btn-tourism-cta:hover {
    background: #ffe0b2;
    color: #b06030;
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

/* Tourism Modal Responsive */
@media (max-width: 900px) {
    .tourism-courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tourism-eligibility-path {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }

    .tourism-about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .tourism-modal-inner {
        padding: 30px 25px;
    }

    .tourism-modal-content {
        width: 94%;
        max-height: 88vh;
        border-radius: 20px;
    }

    .tourism-courses-grid {
        grid-template-columns: 1fr;
    }

    .tourism-highlights {
        flex-direction: column;
        gap: 20px;
    }

    .tourism-contact-content {
        grid-template-columns: 1fr;
    }

    .tourism-cta-section {
        padding: 35px 25px;
    }
}

/* ========== APPAREL & TEXTILES MODAL ========== */
.apparel-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
    visibility: hidden;
    align-items: center;
    justify-content: center;
}

.apparel-modal.active {
    display: flex !important;
    visibility: visible !important;
}

.apparel-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(128, 96, 160, 0.85) 0%, rgba(0, 0, 0, 0.9) 100%);
    backdrop-filter: blur(12px);
}

.apparel-modal-content {
    position: relative;
    width: 96%;
    max-width: 1000px;
    max-height: 90vh;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 50%, #f5f5f5 100%);
    border: 2px solid rgba(128, 96, 160, 0.25);
    border-top: 5px solid #8060a0;
    box-shadow: 0 30px 80px rgba(128, 96, 160, 0.35), 0 0 40px rgba(128, 96, 160, 0.15);
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateY(40px) scale(0.92);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 24px;
}

.apparel-modal.active .apparel-modal-content {
    transform: translateY(0) scale(1) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.apparel-modal-content::-webkit-scrollbar {
    width: 6px;
}

.apparel-modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.apparel-modal-content::-webkit-scrollbar-thumb {
    background: rgba(128, 96, 160, 0.25);
    border-radius: 10px;
}

.apparel-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    background: linear-gradient(145deg, #ffffff, #f3e5f5);
    border: 2px solid #8060a0;
    color: #8060a0;
    font-size: 26px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(128, 96, 160, 0.25);
}

.apparel-modal-close:hover {
    background: linear-gradient(145deg, #8060a0, #9880b0);
    color: #fff;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 8px 30px rgba(128, 96, 160, 0.4);
}

.apparel-modal-inner {
    padding: 50px 55px;
}

/* Apparel Header */
.apparel-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(128, 96, 160, 0.15);
    position: relative;
}

.apparel-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #8060a0, transparent);
    border-radius: 2px;
}

.nsdc-ahm-logo-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, rgba(128, 96, 160, 0.08), rgba(168, 120, 144, 0.08));
    padding: 12px 25px;
    border-radius: 50px;
    border: 1px solid rgba(128, 96, 160, 0.15);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.nsdc-ahm-logo-circle {
    width: 50px;
    height: 50px;
}

.nsdc-ahm-logo-svg {
    width: 100%;
    height: 100%;
}

.nsdc-ahm-logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nsdc-ahm-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    color: #8060a0;
    letter-spacing: 2px;
}

.nsdc-ahm-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: #666;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.apparel-main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: #8060a0;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.apparel-main-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #333;
    letter-spacing: 2px;
    font-weight: 500;
}

/* Section Title */
.apparel-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #333;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

/* About Section */
.apparel-about-section {
    margin-bottom: 45px;
}

.apparel-about-content-box {
    background: linear-gradient(145deg, #ffffff, #f3e5f5);
    border: 2px solid rgba(128, 96, 160, 0.12);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(128, 96, 160, 0.08);
}

.apparel-about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
    margin-bottom: 20px;
}

.apparel-about-text p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}

.apparel-institute-info {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.apparel-institute-badge {
    margin-bottom: 18px;
}

.apparel-institute-name {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: #000;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.apparel-institute-location {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
}

.apparel-contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.apparel-contact-item {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #000;
}

.apparel-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding-top: 25px;
    border-top: 1px dashed rgba(128, 96, 160, 0.2);
}

.apparel-highlight-item {
    text-align: center;
}

.apparel-highlight-num {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: #8060a0;
    letter-spacing: 2px;
}

.apparel-highlight-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Courses Section */
.apparel-courses-section {
    margin-bottom: 45px;
}

.apparel-courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.apparel-course-card {
    background: linear-gradient(145deg, #ffffff, #f3e5f5);
    border: 2px solid rgba(128, 96, 160, 0.15);
    border-radius: 20px;
    padding: 30px 22px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.apparel-course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8060a0, #9880b0, #8060a0);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.apparel-course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(128, 96, 160, 0.2);
    border-color: #8060a0;
}

.apparel-course-card:hover::before {
    transform: scaleX(1);
}

.apparel-course-icon {
    font-size: 50px;
    margin-bottom: 18px;
    transition: transform 0.4s ease;
}

.apparel-course-card:hover .apparel-course-icon {
    transform: scale(1.15);
}

.apparel-course-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #8060a0;
    margin-bottom: 10px;
}

.apparel-course-card p {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

/* Eligibility Section */
.apparel-eligibility-section {
    margin-bottom: 45px;
}

.apparel-eligibility-snake-container {
    position: relative;
    background: linear-gradient(145deg, #ffffff, #f3e5f5);
    border: 2px solid rgba(128, 96, 160, 0.15);
    border-radius: 24px;
    padding: 40px 30px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(128, 96, 160, 0.1);
}

.apparel-snake-connector {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.apparel-snake-path {
    stroke-dashoffset: 0;
    animation: snakeDash 20s linear infinite;
}

.apparel-eligibility-path {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.apparel-eligibility-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.apparel-node-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(145deg, #8060a0, #9880b0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 35px rgba(128, 96, 160, 0.4), 0 0 0 4px rgba(128, 96, 160, 0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.apparel-eligibility-node:hover .apparel-node-icon {
    transform: scale(1.2) rotate(12deg);
    box-shadow: 0 15px 45px rgba(128, 96, 160, 0.5), 0 0 0 6px rgba(128, 96, 160, 0.2);
}

.apparel-node-content {
    text-align: center;
    max-width: 120px;
}

.apparel-node-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #8060a0;
    margin-bottom: 6px;
}

.apparel-node-content p {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #666;
    line-height: 1.4;
}

/* Careers Section */
.apparel-careers-section {
    margin-bottom: 30px;
}

.apparel-careers-scroll-container {
    overflow: hidden;
    padding: 15px 0;
}

.apparel-careers-scroll-track {
    display: flex;
    gap: 20px;
    animation: scrollApparelCareers 25s linear infinite;
}

.apparel-careers-scroll-track:hover {
    animation-play-state: paused;
}

@keyframes scrollApparelCareers {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.apparel-career-card {
    flex-shrink: 0;
    width: 280px;
    background: linear-gradient(145deg, #ffffff, #fafafa);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(128, 96, 160, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.apparel-career-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(128, 96, 160, 0.2);
    border-color: #8060a0;
}

.apparel-career-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.apparel-career-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.apparel-career-card:hover .apparel-career-image img {
    transform: scale(1.1);
}

.apparel-career-content {
    padding: 20px;
    text-align: center;
}

.apparel-career-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #8060a0;
    margin-bottom: 8px;
}

.apparel-career-card p {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 10px;
}

.apparel-career-salary {
    display: inline-block;
    background: linear-gradient(135deg, rgba(128, 96, 160, 0.15), rgba(128, 96, 160, 0.25));
    color: #8060a0;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/* Contact Section */
.apparel-contact-section {
    margin-bottom: 30px;
}

.apparel-contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    background: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
}

.apparel-address {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.apparel-address h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.apparel-address p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.apparel-cta-section {
    text-align: center;
    background: linear-gradient(135deg, #8060a0, #9880b0, #8060a0);
    border-radius: 24px;
    padding: 50px;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(128, 96, 160, 0.35);
}

.apparel-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 50%);
    animation: rotateGlow 8s linear infinite;
}

.apparel-cta-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.apparel-cta-section p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.btn-apparel-cta {
    display: inline-block;
    padding: 18px 55px;
    background: #fff;
    color: #8060a0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 3px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.btn-apparel-cta:hover {
    background: linear-gradient(135deg, #ffc107, #c08050);
    color: #8060a0;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Apparel Modal Responsive */
@media (max-width: 900px) {
    .apparel-courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .apparel-eligibility-path {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }

    .apparel-about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .apparel-modal-inner {
        padding: 30px 25px;
    }

    .apparel-modal-content {
        width: 94%;
        max-height: 88vh;
        border-radius: 20px;
    }

    .apparel-courses-grid {
        grid-template-columns: 1fr;
    }

    .apparel-highlights {
        flex-direction: column;
        gap: 20px;
    }

    .apparel-cta-section {
        padding: 35px 25px;
    }
}

/* Course Modal - extends airline modal styles */
.course-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
    visibility: hidden;
    align-items: center;
    justify-content: center;
}

.course-modal.active {
    display: flex;
    visibility: visible;
}

.course-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(100, 100, 100, 0.6);
    backdrop-filter: blur(15px);
}

.course-modal-content {
    position: relative;
    width: 96%;
    max-width: 1100px;
    max-height: 88vh;
    background: rgba(200, 200, 200, 0.75);
    backdrop-filter: blur(35px) saturate(150%);
    -webkit-backdrop-filter: blur(35px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateY(40px) scale(0.92);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 24px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
}

.course-modal.active .course-modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.course-modal-content::-webkit-scrollbar {
    width: 5px;
}

.course-modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.course-modal-content::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.12);
    border-radius: 10px;
}

.course-modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.22);
}

.course-modal.active .course-modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.course-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #000;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    line-height: 1;
}

.course-modal-close:hover {
    background: rgba(0, 0, 0, 0.15);
    color: #000;
    transform: rotate(90deg);
}

.course-modal-inner {
    padding: 55px 50px;
}

.course-modal-header {
    text-align: center;
    margin-bottom: 45px;
    padding-bottom: 35px;
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.08);
    position: relative;
}

.course-modal-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #000, transparent);
}

.course-modal-icon {
    font-size: 60px;
    margin-bottom: 18px;
    display: inline-block;
    animation: floatIcon 3s ease-in-out infinite;
}

.course-modal-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 900;
    color: #000;
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.course-modal-header p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #333;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.course-modal-section {
    margin-bottom: 40px;
}

.course-modal-section h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 19px;
    color: #000;
    letter-spacing: 3px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
}

.course-modal-section h3::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50%;
}

.course-about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 35px;
    align-items: center;
}

.course-about-text p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #222;
    line-height: 1.85;
    margin-bottom: 16px;
}

.course-about-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.course-about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.1));
    z-index: 1;
}

.course-about-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-about-image:hover img {
    transform: scale(1.05);
}

.course-steps {
    position: relative;
    padding-left: 30px;
}

.course-steps::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #000 0%, rgba(0,0,0,0.1) 100%);
    border-radius: 2px;
}

.course-step {
    position: relative;
    margin-bottom: 25px;
    padding: 25px 25px 25px 40px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.course-step:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.course-step::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: #000;
    border-radius: 50%;
    border: 3px solid #fff;
}

.course-step:hover .step-image img {
    transform: scale(1.1);
}

.course-provide-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.course-provide-grid::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
    opacity: 0.2;
}

.course-job-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.course-modal-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    padding: 45px;
    margin-top: 40px;
}

.course-modal-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #000;
    margin-bottom: 12px;
    border: none;
    padding: 0;
    letter-spacing: 2px;
}

.course-modal-cta p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #333;
    margin-bottom: 28px;
}

.btn-course-cta {
    display: inline-block;
    padding: 16px 45px;
    background: #000;
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 15px;
    letter-spacing: 3px;
    transition: all 0.35s ease;
    border-radius: 10px;
}

.btn-course-cta:hover {
    background: #222;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* ========== CONTACT SECTION ========== */
#contact {
    padding: 0;
    background: #000;
}

.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 40px;
}

.contact-wrapper h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 60px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 50px;
    letter-spacing: 8px;
    text-align: center;
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-side form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form-side .form-group input,
.contact-form-side .form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-form-side .form-group input::placeholder,
.contact-form-side .form-group textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

.contact-form-side .form-group input:focus,
.contact-form-side .form-group textarea:focus {
    outline: none;
    border-color: #fff;
    background: rgba(255,255,255,0.12);
}

.contact-form-side .form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form-side .btn-primary {
    padding: 16px 40px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: 3px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.contact-form-side .btn-primary:hover {
    background: #ccc;
    transform: translateY(-2px);
}

.contact-faq-side h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: #fff;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    cursor: pointer;
}

.faq-question h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.faq-icon {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: rgba(255,255,255,0.6);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 100px;
    padding-bottom: 18px;
}

.faq-answer p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* ========== FOOTER ========== */
footer {
    background: #000;
    padding: 60px 40px 40px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

footer p {
    color: rgba(255,255,255,0.5);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .hero-left {
        flex: 0 0 60%;
        padding: 0 50px;
    }
    .hero-right {
        flex: 0 0 40%;
    }
}

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
    }

    .hero-left {
        flex: none;
        height: 70vh;
    }

    .hero-right {
        display: none;
    }

    .navbar {
        padding: 0 20px;
        height: 80px;
    }

    .nav-brand {
        gap: 12px;
    }

    .logo-img {
        height: 40px;
        width: auto;
    }

    .logo-img-secondary {
        height: 55px;
        width: 55px;
    }

    .nav-divider {
        display: block;
        width: 1px;
        height: 40px;
    }

    .nav-links {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 10px;
        z-index: 1001;
    }

    .mobile-menu-toggle span {
        width: 26px;
        height: 3px;
        background: #333;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .mobile-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        padding-top: 0;
        display: flex;
        flex-direction: column;
    }

    .mobile-nav.active {
        right: 0;
    }

    .mobile-nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .mobile-nav-close {
        width: 40px;
        height: 40px;
        background: rgba(255,255,255,0.1);
        border: none;
        border-radius: 50%;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-nav-links {
        list-style: none;
        padding: 20px 0;
        margin: 0;
        flex: 1;
    }

    .mobile-nav-links li {
        border-bottom: none;
    }

    .mobile-nav-links a {
        display: block;
        padding: 16px 25px;
        font-family: 'Inter', sans-serif;
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 1px;
        color: rgba(255,255,255,0.9);
        text-decoration: none;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
    }

    .mobile-nav-links a:hover {
        background: rgba(255,255,255,0.05);
        color: #fff;
        padding-left: 35px;
        border-left-color: #e91e63;
    }

    .mobile-nav-footer {
        padding: 25px;
        border-top: 1px solid rgba(255,255,255,0.1);
        text-align: center;
    }

    .mobile-nav-footer p {
        color: rgba(255,255,255,0.5);
        font-size: 12px;
        letter-spacing: 1px;
    }

    .mobile-nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.7);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .mobile-nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .scrolling-text-content span {
        font-size: 10px;
        padding: 0 20px;
    }

    .courses-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px 40px 60px;
    }
    .course-reveal-card {
        height: 400px;
    }

    .impact-counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-left {
        padding: 0 25px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .courses-showcase {
        grid-template-columns: 1fr;
        padding: 20px 15px 50px;
        gap: 15px;
    }
    .course-reveal-card {
        height: 320px;
        min-height: 320px;
    }
    .course-number {
        font-size: 60px;
    }
    .course-icon-large {
        font-size: 40px;
    }
    .course-title {
        font-size: 22px;
    }
    .course-content-layer {
        padding: 25px 20px;
    }
    .courses-hero-header {
        padding: 80px 20px 50px;
    }

    .course-modal-content {
        width: 95%;
        padding: 20px;
    }

    .impact-counter-grid {
        grid-template-columns: 1fr;
    }
    .placements-header {
        padding: 80px 20px 50px;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
    }
    .about-visual {
        min-height: 350px;
    }

    .contact-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-wrapper {
        padding: 80px 30px;
    }
    .contact-wrapper h2 {
        font-size: 45px;
    }

    .about-section {
        padding: 60px 20px;
    }
    .about-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image {
        height: 300px;
    }
    .about-content h2 {
        font-size: 32px;
    }
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .about-stat .stat-number {
        font-size: 28px;
    }
    .about-values {
        grid-template-columns: 1fr;
    }
    .about-btns {
        flex-direction: column;
    }

    /* About Section Mobile Responsive */
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 60px 20px;
    }
    .about-left {
        padding-right: 0;
    }
    .about-overline {
        font-size: 10px;
        letter-spacing: 3px;
    }
    .about-title {
        font-size: 36px;
    }
    .about-text {
        font-size: 14px;
        line-height: 1.7;
    }
    .about-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .about-mission-vision {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .about-right {
        height: 280px;
        border-radius: 15px;
    }

    /* Footer Mobile Responsive */
    footer {
        padding: 40px 20px 30px;
    }
    footer p {
        font-size: 10px;
        letter-spacing: 2px;
    }
}
