:root {

    --primary-yellow: #70939F;

    --warm-cream: #E2E8F0;

    --earth-brown: #8B4513;

    --accent-coral: #FF6B35;

    --deep-charcoal: #2C2C2C;

    --soft-white: #FEFEFE;

    --light-gray: #F8F8F8;

}

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    font-family: 'Roboto', sans-serif;

    font-weight: 300;

    line-height: 1.6;

    color: #2F3E46 !important;

    background: var(--soft-white);

    overflow-x: hidden;

}

.container {

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 24px;

}

h1, h2, h3, h4, h5, h6 {

    font-family: 'Sansation', sans-serif;

    font-weight: 400;

    line-height: 1.2;

}

.header {

    position: fixed;

    top: 0;

    left: 0;

    right: 0;

    width: 100%;

    background: rgba(254, 254, 254, 0.98);

    backdrop-filter: blur(10px);

    z-index: 1000;

    border-bottom: 1px solid rgba(255, 215, 0, 0.1);

    transition: all 0.3s ease;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

}

.header-content {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 16px 0;

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

}

.logo-img {

    height: 50px;

    width: auto;

    transition: transform 0.3s ease;

}

.logo-img:hover {

    transform: scale(1.05);

}

.nav {
    display: flex;
    gap: 15px;

    align-items: center;

}

.nav .nav-link,

.nav a.nav-link {

    font-family: 'Roboto', sans-serif;

    font-weight: 400;

    font-size: 15px;

    color: var(--deep-charcoal) !important;

    text-decoration: none !important;

    position: relative;

    transition: color 0.3s ease;

    border: none;

    background: none;

}

.nav .nav-link::after,

.nav a.nav-link::after {

    content: '';

    position: absolute;

    bottom: -4px;

    left: 0;

    width: 0;

    height: 2px;

    background: var(--primary-yellow);

    transition: width 0.3s ease;

}

.nav .nav-link:hover::after,

.nav a.nav-link:hover::after,

.nav .nav-link.active::after,

.nav a.nav-link.active::after {

    width: 100%;

}

.nav .nav-link:hover,

.nav a.nav-link:hover,

.nav .nav-link.active,

.nav a.nav-link.active {

    color: var(--primary-yellow) !important;

}

.cta-button {

    font-family: 'Roboto', sans-serif;

    font-weight: 400;

    padding: 12px 24px;

    background: var(--primary-yellow);

    color: var(--soft-white);

    text-decoration: none;

    border-radius: 8px;

    transition: all 0.3s ease;

}

.cta-button:hover {

    background: #70939F;

}

.mobile-menu-toggle {

    display: none;

    flex-direction: column;

    gap: 5px;

    background: none;

    border: none;

    cursor: default;

    padding: 8px;

    z-index: 1001;

}

.mobile-menu-toggle span {

    width: 25px;

    height: 3px;

    background: var(--deep-charcoal);

    border-radius: 2px;

    transition: all 0.3s ease;

}

.hero {

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding-top: 80px;

    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 50%, #CBD5E1 100%);

    overflow: hidden;

}

.hero::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: 

        radial-gradient(circle at 20% 50%, rgba(112, 147, 159, 0.05) 0%, transparent 60%),

        radial-gradient(circle at 80% 80%, rgba(112, 147, 159, 0.03) 0%, transparent 60%),

        radial-gradient(circle at 50% 20%, rgba(112, 147, 159, 0.04) 0%, transparent 70%);

    pointer-events: none;

}

.hero::after {

    content: '';

    position: absolute;

    top: 50%;

    left: 50%;

    width: 1200px;

    height: 1200px;

    background: radial-gradient(circle, rgba(112, 147, 159, 0.08) 0%, transparent 80%);

    transform: translate(-50%, -50%);

    pointer-events: none;

}

@keyframes glowPulse {

    0%, 100% { opacity: 1; }

    50% { opacity: 0.7; }

}

@keyframes centralGlow {

    0%, 100% { 

        transform: translate(-50%, -50%) scale(1);

        opacity: 0.3;

    }

    50% { 

        transform: translate(-50%, -50%) scale(1.2);

        opacity: 0.5;

    }

}

.hero-background {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    overflow: hidden;

    z-index: 0;

}

.floating-shape {

    position: absolute;

    border-radius: 50%;

    background: linear-gradient(135deg, rgba(112, 147, 159, 0.2), rgba(112, 147, 159, 0.15));

    animation: floatShape 20s ease-in-out infinite;

    backdrop-filter: blur(2px);

}

.shape-1 {

    width: 100px;

    height: 100px;

    top: 10%;

    left: 10%;

    animation-delay: 0s;

    animation-duration: 25s;

}

.shape-2 {

    width: 150px;

    height: 150px;

    top: 60%;

    right: 15%;

    animation-delay: 2s;

    animation-duration: 30s;

}

.shape-3 {

    width: 80px;

    height: 80px;

    bottom: 15%;

    left: 20%;

    animation-delay: 4s;

    animation-duration: 22s;

}

.shape-4 {

    width: 120px;

    height: 120px;

    top: 30%;

    right: 10%;

    animation-delay: 6s;

    animation-duration: 28s;

}

.shape-5 {

    width: 90px;

    height: 90px;

    top: 70%;

    left: 60%;

    animation-delay: 8s;

    animation-duration: 24s;

}

@keyframes floatShape {

    0%, 100% {

        transform: translateY(0) translateX(0) rotate(0deg);

    }

    25% {

        transform: translateY(-30px) translateX(20px) rotate(90deg);

    }

    50% {

        transform: translateY(-60px) translateX(-20px) rotate(180deg);

    }

    75% {

        transform: translateY(-30px) translateX(-40px) rotate(270deg);

    }

}

.hero-content {

    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 70vh;

    width: 100%;

    position: relative;

    z-index: 1;

}

.hero-text {

    max-width: 900px;

    margin: 0 auto;

    text-align: center;

    padding: 0 20px;

}

.hero-title {

    font-size: 72px;

    margin-bottom: 30px;

    line-height: 1.2;

    text-align: center;

    font-weight: 400;

    position: relative;

}

.title-line {

    display: block;

}

.highlight {

    color: #5A757C;

    font-weight: 500;

    position: relative;

    display: inline-flex; align-items: center; justify-content: center;

}

@keyframes textGlow {

    0%, 100% {

    }

    50% {

    }

}

.hero-description {

    font-size: 22px;

    margin-bottom: 40px;

    color: #555;

    text-align: center;

    line-height: 1.7;

    max-width: 700px;

    margin-left: auto;

    margin-right: auto;

}

.hero-actions {

    display: flex;

    gap: 20px;

    justify-content: center;

    flex-wrap: wrap;

}

.button {

    font-family: 'Roboto', sans-serif;

    font-weight: 400;

    padding: 14px 32px;

    text-decoration: none;

    border-radius: 8px;

    transition: all 0.3s ease;

    display: inline-flex; align-items: center; justify-content: center;

}

.button-primary {

    background: var(--primary-yellow);

    color: var(--soft-white);

}

.button-primary:hover {

    background: #70939F;

}

.button-secondary {

    background: transparent;

    color: #2F3E46 !important;

    border: 2px solid var(--primary-yellow);

}

.button-secondary:hover {

    background: var(--primary-yellow);

    color: #ffffff !important;

}

.button-primary-inverse {

    background: var(--soft-white);

    color: #2F3E46 !important;

    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);

}

.button-primary-inverse:hover {

    background: var(--primary-yellow);

    color: var(--light-gray);

    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);

}

.hero-badges {

    position: absolute;

    bottom: 100px;

    left: 5%;

    display: flex;

    flex-direction: row;

    gap: 20px;

    z-index: 10;

}

.achievement-badge {

    background: rgba(255, 255, 255, 0.95);

    padding: 15px 25px;

    border-radius: 12px;

    border: 2px solid rgba(255, 215, 0, 0.3);

    animation: badgeFloat 3s ease-in-out infinite;

    backdrop-filter: blur(10px);

    text-align: center;

}

.achievement-badge:nth-child(2) {

    animation-delay: 1s;

}

.achievement-badge:nth-child(3) {

    animation-delay: 2s;

}

.badge-number {

    font-size: 24px;

    font-weight: 700;

    color: #70939F;

    font-family: 'Sansation', sans-serif;

    display: block;

}

.badge-label {

    font-size: 11px;

    color: #555;

    font-weight: 500;

    text-transform: uppercase;

    letter-spacing: 0.5px;

    white-space: nowrap;

}

@keyframes badgeFloat {

    0%, 100% {

    }

    50% {

    }

}

.scroll-indicator {

    position: absolute;

    bottom: 50px;

    left: 50%;

    transform: translateX(-50%);

    z-index: 2;

}

.scroll-indicator span {

    display: block;

    width: 2px;

    height: 50px;

    background: linear-gradient(180deg, transparent 0%, #70939F 50%, transparent 100%);

    animation: scroll 2s ease-in-out infinite;

}

@keyframes scroll {

    0%, 100% {   }

    50% { opacity: 1; }

}

.mission {

    padding: 120px 0;

    background: var(--soft-white);

}

.mission-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

}

.mission-image {

    position: relative;

}

.image-wrapper {

    position: relative;

    overflow: hidden;

    border-radius: 16px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);

}

.image-wrapper img {

    width: 100%;

    height: auto;

    display: block;

    transition: transform 0.6s ease;

}

.image-wrapper:hover img {

    transform: scale(1.05);

}

.image-placeholder {

    width: 100%;

    min-height: 400px;

    background: linear-gradient(135deg, var(--warm-cream) 0%, #F8FAFC 100%);

    border-radius: 16px;

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);

}

.image-placeholder svg {

    color: var(--primary-yellow);

    opacity: 0.3;

}

.content-image .image-placeholder {

    min-height: 350px;

}

.section-title {

    font-size: 42px;

    margin-bottom: 24px;

    color: #2F3E46 !important;

}

.mission-text {

    font-size: 18px;

    margin-bottom: 20px;

    color: #555;

}

.text-link {

    color: var(--primary-yellow);

    text-decoration: none;

    font-weight: 400;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    transition: gap 0.3s ease;

}

.text-link:hover {

    gap: 12px;

}

.arrow {

    transition: transform 0.3s ease;

}

.programs {

    position: relative;

    padding: 120px 0;

    background: var(--light-gray);

}

.angled-bg {

    position: absolute;

    top: -80px;

    left: 0;

    width: 100%;

    height: 80px;

    background: var(--light-gray);

    clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);

}

.section-header {

    text-align: center;

    margin-bottom: 60px;

}

.section-title-center {

    font-size: 48px;

    margin-bottom: 16px;

    color: #2F3E46 !important;

}

.section-subtitle {

    font-size: 20px;

    color: #666;

    max-width: 1200px;

    margin: 0 auto;

}

.programs-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 24px;

}

.program-card {

    background: #FFFFFF;

    padding: 40px;

    border-radius: 16px;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);

    transition: all 0.4s ease;

}

.program-card:hover {

}

.card-large {

    grid-column: 1;

    grid-row: 1 / 3;

}

.card-wide {

    grid-column: 1 / 3;

}

.card-icon {

    width: 64px;

    height: 64px;

    background: var(--primary-yellow);

    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--soft-white);

    margin-bottom: 24px;

}

.card-title {

    font-size: 24px;

    margin-bottom: 12px;

    color: #2F3E46 !important;

}

.card-description {

    font-size: 16px;

    color: #666;

    line-height: 1.7;

}

.impact {

    padding: 120px 0;

    background: linear-gradient(135deg, #70939F 0%, #70939F 100%);

    color: #2F3E46 !important;

    position: relative;

}

.impact::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: linear-gradient(45deg, rgba(0,0,0,0.03) 25%, transparent 25%, transparent 75%, rgba(0,0,0,0.03) 75%);

    background-size: 50px 50px;

    pointer-events: none;

}

.impact-content {

    text-align: center;

    margin-bottom: 60px;

    position: relative;

    z-index: 1;

}

.impact-content .section-title {

    color: #2F3E46 !important;

}

.impact-description {

    font-size: 18px;

    max-width: 700px;

    margin: 0 auto;

    color: #333;

    font-weight: 400;

}

.stats-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 40px;

    position: relative;

    z-index: 1;

}

.stat-card {

    text-align: center;

    padding: 30px;

    background: var(--soft-white);

    border-radius: 16px;

    transition: all 0.3s ease;

    border: 2px solid rgba(255, 215, 0, 0.3);

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

}

.stat-card:hover {

}

.stat-number {

    font-size: 56px;

    font-weight: 700;

    font-family: 'Sansation', sans-serif;

    margin-bottom: 8px;

    color: var(--primary-yellow);

}

.stat-plus {

    display: inline;

    font-size: 36px;

    margin-left: 4px;

    color: var(--primary-yellow);

}

.stat-label {

    font-size: 16px;

    color: #2F3E46 !important;

    font-weight: 500;

}

.stat-number {

    font-size: 56px;

    font-weight: 700;

    font-family: 'Sansation', sans-serif;

    margin-bottom: 8px;

}

.stat-plus {

    display: inline;

    font-size: 36px;

    margin-left: 4px;

}

.stat-label {

    font-size: 16px;

    opacity: 0.9;

}

.cta-section {

    position: relative;

    padding: 100px 0;

    background: var(--warm-cream);

    overflow: hidden;

}

.cta-section .container {

    position: relative;

    z-index: 1;

}

.cta-content {

    text-align: center;

    max-width: 800px;

    margin: 0 auto;

}

.cta-title {

    font-size: 48px;

    margin-bottom: 20px;

    color: #2F3E46 !important;

}

.cta-description {

    font-size: 18px;

    margin-bottom: 32px;

    color: #555;

}

.footer {

    background: var(--deep-charcoal);

    color: #ccc;

    padding: 60px 0 30px;

}

.footer-grid {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 40px;

    margin-bottom: 40px;

}

.footer-logo {

    height: 50px;

    width: auto;

    margin-bottom: 16px;

    transition: all 0.3s ease;

}

.footer-logo:hover {

    transform: scale(1.05);

}

.footer-description {

    font-size: 14px;

    line-height: 1.6;

    color: #999;

}

.footer-title {

    font-size: 16px;

    margin-bottom: 16px;

    color: var(--soft-white);

}

.footer-links {

    list-style: none;

}

.footer-links li {

    margin-bottom: 12px;

}

.footer-links a {

    color: #999;

    text-decoration: none;

    transition: color 0.3s ease;

}

.footer-links a:hover {

    color: var(--primary-yellow);

}

.footer-contact {

    list-style: none;

}

.footer-contact li {

    margin-bottom: 12px;

    font-size: 14px;

    color: #999;

}

.footer-contact a {

    color: #999;

    text-decoration: none;

    transition: color 0.3s ease;

}

.footer-contact a:hover {

    color: var(--primary-yellow);

}

.social-links {

    display: flex;

    gap: 16px;

}

.social-links a {

    width: 40px;

    height: 40px;

    background: rgba(255, 255, 255, 0.1);

    border-radius: 8px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #999;

    transition: all 0.3s ease;

}

.social-links a:hover {

    background: var(--primary-yellow);

    color: var(--soft-white);

}

.footer-bottom {

    text-align: center;

    padding-top: 30px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

}

.footer-bottom p {

    font-size: 14px;

    color: #777;

}

@media (max-width: 768px) {

    .nav {

        position: fixed;

        top: 82px;

        left: -100%;

        width: 100%;

        background: var(--soft-white);

        flex-direction: column;

        padding: 30px;

        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

        transition: left 0.3s ease;

        align-items: flex-start;

        gap: 20px;

    }

    .nav.active {

        left: 0;

    }

    .mobile-menu-toggle {

        display: flex;

    }

    .cta-button {

        display: none;

    }

    .hero-title {

        font-size: 48px;

    }

    .hero-description {

        font-size: 18px;

    }

    .hero-badges {

        display: none;

    }

    .floating-shape {

        display: none;

    }

    .mission-grid {

        grid-template-columns: 1fr;

        gap: 40px;

    }

    .programs-grid {

        grid-template-columns: 1fr;

    }

    .card-large,

    .card-wide {

        grid-column: auto;

        grid-row: auto;

    }

    .stats-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 20px;

    }

    .footer-grid {

        grid-template-columns: 1fr;

        gap: 30px;

    }

    .section-title-center {

        font-size: 36px;

    }

    .cta-title {

        font-size: 32px;

    }

}

@media (prefers-reduced-motion: reduce) {

    * {

        animation: none !important;

        transition: none !important;

    }

}

.hero-content h1, .hero-content p, .hero-content .button, .page-title, .page-subtitle { opacity: 0; }

.button:hover, .button-primary:hover, .button-secondary:hover, .button-primary-inverse:hover, .cta-button:hover {

    transform: scale(1.05) !important;

}

.mv-card {

    border: none !important;

    box-shadow: 0 0 15px rgba(112, 147, 159, 0.4) !important;

    transition: transform 0.3s ease, box-shadow 0.3s ease !important;

}

.mv-card:hover {

    transform: scale(1.02) !important;

    box-shadow: 0 0 25px rgba(112, 147, 159, 0.6) !important;

}

.mission-vision, .impact {

    background: #E2E8F0 !important;

    position: relative !important;

    overflow: hidden !important;

}

.mission-vision::before, .impact::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background-image: url('../images/logo4.png');

    background-repeat: repeat;

    background-size: auto 6.25%; 

    opacity: 0.2;

    pointer-events: none;

    z-index: 0;

}

.mission-vision .container, .impact .container {

    position: relative;

    z-index: 1;

}

.program-card, .training-card, .value-card {

    border: none !important;

    transition: transform 0.3s ease, box-shadow 0.3s ease !important;

}

.program-card:hover, .training-card:hover, .value-card:hover {

    box-shadow: 0 0 25px rgba(112, 147, 159, 0.6) !important;

}

.submit-button {

    position: relative;

    overflow: hidden;

}

.submit-button::after {

    content: '';

    position: absolute;

    top: 0;

    left: -100%;

    width: 50%;

    height: 100%;

    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);

    transform: skewX(-25deg);

    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);

}

.submit-button:hover::after {

    left: 150%;

}

.social-links a {

    position: relative;

    z-index: 1;

}

.social-links a svg {

    position: relative;

    z-index: 2;

    transition: filter 0.3s ease;

}

.social-links a:hover svg {

    filter: brightness(0) invert(1);

}

.stat-card {

    border: none !important;

    transition: box-shadow 0.3s ease !important;

}

.stat-card:hover {

    box-shadow: 0 0 15px rgba(112, 147, 159, 0.3) !important;

    transform: none !important;

}

.program-card:hover, .training-card:hover, .value-card:hover, .mv-card:hover {

    transform: scale(1.01) !important;

}

.impact::before, .mission-vision::before {

    filter: blur(2px) !important;

}

.logo-img {

    height: 40px !important;

}

.logo-img:hover {

    transform: scale(1.05) !important;

}



@media (min-width: 769px) {

    .header .cta-button {

        margin-right: -20px;

    }

}

.footer-logo {

    filter: drop-shadow(0 0 15px #70939F) !important;

    transition: filter 0.3s ease !important; 

}

.footer-logo:hover {

    transform: none !important;

}

.custom-toast {

    position: fixed;

    bottom: 30px;

    right: 30px;

    background-color: #F8FAFC;

    color: #2F3E46;

    padding: 16px 24px;

    border-radius: 8px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.1);

    border-left: 5px solid #70939F;

    z-index: 10000;

    transform: translateX(120%);

    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    font-family: 'Roboto', sans-serif;

    font-size: 15px;

    font-weight: 500;

}

.custom-toast.show {

    transform: translateX(0);

}

input, textarea, select {

    cursor: text !important;

}
/* Scroll Indicator Revize */
.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 10; cursor: default; }
.scroll-indicator span { display: block; width: 30px; height: 50px; border: 2px solid #70939F; border-radius: 15px; position: relative; background: transparent; animation: none; }
.scroll-indicator span::before { content: ''; position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 6px; height: 6px; background: #70939F; border-radius: 50%; animation: scrollBounce 2s infinite; }
@keyframes scrollBounce { 0% { transform: translate(-50%, 0); opacity: 1; } 100% { transform: translate(-50%, 20px); opacity: 0; } }

/* GENERAL RESPONSIVE OPTIMIZATIONS */
@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .mission-grid { flex-direction: column; text-align: center; }
    .mission-image { margin: 0 auto 30px; }
    .programs-grid { grid-template-columns: repeat(2, 1fr); }
    .card-wide { grid-column: span 2; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 768px) {
    .header-content { justify-content: space-between; }
    
    .cta-button { display: none; }
    .mobile-menu-toggle { display: flex; }
    
    .hero-title { font-size: 2.5rem; }
    .hero-actions { flex-direction: column; gap: 15px; }
    
    .programs-grid { grid-template-columns: 1fr; }
    .card-wide { grid-column: span 1; }
    
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-column { align-items: center; }
    .social-links { justify-content: center; }
}

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

@media (max-width: 768px) {
    .image-placeholder {
        min-height: 200px;
        max-width: 100%;
    }
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 10px;
    border-radius: 20px;
    border: 1px solid rgba(112, 147, 159, 0.3);
}

.lang-btn {
    color: #2F3E46 !important;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    color: var(--primary-color);
}

.lang-btn.active {
    background: #70939F !important;
    color: #FFFFFF !important;
}

@media (max-width: 992px) {
    .lang-switcher {
        margin-left: 0;
        margin-top: 15px;
        justify-content: center;
        background: transparent;
        border: none;
    }
}

/* --- GLOBALLY APPLIED SHINE EFFECT (ONLY ON HOVER) --- */
.button, .cta-button {
    position: relative;
    overflow: hidden;
}

.button::after, .cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    pointer-events: none;
    z-index: 10; /* Ensures it is visible on top of any button background */
}

.button:hover::after, .cta-button:hover::after {
    animation: shineHover 0.75s forwards;
}

@keyframes shineHover {
    0% { left: -150%; }
    100% { left: 200%; }
}

/* Specific styling for the bottom CTA buttons to match screenshot */
.cta-section .button {
    background: #ffffff !important;
    color: #2F3E46 !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.cta-section .button:hover {
    background: #70939F !important;
    color: #ffffff !important;
}

/* --- NEW HEADER & DROPDOWN STYLES --- */

/* Dropdown Container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--soft-white);
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 100;
    border-radius: 8px;
    overflow: hidden;
    top: 100%;
    left: 0;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: var(--deep-charcoal);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Header Actions Area (Right Side) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.action-btn {
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-volunteer {
    background-color: var(--primary-yellow);
    color: var(--soft-white);
}
.btn-volunteer:hover {
    background-color: #e69c00;
    color: #ffffff;
}

.btn-partner {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
.btn-partner:hover {
    background-color: var(--primary-color);
    color: var(--soft-white);
}

.btn-donate {
    background-color: var(--primary-color);
    color: var(--soft-white);
}
.btn-donate:hover {
    background-color: var(--deep-charcoal);
    color: var(--soft-white);
}

.lang-toggle {
    font-weight: 700;
    color: var(--deep-charcoal);
    cursor: pointer;
    padding: 4px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s;
}
.lang-toggle:hover {
    background: var(--light-gray);
}

/* Responsive fixes for header */
@media (max-width: 1100px) {
    .header-actions {
        display: none; /* Hide on small screens, can be put in mobile menu */
    }
}


/* --- Header Action Buttons --- */
.header-actions .action-btn {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    padding: 10px 20px;
    background: #70939F;
    color: var(--soft-white) !important;
    text-decoration: none;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    display: inline-block;
    text-align: center;
}
.header-actions .action-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    pointer-events: none;
    z-index: 10;
}
.header-actions .action-btn:hover::after {
    animation: shineHover 0.75s forwards;
}
.header-actions .action-btn:hover {
    transform: scale(1.05);
    background: #5d7c87;
    box-shadow: 0 4px 12px rgba(112, 147, 159, 0.3);
}


/* Ensure header actions are properly aligned */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto; /* push them to the right to look even */
}



/* Clean Logo Shift */
.header .logo {
    transform: translateX(-10px);
}
.header-content {
    gap: 20px;
    justify-content: space-between;
}


/* ULTRA AGGRESSIVE NAVBAR FIX */
.header-content {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 15px !important;
    width: 100% !important;
}

.nav {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    align-items: center !important;
    margin: 0 auto !important;
}

/* Only target top-level nav links and dropdown toggle */
.nav > .nav-link, 
.nav > .dropdown > a {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    padding: 8px 10px !important;
    font-size: 0.95rem !important;
    display: block !important; /* Fixes the zigzag vertical alignment */
    line-height: 1.5 !important;
}

/* Restored original dropdown hover behavior */
.nav .dropdown-content a {
    display: block !important;
    white-space: nowrap !important;
    padding: 10px 15px !important;
    width: 100% !important;
}

.header-actions {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    align-items: center !important;
    flex-shrink: 0 !important;
}

.header-actions .action-btn {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    padding: 8px 12px !important;
    font-size: 0.85rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Ensure Logo alignment */
.header .logo {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    transform: translateX(-10px) !important;
}
.header .logo-img {
    margin: 0 !important;
    display: block !important;
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modal.show {
    opacity: 1;
}
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 40px;
    border: 1px solid #888;
    width: 85%;
    max-width: 800px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transform: translateY(-30px);
    transition: transform 0.3s ease;
}
.modal.show .modal-content {
    transform: translateY(0);
}
.close-btn {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}
.close-btn:hover, .close-btn:focus {
    color: var(--primary-color);
    text-decoration: none;
}
.btn-read-more {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
    display: inline-block;
    align-self: flex-start;
}
.btn-read-more:hover {
    background-color: var(--primary-color);
    color: white;
}
