/* ==========================================
   CSS VARIABLES & GLOBAL STYLES
   ========================================== */
:root {
    /* Color Palette - Modern Tech Blue/Violet Theme */
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #8b5cf6;
    --accent-color: #22d3ee;
    --success-color: #10b981;
    --warning-color: #f59e0b;

    /* Neutral Colors */
    --bg-dark: #0f172a;
    --bg-dark-secondary: #1e293b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;

    /* Text Colors */
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --text-white: #ffffff;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 30px rgba(99, 102, 241, 0.3);

    /* Borders */
    --border-radius-sm: 0.5rem;
    --border-radius-md: 1rem;
    --border-radius-lg: 1.5rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* ==========================================
   HEADER / NAVBAR
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: var(--spacing-sm) 0;
    z-index: 1000;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-lg);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
}

.logo-section {
    flex: 1;
}

.company-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.1rem;
    line-height: 1.1;
}

.tagline {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-login {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-enroll {
    background: var(--success-color);
    color: var(--text-white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-sm);
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.btn-enroll:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: #0ea574;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    margin-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    opacity: 0.1;
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

/* ==========================================
   ORBITING TECH ICONS
   ========================================== */
.orbit-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    margin-left: -250px;
    margin-top: -250px;
    z-index: 1;
    pointer-events: none;
}

.orbit-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
    animation: orbit 25s linear infinite;
    transition: transform 0.3s ease, background 0.3s ease;
    pointer-events: auto;
}

.orbit-icon:hover {
    transform: scale(1.2) !important;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 30px rgba(99, 102, 241, 0.5);
}

.orbit-1 {
    animation-delay: 0s;
}

.orbit-2 {
    animation-delay: -4.17s;
}

.orbit-3 {
    animation-delay: -8.34s;
}

.orbit-4 {
    animation-delay: -12.5s;
}

.orbit-5 {
    animation-delay: -16.67s;
}

.orbit-6 {
    animation-delay: -20.84s;
}

@keyframes orbit {
    0% {
        transform: rotate(0deg) translateX(200px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(200px) rotate(-360deg);
    }
}

/* ==========================================
   FLOATING SKILL BADGES
   ========================================== */
.skill-badges {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

.skill-badge {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.2);
    animation: float-badge 5s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(99, 102, 241, 0.2);
    transition: transform 0.3s ease;
}

.skill-badge:hover {
    transform: translateY(-10px) scale(1.1) !important;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.skill-badge:nth-child(1) {
    animation-delay: 0s;
}

.skill-badge:nth-child(2) {
    animation-delay: 1.25s;
}

.skill-badge:nth-child(3) {
    animation-delay: 2.5s;
}

.skill-badge:nth-child(4) {
    animation-delay: 3.75s;
}

.badge-icon {
    font-size: 2.5rem;
}

.badge-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

@keyframes float-badge {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-12px) rotate(2deg);
    }

    75% {
        transform: translateY(-8px) rotate(-2deg);
    }
}

/* ==========================================
   HERO STATS
   ========================================== */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    flex-wrap: nowrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal);
    animation: fade-in-up 0.6s ease backwards;
    border: 2px solid rgba(99, 102, 241, 0.1);
    min-width: 140px;
}

.stat-item:nth-child(1) {
    animation-delay: 0.3s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.5s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.7s;
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.25);
    border-color: var(--primary-color);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
    min-width: 80px;
    text-align: center;
}

.stat-label {
    font-size: 0.85rem;
    color: #4f46e5;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse Button Animation */
.pulse-btn {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    50% {
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.6), 0 0 40px rgba(99, 102, 241, 0.4);
    }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
    animation: float-particle 20s infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 30%;
    animation-delay: 4s;
    animation-duration: 12s;
}

.particle:nth-child(4) {
    left: 40%;
    animation-delay: 1s;
    animation-duration: 20s;
}

.particle:nth-child(5) {
    left: 50%;
    animation-delay: 3s;
    animation-duration: 16s;
}

.particle:nth-child(6) {
    left: 60%;
    animation-delay: 5s;
    animation-duration: 14s;
}

.particle:nth-child(7) {
    left: 70%;
    animation-delay: 2.5s;
    animation-duration: 17s;
}

.particle:nth-child(8) {
    left: 80%;
    animation-delay: 4.5s;
    animation-duration: 19s;
}

.particle:nth-child(9) {
    left: 90%;
    animation-delay: 1.5s;
    animation-duration: 13s;
}

.particle:nth-child(10) {
    left: 95%;
    animation-delay: 3.5s;
    animation-duration: 21s;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    font-size: 3rem;
    opacity: 0.15;
    animation: float-icon 6s ease-in-out infinite;
}

.float-icon:nth-child(1) {
    animation-delay: 0s;
}

.float-icon:nth-child(2) {
    animation-delay: 1s;
}

.float-icon:nth-child(3) {
    animation-delay: 2s;
}

.float-icon:nth-child(4) {
    animation-delay: 3s;
}

.float-icon:nth-child(5) {
    animation-delay: 0.5s;
}

.float-icon:nth-child(6) {
    animation-delay: 1.5s;
}

@keyframes float-icon {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Typing Animation */
.typing-text {
    display: inline-block;
}

#typingText {
    display: inline-block;
    min-width: 20px;
}

.cursor {
    display: inline-block;
    animation: blink 0.8s infinite;
    font-weight: 300;
    margin-left: 4px;
    opacity: 1;
}

@keyframes blink {

    0%,
    49% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
    }
}

/* Pulse Button Animation */
.pulse-btn {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    50% {
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.6), 0 0 40px rgba(99, 102, 241, 0.4);
    }
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

.btn-outline-light {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-outline-light:hover {
    background: var(--text-white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* ==========================================
   SECTION STYLES
   ========================================== */
section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
    background: var(--bg-white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

/* ==========================================
   COURSES SECTION
   ========================================== */
.courses {
    background: var(--bg-light);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.course-card {
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid transparent;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: var(--primary-light);
}

.course-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.course-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.course-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-sm);
}

.duration {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.level {
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.level.beginner {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.level.intermediate {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning-color);
}

.level.advanced {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
}

/* ==========================================
   PROJECTS SECTION
   ========================================== */
.projects {
    background: var(--bg-white);
}

.projects-content {
    max-width: 1000px;
    margin: 0 auto;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.project-feature {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.project-feature:hover {
    background: var(--bg-white);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.project-feature h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.project-feature p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.highlight-badge {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--gradient-primary);
    color: var(--text-white);
    border-radius: var(--border-radius-md);
    font-size: 1.125rem;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
}

.highlight-badge span {
    display: inline-block;
    margin: 0 0.5rem;
}

/* ==========================================
   CERTIFICATION SECTION
   ========================================== */
.certification {
    background: var(--bg-light);
}

.certification-content {
    max-width: 800px;
    margin: 0 auto;
}

.certification-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

.certification-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.cert-feature {
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.cert-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.cert-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.cert-feature h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ==========================================
   PLACEMENTS SECTION
   ========================================== */
.placements {
    background: var(--bg-white);
}

.placements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.placement-card {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.placement-card:hover {
    background: var(--bg-white);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.placement-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.placement-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.placement-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.stats-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.stat-card {
    background: var(--gradient-primary);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-xl);
    min-width: 250px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

.stat-label {
    font-size: 1.25rem;
    color: var(--text-white);
    font-weight: 600;
}

/* ==========================================
   REVIEWS SECTION
   ========================================== */
.reviews {
    background: var(--bg-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.review-card {
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border-left: 4px solid var(--primary-color);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.review-avatar {
    font-size: 3rem;
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.reviewer-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.reviewer-college {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.reviewer-course {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.review-text {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.7;
}

/* ==========================================
   FEEDBACK FLIP CARD
   ========================================== */
.feedback-flip-container {
    margin-top: var(--spacing-lg);
    margin-bottom: 120px;
    perspective: 1000px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feedback-flip-card {
    position: relative;
    width: 100%;
    height: 300px;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.feedback-flip-card.flipped {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 300px;
    backface-visibility: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.flip-card-front {
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-content {
    text-align: center;
    padding: var(--spacing-md);
    color: var(--text-white);
}

.flip-card-content .flip-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.flip-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.flip-card-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-sm);
}

.flip-trigger {
    background: var(--bg-white);
    color: var(--primary-color);
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    border-radius: var(--border-radius-md);
}

.flip-trigger:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.flip-card-back {
    background: var(--bg-white);
    transform: rotateY(180deg);
    border: 2px solid var(--primary-light);
    overflow-y: auto;
    height: auto;
    min-height: 250px;
}

.feedback-form-wrapper {
    padding: var(--spacing-md);
}

.flip-back-btn {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    margin-bottom: var(--spacing-sm);
}

.flip-back-btn:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

.feedback-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: var(--spacing-xs);
}

.feedback-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-bottom: var(--spacing-sm);
    padding: 0.4rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--border-radius-sm);
    border-left: 3px solid var(--primary-color);
}

.feedback-form {
    max-width: 100%;
}

.feedback-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xs);
}

.feedback-form .form-group {
    margin-bottom: var(--spacing-xs);
}

.feedback-form label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--bg-light);
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    font-family: var(--font-body);
    transition: all var(--transition-fast);
    background: var(--bg-white);
}

.feedback-form input:focus,
.feedback-form select:focus,
.feedback-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.1);
}

.feedback-form textarea {
    resize: vertical;
    min-height: 50px;
}

.feedback-submit {
    width: 100%;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    margin-top: var(--spacing-xs);
}

@media (max-width: 768px) {
    .feedback-flip-container {
        max-width: 100%;
    }

    .feedback-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta {
    background: var(--gradient-primary);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: var(--spacing-lg);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.footer-description {
    color: var(--text-light);
    line-height: 1.7;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.footer-section p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.social-link:hover {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.developer-credit {
    font-size: 0.875rem;
}

.developer-credit a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.developer-credit a:hover {
    color: var(--accent-color);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding: var(--spacing-lg);
        transition: left var(--transition-normal);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .company-name {
        font-size: 1.25rem;
    }

    .tagline {
        font-size: 0.65rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .courses-grid,
    .projects-grid,
    .placements-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 3rem;
    }
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Scroll animations */
.fade-in {
    animation: fadeIn 1s ease;
}

.slide-in-left {
    animation: slideInFromLeft 0.8s ease;
}

.slide-in-right {
    animation: slideInFromRight 0.8s ease;
}

/* ==========================================
   ENROLLMENT MODAL
   ========================================== */
.enroll-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.enroll-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    max-width: 600px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color var(--transition-fast);
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.enrollment-form .form-group {
    margin-bottom: 1.5rem;
}

.enrollment-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.enrollment-form input,
.enrollment-form textarea,
.enrollment-form select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all var(--transition-fast);
    background: var(--bg-light);
}

.enrollment-form input:focus,
.enrollment-form textarea:focus,
.enrollment-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.enrollment-form select {
    cursor: pointer;
}

.form-message {
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    margin-bottom: 1rem;
    display: none;
    font-size: 0.9rem;
}

.form-message.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    border: 1px solid var(--success-color);
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid #ef4444;
}

.form-actions {
    margin-top: 2rem;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    color: var(--text-white);
    border: none;
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 2rem 1.5rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }
}

/* ==========================================
   INTERNSHIPS SECTION
   ========================================== */
.internships {
    padding: var(--spacing-lg) 0;
    background: var(--bg-white);
}

.internship-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.internship-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto var(--spacing-md);
    line-height: 1.6;
}

.internship-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.internship-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid rgba(99, 102, 241, 0.1);
    text-align: left;
}

.internship-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.internship-card .card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.internship-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.internship-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.internship-card ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.internship-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    margin-top: var(--spacing-md);
    animation: fadeIn 0.5s ease-in-out;
}

.highlight-box h3 {
    color: var(--primary-dark);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.highlight-box p {
    color: var(--text-primary);
    font-size: 1.05rem;
}

/* Hero Highlight */
.hero-highlight {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--primary-color);
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.15);
    animation: bounce-in 1s ease;
}

.hero-highlight p {
    margin: 0;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.hero-highlight strong {
    color: var(--primary-color);
}

@keyframes bounce-in {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    60% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 10px #666;
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
}

/* ==========================================
   IMPROVED RESPONSIVE DESIGN
   ========================================== */

/* Tablet & Smaller Laptops (max-width: 1024px) */
@media (max-width: 1024px) {
    :root {
        --spacing-xl: 4rem;
        --spacing-lg: 3rem;
    }

    .container {
        padding: 0 var(--spacing-md);
    }

    .hero-title {
        font-size: 3rem;
    }

    .orbit-container {
        transform: scale(0.8) translate(-50%, -50%);
        transform-origin: top left;
        left: 55%;
    }

    .hero-stats {
        gap: var(--spacing-sm);
    }

    .course-card,
    .project-feature {
        padding: 1.5rem;
    }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-lg: 2.5rem;
        --spacing-md: 1.5rem;
    }

    /* Fix Orbit Animation on Mobile */
    .orbit-container {
        transform: scale(0.5);
        opacity: 0.15;
        /* Fade out to make text readable */
        left: 50%;
        top: 40%;
        margin-left: -250px;
        margin-top: -250px;
    }

    /* Hero Section Fixes */
    .hero {
        align-items: center;
        padding-top: 100px;
        /* Space for navbar */
        min-height: auto;
        padding-bottom: var(--spacing-xl);
    }

    .hero-content {
        position: relative;
        z-index: 2;
        /* Ensure text is above orbit */
        padding: 0 var(--spacing-sm);
    }

    .hero-title {
        font-size: 2.5rem;
        min-height: auto;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .stat-item {
        flex: 1 1 120px;
        /* Grow, Shrink, Basis */
        min-width: 120px;
        padding: 1rem;
    }

    /* Navbar Mobile Polish */
    .nav-menu {
        background: rgba(255, 255, 255, 0.98);
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 1.1rem;
        width: 100%;
        display: block;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .btn-login,
    .btn-enroll {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }

    /* Footer Fixes */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .social-links {
        align-items: center;
    }

    /* Card Grids */
    .courses-grid,
    .projects-grid,
    .placements-grid,
    .reviews-grid,
    .certification-features {
        grid-template-columns: 1fr;
        /* Single column on mobile */
    }

    .internship-grid {
        grid-template-columns: 1fr;
    }

    /* Feedback Card Mobile */
    .feedback-flip-container {
        perspective: none;
        /* Disable 3D on mobile for better touch support if needed */
    }

    .feedback-flip-card {
        height: auto;
        min-height: 400px;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .company-name {
        font-size: 1.1rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
        font-size: 24px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--border-radius-md);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(99, 102, 241, 0.2);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    font-family: var(--font-primary);
    transition: all var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
    }
}

/* ==========================================
/* ==========================================
   HIRING BANNER STYLES
   ========================================== */
.hiring-banner {
    background: #ffffff;
    padding: 50px 0;
    text-align: center;
    color: #333;
    border: 2px solid #10b981;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.15);
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
    border-radius: 12px;
}

.hiring-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.hiring-text {
    flex: 1;
    text-align: left;
}

.hiring-text h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #10b981;
}

.hiring-text p {
    font-size: 1.25rem;
    color: #555;
    margin: 0;
    font-weight: 500;
}

.hiring-cta .btn-warning {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hiring-cta .btn-warning:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

/* File Input Styling */
.file-input {
    padding: 10px;
    background: #f3f4f6;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    width: 100%;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.file-input:hover {
    border-color: #10b981;
}

@media (max-width: 768px) {
    .hiring-banner {
        padding: 40px 20px;
    }

    .hiring-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .hiring-text {
        text-align: center;
    }

    .hiring-text h2 {
        font-size: 1.8rem;
    }
}

/* ==========================================
   HIRING POPUP & FLOAT
   ========================================== */
.hiring-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Backdrop overlay */
    backdrop-filter: blur(5px);
    z-index: 9999;
    align-items: center;
    /* Flex centering perpendicular */
    justify-content: center;
    /* Flex centering main axis */
    animation: fadeIn 0.3s ease;
}

.hiring-popup-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 90%;
    max-width: 400px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    position: relative;
    animation: scaleIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.hiring-popup h3 {
    margin-bottom: 0.5rem;
    color: #10b981;
    font-size: 1.5rem;
}

.hiring-popup p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 0.95rem;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    line-height: 1;
}

.popup-close:hover {
    color: #333;
}

/* Float Icon */
.hiring-float-icon {
    display: none;
    /* Hidden by default */
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 9998;
    align-items: center;
    gap: 10px;
    border: 2px solid #10b981;
    transition: all 0.3s ease;
    animation: slideInFromLeft 0.5s ease;
}

.hiring-float-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.float-icon {
    font-size: 1.2rem;
}

.float-text {
    font-weight: 700;
    color: #10b981;
    font-size: 0.95rem;
}

/* ==========================================
   FLIP CARD STYLES (COURSES)
   ========================================== */
.course-flip-container {
    background-color: transparent;
    perspective: 1000px;
    height: 420px;
    /* Fixed height for the flip effect */
    margin-bottom: var(--spacing-md);
}

.course-flip-card {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: left;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.course-flip-card.flipped {
    transform: rotateY(180deg);
}

.course-flip-front,
.course-flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

/* Front Side Adjustments */
.course-flip-front.course-card {
    /* Override existing course-card hover transform to prevent conflicts */
    transform: none !important;
    z-index: 2;
    background: var(--bg-white);
    justify-content: space-between;
    /* Space out content on front */
    width: 100%;
    height: 100%;
    padding: var(--spacing-md);
    margin: 0;
}

/* Back Side Styles */
.course-flip-back {
    background-color: var(--bg-white);
    transform: rotateY(180deg);
    padding: var(--spacing-md);
    border: 2px solid var(--primary-light);
    overflow-y: auto;
}

.course-flip-back h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    border-bottom: 2px solid rgba(99, 102, 241, 0.1);
    padding-bottom: 0.5rem;
}

.course-flip-back ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.course-flip-back ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.course-flip-back ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.btn-enroll-small {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-weight: 600;
    font-family: var(--font-primary);
    width: 100%;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-enroll-small:hover {
    box-shadow: var(--shadow-lg);
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.view-details {
    margin-top: auto;
    padding-top: var(--spacing-sm);
    text-align: center;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.view-details i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.course-flip-container:hover .view-details i {
    transform: translateX(5px);
}