<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Custom Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&amp;display=swap');

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    min-height: 200vh;
}

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(135deg, #ffa4dc 0%, #a5b5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtle-gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #ffa4dc 50%, #a5b5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Gradient Button Effect */
.gradient-button {
    background: linear-gradient(135deg, #ffa4dc 0%, #a5b5ff 100%);
    transition: all 0.3s ease;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.gradient-button:hover {
    background: linear-gradient(135deg, #a5b5ff 0%, #ffa4dc 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 164, 220, 0.4);
}

/* Header Styles */
nav {
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(165, 181, 255, 0.1), 0 2px 4px -1px rgba(165, 181, 255, 0.06);
}

nav img {
    transition: transform 0.3s ease;
}

nav img:hover {
    transform: scale(1.05);
}

/* Navigation Links */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #ffa4dc;
    transition: width 0.3s ease;
}

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

/* Form Styles */
input:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(165, 181, 255, 0.2);
}

/* Custom Utilities */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.transition-all {
    transition: all 0.3s ease;
}

/* Hero Section Enhancement */
.hero-content {
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 2rem;
}

/* Card Hover Effects */
.program-card {
    backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: 8px;
    margin: 1rem;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.program-card:nth-of-type(1) {
    background: linear-gradient(135deg, rgba(255, 164, 220, 0.4) 0%, rgba(255, 164, 220, 0.3) 100%);
}

.program-card:nth-of-type(2) {
    background: linear-gradient(135deg, rgba(165, 181, 255, 0.4) 0%, rgba(165, 181, 255, 0.3) 100%);
}

.program-card:nth-of-type(3) {
    background: linear-gradient(135deg, rgba(217, 230, 217, 0.5) 0%, rgba(217, 230, 217, 0.4) 100%);
}

.program-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.program-card:nth-of-type(1):hover {
    background: linear-gradient(135deg, rgba(255, 164, 220, 0.5) 0%, rgba(255, 164, 220, 0.4) 100%);
}

.program-card:nth-of-type(2):hover {
    background: linear-gradient(135deg, rgba(165, 181, 255, 0.5) 0%, rgba(165, 181, 255, 0.4) 100%);
}

.program-card:nth-of-type(3):hover {
    background: linear-gradient(135deg, rgba(217, 230, 217, 0.6) 0%, rgba(217, 230, 217, 0.5) 100%);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .mobile-menu {
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out;
    }

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

/* Parallax Effect */
.parallax-container {
    position: absolute;
    height: 120%;
    width: 100%;
    overflow: hidden;
}

.parallax-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
    will-change: transform;
    transition: transform 0.1s ease-out;
}

/* Hero Section Specific Parallax */
section.h-screen .parallax-container {
    height: 120%;
}

section.h-screen .parallax-img {
    height: 120%;
    object-position: center 70%;
    transform: scale(1.1);
}

/* Method Page Styles */
.method-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.method-card:nth-child(1) { animation-delay: 0.2s; }
.method-card:nth-child(2) { animation-delay: 0.4s; }
.method-card:nth-child(3) { animation-delay: 0.6s; }
.method-card:nth-child(4) { animation-delay: 0.8s; }

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

/* Method Page Hero Parallax */
.method-hero .parallax-container {
    height: 140%;
}

.method-hero .parallax-img {
    height: 140%;
    object-position: center 30%;
    transform: scale(1.1) translateY(0);
    will-change: transform;
    transition: transform 0.1s ease-out;
}

/* Community Image Section */
.object-position-bottom {
    object-position: center 35% !important;
}

/* Parallax Effect */ 

/* Hero Content */
.hero-content h2 {
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-content p {
    line-height: 1.6;
    font-weight: 400;
}

.hero-content .gradient-button {
    background: linear-gradient(135deg, #ff4d8d 0%, #ff4d8d 100%);
    transition: all 0.3s ease;
}

.hero-content .gradient-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 77, 141, 0.25);
} </pre></body></html>