/* ===== HEADER & LOGO ===== */

header{
    background:#0a2f6b;
    color:white;
    padding:15px 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 10px rgba(0,0,0,.15);
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:70px;
    height:70px;
    object-fit:contain;
    background:white;
    border-radius:50%;
    padding:5px;
}

.logo-text h1{
    margin:0;
    font-size:24px;
    color:white;
}

.logo-text p{
    margin:0;
    color:#dbe7ff;
    font-size:13px;
}

/* ===== NAVIGATION ===== */

nav{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

nav a{
    color:white;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

nav a:hover{
    color:#ffd700;
}

/* ===== PARTNER LOGOS ===== */

.logos{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
    margin-top:30px;
}

.logos img{
    width:120px;
    height:80px;
    object-fit:contain;
    background:white;
    padding:10px;
    border-radius:10px;
    box-shadow:0 2px 8px rgba(0,0,0,.1);
    transition:.3s;
}

.logos img:hover{
    transform:scale(1.05);
}

/* ===== CARD EFFECTS ===== */

.card,
.price-card,
.service-card,
.portal-card,
.pay-box,
.stat-card,
.invoice-card{
    transition:.3s;
}

.card:hover,
.price-card:hover,
.service-card:hover,
.portal-card:hover,
.pay-box:hover,
.stat-card:hover,
.invoice-card:hover{
    transform:translateY(-5px);
    box-shadow:0 6px 20px rgba(0,0,0,.15);
}

/* ===== SECTION TITLES ===== */

section h2{
    color:#0a2f6b;
    margin-bottom:20px;
}

/* ===== BUTTON EFFECTS ===== */

.btn,
.pay-btn,
.whatsapp-btn{
    transition:.3s;
}

.btn:hover,
.pay-btn:hover{
    background:#12439a;
}

.whatsapp-btn:hover,
.whatsapp:hover{
    transform:scale(1.05);
}

/* ===== HERO ===== */

.hero h2{
    font-size:38px;
    margin-bottom:15px;
}

.hero p{
    max-width:800px;
    margin:auto;
    line-height:1.7;
}

/* ===== TABLE RESPONSIVE ===== */

.table-wrapper{
    overflow-x:auto;
}

/* ===== SCROLLBAR ===== */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-thumb{
    background:#0a2f6b;
    border-radius:10px;
}

/* ===== MOBILE ===== */

@media(max-width:768px){

    header{
        flex-direction:column;
        text-align:center;
    }

    .logo{
        justify-content:center;
        margin-bottom:15px;
    }

    .logo img{
        width:60px;
        height:60px;
    }

    .logo-text h1{
        font-size:20px;
    }

    nav{
        justify-content:center;
    }

    .hero h2{
        font-size:28px;
    }

    .cards,
    .payments{
        flex-direction:column;
        align-items:center;
    }

    .card,
    .price-card,
    .portal-card{
        width:90%;
    }
}
