<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* RESET &amp; BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

:root {
    --primary-color: #0099cc;
    --secondary-color: #66ccff;
    --accent-color: #004466;
    --light-color: #e6f9ff;
    --dark-color: #002233;
    --text-color: #333333;
    --white-color: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text-color);
    background-color: var(--white-color);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* UTILITY CLASSES */
.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white-color);
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ANIMATIONS */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes waveAnimation {
    0% { transform: translateX(0) translateZ(0) scaleY(1); }
    50% { transform: translateX(-25%) translateZ(0) scaleY(0.8); }
    100% { transform: translateX(-50%) translateZ(0) scaleY(1); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes ripple {
    0% { transform: scale(0.95); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

/* HEADER STYLES */
#header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.header-scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0 !important;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    margin-left: auto;
}

.nav-menu ul {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
}

/* HERO SECTION */
#hero {
    height: 100vh;
    position: relative;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-color) 0%, var(--secondary-color) 100%);
}

.hero-content {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 550px;
    animation: fadeIn 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-image {
    position: absolute;
    right: -10%;
    bottom: -10%;
    width: 65%;
    height: 85%;
    background: url('images/banner.jpg') no-repeat center center/cover;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,&lt;svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"&gt;&lt;path 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" fill="white" opacity="1"/&gt;&lt;/svg&gt;') repeat-x;
    background-size: 1200px 100px;
    animation: waveAnimation 10s linear infinite;
}

/* BENEFITS SECTION */
#benefits {
    background-color: var(--white-color);
}

.benefits-intro {
    text-align: center;
    margin-bottom: 80px;
}

.benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.benefit-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--light-color);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.5s ease;
}

.benefit-card:hover::before {
    transform: scale(5);
}

.benefit-icon {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.benefit-text {
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ABOUT SECTION */
#about {
    background: linear-gradient(to right, var(--white-color) 50%, var(--light-color) 50%);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 5px solid var(--primary-color);
    border-radius: 10px;
    z-index: -1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 18px;
}

/* PROGRAMS SECTION */
#programs {
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.programs-container {
    position: relative;
    z-index: 1;
}

.programs-intro {
    text-align: center;
    margin-bottom: 60px;
}

.program-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 25px;
    background: var(--white-color);
    border: none;
    margin: 0 10px 10px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--text-color);
}

.tab-btn.active, .tab-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.program-content {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.program-content.active {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.program-card {
    background: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.program-image {
    height: 200px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.1);
}

.program-details {
    padding: 25px;
}

.program-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.program-desc {
    line-height: 1.7;
    margin-bottom: 20px;
}

.program-meta {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.meta-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.meta-icon {
    margin-right: 5px;
    color: var(--primary-color);
}

/* TESTIMONIALS SECTION */
#testimonials {
    background-color: var(--white-color);
    text-align: center;
}

.testimonials-intro {
    max-width: 700px;
    margin: 0 auto 60px;
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-quote {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-quote::before,
.testimonial-quote::after {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
}

.testimonial-quote::before {
    top: -20px;
    left: -20px;
}

.testimonial-quote::after {
    content: '"';
    bottom: -60px;
    right: -20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.author-details p {
    color: var(--primary-color);
    font-weight: 500;
}

.testimonial-controls {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* CONTACT SECTION */
#contact {
    background-color: var(--dark-color);
    color: var(--white-color);
    position: relative;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    color: var(--white-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-info p {
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary-color);
    font-size: 20px;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-item p {
    margin: 0;
    opacity: 0.8;
}

.contact-form {
    background: var(--white-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    color: var(--text-color);
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 153, 204, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-block {
    width: 100%;
}

/* FOOTER */
#footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    text-align: center;
    padding: 30px 0;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--white-color);
    margin: 0 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    color: var(--white-color);
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.copyright {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* SCROLL TO TOP */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

/* Water Animation */
.water-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, rgba(0, 153, 204, 0) 0%, rgba(0, 153, 204, 0.5) 100%);
    z-index: 0;
    overflow: hidden;
}

.water-ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 3s linear infinite;
}

.ripple-1 {
    width: 100px;
    height: 100px;
    left: 20%;
    bottom: 40px;
    animation-delay: 0s;
}

.ripple-2 {
    width: 150px;
    height: 150px;
    left: 50%;
    bottom: 80px;
    animation-delay: 1s;
}

.ripple-3 {
    width: 80px;
    height: 80px;
    left: 70%;
    bottom: 30px;
    animation-delay: 2s;
}

/* MEDIA QUERIES */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-image {
        width: 55%;
        height: 75%;
    }
}

@media (max-width: 992px) {
    .section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 400px;
        order: -1;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info {
        text-align: center;
        margin-bottom: 30px;
    }

    .contact-item {
        justify-content: center;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.close-menu{
    display: none;
}
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
        font-size: 24px;
        cursor: pointer;
        margin-left: auto;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white-color);
        padding: 80px 40px;
        transition: all 0.5s ease;
        z-index: 1001;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
    }

    .nav-menu li {
        margin: 0 0 20px 0;
    }

    .close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 24px;
        cursor: pointer;
    }

    .hero-content {
        text-align: center;
        padding-top: 100px;
    }

    .hero-text {
        max-width: 100%;
        margin-bottom: 50px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image {
        position: relative;
        width: 100%;
        height: 300px;
        right: 0;
        bottom: 0;
        margin-top: 50px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .program-content.active {
        grid-template-columns: 1fr;
    }
    .close-menu{
        display: block;
    }
    
}
header .container{
    align-items: center;
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .about-image::before {
        display: none;
    }

    .testimonial-quote {
        font-size: 1.1rem;
    }

    .footer-links a {
        margin: 0 10px 10px;
    }
}

.text-wrapper h2, .text-wrapper h3{
    margin-top: 20px;
    margin-bottom: 10px;
  }
  
  .text-wrapper h1{
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
  }
  .text-wrapper h2{
    font-size: 1.5rem;
  }
  
  .text-wrapper{
    margin: 30px auto;
    max-width: 1200px;
  }</pre></body></html>