﻿ 
:root {
    --primary-color: #4a86e8;
    --secondary-color: #ff9900;
    --accent-color: #6ac259;
    --dark-color: #1f2937;
    --light-color: #f8fafc;
    --light-yellow: #fff8e1;
    --light-blue: #e3f2fd;
    --light-green: #e8f5e9;
    --light-pink: #fce4ec;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-color);
    overflow-x: hidden;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234a86e8' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Animation classes */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .fade-up.appear {
        opacity: 1;
        transform: translateY(0);
    }

.stagger-item {
    transition-delay: calc(var(--i) * 100ms);
}

/* Navbar styling */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: white;
    transition: all 0.3s ease;
}

    .navbar.scrolled {
        padding-top: 5px;
        padding-bottom: 5px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

.navbar-brand img {
    height: 50px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    position: relative;
    margin: 0 5px;
    transition: color 0.3s ease;
}

    .navbar-nav .nav-link::after {
        content: '';
        position: unset;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        
        transition: width 0.3s ease;
    }

  /*  .navbar-nav .nav-link:hover::after {
        width: 100%;
    }*/

/* Hero section */
.hero {
   /* background: linear-gradient(135deg, rgba(74, 134, 232, 0.8), rgba(106, 194, 89, 0.7));
    color: white;
    padding: 140px 0 120px;*/
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
        top: -100px;
        right: -100px;
        animation: pulse 8s infinite;
    }

    .hero::after {
        content: '';
        position: absolute;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
        bottom: -50px;
        left: -50px;
        animation: pulse 6s infinite 1s;
    }

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.2;
    }

    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

.hero h1 {
    font-weight: 800;
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero .lead {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Services */
.service-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    background-color: white;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 0;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        transition: height 0.5s ease;
        opacity: 0.1;
        z-index: -1;
    }

    .service-card:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

        .service-card:hover::before {
            height: 100%;
        }

.service-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: all 0.5s ease;
    display: inline-block;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--secondary-color);
}

/* Features */
.feature-section {
    background: linear-gradient(135deg, var(--light-color) 0%, #e8f4fd 100%);
    position: relative;
    overflow: hidden;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234a86e8' fill-opacity='0.05'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

    .feature-section::before,
    .feature-section::after {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background-color: rgba(30, 58, 138, 0.03);
        z-index: 0;
    }

    .feature-section::before {
        top: -150px;
        left: -150px;
    }

    .feature-section::after {
        bottom: -150px;
        right: -150px;
    }

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    margin-bottom: 25px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

    .feature-icon:hover {
        transform: translateY(-5px) rotate(5deg);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

/* Fun Kids-friendly elements */
.balloon {
    position: absolute;
    width: 30px;
    height: 40px;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.balloon-1 {
    top: 10%;
    left: 5%;
    background-color: var(--secondary-color);
    animation-delay: 0s;
}

.balloon-2 {
    top: 15%;
    right: 7%;
    background-color: var(--primary-color);
    animation-delay: 1s;
}

.balloon-3 {
    top: 20%;
    left: 10%;
    background-color: var(--accent-color);
    animation-delay: 2s;
}

.balloon-4 {
    top: 18%;
    right: 12%;
    background-color: #e879f9;
    animation-delay: 3s;
}

.balloon::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 30px;
    background-color: #ddd;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
}

/* Animated clouds */
.cloud {
    position: absolute;
    background: white;
    border-radius: 50px;
    opacity: 0.8;
    z-index: 0;
}

.cloud-1 {
    width: 180px;
    height: 60px;
    top: 15%;
    left: -80px;
    animation: moveCloud 30s linear infinite;
}

.cloud-2 {
    width: 120px;
    height: 40px;
    top: 25%;
    right: -60px;
    animation: moveCloud 25s linear infinite reverse;
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: white;
    border-radius: 50%;
}

.cloud-1::before {
    width: 80px;
    height: 80px;
    top: -40px;
    left: 30px;
}

.cloud-1::after {
    width: 60px;
    height: 60px;
    top: -30px;
    right: 30px;
}

.cloud-2::before {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 20px;
}

.cloud-2::after {
    width: 40px;
    height: 40px;
    top: -20px;
    right: 20px;
}

@keyframes moveCloud {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(100vw + 200px));
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Footer */
footer {
    background: linear-gradient(to right, var(--dark-color), #0f172a);
    color: white;
    position: relative;
    overflow: hidden;
}

    footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(to right, var(--accent-color), var(--secondary-color), var(--primary-color));
    }

.footer-links a {
    color: #ddd;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

    .footer-links a:hover {
        color: white;
    }

.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

    .social-icons a:hover {
        color: var(--accent-color);
    }

/* Call to action buttons */
.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), #6ac259);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s ease;
    box-shadow: 0 5px 15px rgba(74, 134, 232, 0.3);
}

    .btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, #6ac259, var(--secondary-color));
        transition: all 0.5s ease;
        z-index: -1;
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
    }

        .btn-primary:hover::before {
            left: 0;
        }

.btn-outline-light {
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s ease;
}

    .btn-outline-light::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.1);
        transition: all 0.5s ease;
        z-index: -1;
    }

    .btn-outline-light:hover::before {
        left: 0;
    }

/* Quick links */
.quick-links {
    background: linear-gradient(to right, var(--primary-color), #7aa9f5);
    color: white;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

    .quick-links::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        z-index: -1;
    }

.quick-link-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

    .quick-link-item:hover {
        background-color: rgba(255, 255, 255, 0.15);
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

.quick-link-icon {
    font-size: 2.25rem;
    margin-right: 20px;
    color: var(--secondary-color);
    transition: all 0.5s ease;
}

.quick-link-item:hover .quick-link-icon {
    transform: scale(1.1) rotate(10deg);
}

 
