/* ===== GLOBAL ===== */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont;
    margin: 0;
    padding: 0;
}

/* ===== TOP BAR ===== */
.top-bar {
    padding: 8px 0;
    background: #ffffff;
    position: relative;
    z-index: 1055; /* required for language dropdown */
}

.cta-btn {
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-size: 14px;
}

/* ===== SOCIAL ICONS ===== */
.top-social .social-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon.phone { background: #0d6efd; }
.social-icon.email { background: #dc3545; }
.social-icon.whatsapp { background: #25D366; }

.top-social .social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* ===== LANGUAGE DROPDOWN ===== */
.top-bar .dropdown-menu {
    z-index: 1060;
    font-size: 14px;
}

.top-bar .dropdown-item {
    padding: 6px 14px;
}

/* ===== HEADER ===== */
header.sticky-top {
    z-index: 1040; /* below language dropdown */
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
        url('../img/hero.jpg') center/cover no-repeat;
    padding: 120px 20px;
}

.hero h1 {
    font-size: 2.5rem;
}

.hero p {
    max-width: 700px;
    margin: 0 auto 20px;
}

/* ===== SERVICES ===== */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: #0d6efd;
    padding: 60px 20px;
    color: #fff;
}

/* ===== MOBILE SPACING FIX ===== */
@media (max-width: 576px) {

    /* Global container spacing */
    .container,
    .container-fluid {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Navbar dropdown spacing */
    .navbar-collapse {
        padding-left: 8px;
        padding-right: 8px;
    }

    /* Hero text spacing */
    .hero {
        padding: 80px 16px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .cta-btn {
        font-size: 13px;
        padding: 6px 14px;
    }

    .top-social .social-icon {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
}

/* ===== CLIENTS SECTION ===== */
.client-logo {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.client-logo img {
    max-width: 120px;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.8;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Mobile spacing fix */
@media (max-width: 576px) {
    .clients-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* ===== KOHA SECTION ===== */
.koha-list li {
    margin-bottom: 10px;
    font-size: 15px;
}

/* ===== TECHNOLOGY SECTION ===== */
.technology-section {
    background: #f8f9fb;
}

.technology-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px 10px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.technology-card i {
    font-size: 36px;
    margin-bottom: 12px;
    color: #0d6efd;
}

.technology-card h6 {
    font-weight: 600;
    margin: 0;
    font-size: 15px;
}

.technology-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

@media (max-width: 576px) {
    .technology-card {
        padding: 20px 8px;
    }

    .technology-card i {
        font-size: 32px;
    }
}


/* ===== ABOUT SECTIONS ===== */
.about-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.about-img-small {
    max-width: 260px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Mobile spacing */
@media (max-width: 768px) {
    .about-section {
        text-align: center;
        padding-left: 15px;
        padding-right: 15px;
    }

    .about-img-small {
        max-width: 200px;
        margin-top: 20px;
    }
}


/* ===== TRUST SEAL / AUTHORIZED ===== */
.trust-seal-box {
    border-top: 1px dashed #d0d7de;
}

.trust-item {
    text-align: center;
    max-width: 110px;
}

.trust-item img {
    width: 46px;
    height: auto;
    margin-bottom: 6px;
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.trust-item span {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #555;
}

.trust-item:hover img {
    transform: scale(1.12);
    opacity: 1;
}

.koha-provider-section h2 span {
    color: #0d6efd;
}

.koha-provider-section ul li {
    margin-bottom: 8px;
    font-size: 15px;
}

.koha-provider-section .badge {
    font-size: 13px;
    padding: 6px 10px;
}

 
    
    .footer {
    background-color: #0b0f19;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.85;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: #0d6efd;
    opacity: 1;
    text-decoration: underline;
}

/* Footer links style */
footer a {
    color: #0d6efd; /* Bootstrap primary blue */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s ease; /* Smooth hover transition */
}

footer a:hover,
footer a:focus {
    color: #0d6efd; /* Keep the same blue on hover/focus */
    text-decoration: none; /* No underline on hover */
}




