/* Modern Color Variables */
:root {
    --primary-color: #2563eb;
    --secondary-color: #3b82f6;
    --accent-color: #60a5fa;
    --success-color: #22c55e;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --background-light: #ffffff;
    --background-dark: #0f172a;
    --border-radius: 12px;
    --transition-speed: 0.3s;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #ffffff;
}

/* Container styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* background-color: #ffffff; */
}

/* Card styles */
.card {
    background: #ffffff;
    border: none;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-speed) ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-header {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.25rem;
}

.card-body {
    padding: 1.5rem;
}

/* Image styles */
.img-fluid {
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed) ease;
    max-width: 100%;
    height: auto;
}

.img-fluid:hover {
    transform: scale(1.02);
}

/* Section styles */
.section {
    padding: 80px 0;
    position: relative;
    background-color: #ffffff;
}

.section-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    font-size: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

/* Background colors */
.bg-light {
    background-color: #ffffff;
}

.bg-white {
    background-color: #ffffff;
}

/* Button styles */
.btn {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

/* Form styles */
.form-control {
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 12px 15px;
    transition: all var(--transition-speed) ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #ffffff;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

/* Table styles */
.table {
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 0;
}

.table thead th {
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--text-primary);
    font-weight: 600;
    border-bottom: 2px solid rgba(37, 99, 235, 0.2);
    padding: 15px;
}

.table td {
    padding: 15px;
    vertical-align: middle;
}

/* Badge styles */
.badge {
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 500;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(37, 99, 235, 0.5);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(37, 99, 235, 0.7);
}

/* Add Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

/* Additional utility classes */
.shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.shadow-md {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.shadow-lg {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.rounded-lg {
    border-radius: var(--border-radius);
}

.rounded-md {
    border-radius: 8px;
}

.rounded-sm {
    border-radius: 4px;
}

/* Override Bootstrap styles */
.navbar {
    background-color: #ffffff;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    color: var(--text-primary);
}

.nav-link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 500;
    color: var(--text-primary);
}

.btn-outline-primary {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
}

/* Hero section */
.hero-section {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 120px 0;
    color: white;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Feature cards */
.feature-card {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Course cards */
.course-card {
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Testimonial cards */
.testimonial-card {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #ffffff;
        padding: 1rem;
        border-radius: var(--border-radius);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .hero-section {
        padding: 100px 0;
    }
}

@media (max-width: 767.98px) {
    .container {
        padding: 0 15px;
    }
    
    .feature-card, .course-card, .testimonial-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
}

/* Loading animation */
.loading {
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

@keyframes loading {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Accessibility */
:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Modern Footer */
.footer-section {
    background: var(--background-dark);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

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

/* Newsletter Form */
.newsletter-form .input-group {
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.newsletter-form .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Contact Page Styles */
.contact-hero {
    padding-top: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.contact-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-speed) ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all var(--transition-speed) ease;
}

.contact-card:hover .icon-wrapper {
    transform: scale(1.1);
    background: var(--secondary-color);
}

.contact-form-wrapper {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.map-wrapper {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: var(--border-radius) !important;
    overflow: hidden;
}

.accordion-button {
    padding: 1.25rem;
    font-weight: 500;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-body {
    padding: 1.25rem;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-top: none;
}

/* Dark Mode Support for Contact Page */
@media (prefers-color-scheme: dark) {
    .contact-card,
    .contact-form-wrapper,
    .accordion-button,
    .accordion-body {
        background: #1e293b;
        border-color: rgba(255, 255, 255, 0.1);
    }

    .contact-card .icon-wrapper {
    background: var(--accent-color);
}

    .contact-card:hover .icon-wrapper {
        background: var(--primary-color);
    }
}

/* Testimonial Ribbon Styles */
.testimonial-ribbon-wrapper {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}
.testimonial-ribbon {
  display: flex;
  align-items: center;
  animation: ribbon-scroll 30s linear infinite;
  will-change: transform;
}
.testimonial-slide {
  min-width: 340px;
  max-width: 340px;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 2rem 1.5rem;
  margin: 1rem 0;
  transition: box-shadow 0.3s;
}
.testimonial-slide:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
@keyframes ribbon-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 600px) {
  .testimonial-slide {
    min-width: 90vw;
    max-width: 90vw;
    padding: 1.2rem 0.5rem;
  }
}

/* Gallery Section Styles */
.gallery-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.gallery-section .container {
    background-color: #ffffff;
}

.gallery-section h2 {
    color: var(--text-primary);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    transition: transform var(--transition-speed) ease;
    background-color: #ffffff;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform var(--transition-speed) ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h5 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-caption p {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .gallery-caption {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
    }
    
    .gallery-item img {
        height: 250px;
    }
}

/* About Section Styles */
.about-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.about-section .container {
    background-color: #ffffff;
}

.about-section .section-title {
    color: var(--text-primary);
}

.about-section p {
    color: var(--text-secondary);
}

.about-image-container {
    position: relative;
    padding: 1rem;
    /* Removed transition and hover effects for plain image */
}

.about-image-container img {
    width: 100%;
    height: auto;
    /* No border-radius, box-shadow, or transition for plain image */
}

/* Remove hover effect entirely */
.about-image-container:hover img {
    box-shadow: none;
    transform: none;
}

@media (max-width: 991.98px) {
    .about-image-container {
        margin-top: 2rem;
    }
}

/* Payment Methods Styles */
.payment-methods {
    background-color: var(--background-light);
}

.payment-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-speed) ease;
    height: 100%;
    }
    
.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.payment-link {
    text-decoration: none;
    color: var(--text-primary);
    display: block;
}

.payment-icon {
    width: 120px;
    height: auto;
    object-fit: contain;
    transition: transform var(--transition-speed) ease;
}

.payment-card:hover .payment-icon {
    transform: scale(1.05);
}

.payment-card h4 {
    margin: 1rem 0 0.5rem;
    font-weight: 600;
}

.payment-card p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .payment-card {
        padding: 1.5rem;
    }
    
    .payment-icon {
        width: 100px;
    }
}

/* Payment Options Styles */
.payment-options {
        margin-bottom: 2rem;
    }
    
.payment-option {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    }
    
.payment-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.payment-option img {
    width: 120px;
    height: auto;
    margin-bottom: 1rem;
    transition: transform var(--transition-speed) ease;
    }
    
.payment-option:hover img {
    transform: scale(1.05);
}

.payment-option span {
    display: block;
    font-weight: 500;
    color: var(--text-primary);
}

.payment-option a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.payment-form {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .payment-option {
        padding: 1rem;
    }
    
    .payment-option img {
        width: 100px;
    }
}

/* Scholarship Page Background */
.scholarship-page {
    position: relative;
    min-height: 100vh;
    background-image: url('../images/599674dd5a4a80014a4c8370858c8fce.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.scholarship-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.scholarship-page .container {
    position: relative;
    z-index: 1;
}

.scholarship-page .card,
.scholarship-page .section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.scholarship-page h1,
.scholarship-page h2,
.scholarship-page h3 {
    color: var(--text-primary);
}

.scholarship-page p {
    color: var(--text-secondary);
}

/* Signup Page Background */
.signup-page {
    position: relative;
    min-height: 100vh;
    background-image: url('../images/image 3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.signup-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.signup-page .container {
    position: relative;
    z-index: 1;
}

.signup-page .card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.signup-page .form-control {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.signup-page .form-control:focus {
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.signup-page h1,
.signup-page h2,
.signup-page h3 {
    color: var(--text-primary);
}

.signup-page p {
    color: var(--text-secondary);
}

.signup-page .form-label {
    color: var(--text-primary);
    font-weight: 500;
}

@media (max-width: 768px) {
    .signup-page .card {
        background: rgba(255, 255, 255, 0.7);
    }
}

/* Login Page Background */
.login-page {
    position: relative;
    min-height: 100vh;
    background-image: url('../images/image9.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.login-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.login-page .container {
    position: relative;
    z-index: 1;
}

.login-page .card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 4rem;
}

.login-page .form-control {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
.login-page .form-control:focus {
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }
    
.login-page h1,
.login-page h2,
.login-page h3 {
    color: var(--text-primary);
}

.login-page p {
    color: var(--text-secondary);
}

.login-page .form-label {
    color: var(--text-primary);
    font-weight: 500;
}

@media (max-width: 768px) {
    .login-page .card {
        background: rgba(255, 255, 255, 0.7);
    }
}

/* Mission Section */
.mission-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.mission-card {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Vision Section */
.vision-section {
    background-color: #ffffff;
    padding: 80px 0;
}

/* What We Offer Section */
.what-we-offer {
    background-color: #ffffff;
    padding: 80px 0;
}

.offer-card {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Course Section */
.course-section {
    background-color: #ffffff;
    padding: 80px 0;
}

/* Testimonial Section */
.testimonial-section {
    background-color: #ffffff;
    padding: 80px 0;
}

/* Contact Section */
.contact-section {
    background-color: #ffffff;
    padding: 80px 0;
}

/* Scholarship Section */
.scholarship-section {
    background-color: #ffffff;
    padding: 80px 0;
}

/* Login/Signup Forms */
.login-form, .signup-form {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Make testimonial images perfectly round circles */
.testimonial img,
img.rounded-circle {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    aspect-ratio: 1 / 1 !important;
}

/* Remove all styling from contact page main image */
.contact-form-section img {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Footer Course Pop-up Tray Styles */
.footer-course-popup {
  display: none;
  position: absolute;
  left: 110%;
  top: 50%;
  transform: translateY(-50%);
  min-width: 260px;
  max-width: 320px;
  background: #fff;
  color: #222;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  padding: 1.2rem 1.5rem;
  z-index: 1000;
  font-size: 0.98rem;
  line-height: 1.5;
  transition: opacity 0.2s;
}
.footer-links li {
  position: relative;
}
.footer-links li:hover .footer-course-popup,
.footer-links li:focus-within .footer-course-popup {
  display: block;
}
@media (max-width: 768px) {
  .footer-course-popup {
    left: 0;
    top: 110%;
    transform: none;
    min-width: 90vw;
    max-width: 95vw;
    font-size: 1rem;
  }
}

/* Keep existing styles below */