/* Root Variables */
:root {
    --primary-color: #fcf0ab;
    --secondary-color: #1a1a1a;
    --accent-color: #e6d380;
    --text-light: #ffffff;
    --text-dark: #333333;
    --gradient-primary: linear-gradient(135deg, #fcf0ab 0%, #e6d380 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(45, 45, 45, 0.6) 100%);
    --shadow-light: 0 8px 32px rgba(252, 240, 171, 0.15);
    --shadow-dark: 0 16px 64px rgba(0, 0, 0, 0.25);
    --border-radius: 20px;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Typography */
.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: slideIn 1s ease-out;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation */
.glass-nav {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(252, 240, 171, 0.1);
    transition: var(--transition);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    text-shadow: 0 0 20px rgba(252, 240, 171, 0.3);
}

.navbar-logo {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    color: var(--text-light) !important;
    position: relative;
    margin: 0 0.5rem;
    transition: var(--transition);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.cta-nav {
    background: var(--gradient-primary);
    border-radius: 25px;
    padding: 0.5rem 1.5rem !important;
    color: var(--secondary-color) !important;
    font-weight: 600;
    margin-left: 1rem !important;
    transition: var(--transition);
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Apply Now button styling - distinct color */
.apply-now-nav {
    background: white !important;
    color: #333333 !important;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.apply-now-nav:hover {
    background: #f8f9fa !important;
    color: #1a1a1a !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
    border-color: #e9ecef;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Hero Carousel */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.7;
}

.carousel-dot:hover,
.carousel-dot.active {
    background: var(--primary-color);
    opacity: 1;
    transform: scale(1.2);
}

/* Ensure content is above carousel */
.hero-content,
.floating-bubbles {
    position: relative;
    z-index: 5;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(252,240,171,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(252,240,171,0.03)"/><circle cx="50" cy="10" r="1" fill="rgba(252,240,171,0.02)"/><circle cx="10" cy="60" r="1" fill="rgba(252,240,171,0.02)"/><circle cx="90" cy="40" r="1" fill="rgba(252,240,171,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: floatPattern 20s linear infinite;
}

@keyframes floatPattern {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-100px) translateY(-100px); }
}

.hero-content {
    color: var(--text-light);
    animation: slideInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.btn-hero {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-hero:hover::before {
    left: 100%;
}

.btn-primary.btn-hero {
    background: var(--gradient-primary);
    color: var(--secondary-color);
    box-shadow: var(--shadow-light);
}

.btn-primary.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(252, 240, 171, 0.3);
}

.btn-outline-light.btn-hero {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-light.btn-hero:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-light);
}

.hero-stats {
    animation: slideInUp 1s ease-out 0.5s both;
}

.stat-item {
    padding: 1rem;
    border-radius: var(--border-radius);
    background: rgba(252, 240, 171, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(252, 240, 171, 0.2);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(252, 240, 171, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin: 0;
}

.hero-image {
    position: relative;
    animation: slideInRight 1s ease-out 0.3s both;
}

.floating-image {
    animation: float 6s ease-in-out infinite;
    border: 3px solid var(--primary-color);
    box-shadow: var(--shadow-dark);
}

.floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-dark);
    text-align: center;
    max-width: 200px;
    animation: float 6s ease-in-out infinite 3s;
}

.floating-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.floating-card h5 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.floating-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Floating Bubbles */
.floating-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: rgba(252, 240, 171, 0.1);
    border-radius: 50%;
    opacity: 0.7;
    animation: bubbleFloat 15s infinite linear;
    cursor: pointer;
    transition: var(--transition);
}

.bubble:hover {
    background: rgba(252, 240, 171, 0.2);
    transform: scale(1.1);
}

.bubble:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    animation-duration: 12s;
    animation-delay: 0s;
}

.bubble:nth-child(2) {
    width: 50px;
    height: 50px;
    left: 25%;
    animation-duration: 16s;
    animation-delay: 2s;
}

.bubble:nth-child(3) {
    width: 100px;
    height: 100px;
    left: 40%;
    animation-duration: 20s;
    animation-delay: 4s;
}

.bubble:nth-child(4) {
    width: 30px;
    height: 30px;
    left: 60%;
    animation-duration: 14s;
    animation-delay: 6s;
}

.bubble:nth-child(5) {
    width: 70px;
    height: 70px;
    left: 75%;
    animation-duration: 18s;
    animation-delay: 8s;
}

.bubble:nth-child(6) {
    width: 40px;
    height: 40px;
    left: 90%;
    animation-duration: 22s;
    animation-delay: 10s;
}

@keyframes bubbleFloat {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Programs Section */
.programs-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.program-card {
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    height: 100%;
    border: 1px solid rgba(252, 240, 171, 0.1);
    will-change: transform;
    transform: translateZ(0);
}

.program-card:hover {
    transform: translateY(-10px) translateZ(0);
    box-shadow: var(--shadow-dark);
    border-color: var(--primary-color);
}

.program-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    will-change: transform;
    transform: translateZ(0);
}

.category-badge {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.loading-state {
    opacity: 0.7;
    pointer-events: none;
}

.loading-state .program-content h4,
.loading-state .program-content p {
    color: #999;
}

#programsLoading {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#programsLoading .spinner-border {
    width: 3rem;
    height: 3rem;
}

#noPrograms .alert {
    max-width: 600px;
    margin: 0 auto;
}

/* Program Modal Banner Image */
.program-banner {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.program-banner img {
    transition: transform 0.3s ease;
}

.program-banner:hover img {
    transform: scale(1.02);
}

.program-card:hover .program-image img {
    transform: scale(1.1) translateZ(0);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    will-change: opacity;
}

.program-card:hover .program-overlay {
    opacity: 1;
}

.program-overlay i {
    font-size: 3rem;
    color: var(--primary-color);
    animation: pulse 2s infinite;
}

.program-content {
    padding: 2rem;
}

.program-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.program-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.program-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(252, 240, 171, 0.1);
    color: var(--secondary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(252, 240, 171, 0.2);
}

.feature-tag i {
    margin-right: 0.3rem;
    color: var(--primary-color);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--gradient-dark);
    color: var(--text-light);
}

.about-content {
    animation: slideInLeft 1s ease-out;
}

.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(252, 240, 171, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(252, 240, 171, 0.1);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(252, 240, 171, 0.1);
    transform: translateX(10px);
}

.feature-icon {
    margin-right: 1.5rem;
    background: var(--gradient-primary);
    padding: 1rem;
    border-radius: 50%;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.feature-content h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.about-image {
    animation: slideInRight 1s ease-out;
}

.about-image img {
    border: 3px solid var(--primary-color);
    animation: float 8s ease-in-out infinite;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--gradient-primary);
    color: var(--secondary-color);
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(26, 26, 26, 0.3);
    background: #0d0d0d;
}

/* Footer */
.footer-section {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-brand h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-logo {
    height: 50px;
    width: auto;
    display: block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(252, 240, 171, 0.1);
    border: 1px solid rgba(252, 240, 171, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-links h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
    color: var(--primary-color);
    margin-right: 1rem;
    width: 20px;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(252, 240, 171, 0.1);
}

.footer-bottom p,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* Modal Styles */
.modal-content {
    border-radius: var(--border-radius);
    border: none;
    box-shadow: var(--shadow-dark);
}

.modal-header {
    background: var(--gradient-primary);
    color: var(--secondary-color);
    border-bottom: none;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-title {
    font-weight: 600;
}

.btn-close {
    filter: invert(1);
}

.modal-body {
    padding: 2rem;
}

.form-control,
.form-select {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(252, 240, 171, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--secondary-color);
}

/* Form Success State */
.form-control-success {
    border-color: #28a745 !important;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25) !important;
    transition: all 0.3s ease;
}

/* Program Modal Course Modules */
.modal-body .badge {
    word-wrap: break-word;
    white-space: normal;
    text-align: left;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    max-width: 100%;
    overflow-wrap: break-word;
}

.modal-body .row .col-12 .badge {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
}

/* Course Modules Container */
.course-modules-container {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 0.5rem;
    background-color: #f8f9fa;
}

.course-module-item {
    margin-bottom: 0.5rem;
}

.course-module-item:last-child {
    margin-bottom: 0;
}

.course-modules-container .badge {
    display: block;
    width: 100%;
    text-align: left;
    border-radius: 6px;
    font-weight: normal;
}

/* Instructor Cards */
.instructor-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef !important;
    transition: all 0.3s ease;
    height: 100%;
}

.instructor-card:hover {
    background: #ffffff;
    border-color: var(--primary-color) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.instructor-card h6 {
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.instructor-card p {
    color: #6c757d;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Signature Pad Styles */
.signature-pad-container {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    background: #ffffff;
    transition: border-color 0.3s ease;
}

.signature-pad-container:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(252, 240, 171, 0.25);
}

.signature-canvas {
    border: 1px solid #dee2e6;
    border-radius: 4px;
    background: #ffffff;
    cursor: crosshair;
    touch-action: none;
    display: block;
    box-sizing: border-box;
    width: 100% !important;
    max-width: none !important;
    height: 200px !important;
}

.signature-canvas:focus {
    outline: none;
    border-color: var(--primary-color);
}

.signature-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.signature-controls .btn {
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
}

/* Responsive signature pad */
@media (max-width: 768px) {
    .signature-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Ensure signature pad takes full width in modal */
.modal-body .signature-pad-container {
    width: 100%;
}

.modal-body .signature-canvas {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideIn {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .hero-image {
        margin-top: 3rem;
    }
    
    .floating-card {
        position: static;
        margin-top: 2rem;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .program-content {
        padding: 1.5rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn-hero {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-hero {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Address Autocomplete Styles */
.address-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
}

.address-suggestion-item {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.address-suggestion-item:hover {
    background-color: #f8f9fa;
}

.address-suggestion-item:last-child {
    border-bottom: none;
}

.address-suggestion-item .suggestion-text {
    font-weight: 500;
    color: #333;
    margin-bottom: 2px;
}

.address-suggestion-item .suggestion-details {
    font-size: 0.85rem;
    color: #666;
}

.address-suggestion-item.selected {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.address-suggestion-item.selected .suggestion-text,
.address-suggestion-item.selected .suggestion-details {
    color: var(--secondary-color);
}

/* Position relative for address field container */
.address-field-container {
    position: relative;
}