/* Global Styles */
:root {
    --primary-color: #2563eb;
    --secondary-color: #0f172a;
    --accent-color: #fbbf24;
    --text-light: #f8fafc;
    --text-dark: #1e293b;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.navbar-brand {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.navbar-brand:hover .logo {
    transform: scale(1.02);
}

.nav-link {
    color: var(--secondary-color) !important;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Contact button in navbar */
.nav-item:last-child .nav-link {
    background: linear-gradient(45deg, var(--primary-color), #4f46e5);
    color: white !important;
    border-radius: 25px;
    padding: 0.5rem 1.5rem !important;
    margin-left: 0.5rem;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-item:last-child .nav-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.nav-item:last-child .nav-link::after {
    display: none;
}

/* Mobile menu styles */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav-link {
        padding: 0.75rem 1rem !important;
    }

    .nav-item:last-child .nav-link {
        margin: 0.5rem 0;
        text-align: center;
    }
    
    .logo {
        height: 50px;
    }
}

@media (max-width: 576px) {
    .logo {
        height: 45px;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--text-light);
    overflow: hidden;
    background-attachment: fixed; /* For parallax effect */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    transform: scale(1.1); /* Slight scale for parallax */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(37, 99, 235, 0.7) 100%
    );
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.dynamic-text {
    min-height: 50px;
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 600;
    margin: 2rem 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: linear-gradient(45deg, var(--primary-color), #4f46e5);
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-buttons .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #4f46e5, var(--primary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-buttons .btn-primary span {
    position: relative;
    z-index: 1;
}

.cta-buttons .btn-outline-light {
    border-width: 2px;
}

.cta-buttons .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-light);
    text-align: center;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-arrow {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Floating Quote */
.floating-quote {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards 1s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Skill Cards */
.skill-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
}

.skill-card:hover {
    transform: translateY(-5px);
}

.skill-card .icon {
    color: var(--primary-color);
}

.skill-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 99, 235, 0.95);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skill-card:hover .skill-hover {
    opacity: 1;
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    margin: 1rem;
}

/* Contact Section */
#contact {
    background: var(--secondary-color);
}

.contact-info {
    height: 100%;
}

.social-links {
    gap: 1rem;
}

.social-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--accent-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary-color);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    background: var(--accent-color);
}

.back-to-top.visible {
    display: flex;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .lead {
        font-size: 1.2rem;
    }
    
    .dynamic-text {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .floating-quote {
        display: none;
    }
}

/* About Section Styles */
#about {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

/* Section Title Styles */
.section-title {
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 1.5rem auto;
    border-radius: 2px;
}

/* Vision & Mission Cards */
.vision-card, .mission-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.vision-card h3, .mission-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vision-card i, .mission-card i {
    font-size: 1.8rem;
}

/* Focus Areas */
.focus-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.focus-card:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), #4f46e5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.focus-card h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.focus-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 99, 235, 0.95);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem;
}

.focus-hover ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.focus-hover li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.focus-card:hover .focus-hover {
    opacity: 1;
}

.focus-card:hover .focus-hover li {
    opacity: 1;
    transform: translateY(0);
}

/* Why Choose Section */
.why-choose-section {
    background: white;
    border-radius: 1rem;
    padding: 3rem !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.why-choose-card {
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-5px);
}

.why-choose-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.why-choose-card h5 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* About CTA */
.about-cta {
    background: linear-gradient(45deg, var(--primary-color), #4f46e5);
    padding: 3rem;
    border-radius: 1rem;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-cta .btn {
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: white;
    color: var(--primary-color);
    border: none;
    transition: all 0.3s ease;
}

.about-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .vision-card, .mission-card {
        margin-bottom: 1rem;
    }
    
    .focus-card {
        margin-bottom: 1.5rem;
    }
    
    .why-choose-card {
        margin-bottom: 2rem;
    }
    
    .about-cta {
        padding: 2rem;
    }
    
    .about-cta h3 {
        font-size: 1.5rem;
    }
}

/* Animation Delays for Focus Cards */
.focus-hover li:nth-child(1) { transition-delay: 0.1s; }
.focus-hover li:nth-child(2) { transition-delay: 0.2s; }
.focus-hover li:nth-child(3) { transition-delay: 0.3s; }
.focus-hover li:nth-child(4) { transition-delay: 0.4s; }

/* Skills Section Styles */
.skills-section {
    background: linear-gradient(135deg, var(--primary-color), #4f46e5);
    position: relative;
    overflow: hidden;
}

/* Skills Hero */
.skills-hero {
    background: linear-gradient(135deg, #1a237e 0%, #311b92 100%);
    position: relative;
    padding: 6rem 0 8rem;
    overflow: hidden;
}

/* Animated background elements */
.skills-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
        linear-gradient(60deg, transparent 0%, rgba(255, 255, 255, 0.05) 100%);
    animation: glowPulse 8s ease-in-out infinite alternate;
}

/* Floating particles effect */
.skills-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 25% 75%, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.05) 2px, transparent 2px);
    background-size: 50px 50px, 30px 30px, 40px 40px;
    animation: particleFloat 20s linear infinite;
    opacity: 0.6;
}

/* Journey container with glass morphism */
.journey-track {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 0 32px rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

/* Add subtle light beam effect */
.journey-track::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 45%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 55%
    );
    animation: lightBeam 8s linear infinite;
    z-index: -1;
}

/* Animations */
@keyframes glowPulse {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    100% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes particleFloat {
    0% {
        background-position: 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 100px 100px, -100px 100px, 100px -100px;
    }
}

@keyframes lightBeam {
    0% {
        transform: rotate(0deg) translateX(-50%);
    }
    100% {
        transform: rotate(360deg) translateX(-50%);
    }
}

/* Update step styles */
.journey-step {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.journey-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.journey-step:hover::before {
    transform: translateX(100%);
}

/* Update connecting line */
.journey-track::before {
    height: 4px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--accent-color),
        transparent
    );
    box-shadow: 
        0 0 10px var(--accent-color),
        0 0 20px rgba(251, 191, 36, 0.3);
    animation: glowLine 2s ease-in-out infinite alternate;
}

@keyframes glowLine {
    0% {
        opacity: 0.5;
        box-shadow: 0 0 10px var(--accent-color);
    }
    100% {
        opacity: 1;
        box-shadow: 0 0 20px var(--accent-color);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .journey-track {
        padding: 2rem 1rem;
        background: transparent;
        backdrop-filter: none;
        border: none;
        box-shadow: none;
    }

    .journey-step {
        background: rgba(255, 255, 255, 0.08);
        margin: 1rem 0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .journey-track::before {
        width: 4px;
        background: linear-gradient(
            180deg,
            transparent,
            var(--accent-color),
            transparent
        );
    }
}

.skills-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.skills-wave svg {
    width: 100%;
    height: auto;
}

/* Skills Progress */
.skills-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.skills-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.progress-step.active .step-icon {
    background: var(--accent-color);
    transform: scale(1.1);
}

.progress-step span {
    color: white;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Skill Cards */
.skill-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.skill-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    transition: all 0.3s ease;
}

/* Skill-specific colors */
.life-skills .skill-icon {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.soft-skills .skill-icon {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.yoga-skills .skill-icon {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.meditation-skills .skill-icon {
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
}

.skill-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.skill-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

/* Skill Hover Effect */
.skill-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 99, 235, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skill-card:hover .skill-hover {
    opacity: 1;
}

.skill-hover ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.skill-hover li {
    color: white;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.skill-card:hover .skill-hover li {
    opacity: 1;
    transform: translateY(0);
}

/* Skill Badges */
.skill-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(37, 99, 235, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    color: var(--primary-color);
}

/* Skills CTA */
.skills-cta {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 4rem;
}

.skills-cta h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Quiz Modal */
.modal-content {
    border-radius: 1rem;
    border: none;
}

.modal-header {
    background: var(--primary-color);
    color: white;
    border-radius: 1rem 1rem 0 0;
    padding: 1.5rem;
}

.modal-title {
    font-weight: 600;
}

.btn-close {
    filter: brightness(0) invert(1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .skills-progress {
        flex-direction: column;
        gap: 2rem;
    }

    .skills-progress::before {
        width: 2px;
        height: 100%;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }

    .skill-card {
        margin-bottom: 1.5rem;
    }

    .skills-cta {
        padding: 2rem;
    }

    .skills-cta h3 {
        font-size: 1.5rem;
    }
}

/* Skills Journey Styles */
.skills-journey {
    margin-top: 4rem;
    padding: 2rem 0;
    position: relative;
}

.journey-track {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.journey-track::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50px;
    right: 50px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
    border-radius: 3px;
}

.journey-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
    max-width: 200px;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 4px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.step-icon i {
    font-size: 2.5rem;
    color: white;
    transition: all 0.3s ease;
}

.step-content {
    color: white;
    padding: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.step-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: white;
}

.step-content p {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 500;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Step States */
.journey-step.completed .step-icon {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

.journey-step.completed .step-icon i {
    color: white;
}

.journey-step.active .step-icon {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
    box-shadow: 0 0 25px rgba(251, 191, 36, 0.5);
    transform: scale(1.1);
}

.journey-step.active .step-icon i {
    color: var(--accent-color);
}

.journey-step.active .step-content h4 {
    color: var(--accent-color);
}

/* Hover Effects */
.journey-step:hover .step-icon {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.25);
}

.journey-step:hover .step-content h4 {
    color: var(--accent-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .journey-track {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .journey-track::before {
        top: 0;
        bottom: 0;
        left: 40px;
        width: 6px;
        height: auto;
        transform: translateX(-50%);
    }

    .journey-step {
        display: flex;
        align-items: center;
        text-align: left;
        margin-bottom: 2.5rem;
        width: 100%;
        max-width: none;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 1rem;
    }

    .step-icon {
        margin-right: 1.5rem;
        width: 80px;
        height: 80px;
    }

    .step-content {
        flex: 1;
    }
}

@media (max-width: 576px) {
    .step-icon {
        width: 70px;
        height: 70px;
    }

    .step-icon i {
        font-size: 2rem;
    }

    .step-content h4 {
        font-size: 1.2rem;
    }
}

/* Step Content Styles Update */
.step-content {
    color: white;
    padding: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.step-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: white;
}

.step-content p {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 500;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Step States */
.journey-step.completed .step-content p {
    color: #22c55e;
}

.journey-step.active .step-content p {
    color: var(--accent-color);
    font-weight: 600;
}

/* Hover state */
.journey-step:hover .step-content p {
    color: var(--accent-color);
}

/* Add background to step content for better contrast */
@media (max-width: 768px) {
    .journey-step {
        background: rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .step-content p {
        opacity: 1;
        color: #fbbf24;
    }
}

/* Programs Section Styles */
.programs-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

/* Word Collage Styles */
.collage-container {
    position: relative;
    min-height: 400px;
    margin-bottom: 4rem;
}

.word-collage {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    position: relative;
}

.collage-word {
    background: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.collage-word::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.collage-word:hover::before {
    transform: translateX(100%);
}

.collage-word.large {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), #4f46e5);
    color: white;
}

.collage-word.medium {
    font-size: 1.25rem;
    font-weight: 600;
    background: var(--accent-color);
    color: var(--secondary-color);
}

.collage-word i {
    margin-right: 0.5rem;
    font-size: 1.2em;
}

/* Programs Navigation */
.programs-nav .nav-pills {
    background: white;
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: inline-flex;
}

.programs-nav .nav-link {
    color: var(--secondary-color);
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.programs-nav .nav-link.active {
    background: linear-gradient(45deg, var(--primary-color), #4f46e5);
    color: white;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

/* Program Cards */
.program-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.program-header {
    background: linear-gradient(135deg, var(--primary-color), #4f46e5);
    padding: 2.5rem 2rem;
    text-align: center;
    color: white;
}

.program-card.college .program-header {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.program-icon i {
    font-size: 2.5rem;
    color: white;
}

.program-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.program-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.program-content {
    padding: 2rem;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
    padding: 1rem;
    border-radius: 12px;
}

.feature-item div {
    flex: 1;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--secondary-color);
}

.feature-item p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.program-footer {
    padding: 1.5rem 2rem;
    background: #f8fafc;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.program-footer .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(45deg, var(--primary-color), #4f46e5);
    border: none;
    transition: all 0.3s ease;
}

.program-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .program-header {
        padding: 2rem 1.5rem;
    }

    .program-content {
        padding: 1.5rem;
    }

    .feature-item {
        padding: 0.75rem 0;
    }
}

/* Events Section Styles */
.events-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

/* Events Slider */
.events-slider {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 1rem 0;
}

.events-track {
    display: flex;
    transition: transform 0.5s ease;
}

.event-slide {
    flex: 0 0 100%;
    padding: 0 15px;
}

/* Event Card */
.event-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px);
}

.event-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

/* Event Overlay */
.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.8) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.event-card:hover .event-overlay {
    opacity: 1;
}

/* Event Details */
.event-details {
    color: white;
    text-align: center;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.event-card:hover .event-details {
    transform: translateY(0);
    opacity: 1;
}

.event-tag {
    background: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.event-details h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.event-info {
    margin-bottom: 1.5rem;
}

.event-info p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.event-info i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.event-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Slider Navigation */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

.slider-arrow:hover {
    background: var(--primary-color);
    color: white;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .event-image {
        height: 400px;
    }

    .event-details h3 {
        font-size: 1.5rem;
    }

    .event-description {
        font-size: 1rem;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }
} 

/* Enhanced Inspiration & Founders Section Styles */
.inspiration-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

/* Decorative Background Elements */
.inspiration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 0;
}

/* Enhanced Inspiration Card */
.inspiration-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 4rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.inspiration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.inspiration-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    aspect-ratio: 4/3;
}

.inspiration-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.inspiration-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(37, 99, 235, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.inspiration-image:hover img {
    transform: scale(1.1);
}

.inspiration-image:hover::after {
    opacity: 1;
}

.inspiration-content {
    padding: 3rem 2rem 2rem;
}

.inspiration-content h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.inspiration-content h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 50%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

/* Enhanced Founders Section */
.founders-section {
    margin-top: 8rem;
    position: relative;
}

.founders-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, var(--primary-color), #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.founder-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    position: relative;
}

.founder-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.founder-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.founder-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.founder-card:hover .founder-image img {
    transform: scale(1.1);
}

.founder-content {
    padding: 2.5rem;
    text-align: center;
    position: relative;
    background: white;
}

.founder-content h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.founder-title {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 20px;
}

.founder-quote {
    position: relative;
    padding: 2rem;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 20px;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.founder-quote::before {
    content: '"';
    position: absolute;
    top: -1rem;
    left: 1rem;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.founder-quote p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}

.founder-card:hover .founder-quote {
    background: rgba(37, 99, 235, 0.1);
    transform: translateY(-5px);
}

/* Animation Delays */
.founder-card:nth-child(1) {
    animation-delay: 0.2s;
}

.founder-card:nth-child(2) {
    animation-delay: 0.4s;
}

.founder-card:nth-child(3) {
    animation-delay: 0.6s;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .founder-image {
        height: 350px;
    }
}

@media (max-width: 991px) {
    .inspiration-card {
        padding: 2.5rem;
    }

    .inspiration-content {
        padding: 2rem 0;
    }

    .inspiration-content h3 {
        font-size: 2rem;
    }

    .founder-image {
        height: 300px;
    }

    .founder-content {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .inspiration-section {
        padding: 5rem 0;
    }

    .inspiration-image {
        margin-bottom: 2rem;
        aspect-ratio: 16/9;
    }

    .founder-card {
        margin-bottom: 3rem;
    }

    .founder-image {
        height: 250px;
    }

    .founder-content h3 {
        font-size: 1.5rem;
    }

    .founder-quote {
        padding: 1.5rem;
    }

    .founder-quote p {
        font-size: 0.95rem;
    }

    .founders-section h2 {
        font-size: 2.5rem;
    }
} 

/* Footer Styles */
.footer-section {
    background: linear-gradient(135deg, #1a237e 0%, #311b92 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-top {
    padding: 5rem 0 3rem;
    position: relative;
}

.footer-top::before {
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

/* Footer Headings */
.footer-section h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 0.3rem;
}

.contact-item p {
    margin: 0;
    opacity: 0.9;
}

/* Contact Form */
.footer-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: white;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.2);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-form .btn {
    width: 100%;
    padding: 0.75rem;
    background: var(--accent-color);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

/* Quick Links */
.quick-links {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.quick-links li {
    margin-bottom: 0.75rem;
}

.quick-links a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    display: inline-block;
}

.quick-links a:hover {
    opacity: 1;
    color: var(--accent-color);
    transform: translateX(5px);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 45px;
    height: 45px;
    background: var(--accent-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .footer-top {
        padding: 4rem 0 2rem;
    }

    .footer-form {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-section h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .contact-item {
        font-size: 0.9rem;
    }

    .footer-form {
        padding: 1.5rem;
    }

    .social-icons a {
        width: 35px;
        height: 35px;
    }
} 

.social-links {
    margin-top: 2rem;
}

.social-links h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: white;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.social-icons i {
    font-size: 1.2rem;
}

#outputMessage {
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    display: none;
}

#outputMessage.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#outputMessage.fail {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Blog Styles */
.blog-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-excerpt {
    color: #444;
    margin-bottom: 1rem;
}

/* Hero Video Background */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

/* Ensure text is visible over video */
.hero h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .lead {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* For mobile responsiveness */
@media (max-width: 768px) {
    .hero {
        padding-top: 60px; /* Slightly less padding for mobile */
    }
    
    .hero-video {
        transform: translateY(-30%);
        margin-top: 20px;
    }
}