/* ===================================================
   JS KOTHARI BUSINESS SCHOOL ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Amity-Style Landing Page
   Premium Education Design System
   =================================================== */

/* ===== DESIGN TOKENS ===== */
:root {
    /* Primary Colors ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Amity Style */
    --navy-950: #0a1628;
    --navy-900: #0c2340;
    --navy-800: #102b52;
    --navy-700: #163a6e;
    --navy-600: #1e4d91;
    --yellow-500: #F5C518;
    --yellow-400: #FFD740;
    --yellow-300: #FFE082;
    --white: #ffffff;
    --gray-50: #f8f9fb;
    --gray-100: #f0f2f5;
    --gray-200: #dce1e8;
    --gray-300: #c4cbd6;
    --gray-400: #8d99a8;
    --gray-500: #606d7f;
    --gray-600: #475569;
    --gray-700: #334155;
    --red-500: #e53935;
    --green-500: #43a047;
    --green-600: #2e7d32;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #0a1628 0%, #0c2340 40%, #102b52 100%);
    --gradient-yellow: linear-gradient(135deg, #F5C518, #FFD740);

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;

    /* Spacing */
    --section-py: 80px;
    --container-max: 1200px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 16px 50px rgba(0, 0, 0, 0.2);

    /* Borders */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s var(--ease);
    --transition-normal: 0.3s var(--ease);
    --transition-slow: 0.5s var(--ease);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 140px;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-py) 0;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px 22px;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    white-space: nowrap;
}

.btn-enquire {
    background: transparent;
    color: var(--navy-900);
    border: 2px solid var(--navy-900);
    border-radius: var(--radius-full);
    font-weight: 600;
}

.btn-enquire:hover {
    background: var(--navy-900);
    color: var(--white);
}

.btn-apply-now {
    background: var(--yellow-500);
    color: var(--navy-900);
    border-radius: var(--radius-full);
    font-weight: 700;
    border: 2px solid var(--yellow-500);
}

.btn-apply-now:hover {
    background: #e0b000;
    border-color: #e0b000;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(245, 197, 24, 0.4);
}

.btn-login {
    background: transparent;
    color: var(--navy-900);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-weight: 500;
}

.btn-login:hover {
    border-color: var(--navy-900);
}

.btn-brochure {
    background: var(--yellow-500);
    color: var(--navy-900);
    border-radius: var(--radius-full);
    font-weight: 700;
    padding: 12px 28px;
    font-size: 14px;
    border: 2px solid var(--yellow-500);
}

.btn-brochure:hover {
    background: #e0b000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 197, 24, 0.4);
}

.btn-share {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-share:hover {
    border-color: var(--yellow-500);
    color: var(--yellow-500);
}

.btn-submit {
    width: 100%;
    background: var(--gray-200);
    color: var(--gray-600);
    border: none;
    border-radius: var(--radius-sm);
    padding: 14px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-submit:hover {
    background: var(--yellow-500);
    color: var(--navy-900);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    padding: 12px 28px;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--yellow-500);
    color: var(--yellow-500);
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--yellow-500);
    background: linear-gradient(135deg, rgba(245, 197, 24, 0.1), rgba(245, 197, 24, 0.05));
    border: 1px solid rgba(245, 197, 24, 0.25);
    padding: 6px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 700;
    color: #0c2340;
    line-height: 1.2;
    margin-bottom: 14px;
}

.section-subtitle {
    font-size: 15px;
    color: var(--gray-500);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== URGENCY TOP BAR ===== */
.urgency-bar {
    background: var(--yellow-500);
    text-align: center;
    padding: 10px 0;
    position: relative;
    z-index: 1001;
}

.urgency-bar p {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--navy-900);
    letter-spacing: 0.5px;
    margin: 0;
}

.urgency-bar strong {
    font-weight: 700;
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fef9e7;
    padding: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--gray-100);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: 8px;
    background: var(--navy-900);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* ===== HEADER CONTACT ITEMS ===== */
.top-contact-items {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-left: auto;
}

.top-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
}

.top-contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(245, 197, 24, 0.12);
    border: 1px solid rgba(245, 197, 24, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.top-contact-icon i {
    font-size: 18px;
    color: var(--yellow-500);
}

.top-contact-text {
    display: flex;
    flex-direction: column;
}

.top-contact-label {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--navy-900);
    line-height: 1.3;
}

.top-contact-value {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 500;
    line-height: 1.4;
}

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

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--navy-900);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.8);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

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

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    padding: 20px;
    margin-top: 150px;
}

.mobile-nav-contact.card-style {
    background: #fdfaf3;
    /* light beige card background matched to image */
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    box-shadow: var(--shadow-xl);
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: inherit;
}

.mc-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f4eee2;
    /* slightly darker beige for icon bg */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mc-icon i {
    font-size: 20px;
    color: #1a365d;
    /* navy icon */
}

.mc-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mc-label {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    color: #1a0b0b;
    /* very dark near black */
}

.mc-value {
    font-size: 15px;
    color: #4a6582;
    /* blue-gray text for value */
}

/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
    background: var(--gray-50);
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 12px;
    color: var(--gray-400);
}

.breadcrumb-bar a {
    color: var(--gray-500);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.breadcrumb-bar a:hover {
    color: var(--navy-900);
}

.breadcrumb-bar span {
    margin: 0 6px;
    color: var(--gray-300);
}

.breadcrumb-bar strong {
    color: var(--navy-900);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    background: #fef9e7;
    overflow: hidden;
    padding: 20px 24px;
}

.hero-bg-pattern {
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 24px;
    right: 24px;
    background:
        radial-gradient(circle at 60% 50%, rgba(245, 197, 24, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, rgba(10, 22, 40, 0.85), rgba(12, 35, 64, 0.8)),
        url('https://static.npfs.co/accounts/7069/documents/2026/3/25/3e5ddd7715ed4befbe48039775c44674_IMG-20240405-WA0014-scaled.jpg') center/cover no-repeat;
    z-index: 1;
    border-radius: 20px;
}

.hero>.container {
    position: relative;
    z-index: 2;
}

/* Decorative rupee symbol watermark */
.hero-bg-pattern::after {
    content: 'ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¹';
    position: absolute;
    font-size: 400px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    right: 50%;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-heading);
    z-index: 0;
    pointer-events: none;
}

.hero-split {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: center;
    padding: 48px 0 40px;
}

.hero-text {
    padding-top: 40px;
}

.hero-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 28px;
}

.highlight {
    color: var(--white);
}

/* Collaboration Badge */
.hero-collab-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: 10px 24px;
    margin-bottom: 16px;
}

.collab-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
}

.collab-logos {
    display: flex;
    align-items: center;
    gap: 20px;
}

.collab-logo {
    height: 32px;
    width: auto;
}

/* Highlight Tag */
.hero-highlight-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green-600);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.hero-highlight-tag i {
    font-size: 14px;
}

/* Duration */
.hero-duration {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.duration-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.5);
}

.duration-value {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.hero-disclaimer {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    font-style: italic;
}

/* ===== HERO FORM CARD ===== */
.hero-form-card {
    /* text-align: center; */
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    font-style: normal;
    color: var(--navy-900);
    text-align: center;
    margin-bottom: 24px;
}

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 14px;
}

.hero-form-card .form-group {
    margin-bottom: 14px;
}

.hero-form-card label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 5px;
}

.req {
    color: var(--red-500);
}

.hero-form-card input,
.hero-form-card select {
    /* width: 100%; */
    padding: 10px 14px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 13px;
    /* color: var(--gray-700); */
    background: var(--white);
    transition: border-color var(--transition-fast);
    outline: none;
}

.hero-form-card input:focus,
.hero-form-card select:focus {
    border-color: var(--navy-900);
    box-shadow: 0 0 0 3px rgba(12, 35, 64, 0.08);
}

.hero-form-card input.error {
    border-color: var(--red-500);
}

/* Phone Input */
.phone-input-wrap {
    display: flex;
    gap: 0;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.phone-input-wrap .country-code {
    width: 90px;
    border: none;
    border-right: 1px solid var(--gray-200);
    border-radius: 0;
    padding: 10px 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-600);
    background: var(--gray-50);
    flex-shrink: 0;
}

.phone-input-wrap input {
    border: none;
    border-radius: 0;
    flex: 1;
}

.phone-input-wrap input:focus {
    box-shadow: none;
}

/* Consent */
.form-consent {
    margin-bottom: 16px;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 11px;
    color: var(--gray-400);
    line-height: 1.5;
    cursor: pointer;
}

.consent-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: var(--navy-900);
}

.consent-label a {
    color: var(--navy-900);
    text-decoration: underline;
    text-underline-offset: 1px;
}

/* ===== SEATS FILLED BAR ===== */
.seats-bar {
    margin-top: 0px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    overflow: hidden;
    height: 32px;
    position: relative;
}

.seats-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #4fc3f7, #0288d1);
    border-radius: var(--radius-full);
    width: 0%;
    transition: width 2s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.seats-bar-fill.animated {
    width: var(--target-width, 91%);
}

.seats-text {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
}

/* ===== ERROR MSG ===== */
.error-msg {
    display: block;
    font-size: 11px;
    color: var(--red-500);
    margin-top: 4px;
    min-height: 14px;
}

/* ===== FORM SUCCESS ===== */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 56px;
    color: var(--green-500);
    margin-bottom: 16px;
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 10px;
}

.form-success p {
    font-size: 14px;
    color: var(--gray-500);
}

/* ===== WHY SECTION ===== */
.why-section {
    background: #fef9e7;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-yellow);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

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

.why-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(245, 197, 24, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
    color: var(--yellow-500);
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ===== INVESTMENT SECTION ===== */
.investment-section {
    background: var(--navy-900);
    position: relative;
    z-index: 10;
    color: var(--white);
}

.investment-section .section-tag {
    color: var(--yellow-400);
}

.investment-section .section-title {
    color: var(--white);
}

.investment-section .section-subtitle {
    color: rgba(255, 255, 255, 0.5);
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.investment-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 24px 24px;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.investment-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    z-index: -1;
    background: linear-gradient(135deg, rgba(245,197,24,0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.investment-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-4px);
    border-color: rgba(245, 197, 24, 0.25);
}

.investment-card:hover::after {
    opacity: 1;
}

.investment-icon {
    font-size: 32px;
    color: var(--yellow-400);
    margin-bottom: 20px;
    display: inline-block;
}

.investment-card h3 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.investment-highlight {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.investment-card p:not(.investment-highlight) {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

@media (max-width: 991px) {
    .investment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .investment-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== PROGRAMS SECTION ===== */
.programs-section {
    background: #FEF9E7;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}

.program-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(12, 35, 64, 0.08);
    border: 1px solid rgba(12, 35, 64, 0.06);
    transition: all var(--transition-normal);
    position: relative;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 2;
}

.program-card:nth-child(1)::before {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.program-card:nth-child(2)::before {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.program-card:nth-child(3)::before {
    background: linear-gradient(90deg, #8b5cf6, #a78bfa);
}

.program-card:nth-child(4)::before {
    background: linear-gradient(90deg, #14b8a6, #2dd4bf);
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(12, 35, 64, 0.15);
}

.program-card-header {
    padding: 32px 24px 20px;
    text-align: center;
    font-size: 36px;
    color: var(--white);
    position: relative;
}

.program-card-header i {
    width: 68px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.program-card-header.marketing {
    background: linear-gradient(145deg, #f59e0b, #d97706);
}

.program-card-header.marketing i {
    background: rgba(255, 255, 255, 0.2);
}

.program-card-header.finance {
    background: linear-gradient(145deg, #3b82f6, #1d4ed8);
}

.program-card-header.finance i {
    background: rgba(255, 255, 255, 0.2);
}

.program-card-header.hr {
    background: linear-gradient(145deg, #8b5cf6, #6d28d9);
}

.program-card-header.hr i {
    background: rgba(255, 255, 255, 0.2);
}

.program-card-header.it {
    background: linear-gradient(145deg, #14b8a6, #0d9488);
}

.program-card-header.it i {
    background: rgba(255, 255, 255, 0.2);
}

.program-card-body {
    padding: 24px;
}

.program-card-body h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 10px;
}

.program-card-body p {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 16px;
    line-height: 1.7;
}

.program-highlights {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.program-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--navy-900);
    font-weight: 500;
    padding: 6px 0;
    border-bottom: 1px solid var(--gray-100);
}

.program-highlights li:last-child {
    border-bottom: none;
}

.program-highlights li i {
    color: var(--yellow-500);
    font-size: 12px;
    flex-shrink: 0;
}

.program-info-bar {
    background: var(--navy-900);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.info-item i {
    color: var(--yellow-400);
    font-size: 16px;
}

.info-item strong {
    color: var(--white);
}

/* ===== VALUE ADDED COURSES ===== */
.value-added-section {
    background: var(--white);
}

.value-added-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--yellow-500);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: rgba(245, 197, 24, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--yellow-500);
    transition: all var(--transition-fast);
}

.value-card:hover .value-icon {
    background: var(--yellow-500);
    color: var(--navy-900);
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ===== PLACEMENTS SECTION ===== */
.placements-section {
    background: var(--navy-900);
    color: var(--white);
}

.placements-section .section-tag {
    color: var(--yellow-400);
}

.placements-section .section-title {
    color: var(--white);
}

.placements-section .section-subtitle {
    color: rgba(255, 255, 255, 0.5);
}

.placement-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.placement-stat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 32px 20px;
    text-align: center;
    transition: all var(--transition-normal);
}

.placement-stat-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-4px);
    border-color: rgba(245, 197, 24, 0.25);
}

.placement-stat-icon {
    font-size: 26px;
    color: var(--yellow-500);
    margin-bottom: 14px;
}

.placement-stat-value {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.placement-stat-value .stat-currency,
.placement-stat-value .stat-unit {
    font-size: 16px;
    font-weight: 600;
    color: var(--yellow-400);
}

.placement-stat-value .stat-currency {
    margin-right: 2px;
}

.placement-stat-value .counter {
    color: var(--white);
}

.placement-stat-label {
    font-size: 12px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* ===== RECRUITERS ===== */
.recruiters-section {
    background: #fef9e7;
}

.recruiter-logos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.recruiter-logo-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 24px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.recruiter-logo-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--yellow-500);
}

.recruiter-logo-card img {
    max-height: 44px;
    max-width: 100%;
    object-fit: contain;
    transition: all var(--transition-fast);
}

.recruiter-logo-card img.logo-lg {
    max-height: 64px;
}

/* ===== CAMPUS ===== */
.campus-section {
    background: var(--white);
}

.campus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.campus-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: all var(--transition-normal);
}

.campus-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.campus-card-icon {
    width: 56px;
    height: 56px;
    background: var(--navy-900);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 20px;
    color: var(--yellow-400);
}

.campus-card h3 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 8px;
}

.campus-card p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ===== ADMISSIONS ===== */
.admissions-section {
    background: #fef9e7;
}

.timeline {
    position: relative;
    max-width: 650px;
    margin: 0 auto 44px;
    padding-left: 56px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--yellow-500), var(--navy-700));
}

.timeline-item {
    position: relative;
    padding: 0 0 36px 26px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-number {
    position: absolute;
    left: -42px;
    top: 0;
    width: 44px;
    height: 44px;
    background: var(--gradient-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 15px;
    color: var(--navy-900);
    box-shadow: 0 4px 15px rgba(245, 197, 24, 0.3);
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 6px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

.eligibility-bar {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
}

.eligibility-bar h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.eligibility-bar h3 i {
    color: var(--yellow-500);
}

.eligibility-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.eligibility-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--gray-600);
}

.eligibility-item i {
    color: var(--green-500);
    margin-top: 3px;
    flex-shrink: 0;
}

/* ===== CTA BANNER ===== */
.cta-section {
    padding: 40px 0;
    background: var(--white);
}

.cta-banner {
    background: var(--gradient-hero);
    border-radius: var(--radius-xl);
    padding: 48px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 280px;
    height: 280px;
    background: var(--yellow-500);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.1;
}

.cta-banner-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(22px, 4vw, 30px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.cta-banner-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    max-width: 480px;
    line-height: 1.6;
}

.cta-banner-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* ===== CONTACT ===== */
.contact-section {
    background: var(--gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-normal);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: var(--navy-900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 18px;
    color: var(--yellow-400);
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.8;
}

.contact-card a {
    color: var(--navy-900);
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--yellow-500);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-950);
    color: var(--white);
    padding: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 12px;
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--white);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--yellow-500);
    color: var(--navy-900);
}

/* ===== FLOATING CONTACT BUTTONS ===== */
.floating-contacts {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 990;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.float-phone {
    background: #0288d1;
}

.float-whatsapp {
    background: #25d366;
}

/* ===== FLOATING CTA ===== */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 990;
    display: none;
    align-items: center;
    gap: 8px;
    background: var(--yellow-500);
    color: var(--navy-900);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    padding: 12px 22px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(245, 197, 24, 0.4);
    transition: all var(--transition-normal);
    text-decoration: none;
}

.floating-cta.visible {
    display: flex;
}

.floating-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(245, 197, 24, 0.5);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.6s var(--ease);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .top-contact-items {
        gap: 20px;
    }

    .top-contact-value {
        font-size: 11px;
    }

    .hero-split {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 40px 0;
    }

    .hero-text {
        text-align: left;
    }

    .hero-form-card {
        max-width: 480px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .recruiter-logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 36px 24px;
    }

    .cta-banner-text p {
        margin: 0 auto;
    }

    .cta-banner-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-py: 60px;
    }

    .top-contact-items {
        display: none;
    }

    .header-inner {
        justify-content: space-between;
        padding: 16px 8px;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav-overlay {
        display: block;
    }

    .logo {
        margin-right: 0;
    }

    .logo-img {
        height: 42px;
    }

    .breadcrumb-bar {
        display: none;
    }

    .hero {
        padding: 16px 0;
    }

    .hero-bg-pattern {
        left: 16px;
        right: 16px;
        top: 16px;
        bottom: 16px;
        border-radius: 20px;
    }

    .hero-split {
        padding: 32px 32px 36px;
    }

    /* Effectively provides 16px internal padding (32-16) */

    .hero-text {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
        width: 100%;
    }

    .hero-actions .btn-brochure {
        width: 100%;
        justify-content: center;
    }

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

    .hero-collab-badge {
        display: flex;
        flex-direction: column;
        gap: 8px;
        text-align: center;
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
        margin: 0 auto 16px;
    }

    .collab-logos {
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
    }

    .hero-highlight-tag {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-duration {
        justify-content: center;
        text-align: center;
        margin-bottom: 24px;
    }

    .program-info-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .timeline {
        padding-left: 48px;
    }

    .timeline::before {
        left: 16px;
    }

    .timeline-number {
        left: -38px;
        width: 38px;
        height: 38px;
        font-size: 13px;
    }

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

    .floating-contacts {
        right: 12px;
    }

    .float-btn {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

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

@media (max-width: 480px) {
    .urgency-bar p {
        font-size: 11px;
    }

    .logo-img {
        height: 36px;
    }

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

    .hero-actions {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-form-card {
        padding: 24px 18px 16px;
    }

    .value-added-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .placement-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .placement-stat-card {
        padding: 20px 12px;
    }

    .hero-highlight-tag {
        font-size: 11px;
        padding: 8px 14px;
    }

    .cta-banner-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .campus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}