/* ==========================================================================
   CREATIFY ACADEMY - DESIGN SYSTEM & STYLESHEET
   Accio Jobs Inspired, Premium, Highly Responsive & Conversion-Focused
   ========================================================================== */

/* --- Typography & System Tokens --- */
:root {
    /* Color Palette (HSL Tailored) */
    --primary-h: 242; /* Indigo/Royal */
    --primary: hsl(var(--primary-h), 82%, 60%);
    --primary-dark: hsl(var(--primary-h), 82%, 50%);
    --primary-light: hsl(var(--primary-h), 82%, 96%);
    --primary-glow: hsla(var(--primary-h), 82%, 60%, 0.15);

    --secondary-h: 271; /* Violet/Purple */
    --secondary: hsl(var(--secondary-h), 91%, 65%);
    --secondary-dark: hsl(var(--secondary-h), 91%, 55%);
    --secondary-glow: hsla(var(--secondary-h), 91%, 65%, 0.15);

    --accent-h: 150; /* Teal/Emerald (Growth/Placement) */
    --accent: hsl(var(--accent-h), 84%, 40%);
    --accent-dark: hsl(var(--accent-h), 84%, 30%);
    --accent-light: hsl(var(--accent-h), 84%, 95%);
    --accent-glow: hsla(var(--accent-h), 84%, 40%, 0.15);

    --dark-h: 222; /* Slate Blue */
    --bg-dark: hsl(var(--dark-h), 47%, 9%);
    --bg-dark-card: hsl(var(--dark-h), 47%, 14%);
    --text-dark-pure: hsl(var(--dark-h), 47%, 95%);
    --text-dark-muted: hsl(var(--dark-h), 20%, 70%);

    --bg-light: hsl(210, 40%, 98%);
    --bg-card: hsl(0, 0%, 100%);
    --text-light: hsl(var(--dark-h), 47%, 15%);
    --text-muted: hsl(var(--dark-h), 15%, 45%);
    --border-light: hsl(var(--dark-h), 15%, 90%);
    --border-focus: hsl(var(--primary-h), 82%, 75%);

    /* Layout & Utilities */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --box-shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --box-shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -2px rgba(15, 23, 42, 0.04);
    --box-shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.12), 0 10px 10px -5px rgba(15, 23, 42, 0.06);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base & Resets --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-light);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.25;
}

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

input, select, textarea, button {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

/* --- Layout Containers --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Navigation Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--box-shadow-sm);
    padding: 12px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition-smooth);
}

.site-header.scrolled .header-container {
    height: 65px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-light);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.3);
}

.logo-accent {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 550;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    transition: var(--transition-smooth);
}

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

.btn-nav-cta {
    padding: 10px 22px;
    font-size: 0.9rem;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

.hamburger-menu .bar {
    width: 100%;
    height: 2.5px;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* --- Buttons System --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.45);
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
}

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

.btn-secondary {
    background-color: var(--accent);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
    background-color: var(--accent-dark);
}

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

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 1.5px solid var(--border-light);
}

.btn-outline:hover {
    background-color: var(--primary-light);
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
    border-radius: var(--border-radius-md);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-full-width {
    width: 100%;
}

/* --- Section Global Commons --- */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    background-color: var(--primary-light);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* --- Hero Section --- */
.hero-section {
    padding-top: 160px;
    padding-bottom: 100px;
    background: radial-gradient(100% 100% at 50% 0%, hsla(var(--primary-h), 82%, 97%, 0.6) 0%, hsla(var(--secondary-h), 91%, 98%, 0.4) 60%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.badge-container {
    margin-bottom: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: white;
    border: 1px solid rgba(99, 102, 241, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-dark);
    box-shadow: var(--box-shadow-sm);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtext {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 550px;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.1;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 35px;
    background-color: var(--border-light);
}

/* Hero Visual Box styling */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.main-visual {
    width: 100%;
    max-width: 440px;
    height: 440px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(168, 85, 247, 0.05));
    border: 2px solid white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-lg);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.decor-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
}

.circle-1 {
    width: 200px;
    height: 200px;
    background-color: rgba(99, 102, 241, 0.15);
    top: 10%;
    left: 10%;
}

.circle-2 {
    width: 180px;
    height: 180px;
    background-color: rgba(168, 85, 247, 0.15);
    bottom: 10%;
    right: 10%;
}

.creative-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    z-index: 2;
    padding: 24px;
    width: 100%;
}

.creative-box {
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(15, 23, 42, 0.04);
}

.creative-box:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--box-shadow-lg);
}

.creative-box svg {
    color: var(--primary);
}

.creative-box.design-pen svg { color: var(--secondary); }
.creative-box.seo-chart svg { color: var(--accent); }
.creative-box.tools-canva svg { color: #E11D48; }

.creative-box span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light);
    text-align: center;
}

.placement-alert {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: white;
    padding: 12px 20px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--box-shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    border: 1px solid rgba(15, 23, 42, 0.05);
    animation: bounce 6s infinite ease-in-out;
}

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

.alert-icon {
    width: 32px;
    height: 32px;
    background-color: var(--accent-light);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alert-text {
    display: flex;
    flex-direction: column;
}

.alert-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light);
}

.alert-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --- Programs Section --- */
.programs-section {
    background-color: white;
}

.programs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 50px;
}

.program-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    border: 1.5px solid var(--border-light);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-lg);
    border-color: rgba(99, 102, 241, 0.3);
}

.program-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.program-badge.badge-accent {
    background-color: var(--accent-light);
    color: var(--accent-dark);
}

.program-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: var(--box-shadow-sm);
    margin-bottom: 24px;
    border: 1px solid rgba(15, 23, 42, 0.04);
}

.program-icon-wrapper.wrapper-accent {
    color: var(--accent);
}

.program-name {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.program-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.meta-item svg {
    color: var(--primary);
}

.program-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.program-details {
    margin-bottom: 28px;
}

.detail-title {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.detail-list {
    list-style: none;
}

.detail-list li {
    font-size: 0.9rem;
    color: var(--text-muted);
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.detail-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 800;
}

.program-outcomes {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
    margin-bottom: 32px;
}

.outcome-title {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
}

.outcome-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background-color: white;
    border: 1px solid var(--border-light);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.program-actions {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 12px;
}

.programs-cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.04), rgba(168, 85, 247, 0.04));
    border: 1px solid rgba(99, 102, 241, 0.1);
    padding: 24px 32px;
    border-radius: var(--border-radius-md);
    margin-top: 48px;
}

.programs-cta-bar p {
    font-weight: 700;
    color: var(--text-light);
    font-size: 1.05rem;
}

/* --- Placement Section --- */
.placements-section {
    background-color: var(--bg-dark);
    position: relative;
    color: white;
}

.placement-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: start;
}

.text-white {
    color: white !important;
}

.text-gray {
    color: var(--text-dark-muted) !important;
}

.placement-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 36px;
}

.feature-card {
    display: flex;
    gap: 16px;
}

.f-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(99, 102, 241, 0.15);
    color: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.f-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.f-text p {
    font-size: 0.9rem;
    color: var(--text-dark-muted);
}

.placement-logos-box {
    background-color: var(--bg-dark-card);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    border: 1.5px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.placement-logos-box h3 {
    font-size: 1.15rem;
    color: white;
    text-align: center;
    margin-bottom: 8px;
}

.logos-subtitle {
    font-size: 0.8rem;
    color: var(--text-dark-muted);
    text-align: center;
    margin-bottom: 32px;
}

/* Infinite Logo Slider */
.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.ticker-track {
    display: flex;
    gap: 32px;
    width: max-content;
    animation: scroll 20s linear infinite;
}

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

.ticker-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition-smooth);
    width: 90px;
    flex-shrink: 0;
}

.ticker-logo:hover {
    color: white;
    transform: scale(1.05);
}

.ticker-logo span {
    font-size: 0.75rem;
    font-weight: 600;
}

/* --- Why Choose Us Section --- */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.card-glass {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid white;
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--box-shadow-md);
    transition: var(--transition-smooth);
}

.card-glass:hover {
    box-shadow: var(--box-shadow-lg);
}

.highlighted-column {
    background: linear-gradient(135deg, hsla(var(--primary-h), 82%, 98%, 0.8), hsla(var(--secondary-h), 91%, 98%, 0.8));
    border: 1.5px solid rgba(99, 102, 241, 0.15);
}

.column-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.icon-bubble {
    width: 48px;
    height: 48px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bubble.bubble-accent {
    background-color: var(--accent-light);
    color: var(--accent);
}

.column-header h3 {
    font-size: 1.25rem;
    font-weight: 800;
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-list li {
    display: flex;
    gap: 16px;
}

.benefit-list li .b-icon {
    width: 28px;
    height: 28px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8rem;
}

.benefit-list li .b-icon.icon-accent {
    background-color: var(--accent-light);
    color: var(--accent);
}

.benefit-list li .b-content h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.benefit-list li .b-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- Success Stories Slider --- */
.success-section {
    background-color: white;
}

.slider-outer-container {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
}

.slider-wrapper {
    position: relative;
    min-height: 290px;
    display: flex;
    align-items: center;
}

.slide-card {
    position: absolute;
    width: 100%;
    background-color: var(--bg-light);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    border: 1.5px solid var(--border-light);
    box-shadow: var(--box-shadow-sm);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
    z-index: 1;
}

.slide-card.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    position: relative;
    z-index: 2;
}

.slide-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.student-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    box-shadow: var(--box-shadow-sm);
}

.gradient-avatar-1 { background: linear-gradient(135deg, #FF6B6B, #FF8E53); }
.gradient-avatar-2 { background: linear-gradient(135deg, #4E65FF, #92EFFD); }
.gradient-avatar-3 { background: linear-gradient(135deg, #11998e, #38ef7d); }
.gradient-avatar-4 { background: linear-gradient(135deg, #FC466B, #3F5EFB); }
.gradient-avatar-5 { background: linear-gradient(135deg, #f12711, #f5af19); }

.profile-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
}

.role-placed {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.placement-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-dark);
    background-color: var(--accent-light);
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 4px;
}

.slide-quote {
    position: relative;
    margin-bottom: 28px;
}

.quote-icon {
    position: absolute;
    top: -24px;
    left: -10px;
    font-size: 4rem;
    font-family: var(--font-heading);
    color: rgba(99, 102, 241, 0.08);
    line-height: 1;
}

.slide-quote p {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.placed-metric {
    display: flex;
    align-items: center;
    gap: 8px;
}

.metric-num {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent);
}

.metric-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Slider Controllers */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 36px;
}

.slider-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: white;
    border: 1.5px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition-smooth);
}

.slider-arrow:hover {
    background-color: var(--primary-light);
    color: var(--primary);
    border-color: var(--primary);
    transform: scale(1.05);
}

.slider-dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--border-light);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dots .dot.active {
    width: 24px;
    border-radius: 50px;
    background-color: var(--primary);
}

/* --- FAQ Section (Accordion) --- */
.faq-accordion-container {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border: 1.5px solid var(--border-light);
    border-radius: var(--border-radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--border-focus);
}

.faq-trigger {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-light);
}

.faq-icon-status {
    width: 28px;
    height: 28px;
    background-color: var(--bg-light);
    color: var(--text-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.faq-item.expanded .faq-icon-status {
    transform: rotate(45deg);
    background-color: var(--primary-light);
    color: var(--primary);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-panel-content {
    padding: 0 30px 24px 30px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Contact & Lead Capture --- */
.contact-section {
    background-color: var(--bg-dark);
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 40px 0;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cd-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

.cd-text {
    display: flex;
    flex-direction: column;
}

.cd-text span:first-child {
    font-size: 0.8rem;
    color: var(--text-dark-muted);
    font-weight: 600;
}

.cd-text a, .cd-text span:last-child {
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

.cd-text a:hover {
    color: var(--secondary);
}

.social-links-box h5 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark-muted);
    margin-bottom: 12px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.social-icons a:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Contact Form Card details */
.contact-form-panel {
    color: var(--text-light);
}

.contact-form-panel h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.contact-form-panel p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.lead-capture-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light);
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    background-color: var(--bg-light);
    border: 1.5px solid var(--border-light);
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.form-group input::placeholder {
    color: #94A3B8;
}

.form-group input:focus, .form-group select:focus {
    background-color: white;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

/* Phone input customized */
.phone-input-wrap {
    display: flex;
    align-items: center;
    border-radius: var(--border-radius-sm);
    background-color: var(--bg-light);
    border: 1.5px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.phone-input-wrap:focus-within {
    background-color: white;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.country-code {
    padding: 0 12px 0 16px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-muted);
    border-right: 1.5px solid var(--border-light);
}

.phone-input-wrap input {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* Validation errors styling */
.form-group.invalid input, .form-group.invalid select, .phone-input-wrap.invalid {
    border-color: #EF4444;
    background-color: #FEF2F2;
}

.form-group .error-msg {
    display: none;
    font-size: 0.75rem;
    font-weight: 600;
    color: #EF4444;
}

.form-group.invalid .error-msg {
    display: block;
}

/* Form Success Container */
.form-success-container {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 10px;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.success-icon {
    width: 64px;
    height: 64px;
    background-color: var(--accent-light);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: var(--box-shadow-md);
}

.form-success-container h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-light);
}

.form-success-container p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* --- Footer Area --- */
.site-footer {
    background-color: #0A0F1D;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 56px;
    padding-top: 80px;
    padding-bottom: 60px;
}

.footer-brand-col .logo {
    color: white;
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--text-dark-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer-grid h4 {
    font-size: 1rem;
    color: white;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-grid h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.footer-links a {
    color: var(--text-dark-muted);
    font-size: 0.9rem;
    font-weight: 550;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 6px;
}

.footer-contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-info li {
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-dark-muted);
}

.footer-contact-info li svg {
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-info li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 30px 0;
}

.fb-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright {
    font-size: 0.8rem;
    color: var(--text-dark-muted);
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-links a {
    font-size: 0.8rem;
    color: var(--text-dark-muted);
}

.legal-links a:hover {
    color: white;
}

.dot-separator {
    width: 4px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

/* --- Modals Overlay System --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-card {
    background-color: white;
    width: 100%;
    max-width: 500px;
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--box-shadow-lg);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.close-modal-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.close-modal-btn:hover {
    color: var(--text-light);
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 24px;
}

.modal-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.modal-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Modal Content with Scrolls */
.modal-large-scroll {
    max-width: 600px;
}

.modal-body-content {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 8px;
}

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

.modal-body-content::-webkit-scrollbar-thumb {
    background-color: var(--border-light);
    border-radius: 10px;
}

.modal-body-content h4 {
    font-size: 1rem;
    margin-top: 20px;
    margin-bottom: 6px;
}

.modal-body-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

/* --- Floating WhatsApp Widget --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--bg-dark);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--border-radius-sm);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition-smooth);
    box-shadow: var(--box-shadow-md);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* --- CROSS-DEVICE RESPONSIVE BREAKPOINTS (Mobile First Styles) --- */

/* Mobile Phones (up to 767px) */
@media (max-width: 767px) {
    /* Base */
    section { padding: 60px 0; }
    .section-title { font-size: 1.75rem; }
    .section-desc { font-size: 0.95rem; }

    /* Navigation menu override */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        gap: 24px;
        padding: 40px 24px;
        transition: var(--transition-smooth);
        z-index: 1000;
        box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.05);
        align-items: flex-start;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger-menu {
        display: flex;
    }

    /* Menu active states for bars */
    .hamburger-menu.active .bar:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }
    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger-menu.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .btn-nav-cta {
        width: 100%;
        margin-top: 16px;
    }

    /* Hero Section */
    .hero-section { padding-top: 120px; padding-bottom: 60px; }
    .hero-container { grid-template-columns: 1fr; gap: 32px; }
    .hero-title { font-size: 2.25rem; }
    .hero-subtext { font-size: 1rem; }
    .hero-ctas { flex-direction: column; width: 100%; }
    .hero-ctas .btn { width: 100%; }
    .hero-stats { justify-content: space-between; }
    
    .hero-visual { display: none; } /* Hide complex visual on mobile to keep focus clean */

    /* Programs Grid */
    .programs-grid { grid-template-columns: 1fr; gap: 24px; }
    .program-card { padding: 24px; }
    .program-actions { grid-template-columns: 1fr; }
    .programs-cta-bar { flex-direction: column; text-align: center; gap: 16px; padding: 24px; }

    /* Placement Grid */
    .placement-layout { grid-template-columns: 1fr; gap: 40px; }
    .placement-logos-box { padding: 20px 16px; }

    /* Why Grid */
    .why-grid { grid-template-columns: 1fr; gap: 24px; }
    .card-glass { padding: 24px; }
    .column-header { margin-bottom: 24px; }

    /* Success Testimonial slider card */
    .slide-card { padding: 24px; }
    .slide-profile { margin-bottom: 16px; }
    .slide-quote p { font-size: 0.95rem; }
    .quote-icon { font-size: 3rem; top: -16px; }
    .slider-wrapper { min-height: 360px; }

    /* Contact Grid */
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .card-glass { padding: 24px; }

    /* Footer Grid */
    .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-top: 50px; }
    .fb-container { flex-direction: column; gap: 16px; text-align: center; }

    /* Modals Card */
    .modal-card { padding: 24px 16px; }
    .close-modal-btn { top: 16px; right: 16px; }
    
    /* Widgets float */
    .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
    .whatsapp-tooltip { display: none !important; } /* Tooltip hidden on touch screen mobile */
}

/* Tablets & Small Laptops (768px to 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    section { padding: 80px 0; }
    .section-title { font-size: 2rem; }

    /* Hero Section */
    .hero-container { grid-template-columns: 1fr; gap: 40px; }
    .hero-title { font-size: 2.75rem; }
    .hero-visual { max-width: 440px; margin: 0 auto; }

    /* Programs Grid */
    .programs-grid { grid-template-columns: 1fr; gap: 32px; }

    /* Placement Grid */
    .placement-layout { grid-template-columns: 1fr; gap: 48px; }

    /* Why Grid */
    .why-grid { grid-template-columns: 1fr; gap: 32px; }

    /* Contact Grid */
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }

    /* Footer Grid */
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand-col { grid-column: span 2; }
}

/* Desktop Styles & Smooth Resizes (1024px and above) */
@media (min-width: 1024px) {
    /* Smooth scaling hover boxes */
    .program-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
}
