: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;
}
/* 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(--primary);
    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);
}
/* =========================
CONTACT SECTION
========================= */
.contact-section {
    padding: 70px 20px;
    background: #f7f9fc;
}
.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
}
.open-text {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
    color: #000000;
    line-height: 1.6;
    font-size: 16px;
}
/* MAIN GRID */
.contract {
    max-width: 1150px;
    margin: auto;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}
/* =========================
   CONTACT INFO (LEFT)
========================= */
.Contactinfo {
    flex: 1.5;
    margin-top: 130px;
}
.Contactinfo .box {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
.Contactinfo .icon {
    width: 50px;
    height: 50px;
    background: #0C3BC7;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50%;
}
.Contactinfo .text h3 {
    margin: 0 0 5px;
    font-size: 18px;
    color: #000000;
}
.Contactinfo .text p {
    margin: 0;
    color: #000000;
    line-height: 1.5;
}
/* =========================
   FORM WRAPPER (RIGHT)
========================= */
.form-wrapper {
    flex: 2;
    background: #fff;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.form-wrapper .title {
    font-size: 16px;
    margin-bottom: 15px;
    color: #000000;
}
/* =========================
   TABS
========================= */
.tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}
.tab {
    padding: 10px 22px;
    border: 1px solid #000000;
    background: #fff;
    color: #000000;
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s;
}
.tab.active,
.tab:hover {
    background: #0C3BC7;
    color: #fff;
}
/* =========================
   FORM FIELDS
========================= */
form .row {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
}
form .row.full {
    flex-direction: column;
}
.field {
    flex: 1;
}
.field label {
    font-size: 15px;
    color: #000000;
    display: block;
    margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
    width: 100%;
    height: 42px;
    padding: 0 12px;
    border: 1px solid #dfe3eb;
    font-size: 15px;
    outline: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: #000000;
}
.field textarea {
    height: 120px;
    padding-top: 10px;
    resize: none;
}
/* PHONE FIELD */
.phone-box {
    display: flex;
}
.phone-box span {
    background: #f1f3f6;
    border: 1px solid #dfe3eb;
    padding: 10px 12px;
    font-size: 15px;
    color: #000000;
}
.phone-box input {
    border-left: none;
}
/* =========================
   SUBMIT BUTTON
========================= */
.submit-btn {
    background: #0C3BC7;
    color: #fff;
    border: none;
    padding: 12px 35px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}
.submit-btn:hover {
    background: #0b3a41;
}
/* =========================
   MOBILE & TABLET FIXES
========================= */
/* Tablets */
@media (max-width: 1024px) {
    .contract {
        gap: 30px;
    }

    .form-wrapper {
        padding: 25px;
    }
}
/* Mobile */
@media (max-width: 768px) {

    /* Stack columns */
    .contract {
        flex-direction: column;
    }

    /* Center titles */
    .section-title,
    .open-text {
        text-align: center;
        padding: 0 10px;
    }

    /* Contact info boxes full width */
    .Contactinfo .box {
        align-items: flex-start;
    }

    /* Tabs wrap */
    .tabs {
        flex-wrap: wrap;
        gap: 10px;
    }

    .tab {
        flex: 1 1 calc(50% - 10px);
        text-align: center;
    }

    /* Form rows stack */
    form .row {
        flex-direction: column;
        gap: 15px;
    }

    /* Phone field fix */
    .phone-box {
        flex-direction: row;
    }

    /* Reduce input height */
    .field input,
    .field select {
        height: 40px;
    }

    .field textarea {
        height: 100px;
    }

    /* Button full width */
    .submit-btn {
        width: 100%;
        text-align: center;
    }
}
/* Small phones */
@media (max-width: 480px) {

    .section-title {
        font-size: 26px;
    }

    .open-text {
        font-size: 14px;
    }

    .form-wrapper {
        padding: 20px;
    }

    .tab {
        font-size: 13px;
        padding: 10px;
    }
}
/*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;
        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;
        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;
        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);
    }
    .footer-container{
        grid-template-columns:1fr;
        gap:40px;
    }
    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }
}