/* =========================================
   LUXURY LEADERSHIP THEME — PART 1
   Global + Navbar + Hero + About/Split
========================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@700&family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* =========================
   ROOT COLORS
========================= */
:root{
    --bg:#0a2851;
    /* --bg:#07111f; */
    --bg2:#0f2749;
    /* --bg2:#0b1728; */
    --glass:rgba(255,255,255,.08);
    --glass2:rgba(255,255,255,.12);
    --white:#ffffff;
    --gold:#d4af37;
    --gold-soft:#f6e7a8;
    --teal:#14b8a6;
    --teal-dark:#0f766e;
    --muted:#cbd5e1;
    --line:rgba(255,255,255,.12);
    --shadow:0 20px 60px rgba(0,0,0,.35);
    --shadowGlow:0 0 35px rgba(20,184,166,.15);
    --radius:24px;
    --radiusSmall:16px;
    --transition:.35s ease;
}

/* =========================
   RESET
========================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:
        radial-gradient(circle at top right, rgba(20,184,166,.08), transparent 25%),
        radial-gradient(circle at bottom left, rgba(212,175,55,.08), transparent 25%),
        linear-gradient(135deg,var(--bg),var(--bg2));
    color:var(--white);
    overflow-x:hidden;
    line-height:1.75;
}

/* Scrollbar */
::-webkit-scrollbar{
    width:10px;
}
::-webkit-scrollbar-track{
    background:#081220;
}
::-webkit-scrollbar-thumb{
    background:linear-gradient(var(--gold),var(--teal));
    border-radius:30px;
}

/* Selection */
::selection{
    background:var(--gold);
    color:#111;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

/* =========================
   GLOBAL SECTION
========================= */
section{
    padding:40px 7%;
    position:relative;
}

.container{
    width:100%;
    max-width:1450px;
    margin:auto;
}

/* =========================
   TYPOGRAPHY
========================= */
h1{
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(55px,9vw,120px);
    line-height:1;
    letter-spacing:2px;
    color:var(--gold);
    text-shadow:0 5px 30px rgba(212,175,55,.25);
}
/* 'Caveat',cursive; */

h2{
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(34px,5vw,68px);
    line-height:1.15;
    font-weight:700;
    margin-bottom:25px;
    color:var(--gold-soft);
}

h3{
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(26px,3vw,38px);
    color:var(--gold);
    margin-bottom:18px;
}

p{
    font-size:18px;
    color:var(--muted);
    line-height:1.95;
}

.section-tag{
    display:inline-block;
    margin-bottom:20px;
    padding:10px 22px;
    border-radius:50px;
    border:1px solid rgba(212,175,55,.25);
    background:rgba(212,175,55,.08);
    color:var(--gold-soft);
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    backdrop-filter:blur(14px);
}

/* =========================
   GLASS CARD
========================= */
.card,
.feature-card,
.profile-card,
.logo-card,
.pdf-card{
    background:var(--glass);
    border:1px solid var(--line);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.card:hover,
.feature-card:hover,
.profile-card:hover,
.logo-card:hover,
.pdf-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow),var(--shadowGlow);
}

/* =========================
   BUTTON
========================= */
.btn,
button{
    border:none;
    outline:none;
    cursor:pointer;
    padding:14px 30px;
    border-radius:50px;
    font-weight:700;
    font-size:15px;
    color:white;
    background:linear-gradient(135deg,var(--gold),#b38b14);
    box-shadow:0 10px 30px rgba(212,175,55,.18);
    transition:var(--transition);
}

.btn:hover,
button:hover{
    transform:translateY(-3px);
    box-shadow:0 20px 40px rgba(212,175,55,.28);
}

:root{
    --transition:.3s ease;
}

/* =========================
   NAVBAR
========================= */
.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;

    padding:16px 5%;

    display:flex;
    align-items:center;
    justify-content:space-between;

    background:linear-gradient(
        90deg,
        #14365f,
        #1d4e89,
        #14365f
    );

    border-bottom:1px solid rgba(255,255,255,.08);

    /* Bottom Shadow */
    box-shadow:
        0 12px 30px rgba(0,0,0,.28),
        0 8px 22px rgba(20,54,95,.35);
}

/* Prevent content hidden */
body{
    margin:0;
}

/* =========================
   DESKTOP MENU
========================= */
.nav-links{
    display:flex;
    gap:25px;
}

.nav-links a{
    color:#fff;
    text-decoration:none;

    font-size:15px;
    font-weight:500;

    transition:.3s ease;
}

.nav-links a:hover{
    opacity:.85;
}

/* =========================
   HAMBURGER
========================= */
.menu-toggle{
    display:none;

    font-size:28px;
    color:#fff;

    cursor:pointer;
}

/* =========================
   MOBILE / TABLET NAV
========================= */
@media(max-width:991px){

    .menu-toggle{
        display:block;
    }

    .nav-links{
        position:absolute;

        top:100%;
        left:0;

        width:100%;

        background:linear-gradient(
            90deg,
            #14365f,
            #1d4e89,
            #14365f
        );

        flex-direction:column;

        text-align:left;

        max-height:0;
        overflow:hidden;

        transition:max-height .4s ease;

        box-shadow:
            0 15px 30px rgba(0,0,0,.25);
    }

    .nav-links a{
        padding:15px 20px;
        border-bottom:1px solid rgba(255,255,255,.08);
    }

    .nav-links.active{
        max-height:400px;
    }
}


.logo{
    display:flex;
    align-items:center;
    gap:14px;
}

.logo img{
    height:60px;
    width:auto;
    object-fit:contain;
}

.logo-text{
    font-family:'Cormorant Garamond',serif;
    font-size:28px;
    color:var(--gold);
    font-weight:700;
    letter-spacing:.5px;
}

.menu{
    display:flex;
    align-items:center;
    gap:32px;
}

.menu a{
    position:relative;
    color:white;
    font-size:15px;
    font-weight:600;
    transition:var(--transition);
}

.menu a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:linear-gradient(90deg,var(--gold),var(--teal));
    transition:.35s;
}

.menu a:hover{
    color:var(--gold-soft);
}

.menu a:hover::after{
    width:100%;
}

/* =========================
   HERO
========================= */
.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative;
    overflow:hidden;
    padding:140px 0 80px; /* remove side padding */
}

/* glow */
.hero::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    border-radius:50%;
    background:rgba(20,184,166,.08);
    filter:blur(120px);
    top:-180px;
    right:-100px;
}

.hero::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(212,175,55,.08);
    filter:blur(130px);
    bottom:-150px;
    left:-120px;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(to bottom, rgba(0,0,0,.08), rgba(0,0,0,.28));
    z-index:1;
}

.hero-container{
    width:100%;
    position:relative;
    z-index:2;
}

.hero-left{
    width:100%;
}




.hero-left h1,
.hero-left h2,
.hero-left p{
    opacity:1;
    transform:none;
}

.hero-left h1{
    margin-bottom:18px;
}

.hero-left h2{
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(22px,2.6vw,36px);
    font-weight:600;
    color:white;
    margin-bottom:30px;
}

.hero-left p{
    max-width:900px;
    margin:auto;
    font-size:22px;
    color:#e2e8f0;
}

/* typing cursor */
.typing-cursor::after{
    content:"|";
    margin-left:4px;
    color:var(--teal);
    animation:blink .7s infinite;
}

@keyframes blink{
    0%,100%{opacity:1;}
    50%{opacity:0;}
}

/* =========================
   SPLIT / ABOUT SECTION
========================= */
.split-section{
    position:relative;
}

.split{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    max-width:1400px;
    margin:auto;
}

.split-left,
.split-right{
    position:relative;
}

.split-right img,
.profile-img{
    width:100%;
    border-radius:28px;
    object-fit:cover;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:var(--shadow);
}

.split-left .card,
.split-right .card{
    padding:40px;
}

.split p{
    margin-bottom:18px;
}

/* =========================
   ANIMATION BASE CLASSES
========================= */
.reveal-left,
.reveal-right{
    opacity:0;
    transition:1s ease;
}

.reveal-left{
    transform:translateX(-90px);
}

.reveal-right{
    transform:translateX(90px);
}

.reveal-left.active,
.reveal-right.active{
    opacity:1;
    transform:translateX(0);
}

/* typing text blocks */
.typing-text{
    opacity:1;
    transform:none;
}

.typing-text.show{
    opacity:1;
    transform:translateY(0);
    transition:.6s ease;
}

/* =========================
   COMMON CONTENT WRAPPER
========================= */
.content-box{
    max-width:1100px;
    margin:auto;
    text-align:left;
}

/* divider */
.section-divider{
    width:120px;
    height:2px;
    margin:28px auto;
    background:linear-gradient(90deg,transparent,var(--gold),var(--teal),transparent);
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:1100px){
    .split{
        grid-template-columns:1fr;
        gap:40px;
    }

    .split-left,
    .split-right{
        text-align:center;
    }

    .split-left .card,
    .split-right .card{
        padding:30px;
    }
}

@media(max-width:768px){
    section{
        padding:40px 20px;
    }

    .navbar{
        padding:14px 20px;
    }

    .menu{
        gap:18px;
        flex-wrap:wrap;
        justify-content:flex-end;
    }

    .menu a{
        font-size:13px;
    }

    .logo img{
        height:48px;
    }

    .hero{
        padding-top:120px;
    }

    .hero-left p{
        font-size:17px;
    }

    p{
        font-size:16px;
        line-height:1.85;
    }
}

/* =========================================
   LUXURY LEADERSHIP THEME — PART 2
   Content Sections + Lists + Country Buttons
   PDF Cards + Gallery + Utility Sections
========================================= */

/* =========================
   ALT CONTENT SECTIONS
========================= */
.content-section{
    position:relative;
    padding:40px 7%;
}

.content-section::before{
    content:"";
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:80%;
    height:1px;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(212,175,55,.18),
        rgba(20,184,166,.18),
        transparent
    );
}

.content-inner{
    max-width:1350px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.content-inner.reverse{
    direction:rtl;
}

.content-inner.reverse > *{
    direction:ltr;
}

.content-text{
    background:var(--glass);
    border:1px solid var(--line);
    border-radius:var(--radius);
    padding:42px;
    backdrop-filter:blur(18px);
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.content-text:hover{
    box-shadow:var(--shadow),var(--shadowGlow);
    transform:translateY(-6px);
}

.content-text p{
    margin-bottom:18px;
}

.content-media{
    position:relative;
}

.content-media img{
    width:100%;
    border-radius:28px;
    object-fit:cover;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:var(--shadow);
    transition:.5s;
}

.content-media:hover img{
    transform:scale(1.03);
}

/* decorative frame */
.content-media::after{
    content:"";
    position:absolute;
    inset:18px;
    border:1px solid rgba(212,175,55,.18);
    border-radius:28px;
    pointer-events:none;
}

/* =========================
   MODERN LIST
========================= */
.modern-list{
    margin-top:20px;
    padding:0;
}

.modern-list li{
    position:relative;
    padding:14px 0 14px 42px;
    font-size:17px;
    color:#eef2ff;
    border-bottom:1px solid rgba(255,255,255,.06);
    transition:var(--transition);
}

.modern-list li:last-child{
    border-bottom:none;
}

.modern-list li::before{
    content:"✦";
    position:absolute;
    left:0;
    top:12px;
    width:28px;
    height:28px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#081220;
    background:linear-gradient(135deg,var(--gold),var(--gold-soft));
    font-size:13px;
    font-weight:800;
    box-shadow:0 8px 18px rgba(212,175,55,.18);
}

.modern-list li:hover{
    padding-left:52px;
    color:#17313d;
}


.modern-list.white li::before{
    background:white;
    color:#111;
}

/* =========================
   FEATURE GRID
========================= */
/* FEATURE GRID */
.feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr); /* desktop = 4 cards */
    gap:20px;
    margin-top:40px;
}

/* smaller premium card */
.feature-card{
    padding:24px;
    text-align:center;
    min-height:170px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    line-height:1.7;
    font-weight:500;
    color:white;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(16px);
    box-shadow:0 10px 25px rgba(0,0,0,.18);
    transition:.35s ease;
}

/* hover */
.feature-card:hover{
    transform:translateY(-8px);
    border-color:rgba(212,175,55,.35);
    box-shadow:
        0 18px 35px rgba(0,0,0,.25),
        0 0 25px rgba(20,184,166,.12);
}

/* tablet = 2 */
@media (max-width:992px){
    .feature-grid{
        grid-template-columns:repeat(2,1fr);
        gap:18px;
    }

    .feature-card{
        min-height:150px;
        padding:20px;
        font-size:15px;
    }
}

/* mobile = 1 */
@media (max-width:576px){
    .feature-grid{
        grid-template-columns:1fr;
        gap:16px;
    }

    .feature-card{
        min-height:auto;
        padding:18px;
        font-size:14px;
        line-height:1.6;
    }
}

/* =========================
   COUNTRY BUTTONS
========================= */
.country-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:22px;
    margin-top:40px;
}

.country-btn,
.trace{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    width:100%;
    padding:18px 24px;
    border-radius:18px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    color:white;
    font-weight:700;
    letter-spacing:.6px;
    overflow:hidden;
    backdrop-filter:blur(16px);
    box-shadow:0 10px 30px rgba(0,0,0,.18);
    transition:var(--transition);
}

.country-btn:hover,
.trace:hover{
    transform:translateY(-4px);
    border-color:rgba(212,175,55,.28);
    box-shadow:
        0 18px 40px rgba(0,0,0,.22),
        0 0 28px rgba(20,184,166,.12);
}

.country-btn .fi,
.trace .fi{
    font-size:26px;
    box-shadow:0 5px 18px rgba(0,0,0,.18);
}

/* sparkle effect */
.trace__spark{
    position:absolute;
    width:120px;
    height:120px;
    background:radial-gradient(circle, rgba(255,255,255,.22), transparent 70%);
    border-radius:50%;
    top:-60px;
    right:-60px;
    pointer-events:none;
}

/* =========================
   MINISTRY SECTION
========================= */
.ministry-section{
    width:100%;
    padding:40px 7%;
    position:relative;
}

.ministry-section::before{
    content:"";
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:82%;
    height:1px;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(212,175,55,.18),
        rgba(20,184,166,.18),
        transparent
    );
}

/* FIX section header visibility */
.section-header{
    display:block !important;
    width:100%;
    max-width:950px;
    margin:0 auto 60px;
    text-align:center;
    position:relative;
    z-index:5;
    opacity:1 !important;
    visibility:visible !important;
    transform:none !important;
}

/* heading */
.section-header h2{
    display:block;
    font-size:52px;
    line-height:1.2;
    margin-bottom:18px;
    color:var(--gold);
    opacity:1 !important;
    visibility:visible !important;
}

/* paragraph */
.section-header p{
    display:block;
    font-size:18px;
    line-height:1.9;
    color:#726161;
    max-width:850px;
    margin:auto;
    opacity:1 !important;
    visibility:visible !important;
}

/* if reveal-left is hiding */
.reveal-left.section-header{
    opacity:1 !important;
    transform:none !important;
}

/* mobile */
@media(max-width:768px){
    .section-header h2{
        font-size:34px;
    }

    .section-header p{
        font-size:15px;
        line-height:1.8;
    }
}

/* grid */
.ministry-grid{
    width:100%;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:26px;
}

/* cards */
.ministry-card{
    padding:34px 28px;
    border-radius:24px;
    position:relative;
    overflow:hidden;

    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);

    box-shadow:0 14px 35px rgba(0,0,0,.18);
    transition:.35s ease;
}

.ministry-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,var(--gold),var(--teal));
}

.ministry-card:hover{
    transform:translateY(-8px);
    border-color:rgba(212,175,55,.30);
    box-shadow:
        0 22px 45px rgba(0,0,0,.22),
        0 0 30px rgba(20,184,166,.12);
}

.ministry-card h3{
    font-size:22px;
    line-height:1.4;
    margin-bottom:14px;
    color:white;
}

.ministry-card p{
    font-size:15px;
    line-height:1.8;
    color:var(--muted);
}

/* tablet */
@media(max-width:1100px){
    .ministry-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .section-header h2{
        font-size:40px;
    }
}

/* mobile */
@media(max-width:576px){
    .ministry-section{
        padding:40px 20px;
    }

    .ministry-grid{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:30px;
    }

    .section-header p{
        font-size:15px;
    }

    .ministry-card{
        padding:24px;
    }

    .ministry-card h3{
        font-size:18px;
    }
}

/* =========================
   PREMIUM RESPONSIVE GALLERY
========================= */
/* =========================
   PREMIUM GALLERY FIXED
========================= */

.pdf-preview{
    width:100%;
    padding:40px 0;
    overflow:hidden;
}

.gallery-container{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:0 20px;
    box-sizing:border-box;
}



/* wrapper */
.gallery-wrapper{
    position:relative;
    width:100%;
    overflow:hidden;
}

/* slider track */
.gallery-track{
    display:flex;
    gap:24px;
    transition:transform .55s ease;
    will-change:transform;
}

/* card */
.gallery-card{
    position:relative;
    min-width:calc(25% - 18px);
    height:480px;
    border-radius:24px;
    overflow:hidden;
    flex-shrink:0;
    background:#111;
    box-shadow:0 20px 45px rgba(0,0,0,.25);
}

.gallery-card img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}

/* overlay */
.gallery-card::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.92) 10%,
        rgba(0,0,0,.38) 50%,
        rgba(0,0,0,.05) 100%
    );
}

/* gold border */
.gallery-card::after{
    content:"";
    position:absolute;
    inset:10px;
    border-radius:18px;
    border:1px solid rgba(212,175,55,.15);
    z-index:2;
}

/* text */
.card-overlay{
    position:absolute;
    left:14px;
    right:14px;
    bottom:14px;
    z-index:5;
    padding:14px;
    border-radius:16px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.12);
}

.card-overlay h3{
    margin:0;
    color:#fff;
    font-size:16px;
    line-height:1.45;
    font-weight:500;
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
}


/* dots */
.dots{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:7px;
    margin-top:18px;
    flex-wrap:wrap;
}

.dot{
    width:9px;
    height:9px;
    border-radius:50%;
    background:#9aa4b2;   /* visible inactive dots */
    opacity:.7;
    transition:.3s;
    cursor:pointer;
    flex-shrink:0;
}

.dot.active-dot{
    width:24px;
    border-radius:20px;
    opacity:1;
    background:linear-gradient(90deg,#d4af37,#14b8a6);
}

/* =========================
   TABLET
========================= */
@media (max-width:992px){

    .gallery-track{
        gap:18px;
    }

    .gallery-card{
        min-width:calc(50% - 9px);
        height:380px;
    }

    .card-overlay h3{
        font-size:14px;
        -webkit-line-clamp:2;
    }
}

/* MOBILE */
@media (max-width:576px){

    .gallery-track{
        gap:0;
    }

    .gallery-card{
        min-width:100%;
        width:100%;
        height:330px;
        border-radius:18px;
    }

   

    /* keep dots visible */
    .dots{
        margin-top:16px;
        padding:0 10px;
    }

    .dot{
        width:8px;
        height:8px;
    }

    .dot.active-dot{
        width:20px;
    }
}
/* =========================
   STATS / HIGHLIGHT BOX
========================= */
.highlight-box{
    padding:34px;
    border-radius:var(--radius);
    background:linear-gradient(
        135deg,
        rgba(212,175,55,.08),
        rgba(20,184,166,.08)
    );
    border:1px solid rgba(255,255,255,.08);
    box-shadow:var(--shadow);
}

.highlight-box h3{
    color:white;
}

.highlight-box strong{
    color:var(--gold);
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:1100px){
    .content-inner{
        grid-template-columns:1fr;
        gap:35px;
    }

    .content-inner.reverse{
        direction:ltr;
    }

    .gallery-card{
        min-width:calc(33.333% - 19px);
        height:380px;
    }
}

@media(max-width:768px){
    .content-section{
        padding:40px 20px;
    }

    .content-text{
        padding:28px;
    }

    .country-grid{
        grid-template-columns:1fr;
    }

    .gallery-card{
        min-width:calc(50% - 14px);
        height:320px;
    }

    .card-overlay h3{
        font-size:24px;
    }
}

@media(max-width:480px){
    .gallery-card{
        min-width:100%;
        height:300px;
    }

    .slider-btn{
        width:46px;
        height:46px;
        font-size:20px;
    }

    .content-text{
        padding:22px;
    }
}

/* =========================================
   LUXURY LEADERSHIP THEME  PART 3
   Contact + Footer + Popup + Final Responsive
========================================= */

/* =========================
   CONTACT SECTION
========================= */
.contact-section{
    position:relative;
    padding:40px 7%;
}

.contact-section::before{
    content:"";
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:82%;
    height:1px;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(212,175,55,.18),
        rgba(20,184,166,.18),
        transparent
    );
}

.contact-container{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:stretch;
}

.contact-card,
.contact-info,
.contact-form{
    background:var(--glass);
    border:1px solid var(--line);
    border-radius:var(--radius);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    box-shadow:var(--shadow);
    padding:40px;
    transition:var(--transition);
}

.contact-card:hover,
.contact-info:hover,
.contact-form:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow),var(--shadowGlow);
}

.contact-card h2,
.contact-info h2,
.contact-form h2{
    margin-bottom:18px;
}

.contact-card p,
.contact-info p{
    color:var(--muted);
    margin-bottom:18px;
}

/* info rows */
.contact-item{
    display:flex;
    align-items:flex-start;
    gap:16px;
    margin-bottom:22px;
}

.contact-icon{
    width:52px;
    height:52px;
    border-radius:50%;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--gold),#b8890f);
    color:#081220;
    font-size:20px;
    box-shadow:0 12px 28px rgba(212,175,55,.18);
}

.contact-text h4{
    font-size:18px;
    color:white;
    margin-bottom:6px;
}

.contact-text span,
.contact-text a{
    color:var(--muted);
    font-size:15px;
    line-height:1.7;
    transition:var(--transition);
}

.contact-text a:hover{
    color:var(--gold-soft);
}

/* form */
.contact-form form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-form input,
.contact-form textarea,
.contact-form select{
    width:100%;
    padding:16px 18px;
    border-radius:16px;
    border:1px solid rgba(255,255,255,.08);
    outline:none;
    font-size:15px;
    color:white;
    background:rgba(255,255,255,.06);
    transition:var(--transition);
    font-family:'Inter',sans-serif;
    margin-bottom:18px; 
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:#cbd5e1;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{
    border-color:rgba(20,184,166,.45);
    box-shadow:0 0 0 4px rgba(20,184,166,.12);
}

.contact-form textarea{
    min-height:160px;
    resize:vertical;
}

.contact-form button{
    align-self:flex-start;
    margin-top:8px;
}

/* =========================
   MAP / LOCATION BOX
========================= */
#worldMap {
    width: 100%;
    height: 450px;
    border-radius: 20px;
}

.map-card {
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: var(--shadow);
}

/* =========================
   CTA BANNER
========================= */
.cta-banner{
    max-width:1400px;
    margin:0 auto;
    padding:42px;
    border-radius:30px;
    background:
        linear-gradient(
            135deg,
            rgba(212,175,55,.10),
            rgba(20,184,166,.10)
        );
    border:1px solid rgba(255,255,255,.08);
    box-shadow:var(--shadow);
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:25px;
}

.cta-banner h2{
    margin-bottom:8px;
}

.cta-banner p{
    margin:0;
}

/* =========================
   FOOTER
========================= */
footer{
    position:relative;
    margin-top:60px;
    padding:80px 7% 30px;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.02),
            rgba(0,0,0,.25)
        );
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-container{
    max-width:1450px;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:35px;
}

.footer-brand h2{
    margin-bottom:12px;
}

.footer-brand p{
    max-width:420px;
}

.footer-logo{
    font-family:'Caveat',cursive;
    font-size:46px;
    color:var(--gold);
    margin-bottom:10px;
}

.footer-col h3{
    font-size:24px;
    margin-bottom:18px;
    color:white;
}

.footer-col ul{
    padding:0;
}

.footer-col li{
    margin-bottom:12px;
}

.footer-col a{
    color:var(--muted);
    transition:var(--transition);
}

.footer-col a:hover{
    color:var(--gold-soft);
    padding-left:6px;
}

.social-links{
    display:flex;
    gap:12px;
    margin-top:20px;
}

.social-links a{
    width:44px;
    height:44px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
    color:white;
    transition:var(--transition);
}

/* =========================
   PREMIUM SOCIAL BUTTONS
========================= */
.social-links,
.social-row{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

/* button */
.chip{
    width:58px;
    height:58px;
    border:none;
    border-radius:50%;
    cursor:pointer;
    position:relative;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#ffffff;
    font-size:20px;

    /* luxury glass */
    background:rgba(255,255,255,.06);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.10);

    box-shadow:
        0 10px 25px rgba(0,0,0,.18),
        inset 0 1px 0 rgba(255,255,255,.08);

    transition:.35s ease;
    overflow:hidden;
}

/* soft shine */
.chip::before{
    content:"";
    position:absolute;
    top:-50%;
    left:-120%;
    width:80%;
    height:200%;
    transform:rotate(25deg);

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.18),
        transparent
    );

    transition:.7s;
}

/* subtle gold top line */
.chip::after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:linear-gradient(90deg,var(--gold),var(--teal));
    opacity:.85;
}

/* icon */
.chip i{
    position:relative;
    z-index:2;
    transition:.3s;
}

/* hover */
.chip:hover{
    transform:translateY(-6px) scale(1.05);

    background:rgba(255,255,255,.10);

    border-color:rgba(212,175,55,.28);

    box-shadow:
        0 18px 35px rgba(0,0,0,.22),
        0 0 25px rgba(20,184,166,.08);
}

/* moving shine */
.chip:hover::before{
    left:160%;
}

/* icon hover */
.chip:hover i{
    color:var(--gold);
}

/* click */
.chip:active{
    transform:scale(.96);
}

/* mobile */
@media(max-width:576px){
    .chip{
        width:48px;
        height:48px;
        font-size:17px;
    }
}

.footer-bottom{
    margin-top:45px;
    padding-top:22px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.08);
    color:#cbd5e1;
    font-size:14px;
}

/* =========================
   POPUP / MODAL
========================= */
.popup,
.modal{
    position:fixed;
    inset:0;
    display:none;
    align-items:center;
    justify-content:center;
    padding:20px;
    z-index:10000;
    background:rgba(0,0,0,.72);
    backdrop-filter:blur(12px);
}

.popup.active,
.modal.active{
    display:flex;
}

.popup-content,
.modal-content{
    width:100%;
    max-width:700px;
    padding:40px;
    border-radius:28px;
    background:rgba(8,18,32,.92);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:var(--shadow);
    position:relative;
    animation:popupShow .35s ease;
}

@keyframes popupShow{
    from{
        opacity:0;
        transform:translateY(30px) scale(.96);
    }
    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }
}

.close-popup,
.close-modal{
    position:absolute;
    top:18px;
    right:18px;
    width:42px;
    height:42px;
    border-radius:50%;
    border:none;
    cursor:pointer;
    font-size:18px;
    color:white;
    background:rgba(255,255,255,.08);
    transition:var(--transition);
}

.close-popup:hover,
.close-modal:hover{
    background:linear-gradient(135deg,var(--gold),#b8890f);
    color:#081220;
}

/* =========================
   LOADER / FLOATING UTILITIES
========================= */
.floating-btn{
    position:fixed;
    right:22px;
    bottom:22px;
    width:56px;
    height:56px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--gold),#b8890f);
    color:#081220;
    box-shadow:0 15px 35px rgba(212,175,55,.22);
    z-index:999;
    transition:var(--transition);
}

.floating-btn:hover{
    transform:translateY(-5px);
}

/* =========================
   FINAL RESPONSIVE
========================= */
@media(max-width:1200px){
    .footer-container{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:992px){
    .contact-container{
        grid-template-columns:1fr;
    }

    .cta-banner{
        flex-direction:column;
        text-align:center;
    }
}

@media(max-width:768px){
    .contact-section{
        padding:40px 20px;
    }

    .contact-card,
    .contact-info,
    .contact-form{
        padding:28px;
         margin-bottom:10px; 
    }

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-brand p{
        margin:auto;
    }

    .social-links{
        justify-content:center;
    }

    .contact-form button{
        width:100%;
    }

    .popup-content,
    .modal-content{
        padding:28px;
    }
}

@media(max-width:480px){
    .contact-card,
    .contact-info,
    .contact-form{
        padding:22px;
    }

    .contact-item{
        flex-direction:column;
        align-items:flex-start;
    }

    .footer-logo{
        font-size:38px;
    }

    .floating-btn{
        width:48px;
        height:48px;
        right:16px;
        bottom:16px;
    }
}

/* ===== FIXED ABOUT SECTION ===== */
.about-section {
    padding: 40px 7%;
}

.about-row {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
}

.about-content {
    flex: 1;
    text-align: start
}

/* MOBILE FIX */
@media(max-width: 900px){
    .about-row{
        flex-direction: column;
        text-align: center;
    }
}

/* prevent typing jump */
.typing-text{
    min-height: 40px;
    display:block;
    width:100%;
    opacity:1;
    transform:none;
}

/* paragraphs need more reserved height */
p.typing-text{
    min-height: 120px;
}

/* headings */
h2.typing-text,
h3.typing-text{
    min-height: 70px;
}

/* list items */
li.typing-text{
    min-height: 32px;
}

/* keep sections stable */
.content-text,
.card,
.profile-card{
    overflow:hidden;
}

/* COUNTRY GRID */
.strip{
    display:grid;
    grid-template-columns:repeat(5,1fr); /* desktop */
    gap:18px;
    margin-top:35px;
}

/* compact premium cards */
.country-btn,
.trace{
    position:relative;
    height:72px;
    padding:12px 18px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    overflow:hidden;
    cursor:pointer;

    background:rgba(255,255,255,.07);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    color:white;
    font-size:14px;
    font-weight:700;
    letter-spacing:.5px;
    text-transform:uppercase;

    box-shadow:0 8px 22px rgba(0,0,0,.18);
    transition:.35s ease;
}

/* flag */
.country-btn .fi,
.trace .fi{
    font-size:26px;
    flex-shrink:0;
    box-shadow:0 4px 12px rgba(0,0,0,.18);
}

/* sparkle */
.trace__spark{
    position:absolute;
    top:-45px;
    right:-45px;
    width:90px;
    height:90px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(255,255,255,.18), transparent 70%);
    pointer-events:none;
}

/* hover */
.country-btn:hover,
.trace:hover{
    transform:translateY(-5px);
    border-color:rgba(212,175,55,.35);
    box-shadow:
        0 14px 30px rgba(0,0,0,.22),
        0 0 20px rgba(20,184,166,.12);
}

/* tablet */
@media(max-width:992px){
    .strip{
        grid-template-columns:repeat(3,1fr);
    }
}

/* mobile */
@media(max-width:576px){
    .strip{
        grid-template-columns:repeat(2,1fr);
        gap:14px;
    }

    .country-btn,
    .trace{
        height:62px;
        padding:10px 14px;
        font-size:12px;
        gap:8px;
        border-radius:14px;
    }

    .country-btn .fi,
    .trace .fi{
        font-size:22px;
    }
}

/* PARTNER LOGO SECTION */
.partners-section{
    padding:100px 0;
    overflow:hidden;
}

/* slider box */
.logo-slider{
    width:100%;
    overflow:hidden;
    position:relative;
    margin-top:50px;
}

/* fade edges */
.logo-slider::before,
.logo-slider::after{
    content:"";
    position:absolute;
    top:0;
    width:120px;
    height:100%;
    z-index:5;
}

.logo-slider::before{
    left:0;
    background:linear-gradient(to right,#081220,transparent);
}

.logo-slider::after{
    right:0;
    background:linear-gradient(to left,#081220,transparent);
}

/* moving track */
.logo-track{
    display:flex;
    align-items:center;
    gap:30px;
    width:max-content;
    animation:logoMove 30s linear infinite;
}

.logo-track:hover{
    animation-play-state:paused;
}

@keyframes logoMove{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

/* logo card */
.logo-item{
    width:220px;
    height:120px;
    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:20px;
    border-radius:22px;

    /* WHITE CARD */
    background:white;

    border:1px solid rgba(255,255,255,.25);
    transition:.35s ease;
    overflow:hidden;
}

/* logo */
.logo-item img{
    max-width:100%;
    max-height:60px;
    width:auto;
    height:auto;
    object-fit:contain;

    border-radius:8px;

    /* IMPORTANT */
    mix-blend-mode:normal;
    filter:none;
}

/* hover */
.logo-item:hover{
    transform:translateY(-8px) scale(1.03);

}

/* hover */
.logo-item:hover{
    transform:translateY(-8px);
    border-color:rgba(212,175,55,.30);
    box-shadow:
        0 20px 40px rgba(0,0,0,.22),
        0 0 25px rgba(20,184,166,.12);
}

/* tablet */
@media(max-width:768px){
    .logo-item{
        width:170px;
        height:90px;
        padding:15px;
    }

    .logo-item img{
        max-height:45px;
    }
}

/* mobile */
@media(max-width:480px){
    .logo-track{
        gap:15px;
    }

    .logo-item{
        width:140px;
        height:75px;
        border-radius:16px;
    }

    .logo-item img{
        max-height:35px;
    }
}
.gallery-container {
    max-width: 1400px;
    margin: auto;
    padding: 0 40px;   /* 🔥 gives left-right space */
}

/* =========================
   FOOTER
========================= */
.footer-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    flex-wrap:wrap;
    padding:15px 5%;
}

.social-links{
    display:flex;
    gap:12px;
    align-items:center;
    flex-wrap:wrap;
}

.copyright{
    margin:0;
    color:white;
    line-height:1.5;
}

/* Tablet */
@media (max-width:768px){
    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

    .social-links{
        justify-content:center;
    }
}

/* Mobile */
@media (max-width:480px){
    .copyright{
        font-size:12px;
    }

    .social-links{
        gap:10px;
    }
}

/* hidden state */
.animate-item{
    opacity:0;
    transform:translateX(-70px);
    transition:all 1.6s cubic-bezier(.2,.65,.2,1);
    will-change:transform, opacity;
}

/* visible state */
.animate-item.show{
    opacity:1;
    transform:translateX(0);
}

/* cursor */
.typing-cursor::after{
    content:"|";
    animation:blink .7s infinite;
    color:#0b7d45;
    margin-left:2px;
    font-weight:700;
}

@keyframes blink{
    50%{
        opacity:0;
    }
}

/* card polish */
.feature-card,
.ministry-card,
.gallery-card,
.highlight{
    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.feature-card:hover,
.ministry-card:hover,
.gallery-card:hover,
.highlight:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.12);
}

.section-tag{
    display:inline-block;
    opacity:0;
    transform:translateX(-80px) scale(.6);
    transition:all 1.1s cubic-bezier(.175,.885,.32,1.25);
    will-change:transform, opacity;
}

/* visible state */
.section-tag.show-tag{
    opacity:1;
    transform:translateX(0) scale(1);
}

/* hover pop */
.section-tag:hover{
    transform:scale(1.08);
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

/* =========================================
   LUXURY LIGHT TEAL COLOR OVERRIDE
   Paste at END of your current CSS
========================================= */

:root{
    --bg:#f7fcfb;
    --bg2:#ffffff;

    --glass:rgba(255,255,255,.72);
    --glass2:rgba(255,255,255,.88);

    --white:#17313d;
    --gold:#0ea5a4;
    --gold-soft:#99f6e4;

    --teal:#0f766e;
    --teal-dark:#115e59;

    --muted:#5f7280;
    --line:rgba(15,118,110,.12);

    --shadow:0 20px 50px rgba(15,118,110,.08);
    --shadowGlow:0 0 35px rgba(20,184,166,.14);

    --radius:24px;
    --radiusSmall:16px;
    --transition:.35s ease;
}

/* MAIN BACKGROUND */
body{
    background:
        radial-gradient(circle at top right, rgba(20,184,166,.12), transparent 28%),
        radial-gradient(circle at bottom left, rgba(197,155,34,.10), transparent 30%),
        linear-gradient(135deg,#f7fcfb,#ffffff);
    color:var(--white);
}

/* SCROLL */
::-webkit-scrollbar-track{
    background:#e9f7f5;
}

/* NAVBAR */
.navbar{
    background:rgba(255,255,255,.78);
    border-bottom:1px solid rgba(15,118,110,.08);
    box-shadow:
        0 10px 25px rgba(0,0,0,0.25),
        0 6px 18px rgba(20,54,95,0.35);
}

.nav-links a,
.menu a,
.logo-text{
    color:var(--white);
}

/* MOBILE NAV */
@media (max-width:991px){
    .nav-links{
        background:rgba(255,255,255,.96);
    }

    .nav-links a{
        color:var(--white);
        border-bottom:1px solid rgba(15,118,110,.08);
    }

    .menu-toggle{
        color:var(--teal);
    }
}

/* TYPOGRAPHY */
h1{
    color:var(--teal);
    text-shadow:0 5px 25px rgba(15,118,110,.12);
}

h2{
    color:var(--teal);
}

h3{
    color:var(--gold);
}

p{
    color:var(--muted);
}

.hero-left h2{
    color:var(--gold);
}

.hero-left p{
    color:#48606d;
}

/* GLASS CARDS */
.card,
.feature-card,
.profile-card,
.logo-card,
.pdf-card,
.contact-card,
.contact-info,
.contact-form,
.content-text,
.ministry-card,
.gallery-card,
.highlight-box{
    background:rgba(255,255,255,.78);
    border:1px solid rgba(15,118,110,.10);
    box-shadow:0 20px 45px rgba(15,118,110,.08);
}

/* TEXT INSIDE CARDS */
.feature-card,
.ministry-card h3,
.contact-text h4,
.footer-col h3{
    color:#17313d;
}

.ministry-card p,
.contact-card p,
.contact-info p,
.contact-text span,
.contact-text a{
    color:#617684;
}

/* LIST */
.modern-list li{
    color:#5E7085;
    border-bottom:1px solid rgba(15,118,110,.08);
}

/* COUNTRY BUTTON */
.country-btn,
.trace{
    background:rgba(255,255,255,.82);
    border:1px solid rgba(15,118,110,.10);
    color:#17313d;
}

/* GALLERY */
.gallery-card{
    background:#ffffff;
    border:1px solid rgba(15,118,110,.10);
}

.gallery-card::before{
    background:linear-gradient(
        to top,
        rgba(16,32,40,.75),
        rgba(16,32,40,.22),
        transparent
    );
}

/* SECTION TAG */
.section-tag{
    border:1px solid rgba(15,118,110,.12);
    background:rgba(20,184,166,.08);
    color:var(--teal);
}

/* FORM */
.contact-form input,
.contact-form textarea,
.contact-form select{
    background:#ffffff;
    border:1px solid rgba(15,118,110,.12);
    color:#17313d;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:#6d7f8b;
}

/* BUTTON */
.btn,
button{
    color:white;
    background:linear-gradient(135deg,var(--teal),#14b8a6);
    box-shadow:0 12px 28px rgba(20,184,166,.18);
}

/* ICONS */
.contact-icon{
    color:white;
    background:linear-gradient(135deg,var(--teal),#14b8a6);
}

/* FOOTER */
footer{
    background:linear-gradient(135deg,#0f766e,#0b5c56);
}

.footer-col a,
.footer-brand p,
.footer-bottom,
.copyright{
    color:rgba(255,255,255,.92);
}

/* POPUP */
.popup-content,
.modal-content{
    background:#ffffff;
    border:1px solid rgba(15,118,110,.10);
    color:#17313d;
}

/* FLOAT BTN */
.floating-btn{
    background:linear-gradient(135deg,var(--teal),#14b8a6);
    color:white;
}

/* EDGE FADE ON LOGO SLIDER */
.logo-slider::before{
    background:linear-gradient(to right,#f7fcfb,transparent);
}
.logo-slider::after{
    background:linear-gradient(to left,#f7fcfb,transparent);
}




/* 3rd */
/* =========================================
   MIDNIGHT EXECUTIVE OVERRIDE
========================================= */

:root{
    --bg:#f6f9fc;
    --bg2:#ffffff;

    --glass:rgba(255,255,255,.75);
    --glass2:rgba(255,255,255,.90);

    --white:#12263a;
    --gold:#4f8fbf;
    --gold-soft:#9cc4e4;

    --teal:#1d4e89;
    --teal-dark:#14365f;

    --muted:#5e7085;
    --line:rgba(29,78,137,.10);

    --shadow:0 20px 50px rgba(29,78,137,.08);
    --shadowGlow:0 0 35px rgba(79,143,191,.14);
}

body{
    background:
        radial-gradient(circle at top right, rgba(79,143,191,.10), transparent 28%),
        radial-gradient(circle at bottom left, rgba(157,196,228,.12), transparent 30%),
        linear-gradient(135deg,#f6f9fc,#ffffff);
    color:var(--white);
}

.btn,button,.contact-icon,.floating-btn{
    background:linear-gradient(135deg,var(--teal),var(--gold));
}
footer{
    background:linear-gradient(135deg,#14365f,#1d4e89);
}

#backToTopBtn{
    position:fixed;
    bottom:20px;
    right:20px;

    width:42px;
    min-width:42px;
    max-width:42px;

    height:42px;
    min-height:42px;
    max-height:42px;

    padding:0;
    border:none;
    border-radius:50%;

    background:linear-gradient(135deg,#14365f,#1d4e89);
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:16px;
    line-height:1;

    cursor:pointer;
    z-index:9999;

    opacity:0;
    visibility:hidden;
    transform:translateY(15px) scale(0.9);

    transition:all 0.3s ease;

    box-shadow:
        0 6px 18px rgba(0,0,0,0.25),
        inset 0 1px 2px rgba(255,255,255,0.15);

    aspect-ratio:1/1; /* keeps perfect circle */
}

/* Show */
#backToTopBtn.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0) scale(1);
}

/* Hover */
#backToTopBtn:hover{
    transform:translateY(-3px) scale(1.06);
}

/* Mobile */
@media(max-width:768px){

    #backToTopBtn{
        width:38px;
        min-width:38px;
        max-width:38px;

        height:38px;
        min-height:38px;
        max-height:38px;

        font-size:14px;
        bottom:14px;
        right:14px;
    }
}

/* SLIDER BUTTON */
.slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);

    width:36px;
    min-width:36px;
    max-width:36px;

    height:36px;
    min-height:36px;
    max-height:36px;

    padding:0;
    border:none;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(0,0,0,.45);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.15);

    color:#fff;
    font-size:14px;
    line-height:1;

    cursor:pointer;
    z-index:50;

    transition:all .25s ease;

    aspect-ratio:1/1;
}

/* Hover */
.slider-btn:hover{
    transform:translateY(-50%) scale(1.08);
    background:rgba(0,0,0,.65);
}

/* Click */
.slider-btn:active{
    transform:translateY(-50%) scale(.95);
}

/* Position */
.prev{
    left:10px;
}

.next{
    right:10px;
}

/* Mobile */
@media(max-width:480px){

    .slider-btn{
        width:32px;
        min-width:32px;
        max-width:32px;

        height:32px;
        min-height:32px;
        max-height:32px;

        font-size:12px;
    }

    .prev{
        left:6px;
    }

    .next{
        right:6px;
    }
}

/* FULL WIDTH NAME STRIP */
.name-strip{
    width:100%;
    position:relative;
    overflow:hidden;

    background:linear-gradient(135deg,#14365f,#1d4e89);

    padding:22px 30px;
    margin-bottom:22px;

    display:flex;
    justify-content:center;
    align-items:center;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.18),
        inset 0 1px 2px rgba(255,255,255,0.15);

    animation:stripGlow 4s ease-in-out infinite;
}

/* Shine Effect */
.name-strip::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;

    width:60%;
    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.18),
        transparent
    );

    transform:skewX(-25deg);

    animation:shine 5s linear infinite;
}

/* NAME */
.name-strip h1{
    position:relative;
    z-index:2;

    margin:0;
    color:#f6f9fc;

    font-size:clamp(34px,5vw,70px);
    font-weight:800;
    line-height:1.1;
    letter-spacing:1px;

    white-space:nowrap;

text-shadow: 6px 6px 0px rgba(0,0,0,0.2);

}

/* Glow Animation */
@keyframes stripGlow{
    0%{
        box-shadow:
            0 10px 30px rgba(0,0,0,0.18),
            0 0 0 rgba(29,78,137,0.0);
    }

    50%{
        box-shadow:
            0 12px 35px rgba(0,0,0,0.22),
            0 0 25px rgba(29,78,137,0.25);
    }

    100%{
        box-shadow:
            0 10px 30px rgba(0,0,0,0.18),
            0 0 0 rgba(29,78,137,0.0);
    }
}

/* Shine Animation */
@keyframes shine{
    100%{
        left:140%;
    }
}

/* MOBILE */
@media(max-width:768px){

    .hero{
        padding-top:120px;
    }

    .name-strip{
        padding:16px 14px;
    }

    .name-strip h1{
        font-size:33px;
        white-space:normal;
    }
}

.project-list{
    padding-left:30px;
    margin-top:25px;
    list-style:disc;   /* show bullet */
}

.project-list li{
    margin-bottom:30px;
    color:#14365f;
    display:list-item; /* ensure bullets visible */
}

.project-list li::marker{
    color:#1d4e89;
    font-size:22px;
}

.project-list h3{
    margin-bottom:12px;
    font-size:28px;
    font-weight:700;
    line-height:1.3;
}

.project-list p{
    margin:0;
    color:#444;
    line-height:1.8;
    font-size:16px;
}

/* =========================================
   UNIFIED TEXT COLOR
========================================= */

:root{
    --text-color:#5e7085; /* choose your final text color */
}

/* All paragraph text */
p{
    color:var(--text-color) !important;
}

/* Lists */
li,
.modern-list li,
.project-list li,
.contact-text span,
.contact-text a,
.footer-col a,
.footer-brand p,
.copyright{
    color:var(--text-color) !important;
}

/* Card text */
.feature-card,
.ministry-card p,
.contact-card p,
.contact-info p,
.content-text,
.highlight-box,


/* Inputs */
.contact-form input,
.contact-form textarea,
.contact-form select{
    color:var(--text-color) !important;
}

/* Placeholder */
.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:var(--text-color) !important;
}

.card-overlay h3{
    color:#ffffff;
}

@media(max-width:768px){

    .nav-links{
        display:flex;
        flex-direction:column;
        flex-wrap:nowrap;
        gap:0;
        width:100%;
    }

    .nav-links a{
        display:block;
        width:100%;
        padding:15px 20px;
        font-size:14px;
    }
}
.video-card{
    position:relative;
}

.video-card video{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* BUTTON */
.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);

    width:80px;
    height:80px;
    border-radius:50%;

    background:rgba(255,255,255,0.25);
    backdrop-filter:blur(8px);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:38px;
    color:#fff;

    cursor:pointer;
    z-index:20;

    opacity:0;
    transition:0.3s ease;
}

/* SHOW ON HOVER */
.video-card:hover .play-btn{
    opacity:1;
}