:root{
    --primary:#0A2F87;
    --secondary:#1456D9;
    --navy:#061A4A;
    --white:#FFFFFF;
    --light:#F8FAFC;
    --text:#1E293B;
    --gray:#64748B;
    --success:#16A34A;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:"Jost",sans-serif;
}
html{
    scroll-behavior: smooth;
}
/* FULLSCREEN LOADER */
#loader{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background:var(--secondary);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
    transition:0.5s ease;
}
.dots{
    display: flex;
    justify-content: center;
    align-items: center;
}
.dots span{
    position: absolute;
    top: 50%;
    height: 8px;
    width: 8px;
    background: #fff;
    border-radius: 50%;
    transform: rotate(calc(var(--i) * (360deg / 15))) translateY(35px);
    animation: animate 1.5s linear infinite;
    animation-delay: calc(var(--i) * 0.1s);
    opacity: 0;
}
@keyframes animate{
    0%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}
/* HIDE PAGE INITIALLY */
#page-content{
    opacity: 0;
    filter: blur(10px);
    transition: all 0.6s ease;
}
/* scroll button*/
#progress{
    position: fixed;
    bottom: 20px;
    right: 10px;
    width: 45px;
    color: white;
    height: 45px;
    display: none;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0,0,10px rgb(225, 222, 216);
    cursor: pointer;
    z-index: 9999;
}
#progress-value{
    display: block;
    height: calc(98% - 3px);
    width: calc(98% - 3px);
    background-color: #061A4A;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 24px;
    z-index: 9999;
}
/*styling top-footer */
#top-footer {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.1s ease; /* faster + smoother than AOS */
}
/* active state */
#top-footer.show {
  opacity: 1;
  transform: translateY(0);
}
/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    display: flex;
    align-items: center;
    text-decoration: none;
}
/* icon */
.whatsapp-float i {
    width: 55px;
    height: 55px;
    background: #25D366;
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s ease;
    /* Pulse effect */
    animation: pulse 2s infinite;
}
/* Hover effect */
.whatsapp-float i:hover {
    transform: scale(1.1);
}
/* Pulse animation */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
/* TEXT */
.whatsapp-text {
    left: 60px;
    top: 50%;
    transform: translateY(-50%) translateX(-20px);
    background: #25D366;
    color: #fff;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 14px;
    opacity: 0;
    transition: all 0.3s ease;
}
/* Small speech bubble arrow */
.whatsapp-text::after {
    content: "";
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent #25D366 transparent transparent;
}
/* SHOW */
.whatsapp-float.show .whatsapp-text {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}
/*Top Footer*/
.top-footer{
    background: var(--gray);
    padding: 10px 8%;
    color: var(--white);
    font-size: 14px;
}
.top-footer-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.top-contact{
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}
.top-contact span{
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
}
.top-actions{
    display: flex;
    align-items: center;
    gap: 15px;
}
.partner-btn{
    background: var(--secondary);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}
.partner-btn:hover{
    background: var(--navy);
    color: var(--white);
}
.social-link-list{
    display: flex;
    gap: 15px;
}
.social-link{
    color: var(--white);
    font-size: 15px;
    transition: 0.3s ease;
}
.social-link:hover{
    color: var(--secondary);
}
/* HEADER */
.main-header {
    width: 100%;
    height: 79px;
    background: var(--white);
    backdrop-filter: blur(0px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    padding: 0 60px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    position: sticky;
    top: 0;
    z-index: 9999;
}
.main-header.scrolled {
  background: var(--white);
  backdrop-filter: blur(0px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}
/* LOGO */
.main-header .logo {
    width: 110px;
    display: block;
}
/* NAV */
header ul {
    display: flex;   /* 🔥 replaces float */
    align-items: center;
    gap: 10px;
}
/* REMOVE FLOAT */
header ul li {
    list-style: none;
}
/* LINKS */
header ul li a {
    color: var(--secondary);
    font-size: 16px;
    padding: 10px 18px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s ease;
}
/* HOVER */
header ul li a:hover {
    color: var(--text);
}
/* BUTTON (your <a>) */
.dropdown .dropbtn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--secondary);
    font-size: 16px;
    text-decoration: none;
    padding: 12px 16px;
    cursor: pointer;
    transition: 0.3s ease;
}
/* HOVER EFFECT */
.dropdown .dropbtn:hover {
    color: var(--text);
    border-radius: 4px;
}
/* ICON */
.dropdown .dropbtn i {
    font-size: 16px;
    color: var(--secondary);
    transition: transform 0.3s ease;
}
/* ROTATE ICON WHEN ACTIVE */
.dropdown.active .dropbtn i {
    transform: rotate(180deg);
}
/* DROPDOWN */
.dropdown {
    position: relative;
}
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;

    background: var(--white);
    backdrop-filter: blur(10px);
    min-width: 220px;
    border-radius: 5px;
    overflow: hidden;
}
/* DROPDOWN LINKS */
.dropdown-content li a {
    display: block;
    padding: 12px 15px;
    font-size: 16px;
    color: var(--secondary);
}
/* SHOW DROPDOWN */
.dropdown:hover .dropdown-content {
    display: block;
}
/* DROPDOWN HOVER */
.dropdown-content li a:hover {
    color: var(--text);
}
.donate-btn{
    background: var(--secondary);
    color: var(--white) !important;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 30px;
    transition: 0.3s ease;
}
.donate-btn:hover{
    background: var(--gray);
    color: var(--white) !important;
    transform: translateY(-2px);
}
/* HERO SECTION */
.hero-section {
    position: relative;
    width: 100%;
    height: clamp(620px, 68vh, 720px);
    padding: 50px 5% 90px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
/* BACKGROUND IMAGE */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('image/7e6f723ef44d157118ddf889f268c558.jpg') no-repeat center center/cover;
    z-index: 1;
}
/* DARK BLUE OVERLAY */
.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            #1456D9 0%,
            #1456d9ba 42%,
            #1456d971 72%,
            rgba(255, 255, 255, 0.08) 100%
        );
    z-index: 2;
}
.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    margin: auto;
    gap: 70px;
    align-items: center;
}
/* LEFT CONTENT */
.hero-content {
    max-width: 720px;
}
.hero-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.14);
    color: #EAF1FF;
    padding: 10px 18px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}
.hero-content h1 {
    font-size:50px;
    line-height: 1.08;
    color: #ffffff;
    margin-bottom: 24px;
    font-weight: 700;
}
.hero-content p {
    font-size: 16px;
    line-height: 1.75;
    color: #E2E8F0;
    margin-bottom: 32px;
    max-width: 660px;
}
/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.btn-primary,
.btn-outline {
    padding: 15px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}
.btn-primary {
    background: #ffffff;
    color: #0A2F87;
}
.btn-primary:hover {
    background: #EAF1FF;
    transform: translateY(-3px);
}
.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: #ffffff;
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-3px);
}
/* TRUST TAGS */
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.hero-tags span {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    padding: 9px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
}
/* EMPTY RIGHT SIDE FOR IMAGE VISIBILITY */
.hero-visual-space {
    min-height: 420px;
}
/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-section {
        min-height: auto;
        height: clamp(710px, 60vh, 790px);
        padding: 80px 6% 60px;
    }

    .hero-section::after {
        background:
            linear-gradient(
                90deg,
                rgba(6, 26, 74, 0.96) 0%,
                rgba(10, 47, 135, 0.88) 65%,
                rgba(10, 47, 135, 0.65) 100%
            );
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-visual-space {
        display: none;
    }
}
@media (max-width: 600px) {
    .hero-section {
        height: auto;
        min-height: 620px;
        padding: 90px 6% 60px;
    }
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 15.5px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }
}
/* TRUST BAR */
.belevo-trust-bar {
    background: var(--white);
    padding: 28px 8%;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
}
.trust-container {
    max-width: 1250px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.trust-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px;
    border-radius: 16px;
    background: var(--light);
    border: 1px solid #E2E8F0;
    transition: 0.3s ease;
}
.trust-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}
.trust-item i {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #EAF1FF;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.trust-item h4 {
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 5px;
}
.trust-item p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
}
/* RESPONSIVE */
@media (max-width: 1050px) {
    .belevo-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .belevo-hero-visual {
        min-height: 460px;
    }

    .main-card {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        max-width: 500px;
        margin: auto;
    }

    .trust-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 650px) {
    .belevo-hero {
        padding: 100px 6% 60px;
        min-height: auto;
    }

    .belevo-hero-content h1 {
        font-size: 36px;
    }

    .belevo-hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .belevo-hero-visual {
        min-height: auto;
    }

    .mini-card {
        display: none;
    }

    .trust-container {
        grid-template-columns: 1fr;
    }
}
/* WHY BELEVO */
.why-belevo {
    padding: 90px 5%;
    background: #ffffff;
}
.why-wrap {
    max-width: 1180px;
    margin: auto;
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 80px;
    align-items: center;
}
.why-photo {
    position: relative;
}
.why-photo img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 1px;
    display: block;
}
.photo-note {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    padding: 20px 22px;
    border-radius: 5px;
    box-shadow: 0 18px 45px rgba(6, 26, 74, 0.18);
}
.photo-note strong {
    display: block;
    color: #061A4A;
    font-size: 16px;
    margin-bottom: 6px;
}
.photo-note span {
    color: #64748B;
    font-size: 14px;
    line-height: 1.5;
}
.why-text {
    max-width: 680px;
}
.eyebrow {
    display: inline-block;
    color: #0A2F87;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.why-text h2 {
    color: #061A4A;
    font-size: 40px;
    line-height: 1.1;
    margin-bottom: 15px;
}
.why-text p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 5px;
}
.why-text .lead {
    font-size: 16px;
    color: #475569;
    line-height: 1.75;
}
.why-points {
    margin: 20px 0 32px;
    border-top: 1px solid #E2E8F0;
}
.why-points div {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 18px;
    padding: 5px 0;
    border-bottom: 1px solid #E2E8F0;
}
.why-points span {
    color: #0A2F87;
    font-weight: 800;
    font-size: 15px;
}
.why-points p {
    margin: 0;
    color: #334155;
}
.why-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0A2F87;
    font-weight: 700;
    text-decoration: none;
}
.why-link i {
    transition: 0.3s ease;
}
.why-link:hover i {
    transform: translateX(6px);
}
@media (max-width: 900px) {
    .why-wrap {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .why-photo img {
        height: 430px;
    }
}
@media (max-width: 600px) {
    .why-belevo {
        padding: 75px 6%;
    }

    .why-photo img {
        height: 340px;
        border-radius: 1px;
    }

    .photo-note {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .why-points div {
        grid-template-columns: 42px 1fr;
    }
}
/* HERO SECTION */
.belevo-hero {
    position: relative;
    width: 100%;
    padding: 90px 5% 80px;
    background:
        radial-gradient(circle at top right, rgba(2, 30, 86, 0.685), transparent 35%),
        linear-gradient(135deg, #1456D9 0%, #154ed3 55%, #1456D9 100%);
    overflow: hidden;
}
.belevo-hero::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: #ffffff28;
    top: -160px;
    left: -120px;
}
.belevo-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1250px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 60px;
}
.belevo-hero-content {
    color: var(--white);
}
.hero-badge {
    display: inline-block;
    padding: 9px 18px;
    margin-bottom: 22px;
    border-radius: 40px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    color: #EAF1FF;
    font-size: 14px;
    font-weight: 500;
}
.belevo-hero-content h1 {
    font-size: 40px;
    line-height: 1.12;
    font-weight: 700;
    margin-bottom: 24px;
}
.belevo-hero-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #E2E8F0;
    max-width: 690px;
    margin-bottom: 14px;
}
.hero-support {
    color: #CBD5E1 !important;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 26px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}
.btn-primary {
    background: var(--white);
    color: var(--primary);
}
.btn-secondary {
    border: 1px solid rgba(255,255,255,0.35);
    color: var(--white);
}
.belevo-hero-visual {
    position: relative;
    min-height: 460px;
}
.finance-card {
    background: rgba(255,255,255,0.96);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.28);
}
.main-card {
    position: absolute;
    top: 35px;
    right: 0;
    width: min(430px, 100%);
}
.card-header {
    display: flex;
    gap: 8px;
    margin-bottom: 22px;
}
.card-header span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #CBD5E1;
}
.finance-card h3 {
    color: var(--navy);
    font-size: 22px;
    margin-bottom: 28px;
}
.dashboard-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: var(--text);
    font-size: 15px;
}
.dashboard-row strong {
    color: var(--primary);
}
.progress-line {
    width: 100%;
    height: 9px;
    border-radius: 30px;
    background: #E2E8F0;
    margin-bottom: 24px;
    overflow: hidden;
}
.progress-line div {
    height: 100%;
    border-radius: 30px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.mini-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    color: var(--navy);
    padding: 15px 18px;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.2);
    font-size: 14px;
    font-weight: 600;
}
.mini-card i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #EAF1FF;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-one {
    top: 10px;
    left: 0;
}
.card-two {
    bottom: 120px;
    left: 0;
}
.card-three {
    bottom: 45px;
    right: 0;
}
/* TABLET */
@media (max-width: 1050px) {
    .belevo-hero {
        padding: 80px 6% 70px;
    }

    .belevo-hero-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .belevo-hero-content {
        max-width: 760px;
    }

    .belevo-hero-visual {
        min-height: auto;
    }

    .main-card {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        max-width: 520px;
    }

    .mini-card {
        display: none;
    }
}
/* MOBILE */
@media (max-width: 600px) {
    .belevo-hero {
        padding: 65px 6% 55px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 14px;
    }

    .belevo-hero-content h1 {
        font-size: 30px;
    }

    .belevo-hero-content p,
    .hero-support {
        font-size: 15px !important;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .finance-card {
        padding: 22px;
        border-radius: 16px;
    }

    .finance-card h3 {
        font-size: 19px;
    }
}
/* ===== SERVICE OVERVIEW SECTION ===== */
/* SERVICE OVERVIEW */
.service-overview{
    padding:100px 5%;
    background:#ffffff;
}
.service-header{
    max-width:800px;
    margin:0 auto 55px;
    text-align:center;
}
.service-header h2{
    font-size:40px;
    color:#061A4A;
    margin:15px 0;
    line-height:1.2;
}
.service-header p{
    color:#64748B;
    line-height:1.8;
}
.services-list-grid{
    max-width:1250px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}
.service-page-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    transition:.3s ease;
    box-shadow:0 14px 35px rgba(15,23,42,.06);
}
.service-page-card:hover{
    transform:translateY(-8px);
    box-shadow:0 22px 50px rgba(15,23,42,.12);
}
.service-page-img{
    height:215px;
    overflow:hidden;
}
.service-page-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.5s ease;
}
.service-page-card:hover .service-page-img img{
    transform:scale(1.06);
}
.service-page-content{
    padding:34px 28px 30px;
}
.service-page-content i{
    width:54px;
    height:54px;
    border-radius:50%;
    background:#0A2F87;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:21px;
    margin-top:-62px;
    margin-bottom:24px;
    position:relative;
    z-index:2;
    box-shadow:0 10px 25px rgba(6,26,74,.25);
}
.service-page-content h3{
    color:#061A4A;
    font-size:21px;
    margin-bottom:12px;
}
.service-page-content p{
    color:#64748B;
    font-size:15px;
    line-height:1.75;
    margin-bottom:24px;
}
.service-page-content a{
    display:inline-block;
    padding:11px 22px;
    background:#0A2F87;
    color:#fff;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
    font-size:14px;
}
/* WORK + BOOKING */
.service-booking-wrap{
    max-width:1250px;
    margin:80px auto 0;
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:70px;
    align-items:center;
}
.how-we-work h2{
    color:#061A4A;
    font-size:38px;
    line-height:1.2;
    margin:15px 0;
}
.how-we-work > p{
    color:#64748B;
    line-height:1.8;
    max-width:620px;
    margin-bottom:40px;
}
.work-steps{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
    position:relative;
}
.work-step{
    position:relative;
}
.step-icon{
    width:62px;
    height:62px;
    border-radius:50%;
    background:#EAF1FF;
    color:#0A2F87;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    margin-bottom:18px;
}
.work-step h3{
    color:#061A4A;
    font-size:17px;
    margin-bottom:8px;
}
.work-step p{
    color:#64748B;
    font-size:14px;
    line-height:1.6;
}
/* BOOKING FORM */
.booking-card{
    background:linear-gradient(135deg,#061A4A,#0A2F87);
    padding:42px;
    border-radius:8px;
    color:#ffffff;
    box-shadow:0 25px 60px rgba(6,26,74,.25);
}
.booking-card h2{
    font-size:36px;
    line-height:1.2;
    margin-bottom:26px;
}
.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
}
.booking-card input,
.booking-card select,
.booking-card textarea{
    width:100%;
    padding:14px;
    margin-bottom:12px;
    background:rgb(255, 255, 255);
    border:1px solid rgba(255,255,255,.18);
    color:var(--navy);
    outline:none;
    border-radius:4px;
}
.booking-card input::placeholder,
.booking-card textarea::placeholder{
    color:var(--navy);
}
.booking-card select{
    color:var(--navy);
}
.booking-card option{
    color:#061A4A;
}
.booking-card textarea{
    min-height:100px;
    resize:none;
}
.booking-card button{
    width:100%;
    padding:15px;
    background:#ffffff;
    color:#0A2F87;
    border:none;
    border-radius:5px;
    font-weight:700;
    cursor:pointer;
}
/* RESPONSIVE */
@media(max-width:1000px){
    .service-card-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .service-booking-wrap{
        grid-template-columns:1fr;
        gap:50px;
    }
}
@media(max-width:650px){
    .service-overview{
        padding:75px 6%;
    }

    .service-header h2,
    .how-we-work h2,
    .booking-card h2{
        font-size:32px;
    }

    .services-list-grid,
    .work-steps,
    .form-row{
        grid-template-columns:1fr;
    }

    .service-img{
        height:220px;
    }

    .booking-card{
        padding:30px 22px;
    }
}
/* WHO WE SERVE */
.who-we-serve,
.markets-section{
    padding:100px 5%;
    background:#fff;
}
.section-heading{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}
.section-tag{
    display:inline-block;
    padding:8px 18px;
    color:#0A2F87;
    font-size:16px;
    font-weight:600;
    margin-bottom:15px;
}
.section-heading h2{
    font-size:40px;
    color:#061A4A;
    margin-bottom:15px;
}
.section-heading p{
    color:#64748B;
    line-height:1.8;
}
/* WHO WE SERVE GRID */
.serve-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}
.serve-card{
    padding:30px;
    background:#F8FAFC;
    border:1px solid #E2E8F0;
    border-radius:18px;
    transition:.3s;
}
.serve-card:hover{
    transform:translateY(-5px);
}
.serve-card i{
    font-size:26px;
    color:#1456D9;
    margin-bottom:18px;
}
.serve-card h3{
    margin-bottom:12px;
    color:#061A4A;
}
.serve-card p{
    color:#64748B;
    line-height:1.7;
}
/* MARKETS */
.markets-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}
.market-card{
    background:#F8FAFC;
    border:1px solid #E2E8F0;
    border-radius:20px;
    padding:35px;
}
.market-header{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:25px;
}
.market-header span{
    font-size:20px;
}
.market-header h3{
    color:#061A4A;
}
.market-card ul{
    list-style:none;
}
.market-card ul li{
    padding:10px 0;
    border-bottom:1px solid #E2E8F0;
    color:#475569;
}
.market-card ul li:last-child{
    border-bottom:none;
}
/* RESPONSIVE */
@media(max-width:1000px){

    .serve-grid,
    .markets-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:700px){

    .serve-grid,
    .markets-grid{
        grid-template-columns:1fr;
    }

    .section-heading h2{
        font-size:32px;
    }
}
/*testimonial*/
.testimonials{
    width: 100%;
    padding: 40px 4%;
    background:linear-gradient(135deg, #1456D9 0%, #003fd2da 55%, #1456D9 100%);
}
/* Section Header */
.section-header1{
    text-align: center;
    max-width: 800px;
    margin: auto;
    margin-bottom: 30px;
}
.section-tag2{
    display:inline-block;
    padding:8px 18px;
    color:#ffffff;
    font-size:16px;
    font-weight:600;
    margin-bottom:15px;
}
.section-header1 h2{
    font-size: 40px;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 20px;
}
.section-header1 p{
    color: #ffffff;
    font-size: 16px;
    line-height: 1.9;
}
/* CONTAINER */
.carousel {
    max-width: 720px;
    margin: auto;
    overflow: hidden;
    border-radius: 20px;
}
/* TRACK WITH GAP (IMPORTANT FIX) */
.track {
    display: flex;
    gap: 20px; /* 👈 THIS FIXES THE NO-GAP ISSUE */
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
/* CARD (PREMIUM LOOK) */
/* CARD */
.card {
    flex: 0 0 100%;
    background: var(--primary);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 1px 5px 1px rgba(0,0,0,0.08);
    text-align: center;
    box-sizing: border-box;
}
/* subtle hover lift */
.card:hover {
    transform: translateY(-5px);
}
/* TEXT */
.card p {
    font-size: 16px;
    color: #ffffff;
    font-style: italic;
    line-height: 1.6;
    margin: 15px 0 25px;
}
.card h4 {
    font-size: 17px;
    margin: 0;
    color: #ffffff;
}
.card span {
    font-size: 13px;
    color: #ffffff;
}
/* DOTS */
.dots {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}
.dot.active {
    width: 22px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 6px 15px rgba(76,111,255,0.4);
}
/* QUOTE ICON */
.quote-icon {
    font-size: 28px;
    color: #ffffff;
    opacity: 0.5;
    position: absolute;
    top: 20px;
    left: 25px;
}
/* STAR RATING */
.stars {
    margin: 10px 0 15px;
    color: #f5b301;
    font-size: 15px;
    display: flex;
    justify-content: center;
    gap: 3px;
}
/* 📱 RESPONSIVE FIX */
@media (max-width: 768px) {
    .testimonial-section h2 {
        font-size: 26px;
    }

    .card {
        padding: 30px 20px;
    }

    .card p {
        font-size: 15px;
    }
}
/* CTA SECTION */
.cta-section{
    padding:100px 8%;
    background:white;
}
.cta-container{
    max-width:900px;
    margin:auto;
    text-align:center;
    color:#fff;
}
.cta-tag{
    display:inline-block;
    padding:10px 18px;
    font-size:15px;
    font-weight:600;
    color: var(--navy);
    margin-bottom:20px;
}
.cta-container h2{
    color: var(--navy);
    font-size:40px;
    line-height:1.2;
    margin-bottom:20px;
}
.cta-container p{
    max-width:750px;
    margin:0 auto 35px;
    line-height:1.8;
    color:var(--navy);
}
.cta-features{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
    margin-bottom:40px;
}
.cta-feature{
    display:flex;
    align-items:center;
    gap:10px;
    color:var(--navy);
}
.cta-feature i{
    color:#4ADE80;
}
.cta-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}
.cta-primary,
.cta-secondary{
    padding:16px 30px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}
.cta-primary{
    background:var(--secondary);
    color:#ffffff;
}
.cta-primary:hover{
    transform:translateY(-3px);
}
.cta-secondary{
    border:1px solid var(--secondary);
    color:var(--primary);
}
.cta-secondary:hover{
    background:rgba(255,255,255,.12);
}
@media(max-width:768px){

    .cta-container h2{
        font-size:34px;
    }

    .cta-buttons{
        flex-direction:column;
    }

    .cta-primary,
    .cta-secondary{
        width:100%;
    }
}
/* PARTNERS SECTION */
.partners-section {
    padding: 90px 5%;
    background: #F8FAFC;
}

.partners-container {
    max-width: 1200px;
    margin: auto;
}
.partners-container .section-header{
    max-width:850px;
    margin:0 auto 60px;
    text-align:center;
}

.partners-container .section-header h2{
    font-size:40px;
    color:#061A4A;
    line-height:1.2;
    margin:18px 0;
}

.partners-container .section-header p{
    color:#64748B;
    line-height:1.8;
}
.partners-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    align-items: center;
    margin-top: 50px;
}

.partner-logo {
    min-height: 150px;
    padding: 35px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease;
}

.partner-logo:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.partner-logo img {
    max-width: 190px;
    max-height: 90px;
    object-fit: contain;
    opacity: .8;
    transition: .3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .partners-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .partners-section {
        padding: 70px 6%;
    }

    .partners-logos {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .partner-logo {
        min-height: 130px;
        padding: 28px;
    }

    .partner-logo img {
        max-width: 170px;
    }
}
/*footer*/
.footer{
    background:var(--primary);
    padding: 60px 3% 15px;
    color:#ffffff;
}
/* CONTAINER */
.footer-container{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:60px;
    margin-bottom:40px;
}
/* LOGO */
.logo h3{
    font-size:20px;
    font-weight:700;
    margin-bottom:10px;
}
.logo img{
    width: 70px;
    color:#ffffff;
    margin-right:6px;
}
/* TEXT */
.footer-col p{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
/* HEADINGS */
.footer-col h4{
    margin-bottom:15px;
    font-size:16px;
    font-weight:600;
}
/* LINKS */
.footer-col ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
.footer-col ul li{
    margin-bottom:8px;
}
.footer-col ul li a{
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s ease;
}
.footer-col ul li a:hover{
    transform: translateX(5px);
    color: var(--gray);
}
/* BOTTOM FOOTER */
.footer-bottom{
    border-top:1px solid #ffffff;
    padding-top:20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:20px;
}
.footer-bottom p{
    font-size:16px;
    color:#ffffff;
}
.footer-bottom a{
    text-decoration: none;
    color: white;
}
.footer-bottom a:hover{
    color: var(--gray);
}
/* FOOTER LINKS */
.footer-links a{
    margin:0 10px;
    font-size:16px;
    color:#ffffff;
    text-decoration:none;
}
.footer-links a:hover{
    color:var(--gray);
}
/* SOCIAL ICONS */
.social-icons a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration: none;
    width:32px;
    height:32px;
    border:1px solid #ccc;
    border-radius:50%;
    margin-left:10px;
    color:#ffffff;
    font-size:14px;
    transition:0.3s;
}
.social-icons a:hover{
    background:var(--gray);
    color:white;
    border-color:#b8964c;
}
@media (max-width: 1115px){
    .main-header .logo{
        width: 70px;
        
    }
    nav ul li a {
        text-decoration: none;
        color: var(--secondary);
        font-size: 14px;
        transition: color 0.3s;
    }
    .dropdown .dropbtn {
        font-size: 14px;
    }
    .dropdown-content li a {
        display: block;
        padding: 12px 15px;
        font-size: 14px;
    }
    .donate-btn{
       font-size: 14px;
       font-weight: 400; 
    }
}
@media (max-width: 1000px){
    .main-header .logo{
        width: 55px;
        
    }
    nav ul li a {
        text-decoration: none;
        color: var(--secondary);
        font-size: 13px;
        transition: color 0.3s;
    }
    .dropdown .dropbtn {
        font-size: 13px;
    }
    .dropdown-content li a {
        display: block;
        padding: 12px 15px;
        font-size: 13px;
    }
    .donate-btn{
       font-size: 13px;
       font-weight: 400; 
    }
}
@media (max-width: 950px){
    .main-header .logo{
        width: 45px;
        
    }
    nav ul li a {
        text-decoration: none;
        color: var(--secondary);
        font-size: 12px;
        transition: color 0.3s;
    }
    .dropdown .dropbtn {
        font-size: 13px;
    }
    .dropdown-content li a {
        display: block;
        padding: 12px 15px;
        font-size: 12px;
    }
    .donate-btn{
       font-size: 12px;
       font-weight: 400; 
    }
}
@media (max-width: 900px){
    /* Hide top footer */
    .top-footer {
        display: none;
    }
    /* Header */
    .main-header {
        padding: 10px 20px;
        position: sticky; /* important for nav positioning */
    }
    .main-header .logo {
        width: 85px;
    }
    /* ===== MOBILE NAV CONTAINER ===== */
    header nav {
        position: absolute;
        top: 70px; /* fixed under header */
        left: 0;
        right: 0; /* ensures full width */
        width: 100%;
        background: var(--white);
        backdrop-filter: blur(10px);
        display: none;
        z-index: 1000;
        text-align: center;
        padding: 20px 0;
    }
    /* Show menu when active */
    header.active nav {
        display: block;
    }
    header.active {
        background: var(--white) !important;
        backdrop-filter: blur(0px); 
    }
    /* ===== NAV LIST ===== */
    header nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
        margin: 0;
    }
    header nav ul li {
        list-style: none;
        width: 100%;
    }
    header nav ul li a,
    .dropdown .dropbtn {
        display: block;
        width: 100%;
        color: var(--secondary);
        font-size: 16px;
        padding: 15px 0;
        text-decoration: none;
        cursor: pointer;
    }
    header nav ul li a:hover {
        color: var(--text);
        background-color: transparent;
    }
    /* ===== DROPDOWN ===== */
    .dropdown {
        position: static;
        width: 100%;
        color: #ffffff;
    }
    .dropdown-content {
        display: none;
        position: static;
        color: var(--secondary);
        text-align: center;
        width: 100%;
    }
    /* Disable hover on mobile */
    .dropdown:hover .dropdown-content {
        display: none !important;
    }
    /* Show dropdown when active (JS controlled) */
    .dropdown.active .dropdown-content {
        display: block !important;
    }
    .dropdown-content li a {
        padding: 12px 16px;
        color: var(--secondary);
        font-size: 15px;
        border-top: 1px solid rgba(255,255,255,0.2);
    }
    /* Dropdown button */
    .dropdown .dropbtn {
        font-size: 16px;
        gap: 50px;
        background: none;
        border: none;
        color: var(--secondary);
    }
    .dropdown .dropbtn i {
        font-size: 16px;
        margin-left: 10px;
        transition: transform 0.3s ease;
        color: var(--secondary);
    }
    /* Remove tap highlight */
    .dropdown .dropbtn,
    .dropdown .dropbtn:focus,
    .dropdown .dropbtn:active {
        outline: none;
        box-shadow: none;
        -webkit-tap-highlight-color: transparent;
    }
    .dropdown-content li a:hover {
        color: var(--text);
    }
    /* ===== HAMBURGER ===== */
    .menuToggle {
        position: relative;
        width: 40px;
        height: 50px;
        cursor: pointer;
        color: #000000;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .menuToggle::before,
    .menuToggle::after {
        content: '';
        position: absolute;
        width: 70%;
        height: 2px;
        background: var(--navy);
        transition: 0.3s ease;
    }
    .menuToggle::before {
        transform: translateY(-10px);
        box-shadow: 0 10px var(--navy);
    }
    .menuToggle::after {
        transform: translateY(10px);
    }
    /* Transform to X */
    header.active .menuToggle::before {
        transform: rotate(45deg);
        box-shadow: none;
    }
    header.active .menuToggle::after {
        transform: rotate(-45deg);
    }
    /* DARK BLUE OVERLAY */
    .hero-section::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
            linear-gradient(
                90deg,
                #1456D9 0%,
                #1456d9ba 42%,
                #1456d971 72%,
                rgba(255, 255, 255, 0.08) 100%
            );
        z-index: 2;
    }
    .footer-container{
        grid-template-columns:1fr;
        gap:40px;
    }
    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }
}
