:root {
    --primary: #0d47a1;
    --secondary: #1976d2;
    --accent: #ffab00;
    --light: #f5f7fa;
    --dark: #1a237e;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, #ffd600 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--light);
    position: relative;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary);
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

/* Molecular Background Animation */
.molecular-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.molecule {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 171, 0, 0.2);
    filter: blur(10px);
    animation: float 15s infinite linear;
}

/* Header Styles */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.logo {
    height: 60px;
    transition: all 0.3s ease;
}

.nav-link {
    color: var(--primary);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0.9rem;
    margin: 0 0.3rem;
    transition: all 0.3s ease;
    font-size: clamp(0.9rem, 1.1vw, 1rem);
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.cta-button {
    background: var(--gradient);
    color: white;
    font-weight: 600;
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(13, 71, 161, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-accent);
    transition: all 0.4s ease;
    z-index: -1;
}

.cta-button:hover:before {
    width: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Hero Section - New Design */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.hero-badge {
    background-color: var(--accent);
    color: var(--primary);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    box-shadow: 0 4px 15px rgba(255, 171, 0, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 171, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 171, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 171, 0, 0);
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1581093450021-4a7360e9a7d1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 2;
    opacity: 0.8;
}

.hero-image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--primary) 0%, transparent 100%);
}

/* Interactive Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: -100px;
    position: relative;
    z-index: 3;
    padding: 0 2rem;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stat-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--accent);
    transition: all 0.4s ease;
}

.stat-card:hover:before {
    width: 100%;
    opacity: 0.1;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

/* About Section - New Design */
.about-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(13, 71, 161, 0.3);
    z-index: 2;
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.about-content p {
    margin-bottom: 1.5rem;
    color: #555;
}

.accreditation-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.accreditation-badge {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.accreditation-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.accreditation-badge i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

/* Features Section - Interactive Cards */
.features-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
    position: relative;
    overflow: hidden;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent);
    transition: all 0.4s ease;
    z-index: -1;
}

.feature-card:hover:before {
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-card:hover .feature-icon,
.feature-card:hover h3,
.feature-card:hover p {
    color: white;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.feature-card p {
    color: #666;
    transition: all 0.4s ease;
}

/* Faculty Section - Enhanced with Carousel */
.faculty-section {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.faculty-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.faculty-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 2rem;
    padding: 2rem 1rem;
    margin: 0 -1rem;
}

.faculty-carousel::-webkit-scrollbar {
    display: none;
}

.faculty-card {
    flex: 0 0 auto;
    width: 300px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    scroll-snap-align: start;
}

.faculty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.faculty-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.faculty-card:hover .faculty-img {
    transform: scale(1.05);
}

.faculty-info {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    background: white;
}

.faculty-name {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.faculty-degree {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.faculty-exp {
    color: #666;
    margin-bottom: 1rem;
}

.faculty-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.faculty-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

.faculty-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(13, 71, 161, 0.3);
    transition: all 0.3s ease;
}

.carousel-nav:hover {
    background: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: -25px;
}

.carousel-nav.next {
    right: -25px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 0.5rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

/* Programs Section - Interactive Tabs */
.programs-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
    position: relative;
}

.programs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.program-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.program-tab {
    padding: 0.8rem 1.5rem;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.program-tab.active {
    background: var(--primary);
    color: white;
}

.program-tab:hover:not(.active) {
    background: rgba(13, 71, 161, 0.1);
}

.program-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.program-content.active {
    display: block;
}

.program-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    margin-bottom: 2rem;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.program-header {
    background: var(--gradient);
    color: white;
    padding: 1.5rem;
}

.program-body {
    padding: 2rem;
}

.program-highlight {
    color: var(--accent);
    font-weight: 600;
}

.program-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.program-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

.program-list i {
    color: var(--accent);
    margin-right: 0.8rem;
    margin-top: 0.2rem;
}

/* Course Comparison Section */
.comparison-section {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.comparison-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.comparison-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #ddd;
}

.comparison-tab {
    padding: 1rem 2rem;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s ease;
}

.comparison-tab.active {
    color: var(--accent);
}

.comparison-tab.active:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
}

.comparison-tab:hover:not(.active) {
    color: var(--secondary);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th {
    background: var(--gradient);
    color: white;
    padding: 1.5rem;
    text-align: left;
}

.comparison-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background: rgba(255, 171, 0, 0.05);
}

.highlight-cell {
    position: relative;
    font-weight: 600;
    color: var(--primary);
}

.highlight-cell:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: var(--accent);
    border-radius: 2px;
}

.course-feature {
    display: flex;
    align-items: center;
}

.course-feature i {
    color: var(--accent);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.course-selector {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.course-option {
    padding: 0.8rem 1.5rem;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.course-option.selected {
    background: var(--primary);
    color: white;
}

.course-option:hover:not(.selected) {
    background: rgba(13, 71, 161, 0.1);
}

/* Gallery Section - Interactive Grid */
.gallery-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
    position: relative;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1.5rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Testimonials Section - Interactive Carousel */
.testimonials-section {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonial-slider {
    position: relative;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 1rem;
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card:before {
    content: "\201C";
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(255, 171, 0, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

.testimonial-role {
    color: var(--accent);
    font-size: 0.9rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 1rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

/* Placement Section - Interactive */
.placement-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.placement-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.placement-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.placement-stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.placement-stat:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.placement-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.placement-text {
    font-size: 1.1rem;
}

.company-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.company-logo {
    height: 40px;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.company-logo:hover {
    opacity: 1;
    transform: scale(1.2);
}

/* Contact Section - Interactive Form */
.contact-section {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    background: var(--gradient);
    color: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(13, 71, 161, 0.2);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-info h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent);
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.2rem;
    color: var(--accent);
    margin-right: 1rem;
    margin-top: 0.3rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent);
    transform: translateY(-5px);
}

.contact-form {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 171, 0, 0.2);
    outline: none;
}

textarea.form-control {
    min-height: 150px;
}

/* Footer - Interactive */
.footer {
    background: var(--gradient);
    color: white;
    padding: 6rem 0 2rem;
    position: relative;
}

.footer-wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0v46.29c47.79 22.2 103.59 32.17 158 28 70.36-5.37 136.33-33.31 206.8-37.5 73.84-4.36 147.54 16.88 218.2 35.26 69.27 18 138.3 24.88 209.4 13.08 36.15-6 69.85-17.84 104.45-29.34C989.49 25 1113-14.29 1200 52.47V0z" fill="%23ffffff" opacity=".25"/></svg>');
    background-size: 1200px 100px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1.5rem;
}

.footer-about p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.footer-links h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-newsletter input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Floating Elements */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 100;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1);
    background: var(--gradient-accent);
}

.back-to-top {
    bottom: 100px;
    background: var(--gradient-accent);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-content {
    background: white;
    border-radius: 15px;
    max-width: 800px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: modalOpen 0.5s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    background: var(--gradient);
    color: white;
    padding: 1.5rem 2rem;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 25px;
    top: 25px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--accent);
    transition: all 0.3s ease;
}

.close-modal:hover {
    transform: rotate(90deg);
    color: white;
}

.modal-body {
    padding: 2rem;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalOpen {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes scrollBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(0);
    }

    40% {
        transform: translateX(-15px);
    }

    60% {
        transform: translateX(-7px);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .faculty-card {
        width: 280px;
    }
}

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 400px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .hero-image {
        width: 60%;
    }

    .comparison-table {
        display: block;
        overflow-x: auto;
    }

    .faculty-card {
        width: 260px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 600px;
        padding-top: 70px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-image {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
        clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
    }

    .stats-grid {
        margin-top: -50px;
    }

    .program-tabs {
        flex-direction: column;
        align-items: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links h3:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-link:hover {
        transform: none;
        color: var(--accent);
    }

    .comparison-tabs {
        flex-wrap: wrap;
    }

    .faculty-card {
        width: 280px;
    }

    .carousel-nav {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-badge {
        font-size: 0.9rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .about-image {
        height: 300px;
    }

    .about-badge {
        padding: 1rem;
        right: 0;
    }

    .placement-number {
        font-size: 2.5rem;
    }

    .company-logo {
        height: 30px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 20px;
        right: 20px;
    }

    .back-to-top {
        bottom: 80px;
    }

    .faculty-card {
        width: 250px;
    }
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn.active {
    color: white;
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 80px);
        background: var(--gradient);
        flex-direction: column;
        padding: 2rem;
        transition: all 0.4s ease;
        z-index: 1000;
        display: flex;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        color: white;
        padding: 1rem 0;
        margin: 0;
        font-size: 1.1rem;
    }

    .nav-link:after {
        background: white;
    }

    .cta-button {
        margin-top: 1rem;
    }
}

/* Particle Animation */
.particle {
    position: absolute;
    background: rgba(255, 171, 0, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Creative Elements */
.animated-element {
    animation: pulseColor 4s infinite alternate;
}

@keyframes pulseColor {
    0% {
        background-color: var(--primary);
    }

    100% {
        background-color: var(--secondary);
    }
}

.hover-grow {
    transition: transform 0.3s ease;
}

.hover-grow:hover {
    transform: scale(1.05);
}

.scroll-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s infinite;
    color: white;
    font-size: 1.5rem;
}