:root {
    --primary: #0066B3;
    --secondary: #20B2AA;
    --dark: #021E1A;
    --light: #FFFFFF;
    --gray: #F5F5F5;
}

/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color:rgb(0, 0, 0);
}

@keyframes wave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.5); }
}

.animate-wave {
    animation: wave 1.5s ease-in-out infinite;
}

.hero-background {
    position: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

/* Navigation */
.nav-link {
    color: #0E9F6E;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #047857;
}

.search-input:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.2);
}

/* Hero Section */
.hero-content {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 2rem 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeIn 0.8s ease-out forwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.2s; }
.hero-content > *:nth-child(2) { animation-delay: 0.4s; }
.hero-content > *:nth-child(3) { animation-delay: 0.6s; }
.hero-content > *:nth-child(4) { animation-delay: 0.8s; }


/* Add smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Update the logo styling section with !important */


.logo-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.logo-text {
    font-size: 2rem;
    font-weight: bold;
    color: var(--dark);
}

/* Update header padding */
header .container {
    padding: 0.25rem 1rem !important;
    height: auto !important;
    min-height: auto !important;
}

/* Update header styles */
header {
    height: auto !important;
}

/* Add to existing styles */

/* Card hover effects */
.course-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Feature icon animation */
.feature-icon {
    transition: transform 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.1);
}

/* Section transitions */
section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Newsletter form animations */
.newsletter-success {
    animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Pricing card animations */
.pricing-card {
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

/* Stats number animations */
.stats-number {
    transition: color 0.3s ease;
}

.stats-number.animated {
    color: var(--emerald-400);
}

/* Footer animations and effects */
.social-icon-link {
    box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(5, 150, 105, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(5, 150, 105, 0);
    }
}

/* Scroll to Top button animation */
#scrollToTop {
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.15);
}

#scrollToTop:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(5, 150, 105, 0.25);
}

/* Newsletter button animation */
.newsletter-btn-animation {
    position: relative;
    overflow: hidden;
}

.newsletter-btn-animation::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%) rotate(45deg);
    transition: transform 0.6s ease;
}

.newsletter-btn-animation:hover::after {
    transform: translate(-50%, -50%) rotate(45deg) scale(1.5);
}

.courses-slider {
    position: relative;
    padding: 0 20px;
}

.courses-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.3s ease-in-out;
}

.slider-prev,
.slider-next {
    transition: opacity 0.3s ease;
}

.slider-prev:disabled,
.slider-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Add toggle button styles */
.navbar-toggler {
    color: var(--light) !important; /* White color */
    border-color: var(--light) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}



/* Mobile Menu Styles */
#mobile-menu {
    z-index: 50;
    transform-origin: top right;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#mobile-menu.active {
    transform: translateX(0) translateY(0);
}

/* Optional: Add hover effect for mobile menu items */
#mobile-menu a {
    transition: transform 0.2s ease;
}

#mobile-menu a:hover {
    transform: translateX(10px);
}

#menu-overlay {
    z-index: 40;
    transition: opacity 0.3s ease;
}

body.overflow-hidden {
    overflow: hidden;
}

/* Ensure mobile menu is visible when active */
#mobile-menu.translate-x-0 {
    transform: translateX(0);
}

/* Journey Path Animations */
.journey-step::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulse 2s infinite;
}

.journey-step:nth-child(2)::before {
    animation-delay: 0.5s;
}

.journey-step:nth-child(3)::before {
    animation-delay: 1s;
}

.journey-step:nth-child(4)::before {
    animation-delay: 1.5s;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}



