/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #395F90;
    --primary-dark: #2d4a6e;
    --secondary-color: #3A987D;
    --accent-color: #3A987D;
    --text-dark: #131311;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-brand-text h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0;
}

.nav-brand-text span {
    font-size: 1rem;
    color: var(--text-light);
    display: block;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 70px;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0 Q25,50 50,30 T100,0 L100,100 L0,100 Z' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E") repeat-x;
    background-size: 200px 150px;
    z-index: 2;
    opacity: 0.6;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/hero-bg.jpg') center/cover;
    opacity: 0.5;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(57, 95, 144, 0.5) 0%,
        rgba(57, 95, 144, 0.3) 50%,
        rgba(58, 152, 125, 0.4) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeIn 1.2s ease;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(58, 152, 125, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

.hero-content::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -150px;
    width: 400px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(57, 95, 144, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: float 8s ease-in-out infinite reverse;
}

/* Brush stroke decorative elements */
.hero-brush-1 {
    position: absolute;
    top: 20%;
    left: -5%;
    width: 250px;
    height: 80px;
    background: rgba(58, 152, 125, 0.15);
    border-radius: 50px;
    transform: rotate(-25deg);
    z-index: 1;
    filter: blur(20px);
    animation: brushMove1 10s ease-in-out infinite;
}

.hero-brush-2 {
    position: absolute;
    top: 60%;
    right: -8%;
    width: 300px;
    height: 100px;
    background: rgba(57, 95, 144, 0.2);
    border-radius: 60px;
    transform: rotate(35deg);
    z-index: 1;
    filter: blur(25px);
    animation: brushMove2 12s ease-in-out infinite;
}

.hero-brush-3 {
    position: absolute;
    bottom: 15%;
    left: 10%;
    width: 200px;
    height: 60px;
    background: rgba(58, 152, 125, 0.12);
    border-radius: 40px;
    transform: rotate(15deg);
    z-index: 1;
    filter: blur(15px);
    animation: brushMove3 9s ease-in-out infinite;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    animation: fadeInUp 1s ease;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.2s both;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(240, 249, 255, 0.95) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.25);
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.15));
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: white;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: white;
    margin: 0 auto;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
}

.btn-primary:hover {
    background: #2d7a63;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -5%;
    width: 200px;
    height: 60px;
    background: rgba(58, 152, 125, 0.08);
    border-radius: 50px;
    transform: rotate(25deg);
    filter: blur(15px);
}

.mission-vision::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: -3%;
    width: 180px;
    height: 50px;
    background: rgba(57, 95, 144, 0.1);
    border-radius: 40px;
    transform: rotate(-20deg);
    filter: blur(12px);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(57, 95, 144, 0.1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(57, 95, 144, 0.15);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card h2 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* CEO Message Section */
.ceo-message {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(57, 95, 144, 0.05) 0%, rgba(58, 152, 125, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.ceo-message::before {
    content: '';
    position: absolute;
    top: 15%;
    right: -4%;
    width: 200px;
    height: 60px;
    background: rgba(58, 152, 125, 0.08);
    border-radius: 50px;
    transform: rotate(30deg);
    filter: blur(15px);
}

.ceo-message::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: -3%;
    width: 180px;
    height: 55px;
    background: rgba(57, 95, 144, 0.09);
    border-radius: 45px;
    transform: rotate(-25deg);
    filter: blur(12px);
}

.ceo-content {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 3.5rem 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(57, 95, 144, 0.1);
    position: relative;
    transition: all 0.4s ease;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
}

.ceo-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(57, 95, 144, 0.15);
}

.ceo-image-container {
    position: relative;
    flex-shrink: 0;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 4px solid rgba(57, 95, 144, 0.1);
}

.ceo-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transition: transform 0.3s ease;
    transform: scale(1.1);
}

.ceo-content:hover .ceo-photo {
    transform: scale(1.02);
}

.ceo-text {
    text-align: left;
}

.ceo-text p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.1rem;
    font-style: italic;
    position: relative;
    padding-left: 2rem;
    padding-right: 2rem;
    margin: 0;
}

.ceo-text p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.ceo-text p::after {
    content: '"';
    position: absolute;
    right: 0;
    bottom: -20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-description {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 1.5rem auto 0;
    line-height: 1.7;
}

/* About Section */
.about {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -4%;
    width: 150px;
    height: 45px;
    background: rgba(58, 152, 125, 0.06);
    border-radius: 35px;
    transform: rotate(-15deg);
    filter: blur(10px);
}

.about::after {
    content: '';
    position: absolute;
    bottom: 25%;
    right: -3%;
    width: 220px;
    height: 70px;
    background: rgba(57, 95, 144, 0.08);
    border-radius: 55px;
    transform: rotate(30deg);
    filter: blur(18px);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.8rem;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.9;
    text-align: justify;
}

.about-text p:first-child {
    font-size: 1.15rem;
    color: var(--text-dark);
    font-weight: 500;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(57, 95, 144, 0.05) 0%, rgba(58, 152, 125, 0.05) 100%);
    border-radius: 15px;
    border: 2px solid rgba(57, 95, 144, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(57, 95, 144, 0.15);
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

/* Programs Section */
.programs {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.programs::before {
    content: '';
    position: absolute;
    top: 15%;
    right: -6%;
    width: 250px;
    height: 80px;
    background: rgba(58, 152, 125, 0.07);
    border-radius: 60px;
    transform: rotate(35deg);
    filter: blur(20px);
}

.programs::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: -5%;
    width: 200px;
    height: 60px;
    background: rgba(57, 95, 144, 0.09);
    border-radius: 50px;
    transform: rotate(-25deg);
    filter: blur(15px);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.program-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(57, 95, 144, 0.1);
    position: relative;
    overflow: hidden;
}

.program-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(58, 152, 125, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30px, -30px);
    transition: transform 0.4s ease;
}

.program-card:hover::after {
    transform: translate(20px, -20px) scale(1.2);
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(57, 95, 144, 0.15);
    border-color: var(--primary-color);
}

.program-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.program-card:hover .program-icon {
    transform: scale(1.15) rotate(5deg);
}

.program-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.program-card p {
    color: var(--text-light);
    margin-bottom: 1.8rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.program-features {
    list-style: none;
    padding: 0;
}

.program-features li {
    padding: 0.6rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 2rem;
    transition: color 0.3s ease, transform 0.3s ease;
    font-size: 1rem;
}

.program-features li:hover {
    color: var(--text-dark);
    transform: translateX(5px);
}

.program-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.program-features li:hover::before {
    transform: scale(1.2);
}

/* Program Highlight */
.program-highlight {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.program-highlight::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -4%;
    width: 180px;
    height: 55px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 45px;
    transform: rotate(-20deg);
    filter: blur(12px);
}

.program-highlight::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: -5%;
    width: 200px;
    height: 65px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    transform: rotate(25deg);
    filter: blur(15px);
}

.highlight-content {
    max-width: 900px;
    margin: 0 auto;
}

.highlight-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

.highlight-date {
    font-size: 1.15rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.highlight-text p {
    margin-bottom: 1.8rem;
    line-height: 1.9;
    font-size: 1.1rem;
    opacity: 0.98;
    text-align: justify;
}

.highlight-impact {
    font-weight: 600;
    font-size: 1.15rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 3px solid rgba(255, 255, 255, 0.4);
    line-height: 1.8;
    position: relative;
    padding-left: 1.5rem;
}

.highlight-impact::before {
    content: '"';
    position: absolute;
    left: 0;
    top: 2rem;
    font-size: 3rem;
    opacity: 0.3;
    font-family: Georgia, serif;
}

/* Call to Action Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 25%;
    left: -3%;
    width: 160px;
    height: 50px;
    background: rgba(58, 152, 125, 0.07);
    border-radius: 40px;
    transform: rotate(-18deg);
    filter: blur(12px);
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: -4%;
    width: 190px;
    height: 60px;
    background: rgba(57, 95, 144, 0.08);
    border-radius: 50px;
    transform: rotate(22deg);
    filter: blur(16px);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(57, 95, 144, 0.1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(57, 95, 144, 0.15);
    border-color: var(--primary-color);
}

.testimonial-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    opacity: 0.8;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.8rem;
    font-style: italic;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    border-top: 2px solid var(--bg-light);
    padding-top: 1.2rem;
    position: relative;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.4rem;
    font-size: 1.05rem;
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Newsletter Section */
.newsletter {
    padding: 60px 0;
    background: var(--text-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -5%;
    width: 170px;
    height: 52px;
    background: rgba(58, 152, 125, 0.1);
    border-radius: 42px;
    transform: rotate(28deg);
    filter: blur(14px);
}

.newsletter::after {
    content: '';
    position: absolute;
    bottom: 25%;
    left: -4%;
    width: 150px;
    height: 48px;
    background: rgba(57, 95, 144, 0.12);
    border-radius: 38px;
    transform: rotate(-22deg);
    filter: blur(11px);
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.newsletter-text h2 {
    font-size: 2.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.newsletter-text p {
    opacity: 0.95;
    font-size: 1.1rem;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    min-width: 300px;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form input:focus {
    outline: 2px solid var(--secondary-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 20px -3px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
    display: flex;
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--bg-light);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 15%;
    right: -4%;
    width: 140px;
    height: 45px;
    background: rgba(58, 152, 125, 0.06);
    border-radius: 35px;
    transform: rotate(20deg);
    filter: blur(10px);
}

.gallery::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: -3%;
    width: 180px;
    height: 55px;
    background: rgba(57, 95, 144, 0.07);
    border-radius: 45px;
    transform: rotate(-18deg);
    filter: blur(13px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25), 0 4px 8px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.98) blur(1px);
    transition: filter 0.3s ease;
}

.gallery-item:hover img {
    filter: brightness(1) blur(0);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -5%;
    width: 200px;
    height: 60px;
    background: rgba(58, 152, 125, 0.08);
    border-radius: 50px;
    transform: rotate(-22deg);
    filter: blur(15px);
}

.contact::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: -4%;
    width: 160px;
    height: 50px;
    background: rgba(57, 95, 144, 0.09);
    border-radius: 40px;
    transform: rotate(25deg);
    filter: blur(12px);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(57, 95, 144, 0.03);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-item:hover {
    background: rgba(57, 95, 144, 0.06);
    border-color: rgba(57, 95, 144, 0.2);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 2.2rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
}

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.05rem;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(57, 95, 144, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(57, 95, 144, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-link {
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(58, 152, 125, 0.3);
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    object-fit: contain;
    margin-top: 5vh;
    animation: zoomIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--secondary-color);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.modal-prev,
.modal-next {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.modal-prev:hover,
.modal-next:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
    }
    to {
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-20px) translateX(10px);
    }
}

@keyframes brushMove1 {
    0%, 100% {
        transform: rotate(-25deg) translateY(0) translateX(0);
        opacity: 0.15;
    }
    50% {
        transform: rotate(-20deg) translateY(-30px) translateX(20px);
        opacity: 0.25;
    }
}

@keyframes brushMove2 {
    0%, 100% {
        transform: rotate(35deg) translateY(0) translateX(0);
        opacity: 0.2;
    }
    50% {
        transform: rotate(40deg) translateY(25px) translateX(-15px);
        opacity: 0.3;
    }
}

@keyframes brushMove3 {
    0%, 100% {
        transform: rotate(15deg) translateY(0) translateX(0);
        opacity: 0.12;
    }
    50% {
        transform: rotate(20deg) translateY(-20px) translateX(10px);
        opacity: 0.22;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .mission-vision-grid,
    .programs-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
        flex-direction: column;
    }

    .newsletter-form input {
        min-width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .highlight-text h2 {
        font-size: 2rem;
    }

    .ceo-content {
        grid-template-columns: 1fr;
        padding: 2.5rem 2rem;
        text-align: center;
    }

    .ceo-image-container {
        max-width: 300px;
        margin: 0 auto;
    }

    .ceo-text {
        text-align: left;
    }

    .ceo-text p {
        font-size: 1rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .ceo-text p::before,
    .ceo-text p::after {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .about-stats {
        flex-direction: column;
    }

    .stat-item h3 {
        font-size: 2rem;
    }
}

