/* style.css */
/* Add the new moving quote section styles */
.quote-section {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.quote-container {
    display: flex;
    animation: scrollQuote 20s linear infinite;
    white-space: nowrap;
}

.quote-item {
    padding: 0 30px;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    opacity: 0.90;
}

.quote-item i {
    margin-right: 10px;
    color: #ffffff;
}

@keyframes scrollQuote {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}



.mission-vision-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('college.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(1.8) contrast(1.3);
    opacity: 0.4;
    z-index: 1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary: #151515;
    --secondary: #2563eb;
    --accent: #3b82f6;
    --light: #f8fafc;
    --dark: #1e293b;
    --success: #10b981;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
}

body {
    background-color: #ffffff;
    color: #334155;
    line-height: 1.6;
    overflow-x: hidden;
}

/* === BUTTON STYLES === */
.btn {
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.enroll-btn {
    background: var(--gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.enroll-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    color: white;
    text-decoration: none;
}

/* Header Styles */
header {
    background: var(--gradient);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-container {
  display: flex;
  align-items: center;
  padding: 15px 25px;
}

.logo-image {
    height: 60px;
    width: 60px;
    margin-right: 15px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 0;
    position: relative;
}

nav ul li a:hover, nav ul li a.active {
    color: #dbeafe;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #dbeafe;
    transition: width 0.3s;
}

nav ul li a:hover::after, nav ul li a.active::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Page Content */
.page-content {
    display: none;
    padding: 2rem 0;
    min-height: 70vh;
}

.page-content.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Hero Section with Slider */
.hero {
    padding: 0;
}

.hero-slider {
    position: relative;
    width: 90vw;
    height: 100vh;
    overflow: hidden;
    border-radius: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    background: rgba(0, 0, 0, 0.7);
    padding: 4rem;
    border-radius: 12px;
    text-align: center;
    color: white;
    max-width: 95%;
    font-weight: 700;
    animation: fadeInUp 1s ease-out;
}

.slide-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.slide-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: white;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Features Section */
.features {
    padding: 4rem 0;
    background-color: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2rem;
    color: var(--secondary);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid var(--secondary);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}

.feature-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}
/* Courses Section */
.courses {
    padding: 4rem 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.courses-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 0.5rem 1.5rem;
    margin: 0.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    color: #64748b;
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--secondary);
    color: white;
    border-color: var(--secondary);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.course-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: default;
    border-top: 4px solid var(--secondary);
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}

.course-img {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.course-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.course-category {
    display: inline-block;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--secondary);
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.course-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.course-description {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.course-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding: 1rem 0;
    border-top: 1px solid #e2e8f0;
}

.course-duration {
    font-weight: 600;
    color: var(--secondary);
    font-size: 1rem;
    margin-right: 1rem;
}

.course-price {
    font-weight: 700;
    color: #e53e3e;
    font-size: 1.2rem;
    text-align: right;
}

.course-cta {
    text-align: center;
    margin-top: 1rem;
}

.course-card .btn-primary {
    margin-top: 0;
    width: 100%;
    text-align: center;
    background: var(--gradient);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.course-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

/* Course Carousel */
.course-carousel {
    position: relative;
    overflow: hidden;
    margin: 3rem 0;
    padding: 1rem 0;
}

.course-track {
    display: flex;
    animation: scrollCourses 25s linear infinite;
}

.course-track:hover {
    animation-play-state: paused;
}

.course-carousel-item {
    flex: 0 0 300px;
    margin: 0 1rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    border-top: 4px solid var(--secondary);
    display: flex;
    flex-direction: column;
}

.course-carousel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}

.course-carousel-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.course-carousel-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding: 1rem 0;
    border-top: 1px solid #e2e8f0;
}

.course-carousel-duration {
    font-weight: 600;
    color: var(--secondary);
    font-size: 1rem;
}

.course-carousel-price {
    font-weight: 600;
    color: #e53e3e;
    font-size: 1.2rem;
}

.course-carousel-cta {
    text-align: center;
    margin-top: 1rem;
}

.course-carousel-item .btn-primary {
    margin-top: 0;
    width: 100%;
    text-align: center;
    background: var(--gradient);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.course-carousel-item .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

@keyframes scrollCourses {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 6));
    }
}

/* Course Details Page */
.course-detail {
    padding: 2rem 0;
}

.course-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.course-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
    background-size: cover;
    background-position: center;
}

.course-info-detail {
    flex: 2;
}

.course-info-detail h1 {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.course-meta {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.course-tabs {
    margin-top: 2rem;
}

.tab-buttons {
    display: flex;
    border-bottom: 1px solid #e2e8f0;
}

.tab-btn {
    padding: 1rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.tab-btn.active {
    color: var(--secondary);
    border-bottom: 3px solid var(--secondary);
}

.tab-content {
    padding: 2rem 0;
    display: none;
}

.tab-content.active {
    display: block;
}

.curriculum-list {
    list-style: none;
}

.curriculum-list li {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
}

/* Responsive Design */
@media (max-width: 768px) {
    .courses-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .course-header {
        flex-direction: column;
    }
    
    .course-image {
        height: 200px;
    }
    
    .course-meta {
        flex-direction: column;
    }
    
    .tab-buttons {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        padding: 0.75rem 1.5rem;
    }
}

/* About Page */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    height: 650px;
    width: 650px;
    background-size: cover;
    background-position: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-features {
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.about-feature i {
    color: var(--secondary);
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Reviews Section */
.reviews-section {
    margin-top: 5rem;
    padding: 4rem 0;
    background-color: var(--light);
    border-radius: 12px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.review-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--secondary);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 5rem;
    color: rgba(37, 99, 235, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.15);
}

.review-content {
    position: relative;
    z-index: 1;
}

.review-text {
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #475569;
    line-height: 1.6;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-info h4 {
    color: var(--secondary);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.author-info p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.review-rating {
    color: #fbbf24;
    font-size: 0.9rem;
}

/* Services Section */
.Services {
    padding: 4rem 0;
    background-color: #f1f5f9;
}

.Services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.specialization-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    border-top: 4px solid var(--secondary);
}

.specialization-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}

.specialization-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.specialization-content {
    padding: 1.5rem;
    text-align: center;
}

.specialization-name {
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.specialization-desc {
    color: #64748b;
    margin-bottom: 1rem;
}

/*Placements Page Styles */
.placements-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.placement-stats {
    background: var(--gradient);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-item {
    margin-bottom: 1.5rem;
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.company-logo {
    height: 100px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.company-logo:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.2);
    border-color: var(--secondary);
}

.company-logo img {
    max-width: 100%;
    max-height: 60px;
}

.placement-process {
    margin: 2rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.process-step {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
    border-left: 4px solid var(--secondary);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
    font-size: 1.2rem;
}

.process-step h4 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.process-step p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Enrollment Page Styles */
.enrollment-page {
    padding: 4rem 0;
    background: var(--gradient);
}

.enrollment-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.enrollment-header {
    background: var(--gradient);
    color: white;
    padding: 2rem;
    text-align: center;
}

.enrollment-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.enrollment-form {
    padding: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary);
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    background-color: #ffffff;
    color: #334155;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.submit-btn {
    background: var(--gradient);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.success-message {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
    background: #ffffff;
}

.success-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 1.5rem;
}

.success-message h3 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.success-message p {
    color: #64748b;
    margin-bottom: 2rem;
}

/* Contact Page */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    background: var(--light);
    padding: 2rem;
    border-radius: 8px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.contact-form {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: var(--gradient);
    color: white;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background-color: #f1f5f9;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: #f1f5f9;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
    color: var(--secondary);
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #bbb;
}

/* Back to Courses Button */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 0.5rem;
    }

    .hero-slider {
        height: 400px;
    }

    .slide-content h2 {
        font-size: 1.8rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .mobile-menu {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
    }

    nav {
        display: none;
        width: 100%;
        margin-top: 1rem;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 0.5rem 0;
    }

    .course-header, .about-content, .placements-content, .contact-content {
        grid-template-columns: 1fr;
    }

    .course-image {
        height: 200px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .enrollment-header h2 {
        font-size: 1.8rem;
    }

    .placements-content {
        grid-template-columns: 1fr;
    }
    
    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .company-logo {
        height: 80px;
        padding: 1rem;
    }
    
    .company-logo img {
        max-height: 40px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* === CHATBOT STYLES === */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    z-index: 1000;
    font-family: Arial, sans-serif;
    border: 2px solid var(--secondary);
    overflow: hidden;
}

.chatbot-container.active {
    display: flex;
    animation: slideInUp 0.3s ease-out;
}

@keyframes slideInUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Chatbot Header */
.chatbot-header {
    background: var(--gradient);
    color: white;
    padding: 15px;
    border-radius: 13px 13px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

.chatbot-title i {
    font-size: 20px;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s;
}

.close-btn:hover {
    background: rgba(255,255,255,0.2);
}

/* Chat Messages */
.chatbot-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
}

.message {
    margin-bottom: 15px;
    max-width: 80%;
    display: flex;
    flex-direction: column;
}

.bot-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
    margin-left: auto;
}

.message-content {
    padding: 10px 15px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.4;
}

.bot-message .message-content {
    background: #e2e8f0;
    border-bottom-left-radius: 5px;
    color: #334155;
}

.user-message .message-content {
    background: var(--secondary);
    color: white;
    border-bottom-right-radius: 5px;
}

.message-time {
    font-size: 11px;
    color: #666;
    margin-top: 5px;
    text-align: right;
}

/* Chat Input */
.chatbot-input {
    padding: 15px;
    border-top: 1px solid #e2e8f0;
    background: #ffffff;
    border-radius: 0 0 13px 13px;
    display: flex;
    gap: 10px;
}

.chatbot-input input {
    flex: 1;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 25px;
    outline: none;
    font-size: 14px;
    background: #ffffff;
    color: #334155;
}

.chatbot-input input:focus {
    border-color: var(--secondary);
}

.chatbot-input button {
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-input button:hover {
    background: var(--primary);
}

/* Chatbot Toggle Button */
.chatbot-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 999;
    font-size: 24px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.chatbot-toggle.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 99, 235, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

/* Responsive Chatbot */
@media (max-width: 768px) {
    .chatbot-container {
        width: 90%;
        height: 70vh;
        bottom: 10px;
        right: 5%;
        left: 5%;
    }
    
    .chatbot-toggle {
        bottom: 10px;
        right: 10px;
    }
}

/* Animation for counter */
@keyframes countUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.counting {
    animation: countUp 1s ease-out;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9), rgba(37, 99, 235, 0.8));
}

.mission-vision .container {
    position: relative;
    z-index: 2;
}

.mission-vision .section-title h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.mission-vision .section-title p {
    color: #dbeafe;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.mission-vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.mission-section, .vision-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.mission-section::before, .vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s ease;
}

.mission-section:hover::before, .vision-section:hover::before {
    left: 100%;
}

.mission-section:hover, .vision-section:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.mission-icon, .vision-icon {
    position: relative;
    margin-bottom: 1.5rem;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.mission-icon i, .vision-icon i {
    font-size: 2rem;
    color: white;
}

.mission-text h3, .vision-text h3 {
    font-size: 1.6rem;
    color: var(--secondary);
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
}

.mission-text h3::after, .vision-text h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    border-radius: 2px;
}

.mission-text p, .vision-text p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: #475569;
    font-size: 1rem;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design for Mission & Vision */
@media (max-width: 768px) {
    .mission-vision-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mission-section, .vision-section {
        padding: 2rem 1.5rem;
    }
    
    .icon-circle {
        width: 70px;
        height: 70px;
    }
    
    .mission-icon i, .vision-icon i {
        font-size: 1.8rem;
    }
    
    .mission-text h3, .vision-text h3 {
        font-size: 1.4rem;
    }
    
    .mission-text p, .vision-text p {
        font-size: 0.95rem;
    }
}

/* Enrollment Popup - Chatbot Style */
.enrollment-popup-chat {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
    flex-direction: column;
    border: 2px solid var(--secondary);
    overflow: hidden;
    animation: slideInRight 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: bottom right;
}

.enrollment-popup-chat.active {
    display: flex;
    animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    50% {
        transform: scale(1.05) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Chat Popup Header */
.chat-popup-header {
    background: var(--gradient);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 13px 13px 0 0;
}

.chat-popup-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.1rem;
}

.chat-popup-title i {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

.chat-popup-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg) scale(1.1);
}

/* Chat Popup Body */
.chat-popup-body {
    padding: 20px;
    background: #f8fafc;
}

.chat-message {
    display: flex;
    gap: 12px;
    margin-bottom: 0;
}

.message-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
    animation: bounce 3s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-2px);
    }
}

.message-content {
    flex: 1;
    background: white;
    padding: 15px;
    border-radius: 18px;
    border-bottom-left-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: messageSlide 0.5s ease-out;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.message-content p {
    margin: 0 0 10px 0;
    color: #334155;
    line-height: 1.5;
}

.message-content p:last-child {
    margin-bottom: 0;
}

.discount {
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.1em;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px rgba(37, 99, 235, 0.5);
    }
    to {
        text-shadow: 0 0 10px rgba(37, 99, 235, 0.8);
    }
}

.offer-timer {
    background: var(--light);
    padding: 10px;
    border-radius: 10px;
    margin-top: 10px;
    border-left: 3px solid var(--secondary);
    animation: fadeInUp 0.5s ease-out 0.3s both;
}

.timer-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0.3;
    }
}

.offer-timer span {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.timer {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: var(--secondary);
    font-size: 1.1rem;
    margin-top: 5px;
    background: white;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    border: 1px solid #e2e8f0;
}

/* Chat Popup Footer */
.chat-popup-footer {
    padding: 15px 20px;
    background: white;
    border-top: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-enroll-now {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    animation: pulseBtn 2s infinite;
}

@keyframes pulseBtn {
    0% {
        box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 99, 235, 0.5);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    }
}

.btn-enroll-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-enroll-now i {
    transition: transform 0.3s ease;
}

.btn-enroll-now:hover i {
    transform: translateX(3px);
}

.btn-later {
    background: transparent;
    color: #64748b;
    border: 1px solid #cbd5e1;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-later:hover {
    background: #f1f5f9;
    color: var(--secondary);
}

/* Close Animation */
.enrollment-popup-chat.closing {
    animation: slideOutRight 0.4s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards;
}

@keyframes slideOutRight {
    to {
        opacity: 0;
        transform: translateX(100px) scale(0.9);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .enrollment-popup-chat {
        width: 320px;
        right: 20px;
        bottom: 80px;
    }
    
    .chat-popup-header {
        padding: 12px 15px;
    }
    
    .chat-popup-body {
        padding: 15px;
    }
    
    .message-content {
        padding: 12px;
    }
    
    .chat-popup-footer {
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .enrollment-popup-chat {
        width: 280px;
        right: 10px;
        bottom: 70px;
    }
}