
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ── NAVBAR ── */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 15px 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            background: rgba(0, 0, 0, 0.85);
            -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
            transition: background 0.3s ease;
        }

        .navbar__logo {
            height: 55px;
            flex-shrink: 0;
        }

        .navbar__logo img {
            height: 100%;
            width: auto;
        }

        .navbar__toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            z-index: 1100;
        }

        .navbar__toggle span {
            display: block;
            width: 25px;
            height: 2px;
            background: white;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .navbar__toggle.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .navbar__toggle.open span:nth-child(2) {
            opacity: 0;
        }

        .navbar__toggle.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .navbar__menu {
            display: flex;
            gap: 25px;
            list-style: none;
            align-items: center;
            margin: 0;
            padding: 0;
        }

        .navbar__menu li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
        }

        .navbar__menu li a:hover {
            color: #ff6b6b;
        }

        /* ── LANGUAGE SWITCHER ── */
        .lang-switcher {
            position: relative;
        }

        .lang-btn {
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 7px 14px;
            border-radius: 40px;
            color: white;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.85rem;
            transition: all 0.3s ease;
        }

        .lang-btn:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .lang-dropdown {
            position: absolute;
            top: calc(100% + 10px);
            right: 0;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            min-width: 150px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: all 0.3s ease;
            z-index: 2000;
        }

        .lang-switcher.active .lang-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .lang-option {
            padding: 11px 18px;
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            font-weight: 500;
            color: #333;
            font-size: 0.9rem;
            transition: background 0.2s ease;
        }

        .lang-option:hover {
            background: #f5f5f5;
        }

        .lang-option.active {
            background: #ff6b6b20;
            color: #ff6b6b;
        }

        .nav__btns {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        /* ── BUTTONS ── */
        .btn {
            padding: 10px 22px;
            font-size: 0.9rem;
            font-weight: 600;
            border: 2px solid white;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: transparent;
            color: white;
            text-decoration: none;
        }

        .btn--pink {
            background: linear-gradient(90deg, #FF00A8 0%, #FF00FF 100%);
            border: none;
            color: white !important;
            box-shadow: 0 4px 15px rgba(255, 0, 168, 0.4);
        }

        .btn--blue {
            background: #2F80ED;
            border: none;
            color: white !important;
            box-shadow: 0 4px 15px rgba(47, 128, 237, 0.4);
        }

        .btn--full {
            width: 100%;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .btn--nav {
            padding: 7px 16px;
            font-size: 0.8rem;
            background: linear-gradient(90deg, #FF00A8 0%, #FF00FF 100%);
            border: none;
            color: white !important;
            letter-spacing: 0;
            box-shadow: 0 4px 12px rgba(255, 0, 128, 0.3);
        }

        /* ── SECTIONS ── */
        .section {
            padding: 80px 0;
        }

        .section--light {
            background-color: #f9f9f9;
        }

        .section--dark {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: #333;
        }

        .section-title--light {
            color: white;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .section-subtitle--light {
            color: rgba(255, 255, 255, 0.9);
        }

        /* ── HERO ── */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 650px;
            overflow: hidden;
            display: flex;
            align-items: center;
            color: white;
            padding-top: 80px;
        }

        .slideshow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            background-size: cover;
            background-position: center;
            transition: opacity 1.5s ease;
        }

        .slide-1 {
            background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url('../images/img6.jpg');
        }

        .slide-2 {
            background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url('../images/img7.jpg');
        }

        .slide-3 {
            background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url('../images/img8.jpg');
        }

        .slide-indicators {
            position: absolute;
            bottom: 25px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: white;
            transform: scale(1.2);
        }

        .hero__container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            width: 100%;
        }

        .hero__content {
            position: relative;
            z-index: 2;
            flex: 1;
            max-width: 600px;
        }

        .hero__right {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero__image-wrapper {
            position: relative;
            width: 420px;
            height: 420px;
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            overflow: hidden;
            border: 8px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            animation: morphImage 10s ease-in-out infinite;
        }

        @keyframes morphImage {

            0%,
            100% {
                border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            }

            50% {
                border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
            }
        }

        .hero__image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* ── TYPING ── */
        .hero__title {
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            min-height: 160px;
        }

        .typing-container {
            display: flex;
            flex-direction: column;
            gap: 0.15em;
        }

        .typing-line {
            display: block;
            font-size: inherit;
            font-weight: inherit;
            line-height: 1.2;
            white-space: nowrap;
            overflow: hidden;
            width: 0;
            opacity: 0;
            color: white;
        }

        .typing-line.typing {
            animation: typing 0.8s steps(30, end) forwards, blinkCursor 0.75s step-end infinite;
            opacity: 1;
        }

        .typing-line.typing-complete {
            border-right: none;
            animation: none;
            width: auto;
            white-space: normal;
            opacity: 1;
        }

        @keyframes typing {
            from {
                width: 0;
                opacity: 1;
            }

            to {
                width: 100%;
                opacity: 1;
            }
        }

        @keyframes blinkCursor {

            from,
            to {
                border-color: transparent;
            }

            50% {
                border-color: rgba(255, 255, 255, 0.9);
            }
        }

        .hero__paragraph {
            font-size: 1.15rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        .hero__buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        /* ── INFO CARDS ── */
        .info-cards {
            position: relative;
            z-index: 10;
            padding: 60px 0;
            background: #f9f9f9;
        }

        .info-cards__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .info-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .info-card:hover {
            transform: translateY(-8px);
        }

        .info-card__icon {
            width: 60px;
            height: 60px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff5f5;
            border-radius: 50%;
        }

        .info-card__title {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: #333;
            font-weight: 700;
        }

        .info-card__text {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .info-card__image {
            width: 100%;
            height: 170px;
            border-radius: 12px;
            overflow: hidden;
            margin-top: auto;
        }

        .info-card__image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* ── PROJECTS ── */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .project-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .project-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }

        .project-card__image {
            height: 200px;
            overflow: hidden;
        }

        .project-card__image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
            filter: grayscale(100%);
        }

        .project-card:hover .project-card__image img {
            filter: grayscale(0%) sepia(100%) hue-rotate(180deg) saturate(200%);
            transform: scale(1.08);
        }

        .project-card__content {
            padding: 20px;
        }

        .project-card__title {
            font-size: 1.2rem;
            margin-bottom: 8px;
            color: #333;
        }

        .project-card__description {
            color: #666;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .project-card__progress {
            margin-bottom: 18px;
        }

        .progress-bar {
            height: 8px;
            background: #e0e0e0;
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 8px;
        }

        .progress-bar__fill {
            height: 100%;
            background: #2F80ED;
            border-radius: 4px;
            transition: width 1s ease;
        }

        .project-card__stats {
            font-size: 0.85rem;
            color: #888;
        }

        /* ── IMPACT ── */
        .impact-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin: 40px 0;
        }

        .impact-stat {
            text-align: center;
            background: white;
            padding: 28px 20px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .impact-stat:hover {
            transform: translateY(-5px);
        }

        .impact-stat__icon {
            width: 72px;
            height: 72px;
            margin: 0 auto 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #EBF4FF;
            border-radius: 20px;
            color: #2F80ED;
        }

        .impact-stat__number {
            font-size: 2.8rem;
            font-weight: 700;
            color: #2F80ED;
            margin-bottom: 5px;
        }

        .impact-stat__label {
            font-size: 1rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 8px;
        }

        .impact-stat__description {
            font-size: 0.85rem;
            color: #666;
            line-height: 1.4;
        }

        .impact-actions {
            margin-top: 30px;
        }

        /* ── SPONSORSHIP ── */
        .sponsorship {
            background: #f9f9f9;
            padding: 80px 0;
        }

        .sponsorship-content {
            max-width: 1100px;
            margin: 0 auto;
        }

        .sponsorship-text {
            text-align: center;
            max-width: 750px;
            margin: 0 auto 45px;
        }

        .sponsorship-title {
            font-size: 2rem;
            color: #333;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .sponsorship-description {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.6;
        }

        .sponsorship-card {
            display: flex;
            flex-direction: row;
            align-items: stretch;
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .sponsorship-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
        }

        .sponsorship-card__image {
            flex: 0 0 380px;
            height: 400px;
            overflow: hidden;
        }

        .sponsorship-card__image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .sponsorship-card:hover .sponsorship-card__image img {
            transform: scale(1.05);
        }

        .sponsorship-card__info {
            flex: 1;
            padding: 45px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .sponsorship-card__name {
            font-size: 2rem;
            color: #333;
            margin-bottom: 8px;
        }

        .sponsorship-card__location {
            font-size: 1.1rem;
            color: #ff6b6b;
            font-weight: 500;
            margin-bottom: 18px;
        }

        .sponsorship-card__description,
        .sponsorship-card__impact {
            font-size: 1rem;
            color: #666;
            margin-bottom: 15px;
            line-height: 1.6;
        }

        /* ════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
════════════════════════════════════════════ */

        /* Tablet landscape */
        @media (max-width: 1100px) {
            .navbar {
                padding: 15px 25px;
            }

            .navbar__menu {
                gap: 16px;
            }

            .navbar__menu li a {
                font-size: 0.8rem;
            }

            .btn--nav {
                padding: 7px 12px;
                font-size: 0.75rem;
            }
        }

        /* Tablet portrait */
        @media (max-width: 900px) {

            /* Hamburger appears */
            .navbar__toggle {
                display: flex;
            }

            .navbar__menu {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: rgba(0, 0, 0, 0.95);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 28px;
                z-index: 999;
                padding: 80px 20px 40px;
            }

            .navbar__menu.open {
                display: flex;
            }

            .navbar__menu li {
                width: auto;
                text-align: center;
            }

            .navbar__menu li a {
                font-size: 1.1rem;
            }

            .nav__btns {
                flex-direction: column;
                align-items: center;
                gap: 12px;
                width: auto;
                margin-left: 0;
            }

            .nav__btns .btn--nav {
                width: auto;
                padding: 10px 24px;
                font-size: 0.9rem;
            }

            .lang-switcher {
                width: auto;
                margin: 0;
            }

            .lang-btn {
                width: auto;
                justify-content: center;
                padding: 10px 20px;
            }

            .lang-dropdown {
                position: fixed;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 200px;
            }

            .lang-switcher.active .lang-dropdown {
                transform: translate(-50%, -50%);
            }

            /* Hero */
            .hero__container {
                flex-direction: column;
                text-align: center;
                gap: 30px;
            }

            .hero__right {
                justify-content: center;
            }

            .hero__image-wrapper {
                width: 300px;
                height: 300px;
            }

            .hero__buttons {
                justify-content: center;
            }

            .hero__title {
                font-size: 2.6rem;
                 min-height: 100%;
            }

            /* Grids */
            .info-cards__grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .projects-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .impact-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            /* Sponsorship */
            .sponsorship-card {
                flex-direction: column;
            }

            .sponsorship-card__image {
                flex: none;
                width: 100%;
                height: 300px;
            }

            .sponsorship-card__info {
                padding: 30px;
            }
        }

        /* Mobile */
        @media (max-width: 600px) {
            .navbar {
                padding: 12px 18px;
            }

            .navbar__logo {
                height: 44px;
            }

            .hero {
                min-height: 100svh;
                padding-top: 70px;
            }

            .hero__title {
                font-size: 2rem;
            }

            .hero__paragraph {
                font-size: 0.95rem;
            }

            .hero__image-wrapper {
                width: 220px;
                height: 220px;
            }

            .hero__buttons {
                flex-direction: column;
                gap: 10px;
            }

            .hero__buttons .btn {
                width: 100%;
            }

            .info-cards__grid {
                grid-template-columns: 1fr;
            }

            .projects-grid {
                grid-template-columns: 1fr;
            }

            .impact-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .section {
                padding: 55px 0;
            }

            .section-title {
                font-size: 1.7rem;
            }

            .sponsorship-card__image {
                height: 240px;
            }

            .sponsorship-card__info {
                padding: 22px;
            }

            .sponsorship-card__name {
                font-size: 1.5rem;
            }

            .sponsorship-title {
                font-size: 1.5rem;
            }
        }

        /* Small phones */
        @media (max-width: 380px) {
            .hero__title {
                font-size: 1.7rem;
            }

            .impact-grid {
                grid-template-columns: 1fr;
            }

            .btn--nav {
                font-size: 0.8rem;
            }
        }
   