/* Import section styles */
@import url('about-section.css');
@import url('programs-section.css');
@import url('plans-section.css');
@import url('contact-section.css');
@import url('blog-section.css');
@import url('navbar.css');
@import url('footer.css');

:root {
    --primary-color: #0066cc;
    --secondary-color: #ff4444;
    --light-blue: #e6f3ff;
    --dark-blue: #003366;
    --gradient-blue: linear-gradient(135deg, #0066cc 0%, #003366 100%);
    --wave-gradient: linear-gradient(45deg, rgba(0, 102, 204, 0.15) 0%, rgba(0, 51, 102, 0.15) 100%);
    --water-gradient: linear-gradient(to bottom, #e6f3ff 0%, #b3d9ff 100%);
}

/* Enhanced Water Wave Animations */
@keyframes wave1 {
    0% { transform: translateX(0); }
    100% { transform: translateX(-1200px); }
}

@keyframes wave2 {
    0% { transform: translateX(0); }
    100% { transform: translateX(-1200px); }
}

@keyframes wave3 {
    0% { transform: translateX(0); }
    100% { transform: translateX(-1200px); }
}

@keyframes floating {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes bubble {
    0% {
        transform: translateY(120vh) scale(0);
        opacity: 0;
    }
    20% {
        opacity: 0.2;
        transform: translateY(80vh) scale(0.3);
    }
    50% {
        opacity: 0.5;
        transform: translateY(50vh) scale(0.7);
    }
    80% {
        opacity: 0.2;
        transform: translateY(20vh) scale(0.3);
    }
    100% {
        transform: translateY(-20vh) scale(0);
        opacity: 0;
    }
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--dark-blue);
    letter-spacing: -0.5px;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-lead {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.feature-item span {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-blue);
    font-weight: 600;
    letter-spacing: -0.3px;
}

.floating-badge span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.btn-primary, .btn-outline-primary {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #e6f3ff 0%, #b3d9ff 50%, #80bfff 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.wave {
    position: absolute;
    width: 200%;
    height: 150px;
    background-repeat: repeat-x;
    transform-origin: center bottom;
    bottom: 0;
    opacity: 0.3;
    z-index: 0;
    left: 0;
}

.wave1 {
    animation: wave1 15s linear infinite;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.25' fill='%230066cc'/%3E%3C/svg%3E");
    background-position: 0 bottom;
    background-size: 1200px 150px;
    bottom: 0;
}

.wave2 {
    animation: wave2 20s linear infinite;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.25' fill='%23003366'/%3E%3C/svg%3E");
    background-position: 0 bottom;
    background-size: 1200px 150px;
    bottom: 20px;
}

.wave3 {
    animation: wave3 25s linear infinite;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.25' fill='%23e6f3ff'/%3E%3C/svg%3E");
    background-position: 0 bottom;
    background-size: 1200px 150px;
    bottom: 40px;
}

.bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
    overflow: hidden;
}

.bubble {
    position: absolute;
    background: radial-gradient(circle at center, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.2) 100%);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
    animation: bubble 8s ease-in-out infinite;
}

.bubble:nth-child(1) { width: 40px; height: 40px; left: 10%; animation-delay: 0s; }
.bubble:nth-child(2) { width: 20px; height: 20px; left: 30%; animation-delay: 2s; }
.bubble:nth-child(3) { width: 50px; height: 50px; left: 50%; animation-delay: 4s; }
.bubble:nth-child(4) { width: 30px; height: 30px; left: 70%; animation-delay: 6s; }
.bubble:nth-child(5) { width: 35px; height: 35px; left: 90%; animation-delay: 8s; }

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-lead {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.hero-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.2rem 2rem;
    border-radius: 50px;
    box-shadow: 
        0 4px 15px rgba(0, 102, 204, 0.1),
        0 1px 2px rgba(0, 102, 204, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 102, 204, 0.1);
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    transform: translateX(10px);
    background: white;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 1rem;
}

.feature-item span {
    color: var(--dark-blue);
    font-weight: 600;
}

.hero-image-container {
    position: relative;
    padding: 20px;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 102, 204, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    transform: perspective(1000px) rotateY(-5deg) translateY(-20px);
    transition: all 0.5s ease;
    background: white;
    padding: 15px;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 2;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--gradient-blue);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    box-shadow: 
        0 10px 30px rgba(0, 102, 204, 0.3),
        0 4px 8px rgba(0, 102, 204, 0.2);
    animation: floating 3s ease-in-out infinite;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-badge i {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.floating-badge span {
    font-weight: 600;
}

.hero-cta {
    margin-top: 2rem;
}

.btn-primary {
    background: var(--gradient-blue);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    transform: translateX(0);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* White outline button variant */
.btn-outline-primary.btn-white {
    border-color: white;
    color: white;
}

.btn-outline-primary.btn-white:hover,
.btn-outline-primary.btn-white:focus,
.btn-outline-primary.btn-white:active {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

