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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #f9f9f7;
    overflow-x: hidden;
}

/* ═══════════════════════════════════════
   MAINTENANCE MODAL
   ═══════════════════════════════════════ */
.maint-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 43, 94, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.maint-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.maint-card {
    background: #fff;
    border-radius: 2px;
    max-width: 420px;
    width: 90%;
    padding: 48px 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 12px 40px rgba(13, 43, 94, 0.15);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    border: 3px solid #FF9933;
    border-top-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.maint-overlay.show .maint-card {
    transform: translateY(0) scale(1);
}

.maint-accent-bar {
    display: none;
}

.maint-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 3px solid #FF9933;
    background: #fff;
    color: #FF9933;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    line-height: 1;
    font-weight: 300;
}

.maint-close:hover {
    background: #FF9933;
    color: #fff;
    transform: rotate(90deg);
}

.maint-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: #FF9933;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes maint-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.maint-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.maint-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #0D2B5E;
    margin: 0 0 12px 0;
    letter-spacing: -0.3px;
}

.maint-card p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.maint-home-btn {
    display: inline-block;
    background: #FF9933;
    color: #0D2B5E;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 11px 28px;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
}

.maint-home-btn:hover {
    background: #0D2B5E;
    color: #FF9933;
    transform: translateY(-1px);
}

/* ═══════════════════════════════════════
   ANNOUNCEMENT TICKER
   ═══════════════════════════════════════ */
.announcement-ticker {
    background: #0D2B5E;
    padding: 12px 20px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.ticker-content {
    display: flex;
    white-space: nowrap;
}

.ticker-text {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 0 80px;
    display: inline-block;
    letter-spacing: 1.2px;
}

.ticker-en {
    color: #ffffff;
    margin-right: 15px;
}

.ticker-de {
    color: #FFD700;
    margin-left: 15px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .ticker-text {
        font-size: 13px;
        padding: 0 50px;
        font-weight: 700;
        letter-spacing: 1px;
    }
    .announcement-ticker {
        padding: 10px 15px;
    }
}

/* ═══════════════════════════════════════
   NAV BAR
   ═══════════════════════════════════════ */
.nav-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    background: #fff;
    border-bottom: 1px solid #f0f0ee;
    height: 110px;
    display: flex;
    align-items: center;
    padding: 0 4rem;
}

.nav-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    border-right: 1.5px solid #ccc;
    padding-right: 28px;
    margin-right: 10px;
    height: 65px;
    flex-shrink: 0;
}

.logo svg {
    height: 100%;
    width: auto;
}

.logo-sub {
    font-size: 8.5px;
    font-weight: 600;
    color: #0D2B5E;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    line-height: 1.7;
    opacity: 0.85;
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-item {
    position: static;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-item > a {
    color: #2a2a3a;
    font-size: 11.5px;
    font-weight: 600;
    text-decoration: none;
    padding: 0 22px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    transition: color 0.15s;
    cursor: pointer;
}

.nav-item > a:hover,
.nav-item.active > a {
    color: #0a0a0a;
    font-weight: 700;
}

.nav-item.ways > a {
    color: #185FA5;
    gap: 6px;
}

.nav-item.ways > a svg {
    width: 18px;
    height: 18px;
    fill: #185FA5;
}

.nav-item.join > a {
    color: #e82987;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-item.join > a:hover {
    color: #c01570;
}

/* DROPDOWN */
.dropdown-panel {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 110px;
    background: #fff;
    border-bottom: 1px solid #e8e8e4;
    padding: 2.5rem 4rem 2.75rem;
    z-index: 999;
}

.dropdown-panel.pink {
    background: #e82987;
    border-bottom-color: #e82987;
}

.nav-item:hover .dropdown-panel,
.nav-item.active .dropdown-panel {
    display: block;
}

.dd-inner {
    width: 100%;
    box-sizing: border-box;
}

.dd-cols-5 { display: flex; justify-content: space-between; gap: 0; width: 100%; }
.dd-cols-5 > * { flex: 1; text-align: center; }

.dd-cols-4 { display: flex; justify-content: space-between; gap: 0; width: 100%; }
.dd-cols-4 > * { flex: 1; text-align: center; }

.dd-cols-3 { display: flex; justify-content: space-between; gap: 2rem; width: 80%; margin: 0 auto; }
.dd-cols-3 > * { flex: 1; text-align: left; }

.dd-cols-2 { display: flex; justify-content: space-between; gap: 3rem; width: 100%; }
.dd-cols-2 > * { flex: 1; text-align: left; }

.dd-cols-2--centered { width: 60%; margin: 0 auto; }
.dd-cols-2--wide { width: 70%; margin: 0 auto; }

.dd-cols-5 .dd-link,
.dd-cols-4 .dd-link { text-align: center; }

.dd-cols-5 .dd-link,
.dd-cols-4 .dd-link,
.dd-cols-3 .dd-link,
.dd-cols-2 .dd-link {
    font-size: 14.5px;
    padding: 8px 0;
}

.dd-cat {
    font-size: 13.5px;
    font-weight: 600;
    color: #0D2B5E;
    margin-bottom: 1rem;
    letter-spacing: 0.2px;
}

.dd-link {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #3a3a5a;
    text-decoration: none;
    padding: 7px 0;
    line-height: 1.4;
    transition: color 0.15s;
}

.dd-link:hover { color: #000; }

.dd-helper {
    font-size: 11.5px;
    font-weight: 400;
    color: #6a6a7a;
    margin-bottom: 2.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    word-spacing: 3px;
}

.dd-icon-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    text-decoration: none;
    transition: color 0.15s;
}

.dd-icon-item svg { width: 22px; height: 22px; fill: #185FA5; flex-shrink: 0; }
.dd-icon-item span { font-size: 14px; color: #3a3a5a; }
.dd-icon-item:hover span { color: #000; }

.pink .dd-link { color: rgba(255,255,255,0.92); font-size: 15px; font-weight: 400; padding: 9px 0; }
.pink .dd-link:hover { color: #fff; }
.pink .dd-cat { color: rgba(255,255,255,0.7); font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 0.6rem; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: transparent;
    border: none;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #0D2B5E;
    border-radius: 2px;
    transition: all 0.25s;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 2000;
    overflow: hidden;
    flex-direction: column;
}

.mobile-menu.open { display: flex; }

.mob-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    height: 70px;
    border-bottom: 1px solid #ededea;
    flex-shrink: 0;
}

.mob-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.mob-logo svg { height: 40px; width: auto; }

.mob-logo-text {
    font-size: 7.5px;
    font-weight: 700;
    color: #0D2B5E;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.7;
}

.mob-close {
    background: #f0f0ee;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: #444;
    flex-shrink: 0;
}

.mob-nav {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.mob-accordion { border-bottom: 1px solid #ededea; }

.mob-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.5rem;
    cursor: pointer;
    background: #fff;
    border: none;
    width: 100%;
    text-align: left;
}

.mob-accordion-title { font-size: 16px; font-weight: 500; color: #1a1a2e; }
.mob-accordion-title--ways { color: #0D2B5E; }
.mob-accordion-title--join { color: #e82987; }

.mob-accordion-arrow { color: #0D2B5E; transition: transform 0.25s; flex-shrink: 0; }
.mob-accordion-title--join + .mob-accordion-arrow { color: #e82987; }
.mob-accordion.open .mob-accordion-arrow { transform: rotate(180deg); }

.mob-accordion-body { display: none; padding: 0 1.5rem 0.75rem; flex-direction: column; gap: 0; }
.mob-accordion.open .mob-accordion-body { display: flex; }

.mob-acc-link {
    color: #4a4a6a;
    font-size: 14px;
    text-decoration: none;
    padding: 0.6rem 0;
    border-bottom: 0.5px solid #f3f3f0;
}

.mob-acc-link:last-child { border-bottom: none; }
.mob-acc-link:hover { color: #0D2B5E; }

@media (max-width: 960px) {
    .nav { padding: 0 1.25rem; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
}

/* ═══════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════ */
.hero {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero picture {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero img {
    width: 100%;
    height: auto;
    max-width: 1440px;
    display: block;
}

/* ═══════════════════════════════════════
   VARIABLES
   ═══════════════════════════════════════ */
:root {
    --navy: #0D2B5E;
    --pink: #e82987;
    --green: #138808;
    --saffron: #FF9933;
    --light-gray-bg: #f9f7f7;
    --text-main: #333333;
    --dot-inactive: #d1d1d1;
}

/* ═══════════════════════════════════════
   ABOUT SECTION (hp-sec4)
   ═══════════════════════════════════════ */
.hp-sec4 {
    width: 100%;
    padding: 60px 0;
    background: #fff;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--pink);
    margin-bottom: 40px;
    text-align: left;
    letter-spacing: 0.02em;
    word-spacing: 0.08em;
}

.about-grid { display: flex; flex-wrap: wrap; align-items: center; gap: 0; }

.about-text-col { flex: 0 0 55%; max-width: 55%; padding-right: 40px; order: 1; }
.about-image-col { flex: 0 0 45%; max-width: 45%; position: relative; order: 2; }

.text-block {
    background-color: var(--light-gray-bg);
    padding: 40px;
    border-radius: 4px;
}

.text-block p {
    font-size: 15.5px;
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 24px;
    color: var(--text-main);
}

.text-block .more-link {
    color: #185FA5;
    text-decoration: underline;
    font-weight: 600;
    font-size: 14px;
}

.image-wrapper { position: relative; z-index: 2; }

.image-wrapper img {
    width: 100%;
    display: block;
    position: relative;
    z-index: 2;
    border-radius: 2px;
}

.pink-accent-box {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background-color: var(--pink);
    z-index: 1;
}

@media (max-width: 767px) {
    .section-title { font-size: 32px; margin-bottom: 25px; }
    .about-image-col { flex: 0 0 100%; max-width: 100%; margin-bottom: 30px; order: 1; padding: 0 10px; }
    .about-text-col { flex: 0 0 100%; max-width: 100%; order: 2; padding-right: 0; }
    .text-block { padding: 20px 0; background-color: transparent; }
    .text-block p { font-size: 14.5px; line-height: 1.6; }
    .pink-accent-box { width: 80px; height: 80px; top: -10px; right: -10px; }
}

/* ═══════════════════════════════════════
   PROGRAMS SLIDER (hp-sec5)
   ═══════════════════════════════════════ */
.hp-sec5 {
    padding: 80px 0;
    background: #fff;
}

.hp-sec5 h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--navy);
    letter-spacing: 0.02em;
}

.hp-sec5 .slider-outer {
    overflow: hidden;
    width: 100%;
    padding: 20px 0 30px 20px;
    margin-left: -20px;
}

.hp-sec5 .slides-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hp-sec5 .slide-item {
    min-width: 100%;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hp-sec5 .slide-visual {
    position: relative;
    flex-shrink: 0;
    width: 430px;
    z-index: 2;
    margin-bottom: 15px;
}

.hp-sec5 .slide-visual img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
}

.hp-sec5 .accent-box {
    position: absolute;
    bottom: -22px;
    left: -22px;
    width: 100px;
    height: 100px;
    z-index: 1;
}

.hp-sec5 .slide-info { flex: 1; padding-right: 40px; }
.hp-sec5 .slide-info h3 { font-size: 32px; font-weight: 700; margin-bottom: 18px; }
.hp-sec5 .slide-info p { font-size: 15.5px; line-height: 1.8; color: var(--text-main); margin-bottom: 24px; max-width: 520px; }
.hp-sec5 .slide-info a.know-more { font-size: 14px; font-weight: 600; text-decoration: underline; transition: 0.3s; cursor: pointer; }

.hp-sec5 [data-id="0"] .accent-box { background-color: var(--navy); }
.hp-sec5 [data-id="0"] h3, .hp-sec5 [data-id="0"] a.know-more { color: var(--navy); }
.hp-sec5 [data-id="1"] .accent-box { background-color: var(--green); }
.hp-sec5 [data-id="1"] h3, .hp-sec5 [data-id="1"] a.know-more { color: var(--green); }
.hp-sec5 [data-id="2"] .accent-box { background-color: var(--saffron); }
.hp-sec5 [data-id="2"] h3, .hp-sec5 [data-id="2"] a.know-more { color: var(--saffron); }

.hp-sec5 .slider-dots { display: flex; justify-content: center; gap: 12px; margin-top: 40px; }
.hp-sec5 .slider-dots button { width: 12px; height: 12px; border-radius: 50%; border: none; background-color: var(--dot-inactive); cursor: pointer; transition: all 0.3s ease; }
.hp-sec5 .dot-0.active { background-color: var(--navy); }
.hp-sec5 .dot-1.active { background-color: var(--green); }
.hp-sec5 .dot-2.active { background-color: var(--saffron); }

@media (max-width: 991px) {
    .hp-sec5 .slide-item { gap: 30px; }
    .hp-sec5 .slide-visual { width: 360px; }
    .hp-sec5 .slide-info h3 { font-size: 26px; }
}

@media (max-width: 767px) {
    .hp-sec5 { padding: 40px 0; }
    .hp-sec5 h2 { font-size: 32px; margin-bottom: 25px; }
    .hp-sec5 .container { padding: 0 20px; }
    .hp-sec5 .slider-outer { padding-left: 25px; }
    .hp-sec5 .slide-item { flex-direction: column; align-items: flex-start; gap: 0; }
    .hp-sec5 .slide-visual { width: calc(100% - 20px); margin-bottom: 40px; }
    .hp-sec5 .slide-visual img { height: 220px; }
    .hp-sec5 .accent-box { width: 70px; height: 70px; bottom: -15px; left: -15px; }
    .hp-sec5 .slide-info { width: 100%; padding-right: 0; }
    .hp-sec5 .slide-info h3 { font-size: 24px; margin-bottom: 12px; }
    .hp-sec5 .slide-info p { font-size: 14.5px; line-height: 1.6; }
}

/* ═══════════════════════════════════════
   OUR APPROACH (hp-sec6)
   ═══════════════════════════════════════ */
.hp-sec6 {
    position: relative;
    background-image:
        linear-gradient(90deg, rgba(13,43,94,1) 45%, rgba(13,43,94,0.75) 65%, rgba(13,43,94,0) 85%),
        url('../images/Our approch.png');
    background-size: cover;
    background-position: center right;
    padding: 70px 0 80px;
    min-height: 400px;
}

.hp-sec6 .container { max-width: 1100px; margin: 0 auto; padding: 0 4rem 0 2.6rem; }
.hp-sec6 .block { max-width: 520px; }
.hp-sec6 h2 { font-size: 48px; font-weight: 700; color: #fff; margin-bottom: 14px; line-height: 1.15; }
.hp-sec6 .subtitle { font-size: 15px; color: rgba(255,255,255,0.82); margin-bottom: 44px; line-height: 1.6; }

.hp-sec6 .approach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 48px; }
.hp-sec6 .approach-item { display: flex; flex-direction: column; gap: 10px; }
.hp-sec6 .approach-item svg { width: 38px; height: 38px; fill: none; stroke: #fff; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.hp-sec6 .approach-item strong { color: #fff; font-size: 14.5px; font-weight: 600; line-height: 1.4; }

@media (max-width: 768px) {
    .hp-sec6 {
        background-image: linear-gradient(180deg, rgba(13,43,94,0.97) 55%, rgba(13,43,94,0.88) 100%), url('../images/Our approch.png');
        padding: 50px 0 60px;
    }
    .hp-sec6 .container { padding: 0 1.25rem; }
    .hp-sec6 .block { max-width: 100%; }
    .hp-sec6 h2 { font-size: 32px; }
    .hp-sec6 .approach-grid { gap: 28px 32px; }
}

/* ═══════════════════════════════════════
   IMPACT SECTION (hp-sec7)
   ═══════════════════════════════════════ */
.hp-sec7 {
    padding: 80px 0;
    background: #f9f9f7;
}

.hp-sec7 .row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hp-sec7 .col-left {
    flex: 0 0 40%;
    max-width: 40%;
}

.hp-sec7 .col-left h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 18px;
    letter-spacing: 0.02em;
}

.hp-sec7 .col-left p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-main);
    margin-bottom: 28px;
}

.hp-sec7 .col-left p strong {
    display: block;
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 6px;
}

.hp-sec7 .col-left .btn {
    display: inline-block;
    background: var(--pink);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s;
}

.hp-sec7 .col-left .btn:hover { background: #c01570; }

.hp-sec7 .col-right { flex: 1; }

.hp-sec7 .col-right ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px 48px;
}

.hp-sec7 .col-right li {
    position: relative;
    padding-left: 20px;
}

.hp-sec7 .col-right li .accent {
    position: absolute;
    left: 0;
    top: 4px;
    width: 5px;
    height: 42px;
    background: var(--pink);
    border-radius: 3px;
}

.hp-sec7 .col-right li .value {
    display: block;
    font-size: 44px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.1;
}

.hp-sec7 .col-right li small {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-top: 4px;
    display: block;
}

@media (max-width: 767px) {
    .hp-sec7 { padding: 50px 0; }
    .hp-sec7 .row { flex-direction: column; gap: 36px; }
    .hp-sec7 .col-left { flex: 0 0 100%; max-width: 100%; }
    .hp-sec7 .col-left h2 { font-size: 32px; }
    .hp-sec7 .col-right ul { gap: 28px 32px; }
    .hp-sec7 .col-right li .value { font-size: 36px; }
}

/* ═══════════════════════════════════════
   CTA SECTION (home-cta-sec)
   ═══════════════════════════════════════ */
.home-cta-sec {
    padding: 80px 0;
    background: #fff;
}

.home-cta-sec .row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.home-cta-sec .cta-img-wrap {
    position: relative;
    flex: 0 0 400px;
    max-width: 400px;
}

.home-cta-sec .cta-img-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
    border-radius: 2px;
}

.home-cta-sec .cta-img-wrap .frame {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--pink);
    border-radius: 2px;
    z-index: 1;
}

.home-cta-sec .cta-icon-box {
    position: absolute;
    bottom: -18px;
    right: -18px;
    width: 56px;
    height: 56px;
    background: var(--saffron);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.home-cta-sec .cta-icon-box svg { width: 28px; height: 28px; fill: #fff; }

.home-cta-sec .cta-text { flex: 1; }

.home-cta-sec .cta-text h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 28px;
}

.home-cta-sec .cta-text .btn {
    display: inline-block;
    background: var(--pink);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s;
    margin-right: 16px;
}

.home-cta-sec .cta-text .btn:hover { background: #c01570; }

.home-cta-sec .cta-text .btn-secondary {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: underline;
    transition: color 0.2s;
}

.home-cta-sec .cta-text .btn-secondary:hover { color: var(--pink); }

@media (max-width: 767px) {
    .home-cta-sec { padding: 50px 0; }
    .home-cta-sec .row { flex-direction: column; gap: 36px; }
    .home-cta-sec .cta-img-wrap { flex: 0 0 100%; max-width: 100%; padding: 16px; }
    .home-cta-sec .cta-text h2 { font-size: 26px; }
    .home-cta-sec .cta-text .btn { display: block; text-align: center; margin-right: 0; margin-bottom: 14px; }
    .home-cta-sec .cta-text .btn-secondary { display: block; text-align: center; }
}

/* ═══════════════════════════════════════
   UPCOMING EVENTS
   ═══════════════════════════════════════ */
.home-upcoming-events {
    padding: 80px 0;
    background: #f9f9f7;
}

.home-upcoming-events h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 40px;
    letter-spacing: 0.02em;
}

.home-upcoming-events .events-slider-outer {
    overflow: hidden;
    width: 100%;
}

.home-upcoming-events .events-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-upcoming-events .event-card {
    min-width: 100%;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    flex-shrink: 0;
}

.home-upcoming-events .event-image {
    flex: 0 0 320px;
    max-width: 320px;
}

.home-upcoming-events .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-upcoming-events .event-details {
    flex: 1;
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-upcoming-events .event-details h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.3;
}

.home-upcoming-events .event-details .r1 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.home-upcoming-events .event-details .meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: #555;
    line-height: 1.4;
}

.home-upcoming-events .event-details .meta-item svg {
    width: 18px;
    height: 18px;
    fill: var(--navy);
    flex-shrink: 0;
}

.home-upcoming-events .event-details .r2 { margin-top: 8px; }

.home-upcoming-events .event-details .r2 .btn {
    display: inline-block;
    background: var(--pink);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s;
}

.home-upcoming-events .event-details .r2 .btn:hover { background: #c01570; }

.home-upcoming-events .slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.home-upcoming-events .slider-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s;
}

@media (max-width: 767px) {
    .home-upcoming-events { padding: 50px 0; }
    .home-upcoming-events h2 { font-size: 32px; margin-bottom: 25px; }
    .home-upcoming-events .event-card { flex-direction: column; }
    .home-upcoming-events .event-image { flex: 0 0 200px; max-width: 100%; height: 200px; }
    .home-upcoming-events .event-details { padding: 20px; }
    .home-upcoming-events .event-details h3 { font-size: 18px; }
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
footer {
    background: #1e2d6b;
    color: #fff;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.row1 {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    padding: 50px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.row1 .col-logo { flex: 0 0 140px; flex-shrink: 0; }
.row1 .col-logo svg { height: 80px; width: auto; }

.row1 .col-mid { flex: 1; display: flex; flex-direction: column; gap: 1.2rem; }
.row1 .col-mid p { font-size: 13.5px; color: rgba(255,255,255,0.85); line-height: 1.7; max-width: 580px; }

.row1 .col-mid .btn {
    display: inline-block;
    background: #e82987;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
    width: fit-content;
}

.row1 .col-mid .btn:hover { background: #c01570; }

.row1 .col-location {
    flex: 0 0 auto;
    text-align: right;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    padding-top: 8px;
}

.row2 {
    padding: 45px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem 1.5rem;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }

.footer-col ul li a {
    font-size: 12.5px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.15s;
}

.footer-col ul li a:hover { color: #fff; }

.row3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    flex-wrap: wrap;
}

.social-block { flex: 0 0 auto; }

.social-block > label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
}

.social-icons { display: flex; gap: 14px; }

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 4px;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
}

.social-icons a:hover { background: #e82987; transform: translateY(-2px); }
.social-icons a svg { width: 16px; height: 16px; fill: #fff; }

.badges-block {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3rem;
    flex-wrap: wrap;
}

.badge-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
}

.badge-box label { font-size: 9px; color: rgba(255,255,255,0.45); letter-spacing: 0.8px; text-transform: uppercase; font-weight: 600; }
.badge-box .val { font-size: 15px; font-weight: 700; color: rgba(255,255,255,0.95); }
.badge-box .sub { font-size: 10px; color: rgba(255,255,255,0.55); font-weight: 500; }

.tribar { display: flex; height: 3px; width: 48px; border-radius: 2px; overflow: hidden; margin-top: 3px; }
.tribar span { flex: 1; }
.tribar .a { background: #FF9933; }
.tribar .b { background: #fff; }
.tribar .c { background: #138808; }

.row4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 10px;
}

.row4 .copy { font-size: 11px; color: rgba(255,255,255,0.45); font-weight: 500; }
.row4 .copy a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.15s; }
.row4 .copy a:hover { color: #fff; }

@media (max-width: 960px) {
    .footer-container { padding: 0 1.5rem; }
    .row1 { flex-direction: column; align-items: flex-start; gap: 1.5rem; padding: 35px 0 28px; }
    .row1 .col-mid { width: 100%; gap: 1rem; }
    .row1 .col-location { text-align: left; width: 100%; }
    .footer-cols { grid-template-columns: 1fr 1fr; gap: 28px 2rem; }
    .badges-block { justify-content: flex-start; gap: 2.5rem; margin-top: 1rem; }
    .row3 { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
    .footer-container { padding: 0 1rem; }
    .row1 { padding: 28px 0 22px; }
    .row1 .col-logo svg { height: 60px; }
    .row1 .col-mid p { font-size: 12.5px; }
    .footer-cols { grid-template-columns: 1fr; gap: 20px; }
    .footer-col h4 { font-size: 11px; }
    .footer-col ul li a { font-size: 12px; }
    .badges-block { flex-wrap: wrap; gap: 2rem; }
    .badge-box { flex: 0 0 calc(50% - 1rem); }
    .row4 { flex-direction: column; text-align: center; gap: 8px; }
}