/* ==========================================================================
   Dayananda Sagar Business School (DSBS) - Design System & Custom Styles
   ========================================================================== */

/* 1. VARIABLES & THEME CONFIGURATION */
:root {
    /* Color Palette */
    --primary-navy: #0B192C;
    --secondary-navy: #1E3E62;
    --accent-blue: #0F7EC3;
    --accent-blue-rgb: 15, 126, 195;
    --accent-gold: #F1C40F;
    --accent-gold-dark: #D4AF37;
    --accent-gold-rgb: 241, 196, 15;

    /* Neutral Colors */
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --text-light: #F8FAFC;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --bg-gray: #F1F5F9;

    /* Layout Details */
    --navbar-height: 80px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(11, 25, 44, 0.15);
    --shadow-glow: 0 0 20px rgba(241, 196, 15, 0.35);
}

/* 2. RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-navy);
    font-weight: 700;
    line-height: 1.25;
}

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

a:hover {
    color: var(--secondary-navy);
}

ul {
    list-style: none;
}

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

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

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

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

.btn-primary {
    background-color: var(--accent-blue);
    color: var(--bg-white);
    box-shadow: 0 4px 14px rgba(15, 126, 195, 0.4);
}

.btn-primary:hover {
    background-color: #0c69a3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 126, 195, 0.5);
    color: var(--bg-white);
}

.btn-secondary {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    box-shadow: 0 4px 14px rgba(241, 196, 15, 0.4);
}

.btn-secondary:hover {
    background-color: var(--accent-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(241, 196, 15, 0.5);
}

.btn-text {
    background: transparent;
    color: var(--text-light);
    padding: 12px 0;
}

.btn-text:hover {
    color: var(--accent-gold);
    transform: translateX(4px);
}

/* Badges */
.badge-container {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
}

.badge-accent {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
}

.badge-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
}

/* Sections Global */
section {
    padding: 80px 0;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-top: 8px;
    margin-bottom: 16px;
}

.sub-heading {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-blue);
    display: block;
}

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

.divider {
    width: 60px;
    height: 4px;
    background-color: var(--accent-gold);
    margin: 16px auto 0;
    border-radius: 2px;
}

/* 4. NAVBAR */
.navbar {
    background-color: var(--bg-white);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    height: 70px;
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.header-logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.navbar.scrolled .header-logo-img {
    height: 45px;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-link {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.92rem;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-blue);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--accent-blue);
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn .bar {
    width: 100%;
    height: 3px;
    background-color: var(--primary-navy);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

/* 5. HERO SECTION */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: calc(var(--navbar-height) + 40px);
    padding-bottom: 100px;
    background: radial-gradient(circle at 10% 20%, var(--secondary-navy) 0%, var(--primary-navy) 90%);
    display: flex;
    align-items: center;
    color: var(--text-light);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 20%, rgba(15, 126, 195, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

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

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 3rem;
    color: var(--bg-white);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(248, 250, 252, 0.85);
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feat-icon {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-top: 2px;
}

.feat-text {
    font-size: 1.05rem;
    color: rgba(248, 250, 252, 0.95);
}

.feat-text strong {
    color: var(--accent-gold);
}

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

/* CRM Form Wrapper */
.hero-form-wrapper {
    animation: fadeInRight 0.8s ease-out;
}


/* CRM Form Wrapper */
.hero-form-wrapper {
    animation: fadeInRight 0.8s ease-out;
}

.form-fallback-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    color: #ffffff;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--accent-gold);
    border-radius: 50%;
    animation: spin 1s infinite linear;
    margin-bottom: 16px;
}

/* 6. QUICK STATS BAR */
.stats-bar {
    padding: 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stats-container {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 30px;
    border-bottom: 4px solid var(--accent-blue);
    text-align: center;
}

.stat-item {
    border-right: 1px solid var(--bg-gray);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-blue);
    font-family: 'Outfit', sans-serif;
    line-height: 1.1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 10px;
}

/* 7. ABOUT DSBS */
.about-section {
    background-color: var(--bg-white);
}

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

.about-text-content h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    line-height: 1.35;
}

.about-text-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.key-features-bullets {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.bullet-item {
    display: flex;
    gap: 16px;
}

.bullet-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    background-color: rgba(15, 126, 195, 0.1);
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.bullet-item h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.bullet-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* About Visual Cards Grid */
.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.image-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: radial-gradient(circle at 30% 30%, rgba(15, 126, 195, 0.05), transparent 70%);
    padding: 10px 0;
}

.visual-card {
    position: relative;
    background: var(--bg-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    padding: 20px 24px;
    width: 90%;
    max-width: 320px;
    border-left: 5px solid var(--accent-blue);
    transition: var(--transition-smooth);
}

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

.v-icon {
    font-size: 1.8rem;
    color: var(--accent-blue);
    display: block;
    margin-bottom: 12px;
}

.v-title {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-navy);
    font-family: 'Outfit', sans-serif;
    margin-bottom: 4px;
}

.v-desc {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.visual-card-1 {
    align-self: flex-start;
}

.visual-card-2 {
    align-self: center;
    border-left-color: var(--accent-gold);
}

.visual-card-2 .v-icon {
    color: var(--accent-gold-dark);
}

.visual-card-3 {
    align-self: flex-end;
    border-left-color: var(--primary-navy);
}

.visual-card-3 .v-icon {
    color: var(--primary-navy);
}

/* 8. PGDM SPECIALIZATIONS */
.specializations-section {
    background-color: var(--bg-gray);
}

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

.spec-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--accent-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

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

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

.spec-card:nth-child(even)::before {
    background-color: var(--accent-gold);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--bg-gray);
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.spec-card:hover .card-icon {
    background-color: var(--accent-blue);
    color: var(--bg-white);
}

.spec-card:nth-child(even):hover .card-icon {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
}

.spec-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.spec-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 20px;
}

.spec-topics {
    border-top: 1px solid var(--bg-gray);
    padding-top: 16px;
}

.spec-topics li {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.spec-topics li::before {
    content: '•';
    color: var(--accent-blue);
    font-weight: 900;
}

.spec-card:nth-child(even) .spec-topics li::before {
    color: var(--accent-gold-dark);
}

/* 9. ACCOLADES & RANKINGS */
.rankings-section {
    background-color: var(--primary-navy);
    color: var(--text-light);
}

.rankings-section .sub-heading {
    color: var(--accent-gold);
}

.rankings-section h2 {
    color: var(--bg-white);
}

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

.rank-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    padding: 30px 24px;
    text-align: center;
    transition: var(--transition-smooth);
}

.rank-card:hover {
    transform: translateY(-8px);
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-gold);
}

.rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: rgba(241, 196, 15, 0.15);
    color: var(--accent-gold);
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.rank-card h3 {
    color: var(--bg-white);
    font-size: 1.8rem;
    margin-bottom: 6px;
}

.rank-source {
    font-size: 0.8rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.rank-desc {
    font-size: 0.88rem;
    color: rgba(248, 250, 252, 0.7);
    margin: 0;
}

/* 10. ADMISSION PROCESS */
.admissions-section {
    background-color: var(--bg-white);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 40px auto 0;
    padding: 20px 0;
}

/* Line connecting steps */
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 45px;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-blue), var(--accent-gold), var(--accent-blue));
}

.timeline-step {
    position: relative;
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-num {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 4px solid var(--accent-blue);
    color: var(--accent-blue);
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.timeline-step:nth-child(even) .step-num {
    border-color: var(--accent-gold);
    color: var(--accent-gold-dark);
}

.timeline-step:hover .step-num {
    transform: scale(1.1);
    background-color: var(--accent-blue);
    color: var(--bg-white);
    border-color: var(--accent-blue);
}

.timeline-step:nth-child(even):hover .step-num {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    border-color: var(--accent-gold);
}

.step-content {
    background-color: var(--bg-light);
    border-radius: var(--border-radius-md);
    padding: 24px 30px;
    flex-grow: 1;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.timeline-step:hover .step-content {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    background-color: var(--bg-white);
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin: 0;
}

/* 11. PLACEMENTS SECTION */
.placements-section {
    background-color: var(--bg-gray);
}

.placements-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.p-stat-box {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    padding: 30px 24px;
    text-align: center;
    transition: var(--transition-smooth);
    border-bottom: 4px solid var(--accent-blue);
}

.p-stat-box:nth-child(even) {
    border-bottom-color: var(--accent-gold);
}

.p-stat-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.p-stat-box i {
    font-size: 1.8rem;
    color: var(--accent-blue);
    margin-bottom: 12px;
}

.p-stat-box:nth-child(even) i {
    color: var(--accent-gold-dark);
}

.p-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--primary-navy);
    line-height: 1.2;
    margin-bottom: 4px;
}

.p-label {
    display: block;
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.recruiters-title {
    font-size: 1.45rem;
    margin-bottom: 30px;
}

.recruiters-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.recruiter-card {
    flex: 0 1 calc(20% - 16px);
    min-width: 180px;
    background-color: var(--bg-white);
    border-radius: var(--border-radius-sm);
    padding: 20px 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.recruiter-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.recruiter-logo {
    height: 32px;
    width: auto;
    max-width: 80%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.65;
    transition: var(--transition-smooth);
}

.recruiter-logo.flipkart-logo {
    max-width: 95%;
    height: 36px;
}

.recruiter-card:hover .recruiter-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* 12. FAQ SECTION */
.faq-section {
    background-color: var(--bg-white);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--bg-gray);
    margin-bottom: 12px;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-navy);
    cursor: pointer;
    text-align: left;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--accent-blue);
}

.faq-icon {
    transition: var(--transition-smooth);
    font-size: 0.9rem;
    color: var(--accent-blue);
}

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

.faq-answer p {
    color: var(--text-muted);
    padding: 0 10px 20px;
    font-size: 0.95rem;
    margin: 0;
}

/* Open Accordion Classes */
.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent-gold-dark);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* 13. WHATSAPP FLOAT BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 1.85rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
    color: var(--bg-white);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--primary-navy);
    color: var(--bg-white);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background-color: var(--primary-navy);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    right: 70px;
}

/* 14. FOOTER */
.footer {
    background-color: var(--primary-navy);
    color: rgba(248, 250, 252, 0.7);
    padding: 80px 0 0;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo-link {
    display: inline-block;
}

.footer-logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

.footer-about p {
    margin-bottom: 24px;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.06);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
    background-color: var(--accent-blue);
    color: var(--bg-white);
    transform: translateY(-3px);
}

.footer h3 {
    color: var(--text-light);
    font-size: 1.15rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--accent-gold);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(248, 250, 252, 0.7);
    display: inline-block;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-gold);
    transform: translateX(4px);
}

.footer-contact p {
    margin-bottom: 14px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    line-height: 1.5;
}

.footer-contact i {
    color: var(--accent-gold);
    margin-top: 4px;
}

.footer-contact a {
    color: rgba(248, 250, 252, 0.7);
}

.footer-contact a:hover {
    color: var(--accent-gold);
}

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

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    flex-wrap: wrap;
    gap: 12px;
}

/* 15. RESPONSIVE NAVIGATION & BACKDROP */
.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 25, 44, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--bg-white);
    z-index: 1002;
    transition: cubic-bezier(0.25, 0.8, 0.25, 1) 0.4s;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
}

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

.mobile-nav-header {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--bg-gray);
}

.mobile-nav-header span {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary-navy);
}

.close-btn {
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
    line-height: 1;
}

.mobile-nav-list {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-list a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.05rem;
    display: block;
}

.mobile-nav-list a:hover {
    color: var(--accent-blue);
}

.mobile-cta-li {
    margin-top: 10px;
}

.mobile-cta-li a {
    color: var(--bg-white);
    text-align: center;
}

/* 16. RESPONSIVE MEDIA QUERIES */

/* Desktop & Laptop Breakpoint */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.6rem;
    }

    .stats-container {
        grid-template-columns: repeat(4, 1fr);
        padding: 20px;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}

/* Tablet Breakpoint */
@media (max-width: 1024px) {
    section {
        padding: 60px 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .badge-container {
        justify-content: center;
    }

    .hero-features {
        align-items: center;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-cta-group {
        justify-content: center;
    }

    .hero-form-wrapper {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .stats-bar {
        margin-top: 0;
        padding-top: 40px;
    }

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

    .stat-item {
        border-right: none;
        padding: 10px 0;
    }

    /* Make visual grid cleaner for tablet */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-visual {
        max-width: 600px;
        margin: 0 auto;
    }

    /* Removed fixed visual-card sizing in favor of responsive staggered flex layout */

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

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

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

    .recruiter-card {
        flex: 0 1 calc(33.333% - 14px);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Mobile Breakpoint */
@media (max-width: 768px) {

    .nav-links,
    .nav-cta-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stat-item {
        padding: 8px 0;
        border-bottom: 1px solid var(--bg-gray);
    }

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

    .image-wrapper {
        height: auto;
        gap: 16px;
    }

    .visual-card {
        width: 100%;
        max-width: 320px;
    }

    .visual-card-1,
    .visual-card-2,
    .visual-card-3 {
        align-self: center;
    }

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

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

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

    .timeline-step {
        gap: 20px;
    }

    .step-num {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        border-width: 2px;
    }

    .step-content {
        padding: 16px 20px;
    }

    .placements-stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .recruiter-card {
        flex: 0 1 calc(50% - 10px);
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
}

/* 17. KEYFRAME ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}