/* CSS Variables */
:root {
    --primary: #1e3a5f;
    --primary-dark: #152a45;
    --primary-light: #2d5a8a;
    --accent: #c9a227;
    --accent-hover: #b08d1f;
    --text-dark: #1a1a2e;
    --text-light: #4a4a5a;
    --text-muted: #6b7280;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border: #e2e8f0;
    --success: #10b981;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-light);
}

/* Header */
header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 70px;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateY(-16%);
}

.logo-icon {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-sm);
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.logo-text span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.header-phone:hover {
    background: rgba(201, 162, 39, 0.1);
    color: var(--primary);
}

.header-phone i {
    color: var(--accent);
}

.copy-phone {
    user-select: all;
}

.copy-tooltip {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--success);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.copy-tooltip.show {
    opacity: 1;
    visibility: visible;
    bottom: -35px;
}

.copy-tooltip::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 4px solid var(--success);
}

.btn-header {
    background: var(--accent);
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-header:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 100px 24px 60px;
    position: relative;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.75) 0%, rgba(21, 42, 69, 0.7) 100%);
    z-index: 1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--accent);
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.7;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.trust-badge i {
    color: var(--accent);
}

.urgency-banner {
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid var(--accent);
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 600;
}

.urgency-banner i {
    color: var(--accent);
    font-size: 20px;
}

/* Header Logo Fix */
.header .logo-icon img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}

/* Hide Mobile Menu Lines */
.navbar-toggler {
    display: none;
}

/* Video Iframe Constraint */
.video-wrapper-centered iframe {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 400px;
    max-width: 100%;
    overflow: hidden;
}

/* Header Logo Alignment Fix */
.header {
    padding: 12px 0;
    height: 70px;
    display: flex;
    align-items: center;
}

.header .logo {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 100%;
    height: 100%;
}

.header .logo-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .logo-icon img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}

.header .logo-text {
    flex: 1;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header .logo-text h1 {
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.2;
}

.header .logo-text span {
    font-size: 0.8rem;
    line-height: 1.2;
}

/* Compact Hero Section */
.hero {
    padding: 40px 0;
    min-height: 60vh;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Video Section Below Hero */
.video-section-below-hero {
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.02);
}

.video-container-centered {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper-centered {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-container-centered iframe {
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    width: 100%;
}

/* Improved Form Section */
.form-section-main {
    padding: 60px 0;
    background: var(--bg-light);
}

.form-container-improved {
    max-width: 800px;
    margin: 0 auto;
}

.form-card-improved {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-card-improved .form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-card-improved .form-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-card-improved .form-header p {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0;
}

/* Main Content Area - Side by Side Layout */
.main-content-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
    align-items: stretch;
}

.video-container-main {
    width: 100%;
    height: 100%;
}

.video-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.video-wrapper iframe {
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    min-height: 350px;
    width: 100%;
    flex: 1;
}

.form-container-main {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.form-container-main .form-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.form-container-main .form-card form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Hero Form Layout */
.hero-form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.video-column {
    display: flex;
    flex-direction: column;
}

.form-column {
    display: flex;
    flex-direction: column;
}

.video-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.video-section iframe {
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    min-height: 320px;
    width: 100%;
    height: 100%;
}

.video-caption h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 8px;
}

.video-caption p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
}

/* Form Card */
.form-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-header p {
    color: var(--text-muted);
    font-size: 14px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-group label span {
    color: #ef4444;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group-half {
    margin-bottom: 20px;
}

/* Mobile responsive for form */
@media (max-width: 768px) {
    .header {
        padding: 8px 0;
        height: 60px;
    }
    
    .header .logo {
        gap: 10px;
    }
    
    .header .logo-icon img {
        max-height: 30px;
    }
    
    .header .logo-text {
        line-height: 1.1;
    }
    
    .header .logo-text h1 {
        font-size: 0.9rem;
        margin: 0;
        line-height: 1.1;
    }
    
    .header .logo-text span {
        font-size: 0.7rem;
        line-height: 1.1;
    }
    
    .hero {
        padding: 30px 0;
        min-height: 50vh;
    }
    
    .hero-container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .video-section-below-hero {
        padding: 30px 0;
    }
    
    .video-wrapper-centered {
        padding: 15px;
        margin: 0 5px;
        width: calc(100% - 10px);
    }
    
    .video-wrapper-centered iframe {
        height: 180px;
        width: 100%;
        max-width: 100%;
        border: none;
        box-sizing: border-box;
    }
    
    .form-section-main {
        padding: 40px 0;
    }
    
    .form-container-improved {
        padding: 0 10px;
        margin: 0 5px;
        width: calc(100% - 10px);
    }
    
    .form-card-improved {
        padding: 25px 15px;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-card-improved .form-header h2 {
        font-size: 1.4rem;
    }
    
    .trust-badges {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .trust-badge {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    
    .stats-image {
        min-height: 250px;
    }
    
    .stats-image img {
        border-radius: 8px;
    }
    
    .main-content-area {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 5px;
        margin-top: 20px;
    }
    
    .video-wrapper iframe {
        min-height: 180px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Phone input group styling */
.phone-input-group {
    display: flex;
    align-items: center;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.phone-input-group:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.phone-prefix {
    background: #f3f4f6;
    padding: 12px 16px;
    color: var(--text-dark);
    font-weight: 600;
    border-right: 2px solid #e5e7eb;
    font-size: 16px;
    white-space: nowrap;
}

.phone-input-group .form-control {
    border: none;
    border-radius: 0;
    box-shadow: none;
    flex: 1;
}

.phone-input-group .form-control:focus {
    box-shadow: none;
}

/* Course Choice Dynamic Rows */
.course-choices-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.course-choice-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-choice-row .course-select {
    flex: 1;
}

.course-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.course-add-btn {
    background: var(--accent);
    color: var(--text-dark);
}

.course-add-btn:hover {
    background: var(--accent-hover);
    transform: scale(1.05);
}

.course-add-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.course-remove-btn {
    background: #ef4444;
    color: white;
}

.course-remove-btn:hover {
    background: #dc2626;
    transform: scale(1.05);
}

.course-choice-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    font-size: 13px;
}

.course-choice-info #courseCount {
    color: var(--text-muted);
}

.course-choice-info #courseCount span {
    font-weight: 700;
    color: var(--primary);
}

.course-choice-info #courseCount span.max-reached {
    color: var(--accent);
}

.course-error {
    color: #ef4444;
    font-size: 13px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(45, 90, 138, 0.1);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236B7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 20px;
    padding-right: 40px;
}

.btn-submit {
    width: 100%;
    background: var(--accent);
    color: var(--text-dark);
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: var(--text-muted);
}

.form-footer i {
    color: var(--success);
    margin-right: 4px;
}

/* Stats Image Styling */
.stats-image {
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    position: relative;
}

.stats-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Stats Bar */
.stats-bar {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.stats-video {
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    position: relative;
}

.stats-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.stats-content {
    padding: 60px;
}

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

.stat-item {
    text-align: center;
    padding: 20px;
    position: relative;
}

.stat-item::after {
    display: none;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Section Styles */
section {
    padding: 80px 24px;
}

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

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-light);
    font-size: 16px;
}

/* Courses Section */
.courses {
    background: var(--bg-light);
}

.courses-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.course-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.course-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

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

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

.course-content {
    padding: 24px;
}

.course-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-bottom: 16px;
}

.course-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.course-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.course-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-muted);
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Why Choose Section */
.why-choose {
    background: var(--bg-white);
}

.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 30px;
    border-radius: 12px;
    background: var(--bg-light);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: var(--primary);
    color: white;
}

.feature-card:hover h3,
.feature-card:hover p {
    color: white;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--accent);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    transition: color 0.3s ease;
}

/* Faculty Section */
.faculty-section {
    background: var(--bg-white);
    padding: 80px 24px;
}

.faculty-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.faculty-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.faculty-image img {
    width: 100%;
    height: auto;
    display: block;
}

.faculty-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.faculty-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.faculty-stat {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
}

.faculty-stat .number {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.faculty-stat .label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 5px;
}

/* Placements Section */
.placements {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.placements .section-header h2,
.placements .section-header p {
    color: white;
}

.placement-stats {
    max-width: 1400px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.placement-stat {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.placement-stat .number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 10px;
}

.placement-stat .label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

/* Logo Slider */
.logo-slider-container {
    overflow: hidden;
    padding: 20px 0;
}

.logo-slider {
    display: flex;
    animation: slideLogos 32s linear infinite;
    width: fit-content;
}

.logo-slide {
    flex: 0 0 auto;
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

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

/* Responsive Logo Slider */
@media (max-width: 768px) {
    .logo-slide {
        width: 120px;
        height: 60px;
        margin: 0 15px;
    }
}

@media (max-width: 480px) {
    .logo-slide {
        width: 100px;
        height: 50px;
        margin: 0 10px;
    }
}

.recruiters {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.recruiters h4 {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.recruiter-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.recruiter-logo {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    backdrop-filter: blur(10px);
}

/* Admission Process */
.admission-process {
    background: var(--bg-light);
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 200px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--bg-white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin: 0 auto 20px;
}

.process-step h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Campus Slideshow */
.campus {
    background: var(--bg-white);
    padding: 80px 24px;
}

.campus-slideshow {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.campus-slide {
    display: none;
    animation: fadeEffect 1s ease;
}

.campus-slide.active {
    display: block;
}

.campus-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

@keyframes fadeEffect {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

.slideshow-dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 6px;
    background-color: var(--border);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--primary);
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 40px 30px 30px;
}

.slide-caption h4 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

/* FAQ Section */
.faq {
    background: var(--bg-light);
}

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

.faq-item {
    background: var(--bg-white);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

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

.faq-answer-content {
    padding: 0 24px 20px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: white;
    padding: 60px 24px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-about h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

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

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Floating Button */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent);
    color: var(--text-dark);
    padding: 16px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: var(--shadow-xl);
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Success Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal-content {
    background: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 450px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

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

.modal-icon {
    width: 80px;
    height: 80px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 36px;
}

.modal-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.btn-modal {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-modal:hover {
    background: var(--primary-dark);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

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

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .process-steps {
        flex-direction: column;
        gap: 30px;
    }

    .process-steps::before {
        display: none;
    }

    .process-step {
        max-width: 100%;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-contact {
        display: none;
    }

    .hero {
        padding-top: 90px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .form-card {
        padding: 24px;
    }

    /* Stats Bar Mobile */
    .stats-bar {
        grid-template-columns: 1fr;
    }

    .stats-video {
        min-height: 200px;
        max-height: 250px;
    }

    .stats-content {
        padding: 30px 20px;
    }

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

    .stat-number {
        font-size: 28px;
    }

    .stats-content h3 {
        font-size: 22px !important;
        margin-bottom: 20px !important;
    }

    .placement-stats {
        grid-template-columns: 1fr;
    }

    section {
        padding: 60px 20px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact {
        align-items: center;
    }

    .floating-cta {
        bottom: 20px;
        right: 20px;
        padding: 14px 20px;
        font-size: 14px;
    }

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

    .faculty-stats {
        grid-template-columns: 1fr;
    }
}
