:root {
    --primary-color: #059669;
    /* Emerald 600 */
    --primary-hover: #047857;
    --secondary-color: #1e3a8a;
    /* Blue 900 */
    --secondary-hover: #1e40af;
    --accent-color: #fbbf24;
    /* Amber 400 */
    --bg-light-custom: #f8fafc;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light-custom);
    color: #333;
}

/* Utility Color Classes */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.text-secondary-custom {
    color: var(--secondary-color) !important;
}

.text-accent-custom {
    color: var(--accent-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.bg-secondary-custom {
    background-color: var(--secondary-color) !important;
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--primary-color);
    color: white;
    border: none;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    background-color: var(--primary-hover);
    color: white;
    transform: scale(1.05);
}

.btn-secondary-custom {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    transition: all 0.3s;
}

.btn-secondary-custom:hover {
    background-color: var(--secondary-hover);
    color: white;
    transform: translateY(-2px);
}

/* Section Spacing */
.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
}

.navbar-scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(5px);
}

.nav-link {
    font-weight: 500;
    color: #4b5563 !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1050;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    animation: bounceCustom 3s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
    background-color: #20b858;
}

@keyframes bounceCustom {

    0%,
    100% {
        transform: translateY(-10%);
    }

    50% {
        transform: translateY(0);
    }
}

/* Stepper CSS */
.step-active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.step-inactive {
    background-color: white;
    color: #9ca3af;
    border-color: #dee2e6;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    border: 2px solid;
    transition: all 0.3s;
}

/* Custom Animations */
.animate-fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Seamless Slider */
.slider-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.slider-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: scrollLeft 30s linear infinite;
}

.slider-track:hover {
    animation-play-state: paused;
}

.slide-card {
    width: 320px;
    flex-shrink: 0;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Floating Background Icons */
.floating-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.floating-icon {
    position: absolute;
    opacity: 0.1;
    color: currentColor;
}

.animate-float-slow {
    animation: floatAnim 6s ease-in-out infinite;
}

.animate-float-medium {
    animation: floatAnim 4s ease-in-out infinite;
}

.animate-float-fast {
    animation: floatAnim 3s ease-in-out infinite;
}

@keyframes floatAnim {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Custom Card Hover */
.hover-card-up {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-card-up:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}

/* Select Radio Buttons styling */
.program-card-radio {
    display: none;
}

.program-card-label {
    cursor: pointer;
    border: 2px solid #dee2e6;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s;
    width: 100%;
    display: block;
}

.program-card-radio:checked+.program-card-label {
    border-color: var(--primary-color);
    background-color: rgba(5, 150, 105, 0.05);
}

.program-card-radio:checked+.program-card-label .icon,
.program-card-radio:checked+.program-card-label .title {
    color: var(--primary-color);
}

/* Hero & Footer Enhancements */
.hero-shape-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.05) 0%, rgba(30, 58, 138, 0.05) 100%);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: -1;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color) !important;
}

.social-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.social-icon-box:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}