:root {
    --primary-dark: #697d60;
    --primary-green: #41634d;
    --light-green: #d1e0ad;
    --soft-yellow: #fff2c1;
    --soft-red: #ed9595;
    --gray: #A9A9A9;
    --peach: #FECDA6;
    --orange: #FF9130;
    --deep-orange: #FF5B22;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, var(--orange) 0%, var(--deep-orange) 100%);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    color: var(--primary-dark);
}

/* Navbar Styles with Apple Liquid Glass Effect */
.navbar {
    background: rgba(254, 205, 166, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 145, 48, 0.1);
    box-shadow:
        0 8px 32px rgba(105, 125, 96, 0.1),
        inset 0 1px 0 rgba(254, 205, 166, 0.2);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.3s ease;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(254, 205, 166, 0.1) 0%,
            rgba(254, 205, 166, 0.05) 50%,
            rgba(254, 205, 166, 0.02) 100%);
    pointer-events: none;
    border-radius: inherit;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
    z-index: 1;
}

/* Logo/Brand with Icon */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: rgba(254, 205, 166, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(254, 205, 166, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: logoFloat 4s ease-in-out infinite;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(254, 205, 166, 0.2) 0%,
            rgba(254, 205, 166, 0.1) 50%,
            rgba(254, 205, 166, 0.05) 100%);
    border-radius: inherit;
    transition: all 0.3s ease;
}

.logo-icon i {
    font-size: 20px;
    color: var(--soft-yellow);
    z-index: 1;
    position: relative;
    transition: all 0.3s ease;
}

.brand-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--soft-yellow);
    text-shadow: 0 2px 10px rgba(105, 125, 96, 0.3);
    transition: all 0.3s ease;
}

.nav-brand:hover .logo-icon {
    background: rgba(255, 145, 48, 0.25);
    border-color: rgba(255, 145, 48, 0.4);
    transform: translateY(-2px) rotate(5deg);
    box-shadow:
        0 8px 25px rgba(127, 83, 0, 0.2),
        0 0 20px rgba(254, 205, 166, 0.1);
}

.nav-brand:hover .logo-icon i {
    color: var(--deep-orange);
    transform: scale(1.1);
}

.nav-brand:hover .brand-text {
    color: var(--deep-orange);
    text-shadow: 0 0 20px var(--deep-orange);
}

/* Logo Animation */
@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-2px) rotate(2deg);
    }

    50% {
        transform: translateY(0px) rotate(0deg);
    }

    75% {
        transform: translateY(-1px) rotate(-1deg);
    }
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--soft-yellow);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--peach));
    border-radius: 2px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--deep-orange);
    text-shadow: 0 0 15px var(--deep-orange);
}

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

/* Dropdown Styles with Glass Effect */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(254, 205, 166, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-width: 200px;
    border: 1px solid rgba(255, 145, 48, 0.4);
    border-radius: 12px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    box-shadow:
        0 8px 32px rgba(105, 125, 96, 0.2),
        inset 0 1px 0 rgba(254, 205, 166, 0.3);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 2px 8px;
}

.dropdown-link:hover {
    background: var(--orange);
    color: var(--soft-yellow);
    text-shadow: none;
    transform: translateX(5px);
}

/* Social Icons with Glass Effect */
.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--soft-yellow);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--peach);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(254, 205, 166, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover {
    background: var(--peach);
    border-color: var(--orange);
    color: var(--deep-orange);
    transform: translateY(-2px);
    box-shadow:
        0 8px 25px rgba(65, 99, 77, 0.2),
        0 0 20px var(--peach);
}

.social-link:hover::before {
    width: 40px;
    height: 40px;
}

.social-link i {
    font-size: 16px;
    z-index: 1;
    position: relative;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--soft-yellow);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(105, 125, 96, 0.2);
}

/* Demo Content */
.main-content {
    margin-top: 70px;
    padding: 80px 20px;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.demo-section {
    background: rgba(254, 205, 166, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(254, 205, 166, 0.2);
    border-radius: 20px;
    padding: 60px 40px;
    margin: 40px 0;
    box-shadow:
        0 8px 32px rgba(105, 125, 96, 0.1),
        inset 0 1px 0 rgba(254, 205, 166, 0.2);
    position: relative;
    overflow: hidden;
}

.demo-section h1 {
    font-size: 2.5rem;
    color: var(--soft-yellow);
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(105, 125, 96, 0.3);
}

.demo-section p {
    font-size: 1.2rem;
    color: var(--primary-green);
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 10px rgba(65, 99, 77, 0.2);
}

/* Mobile Responsive */
@media screen and (max-width: 1040px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(84, 90, 2, 0.684);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 145, 48, 0.4);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        gap: 0;
        height: calc(100vh - 70px);
        overflow-y: auto;
    }

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

    .nav-item {
        margin: 0;
        width: 100%;
    }

    .nav-link {
        padding: 15px 20px;
        width: 100%;
        justify-content: center;
        border-bottom: 1px solid rgba(169, 169, 169, 0.1);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(254, 205, 166, 0.05);
        border: none;
        border-radius: 0;
        margin: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        max-height: 300px;
        padding: 10px 0;
    }

    .dropdown-link {
        padding: 12px 40px;
        font-size: 14px;
        margin: 0;
        border-radius: 0;
        border-bottom: 1px solid rgba(169, 169, 169, 0.1);
        color: var(--soft-yellow);
    }

    .social-icons {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .dropdown-toggle .fa-chevron-down {
        transition: transform 0.3s ease;
    }

    .dropdown.active .dropdown-toggle .fa-chevron-down {
        transform: rotate(180deg);
    }

    /* Mobile logo adjustments */
    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo-icon i {
        font-size: 18px;
    }

    .brand-text {
        font-size: 20px;
    }

    .nav-brand {
        gap: 10px;
    }

    /* Mobile demo content adjustments */
    .main-content {
        padding: 60px 15px;
    }

    .demo-section {
        padding: 40px 20px;
        margin: 20px 0;
        border-radius: 15px;
    }

    .demo-section h1 {
        font-size: 2rem;
    }

    .demo-section p {
        font-size: 1rem;
    }
}

/* Tablet Responsive */
@media screen and (max-width: 1024px) and (min-width: 769px) {
    .nav-container {
        padding: 0 40px;
    }

    .nav-menu {
        gap: 25px;
    }

    .social-icons {
        gap: 12px;
    }

    .social-link {
        width: 36px;
        height: 36px;
    }

    .social-link i {
        font-size: 14px;
    }

    .logo-icon {
        width: 42px;
        height: 42px;
    }

    .brand-text {
        font-size: 22px;
    }

    .demo-section h1 {
        font-size: 2.2rem;
    }

    .demo-section p {
        font-size: 1.1rem;
    }
}

/* Large Screen Optimizations */
@media screen and (min-width: 1200px) {
    .nav-container {
        max-width: 1400px;
    }

    .demo-section h1 {
        font-size: 3rem;
    }

    .demo-section p {
        font-size: 1.3rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Active State */
.nav-link.active {
    color: var(--deep-orange);
    text-shadow: 0 0 15px var(--deep-orange);
}

.nav-link.active::before {
    width: 100%;
}

/* Enhanced scrolled state with more glass effect */
.navbar.scrolled {
    background: linear-gradient(135deg, rgba(255, 145, 48, 0.95) 0%, rgba(255, 91, 34, 0.95) 100%) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar.scrolled .nav-link,
.navbar.scrolled .brand-text,
.navbar.scrolled .logo-icon i {
    color: var(--soft-yellow) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}


/* Additional Glass Effects */
.navbar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(254, 205, 166, 0.3) 50%,
            transparent 100%);
    pointer-events: none;
}

/* Subtle Glow Effect */
.navbar:hover::before {
    background: linear-gradient(135deg,
            rgba(255, 145, 48, 0.15) 0%,
            rgba(255, 145, 48, 0.08) 50%,
            rgba(254, 205, 166, 0.05) 100%);
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.demo-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(254, 205, 166, 0.1) 50%,
            transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

/* Focus States for Accessibility */
.nav-link:focus,
.social-link:focus,
.nav-brand:focus {
    outline: 2px solid rgba(254, 205, 166, 0.5);
    outline-offset: 2px;
    border-radius: 4px;
}

.hamburger:focus {
    outline: 2px solid rgba(254, 205, 166, 0.5);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Hardware Acceleration */
.navbar,
.logo-icon,
.social-link,
.dropdown-menu {
    transform: translateZ(0);
    will-change: transform;
}

/* Responsive Logo */
.nav-logo img {
    max-width: 120px;
    height: auto;
    display: block;
}

/* Tablet adjustments */
@media screen and (max-width: 1024px) {
    .nav-logo img {
        max-width: 100px;
        height: auto;
    }
}

/* Mobile adjustments */
@media screen and (max-width: 1040px) {
    .nav-logo img {
        max-width: 80px;
        height: 80%;
    }
}

.nav-logo img {
    height: 60px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

@media screen and (max-width: 1024px) {
    .nav-logo img {
        height: 55px;
        width: auto;
    }
}

@media screen and (max-width: 1040px) {
    .nav-logo img {
        height: 50px;
        width: auto;
    }
}

/* Removed duplicate :root block */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--primary-dark);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--orange) 0%, var(--deep-orange) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* ensures hero content clears the navbar */
}

.hero-overlay {
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(65, 99, 77, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--soft-yellow);
    max-width: 1200px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 242, 193, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid var(--soft-yellow);
    color: var(--soft-yellow);
    animation: fadeIn 1s ease-out 0.3s both;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--soft-yellow);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--light-green);
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: var(--orange);
    color: var(--soft-yellow);
    box-shadow: 0 5px 20px rgba(255, 145, 48, 0.3);
}

.btn-primary:hover {
    background: var(--deep-orange);
    color: var(--soft-yellow);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 91, 34, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--peach);
    border: 2px solid var(--peach);
}

.btn-secondary:hover {
    background: var(--peach);
    color: var(--soft-yellow);
    transform: translateY(-3px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
    animation: fadeInUp 1s ease-out 1.1s both;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(209, 224, 173, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid var(--light-green);
}

.stat-item:nth-child(1) {
    border-color: var(--orange);
    background: rgba(255, 145, 48, 0.1);
}

.stat-item:nth-child(2) {
    border-color: var(--peach);
    background: rgba(254, 205, 166, 0.1);
}

.stat-item:nth-child(3) {
    border-color: var(--soft-yellow);
    background: rgba(255, 242, 193, 0.1);
}

.stat-item:nth-child(4) {
    border-color: var(--light-green);
    background: rgba(209, 224, 173, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--soft-yellow);
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--light-green);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    background: rgba(255, 145, 48, 0.2);
    animation-delay: 0s;
}

.circle-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    background: rgba(254, 205, 166, 0.15);
    animation-delay: 2s;
}

.circle-3 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 20%;
    background: rgba(255, 242, 193, 0.2);
    animation-delay: 4s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 0 15px;
    }
}

/* Body Section Styles with Custom Color Palette */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--light-green);
}

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

.text-content h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.text-content p {
    font-size: 1.1rem;
    color: var(--primary-dark);
    line-height: 1.8;
    margin-bottom: 30px;
}

.mission-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.point {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--primary-green);
    font-weight: 600;
}

.point i {
    color: var(--soft-yellow);
    font-size: 1.2rem;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--orange) 0%, var(--deep-orange) 100%);
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--soft-yellow);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--light-green);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-green);
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Impact Section */
.impact-section {
    padding: 80px 0;
    background: var(--peach);
    color: var(--primary-dark);
}

.impact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 50px;
}

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

.impact-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.impact-highlights {
    display: flex;
    gap: 30px;
}

.highlight {
    text-align: center;
}

.highlight h3 {
    font-size: 2rem;
    color: var(--deep-orange);
    margin-bottom: 5px;
}

.highlight p {
    color: var(--primary-dark);
    font-size: 0.9rem;
}

.success-story {
    background: var(--soft-yellow);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--light-green);
}

.success-story h4 {
    color: var(--primary-green);
    margin-bottom: 10px;
}

.success-story p {
    color: var(--primary-dark);
    font-style: italic;
    margin-bottom: 10px;
}

.success-story span {
    color: var(--deep-orange);
    font-size: 0.9rem;
}

/* Get Involved Section */
.get-involved-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--orange) 0%, var(--deep-orange) 100%);
}

.get-involved-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 50px;
}

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

.involvement-card {
    background: var(--soft-yellow);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.involvement-card h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.involvement-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Newsletter Section */
.newsletter-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--orange) 0%, var(--deep-orange) 100%);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    color: var(--soft-yellow);
    margin-bottom: 15px;
}

.newsletter-content p {
    color: var(--light-green);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
}

.newsletter-form button {
    padding: 15px 30px;
    background: var(--orange);
    color: var(--soft-yellow);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--deep-orange);
    color: var(--soft-yellow);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--orange);
    color: var(--soft-yellow);
}

.btn-primary:hover {
    background: var(--deep-orange);
    color: var(--soft-yellow);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--soft-yellow);
}

/* Responsive Design */
@media (max-width: 768px) {

    .content-grid,
    .impact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid,
    .involvement-grid {
        grid-template-columns: 1fr;
    }

    .impact-highlights {
        justify-content: space-around;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 80px;
    }
}

/* Responsive images inside .image-content */
.image-content img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    /* optional for styling */
}

/* Footer Styles with Custom Color Palette */
.main-footer {
    background: var(--primary-dark);
    color: var(--light-green);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-section h4 {
    color: var(--soft-yellow);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
}

.footer-logo h3 {
    color: var(--soft-yellow);
    font-size: 1.4rem;
    margin: 0;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--deep-orange);
    transform: translateY(-3px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--light-green);
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.footer-section ul li a:hover {
    color: var(--peach);
    opacity: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item i {
    color: var(--orange);
    font-size: 1.1rem;
    margin-top: 3px;
    min-width: 16px;
}

.contact-item div p {
    margin: 0 0 5px 0;
    font-size: 0.95rem;
}

.contact-item div a {
    color: var(--peach);
    text-decoration: none;
    font-size: 0.9rem;
}

.contact-item div a:hover {
    color: var(--soft-yellow);
}

/* Newsletter Footer Section */
.newsletter-footer {
    background: var(--primary-green);
    padding: 30px 0;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.newsletter-text h4 {
    color: var(--soft-yellow);
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.newsletter-text p {
    color: var(--light-green);
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    min-width: 350px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 18px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    background: white;
}

.newsletter-form input:focus {
    outline: 2px solid var(--orange);
}

.newsletter-form button {
    padding: 12px 25px;
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--deep-orange);
}

/* Footer Bottom */
.footer-bottom {
    background: var(--primary-green);
    padding: 25px 0;
    border-top: 1px solid rgba(209, 224, 173, 0.2);
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    color: var(--light-green);
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.certifications {
    display: flex;
    gap: 15px;
}

.cert-badge {
    background: var(--orange);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cert-badge:hover {
    background: var(--deep-orange);
    color: var(--soft-yellow);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cert-badge:focus {
    outline: 2px solid var(--soft-yellow);
    outline-offset: 3px;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: var(--light-green);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.legal-links a:hover {
    color: var(--peach);
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .newsletter-form {
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .newsletter-form {
        width: 100%;
        max-width: 400px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .certifications {
        justify-content: center;
    }

    .legal-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .footer-top {
        padding: 40px 0 30px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        border-radius: 25px;
    }

    .social-links {
        justify-content: center;
    }

    .certifications a {
        flex-direction: column;
        align-items: center;
    }

    .cert-badge {
        padding: 6px 10px;
        font-size: 0.75rem;
        text-decoration: none;
    }
}

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

@media (max-width: 992px) {
    .impact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .impact-highlights {
        justify-content: center;
        flex-wrap: wrap;
    }

    .impact-visual img {
        max-width: 100%;
        height: auto;
        border-radius: 15px;
    }
}

@media (max-width: 576px) {
    .impact-highlights {
        flex-direction: column;
        gap: 20px;
    }

    .highlight h3 {
        font-size: 1.5rem;
    }

    .impact-section h2 {
        font-size: 2rem;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.about-hero {
    /* background: linear-gradient(135deg, var(--orange) 0%, var(--deep-orange) 100%); */
    padding: 100px 0 80px;
    text-align: center;
    color: white;
}

.about-hero h1 {
    font-size: 3rem;
    color: var(--soft-yellow);
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.2rem;
    color: var(--light-green);
    max-width: 600px;
    margin: 0 auto;
}

/* Main Content Sections */
.content-section {
    padding: 80px 0;
}

.content-section:nth-child(even) {
    background: var(--soft-yellow);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Story Section */
.story-section {
    background: var(--orange);
    color: var(--soft-yellow);
}

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

.story-text h3 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.story-text p {
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.highlight-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-box {
    background: var(--soft-yellow);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--orange);
}

.stat-box h4 {
    font-size: 2rem;
    color: var(--deep-orange);
    margin-bottom: 10px;
}

.stat-box p {
    color: var(--primary-green);
    font-weight: 600;
}

/* Leadership Section */
.leadership-section {
    background: white;
}

.founder-card {
    background: var(--light-green);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
}

.founder-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.founder-avatar {
    width: 120px;
    height: 120px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.founder-info h3 {
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.founder-info p {
    color: var(--primary-green);
    font-weight: 600;
}

.awards-section {
    background: var(--peach);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.awards-section h4 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.award-item {
    color: var(--primary-green);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-category {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--orange);
}

.service-category h3 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-category i {
    color: var(--orange);
    font-size: 1.5rem;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 8px 0;
    color: var(--primary-green);
    border-bottom: 1px solid var(--light-green);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list li:before {
    content: "✓";
    color: var(--orange);
    font-weight: bold;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--light-green);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--orange);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: var(--peach);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary-dark);
    font-size: 1.5rem;
    font-weight: bold;
}

.team-card h4 {
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.team-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Vision Mission Values */
.vmv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.vmv-card {
    background: var(--soft-yellow);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vmv-card.vision {
    border-top: 5px solid var(--orange);
}

.vmv-card.mission {
    border-top: 5px solid var(--peach);
}

.vmv-card.values {
    border-top: 5px solid var(--light-green);
}

.vmv-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.vision .vmv-icon {
    background: var(--orange);
}

.mission .vmv-icon {
    background: var(--peach);
    color: var(--primary-dark);
}

.values .vmv-icon {
    background: var(--light-green);
    color: var(--primary-dark);
}

.vmv-card h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
}

.vmv-card p {
    color: var(--primary-dark);
}

.values-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    text-align: left;
}

.values-list span {
    color: var(--primary-green);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.values-list span:before {
    content: "•";
    color: var(--orange);
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.2rem;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .highlight-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .founder-header {
        flex-direction: column;
        text-align: center;
    }

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

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

    .values-list {
        grid-template-columns: 1fr;
    }
}

/* About Page Links Styling */
.about-section a,
.story-section a,
.impact-section a,
.vmv-card a {
    color: var(--primary-green);
    text-decoration: underline;
    transition: color 0.2s;
}

.about-section a:hover,
.story-section a:hover,
.impact-section a:hover,
.vmv-card a:hover {
    color: var(--deep-orange);
}

.founder-avatar img.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.therapy-hero {
    background: linear-gradient(135deg, var(--orange) 0%, var(--deep-orange) 100%);
    color: white;
    padding: 80px 0 60px 0;
    text-align: center;
}

.therapy-hero h1 {
    font-size: 2.8rem;
    color: var(--soft-yellow);
}

.therapy-hero p {
    font-size: 1.2rem;
    color: var(--light-green);
    max-width: 650px;
    margin: 18px auto 0 auto;
}

.therapy-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 24px;
}

.therapy-img-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.therapy-img-card:hover {
    transform: translateY(-8px) scale(1.025);
}

.therapy-img-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.therapy-info {
    padding: 24px;
    flex: 1;
}

.therapy-info h3 {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.therapy-info p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 0;
    line-height: 1.6;
}

.therapy-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 24px;
    background: var(--peach);
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(254, 205, 166, 0.10);
}

.therapy-section h2 {
    color: var(--primary-dark);
    text-align: center;
    margin-top: 0;
    padding-top: 36px;
    font-size: 2rem;
}

.therapy-section ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
    list-style: none;
    padding: 24px 36px 36px 36px;
    font-size: 1rem;
}

.therapy-section ul li {
    color: var(--primary-green);
    position: relative;
    padding-left: 24px;
}

.therapy-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 12px;
    background: var(--orange);
    border-radius: 50%;
}

@media (max-width: 720px) {
    .therapy-gallery {
        grid-template-columns: 1fr;
    }

    .therapy-section ul {
        grid-template-columns: 1fr;
        padding: 18px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.programs-hero {
    background: linear-gradient(135deg, var(--orange) 0%, var(--deep-orange) 100%);
    padding: 100px 0 80px;
    text-align: center;
    color: white;
}

.programs-hero h1 {
    font-size: 3rem;
    color: var(--soft-yellow);
    margin-bottom: 20px;
}

.programs-hero p {
    font-size: 1.2rem;
    color: var(--light-green);
    max-width: 700px;
    margin: 0 auto;
}

/* Stats Section */
.stats-section {
    background: var(--peach);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--orange);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.stat-card p {
    color: var(--gray);
    font-weight: 600;
}

/* Programs Section */
.programs-section {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.program-card {
    background: var(--soft-yellow);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-header {
    background: var(--primary-green);
    color: white;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.program-icon {
    width: 70px;
    height: 70px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.program-header h3 {
    font-size: 1.8rem;
    color: var(--soft-yellow);
}

.program-content {
    padding: 30px;
}

.program-description {
    color: var(--primary-green);
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.program-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.feature-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--orange);
}

.feature-item h4 {
    color: var(--primary-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item h4 i {
    color: var(--orange);
}

.feature-item p {
    color: var(--gray);
    font-size: 0.95rem;
}

.impact-badge {
    display: inline-block;
    background: var(--orange);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 15px;
}

/* Community Programs */
.community-section {
    background: var(--light-green);
    padding: 80px 0;
}

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

.community-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.community-card h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.community-card h3 i {
    color: var(--peach);
    font-size: 1.3rem;
}

.community-card ul {
    list-style: none;
}

.community-card ul li {
    padding: 10px 0;
    color: var(--primary-green);
    border-bottom: 1px solid var(--light-green);
    display: flex;
    align-items: center;
    gap: 10px;
}

.community-card ul li:before {
    content: "✓";
    color: var(--orange);
    font-weight: bold;
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    background: var(--primary-dark);
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--soft-yellow);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-section p {
    color: var(--light-green);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.btn-primary:hover {
    background: var(--deep-orange);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--peach);
    border: 2px solid var(--peach);
}

.btn-secondary:hover {
    background: var(--peach);
    color: var(--primary-dark);
}

/* Responsive */
@media (max-width: 768px) {
    .programs-hero h1 {
        font-size: 2.2rem;
    }

    .program-header {
        flex-direction: column;
        text-align: center;
    }

    .program-features {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.gallery-hero {
    background: linear-gradient(135deg, var(--orange) 0%, var(--deep-orange) 100%);
    padding: 100px 0 80px;
    text-align: center;
    color: white;
}

.gallery-hero h1 {
    font-size: 3rem;
    color: var(--soft-yellow);
    margin-bottom: 20px;
}

.gallery-hero p {
    font-size: 1.2rem;
    color: var(--light-green);
    max-width: 700px;
    margin: 0 auto;
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
    background: transparent;
    position: sticky;
    top: 0;
    z-index: 100;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

.tab-btn {
    padding: 15px 40px;
    background: var(--light-green);
    color: var(--primary-dark);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-btn:hover {
    background: var(--soft-red);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--deep-orange);
    color: white;
}

/* Gallery Sections */
.gallery-section {
    padding: 60px 0;
    display: none;
}

.gallery-section.active {
    display: block;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
}

/* Photo Grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.photo-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
}

.photo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-item:hover img {
    transform: scale(1.1);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(65, 99, 77, 0.9), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.photo-item:hover .photo-overlay {
    transform: translateY(0);
}

.photo-overlay h3 {
    color: var(--soft-yellow);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.photo-overlay p {
    color: var(--light-green);
    font-size: 0.9rem;
}

.zoom-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--orange);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 1.2rem;
}

.photo-item:hover .zoom-icon {
    opacity: 1;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.video-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
}

.video-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--primary-green);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--orange);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

.video-item:hover .play-button {
    background: var(--deep-orange);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    color: var(--primary-dark);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.video-info p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: scaleIn 0.3s ease;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-content video {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: var(--orange);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: var(--deep-orange);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--orange);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: var(--deep-orange);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-caption {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-size: 1.1rem;
}

/* Load More Button */
.load-more {
    text-align: center;
    padding: 40px 0;
}

.btn-load {
    padding: 15px 40px;
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-load:hover {
    background: var(--deep-orange);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 145, 48, 0.4);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-hero h1 {
        font-size: 2.2rem;
    }

    .tab-navigation {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .tab-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

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

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

    .lightbox-nav {
        display: none;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.contact-hero {
    padding: 80px 0 60px;
    text-align: center;
    color: white;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Main Content */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px 0;
}

/* Contact Info Cards */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-green);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-header h3 {
    color: var(--primary-dark);
    font-size: 1.3rem;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--primary-green);
}

.info-item i {
    color: var(--orange);
    margin-top: 3px;
    min-width: 18px;
}

.info-item a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--orange);
}

/* Contact Form */
.contact-form-section {
    background: transparent;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.contact-form-section h2 {
    color: var(--soft-yellow);
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.form-subtitle {
    color: var(--light-green);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

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

.form-group label {
    display: block;
    color: var(--soft-yellow);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-green);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--orange);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: var(--deep-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 91, 34, 0.4);
}

/* Map Section */
.map-section {
    margin-top: 40px;
    margin-bottom: 60px;
}

.map-container {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.map-container h2 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-align: center;
}

.map-frame {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

/* Quick Contact Cards */
.quick-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.quick-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.quick-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.quick-card i {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 15px;
}

.quick-card h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.quick-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.quick-link {
    display: inline-block;
    padding: 8px 20px;
    background: var(--light-green);
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.quick-link:hover {
    background: var(--orange);
    color: white;
}

/* Social Media Section */
.social-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    margin-bottom: 60px;
}

.social-section h2 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.social-section p {
    color: var(--gray);
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn.twitter {
    background: #1da1f2;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-btn.linkedin {
    background: #0077b5;
}

.social-btn.youtube {
    background: #ff0000;
}

.social-btn.whatsapp {
    background: #25d366;
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.2rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .contact-form-section {
        padding: 25px;
    }

    .map-frame {
        height: 300px;
    }

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

/* Vertical Timeline/Roadmap Section */
.timeline-roadmap {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.timeline-roadmap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 235, 59, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.timeline-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

/* Vertical Line */
.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg,
            var(--primary-green) 0%,
            var(--light-green) 50%,
            var(--soft-yellow) 100%);
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.4);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    padding-bottom: 60px;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInTimeline 0.6s ease forwards;
}

.timeline-item:nth-child(1) {
    animation-delay: 0.1s;
}

.timeline-item:nth-child(2) {
    animation-delay: 0.2s;
}

.timeline-item:nth-child(3) {
    animation-delay: 0.3s;
}

.timeline-item:nth-child(4) {
    animation-delay: 0.4s;
}

.timeline-item:nth-child(5) {
    animation-delay: 0.5s;
}

.timeline-item:nth-child(6) {
    animation-delay: 0.6s;
}

.timeline-item:nth-child(7) {
    animation-delay: 0.7s;
}

@keyframes slideInTimeline {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-item:last-child {
    padding-bottom: 0;
}

/* Timeline Marker */
.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
}

.timeline-dot {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border: 5px solid var(--primary-dark);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.2),
        0 4px 20px rgba(76, 175, 80, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.15);
    box-shadow: 0 0 0 8px rgba(76, 175, 80, 0.3),
        0 6px 30px rgba(76, 175, 80, 0.6);
}

.timeline-item:hover .timeline-dot::before {
    width: 26px;
    height: 26px;
}

/* Highlight Marker for Present */
.highlight-marker {
    background: linear-gradient(135deg, var(--soft-yellow), #ffd740);
    box-shadow: 0 0 0 4px rgba(255, 235, 59, 0.3),
        0 4px 20px rgba(255, 235, 59, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(255, 235, 59, 0.3),
            0 4px 20px rgba(255, 235, 59, 0.6);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(255, 235, 59, 0.2),
            0 6px 30px rgba(255, 235, 59, 0.8);
    }
}

/* Timeline Content */
.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 20px solid rgba(255, 255, 255, 0.05);
}

.timeline-item:hover .timeline-content {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(76, 175, 80, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.timeline-date {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    letter-spacing: 0.5px;
}

.timeline-content h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1rem;
}

/* Highlight Content for Present */
.highlight-content {
    background: linear-gradient(135deg, rgba(255, 235, 59, 0.15), rgba(76, 175, 80, 0.15));
    border: 2px solid rgba(255, 235, 59, 0.3);
}

.highlight-content .timeline-date {
    background: linear-gradient(135deg, var(--soft-yellow), #ffd740);
    color: var(--primary-dark);
}

.highlight-content h3 {
    color: var(--soft-yellow);
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline-wrapper::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 60px;
        padding-bottom: 40px;
    }

    .timeline-dot {
        width: 40px;
        height: 40px;
        border-width: 3px;
    }

    .timeline-dot::before {
        width: 14px;
        height: 14px;
    }

    .timeline-item:hover .timeline-dot::before {
        width: 18px;
        height: 18px;
    }

    .timeline-content {
        padding: 20px;
    }

    .timeline-content::before {
        left: -15px;
        top: 15px;
        border-right-width: 15px;
    }

    .timeline-date {
        font-size: 0.85rem;
        padding: 6px 16px;
    }

    .timeline-content h3 {
        font-size: 1.2rem;
    }

    .timeline-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .timeline-wrapper {
        padding: 20px 0;
    }

    .timeline-wrapper::before {
        left: 15px;
        width: 3px;
    }

    .timeline-item {
        padding-left: 50px;
    }

    .timeline-dot {
        width: 30px;
        height: 30px;
    }

    .timeline-dot::before {
        width: 10px;
        height: 10px;
    }
}

/* Vertical Timeline/Roadmap Section */
.timeline-roadmap {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.timeline-roadmap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 235, 59, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.timeline-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

/* Vertical Line */
.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg,
            var(--primary-green) 0%,
            var(--light-green) 50%,
            var(--soft-yellow) 100%);
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.4);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    padding-bottom: 60px;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInTimeline 0.6s ease forwards;
}

.timeline-item:nth-child(1) {
    animation-delay: 0.1s;
}

.timeline-item:nth-child(2) {
    animation-delay: 0.2s;
}

.timeline-item:nth-child(3) {
    animation-delay: 0.3s;
}

.timeline-item:nth-child(4) {
    animation-delay: 0.4s;
}

.timeline-item:nth-child(5) {
    animation-delay: 0.5s;
}

.timeline-item:nth-child(6) {
    animation-delay: 0.6s;
}

.timeline-item:nth-child(7) {
    animation-delay: 0.7s;
}

@keyframes slideInTimeline {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-item:last-child {
    padding-bottom: 0;
}

/* Timeline Marker */
.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
}

.timeline-dot {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border: 5px solid var(--primary-dark);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.2),
        0 4px 20px rgba(76, 175, 80, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: rgb(0, 0, 0);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.15);
    box-shadow: 0 0 0 8px rgba(76, 175, 80, 0.3),
        0 6px 30px rgba(76, 175, 80, 0.6);
}

.timeline-item:hover .timeline-dot::before {
    width: 26px;
    height: 26px;
}

/* Highlight Marker for Present */
.highlight-marker {
    background: linear-gradient(135deg, var(--soft-yellow), #ffd740);
    box-shadow: 0 0 0 4px rgba(255, 235, 59, 0.3),
        0 4px 20px rgba(255, 235, 59, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(255, 235, 59, 0.3),
            0 4px 20px rgba(255, 235, 59, 0.6);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(255, 235, 59, 0.2),
            0 6px 30px rgba(255, 235, 59, 0.8);
    }
}

/* Timeline Content */
.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 20px solid rgba(255, 255, 255, 0.05);
}

.timeline-item:hover .timeline-content {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(76, 175, 80, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.timeline-date {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: rgb(0, 0, 0);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    letter-spacing: 0.5px;
}

.timeline-content h3 {
    color: rgb(0, 0, 0);
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.timeline-content p {
    color: rgba(32, 32, 32, 0.85);
    line-height: 1.7;
    font-size: 1rem;
}

/* Highlight Content for Present */
.highlight-content {
    background: linear-gradient(135deg, rgba(255, 235, 59, 0.15), rgba(76, 175, 80, 0.15));
    border: 2px solid rgba(255, 235, 59, 0.3);
}

.highlight-content .timeline-date {
    background: linear-gradient(135deg, var(--soft-yellow), #ffd740);
    color: var(--primary-dark);
}

.highlight-content h3 {
    color: rgb(0, 0, 0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline-wrapper::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 60px;
        padding-bottom: 40px;
    }

    .timeline-dot {
        width: 40px;
        height: 40px;
        border-width: 3px;
    }

    .timeline-dot::before {
        width: 14px;
        height: 14px;
    }

    .timeline-item:hover .timeline-dot::before {
        width: 18px;
        height: 18px;
    }

    .timeline-content {
        padding: 20px;
    }

    .timeline-content::before {
        left: -15px;
        top: 15px;
        border-right-width: 15px;
    }

    .timeline-date {
        font-size: 0.85rem;
        padding: 6px 16px;
    }

    .timeline-content h3 {
        font-size: 1.2rem;
    }

    .timeline-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .timeline-wrapper {
        padding: 20px 0;
    }

    .timeline-wrapper::before {
        left: 15px;
        width: 3px;
    }

    .timeline-item {
        padding-left: 50px;
    }

    .timeline-dot {
        width: 30px;
        height: 30px;
    }

    .timeline-dot::before {
        width: 10px;
        height: 10px;
    }
}