/* ==============================
   General Reset & Fonts
============================== */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Exo', sans-serif;
    scroll-behavior: smooth;
    background: #f8f9fa;
    color: #1a1a1a;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ------------------------------
   Mini Navbar (Updated to Main-Nav Style)
------------------------------ */
.mini-nav {
    position: sticky;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 999;
    justify-content: flex-end;
    padding: 5px;
}

/* Mini Navbar Buttons */
.mini-nav a.btn {
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

/* Primary Button Style */
.mini-nav a.btn-primary {
    background-color: #007ACC;
    border-color: #007ACC;
    color: #fff;
}

.mini-nav a.btn-primary:hover {
    background-color: #005ea3;
    border-color: #005ea3;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* Outline Light Button Style */
.mini-nav a.btn-outline-light {
    color: #fff;
    border-color: #fff;
}

.mini-nav a.btn-outline-light:hover {
    background-color: #fff;
    color: #007ACC;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .mini-nav {
        top: 15px;
        right: 15px;
    }

    .mini-nav a.btn {
        font-size: 0.9rem;
        padding: 0.45rem 1rem;
    }
}

@media (max-width: 576px) {
    .mini-nav a.btn {
        font-size: 0.8rem;
        padding: 0.35rem 1rem;
    }
}


/* ==============================
   Page Header
============================== */
.page-header {
    background: linear-gradient(135deg, #007ACC, #0d1b2a);
    color: #fff;
    padding: 120px 0 80px;
    text-align: center;
}
/* ==============================
   Clients Section
============================== */
section.py-5 {
    padding: 4rem 1rem;
    background: #f8f9fa; /* light bg for contrast */
}

.text-center.mb-5 h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0b1320;
}

.text-center.mb-5 p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}
/* ==============================
   Clients Section
============================== */
section.py-5 {
    padding: 4rem 1rem;
    background: #f8f9fa;
}

.text-center.mb-5 h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0b1320;
}

.text-center.mb-5 p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* ==============================
   Client Cards
============================== */
 

.client-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 25px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* keeps button at bottom */
}

.client-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0,0,0,0.12);
}

.client-card img {
    max-height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    width: 100%;
}

.client-card h5 {
    font-weight: 700;
    color: #0b1320;
    margin-bottom: 0.5rem;
}

.client-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 1rem;
}

/* Buttons */
.client-card a.btn {
    border-radius: 50px;
    padding: 0.5rem 1.4rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.client-card a.btn-primary {
    background-color: #007ACC;
    border-color: #007ACC;
    color: #fff;
}

.client-card a.btn-primary:hover {
    background-color: #005ea3;
    border-color: #005ea3;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* Responsive tweaks */
@media (max-width: 992px) {
    .client-card {
        padding: 25px 20px;
    }
}

@media (max-width: 576px) {
    .client-card {
        padding: 20px 15px;
    }

    .client-card h5 {
        font-size: 1rem;
    }

    .client-card p {
        font-size: 0.9rem;
    }

    .client-card img {
        max-height: 80px;
        margin-bottom: 15px;
    }
}

/* Responsive Grid */
.row.g-4 {
    row-gap: 2rem;
    column-gap: 1.5rem;
}

@media (max-width: 992px) {
    .client-card {
        padding: 25px 20px;
    }
}

@media (max-width: 576px) {
    .client-card {
        padding: 20px 15px;
    }

    .client-card h5 {
        font-size: 1rem;
    }

    .client-card p {
        font-size: 0.9rem;
    }

    .client-card img {
        max-height: 80px;
        margin-bottom: 15px;
    }
}

/* ==============================
   Footer
============================== */
footer {
    background: #0b1320;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

footer a {
    color: #fff;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #007ACC;
}

/* ==============================
   Lazy-load Animations
============================== */
.lazy-load {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.lazy-load.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==============================
   Responsive
============================== */
@media (max-width: 992px) {
    .text-center h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .text-center p,
    .client-card p {
        font-size: 0.85rem;
    }
}
