/* ------------------------------
   General
------------------------------ */
body, html { background: none; }

/* Mini Navbar - Sticky */
.mini-nav {
    position: sticky;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 999;
    justify-content: flex-end;
    padding: 5px;
}

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

.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);
}

.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);
}

/* ------------------------------
   Hero Section
------------------------------ */
.hero-section {
    min-height: 100vh;
    background: url('../images/bg2.png') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 20px;
}
.hero-section::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.55);
}


.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-logo {
    width: 50;
    max-width: 50%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    margin-bottom: 20px;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-section .btn {
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.hero-section .btn-outline-light:hover {
    background-color: #fff;
    color: #007ACC;
    transform: translateY(-2px);
}

/* ------------------------------
   About Section
------------------------------ */
#about {
    padding: 80px 20px;
    background: #f5f5f5;
    color: #111;
}

#about img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    margin-bottom: 20px;
}

#about h2 {
    margin-bottom: 1rem;
    color: #111;
}

#about p {
    line-height: 1.6;
    color: #111;
}

/* ------------------------------
   FastCare Services & Branch Section
------------------------------ */
#fastcare-services {
    padding: 80px 20px;
    background: #e9ecef;
    color: #111;
}

#fastcare-services h3 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #007ACC;
}

#fastcare-services p.lead {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

#fastcare-services ul {
    list-style: disc inside;
    padding-left: 0;
    margin-bottom: 1rem;
}

#fastcare-services ul li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

#fastcare-services strong {
    color: #007ACC;
}

#fastcare-services a {
    color: #007ACC;
    text-decoration: none;
    transition: all 0.3s ease;
}

#fastcare-services a:hover {
    text-decoration: underline;
}

#fastcare-services img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Partners Logos */
#fastcare-services .d-flex img {
    max-width: 120px;
    transition: transform 0.3s ease;
}

#fastcare-services .d-flex img:hover {
    transform: scale(1.05);
}
/* ------------------------------
   Features Section
------------------------------ */
.features-section {
    padding: 80px 20px;
    background: #ffffff; /* dark blue background */
    color: #110303;
    text-align: center;
}

.features-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.features-section .row {
    justify-content: center;
    gap: 20px;
}

.feature-card {
    background: #1a2945;
    color: #fff;
    padding: 25px 15px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.feature-card i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #00bfff; /* bright accent color */
}

.feature-card h6 {
    font-weight: 600;
    font-size: 1rem;
}

/* ------------------------------
   CTA Section
------------------------------ */
.cta-section {
    background: linear-gradient(135deg, #007ACC, #0d1b2a); /* blue gradient */
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.cta-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

/* ------------------------------
   Responsive
------------------------------ */
@media (max-width: 992px) {
    .features-section h3,
    .cta-section h3 {
        font-size: 1.8rem;
    }

    .feature-card i {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .features-section .row {
        gap: 15px;
    }
    .feature-card {
        padding: 20px 10px;
    }
    .cta-section h3 {
        font-size: 1.5rem;
    }
    .cta-section p {
        font-size: 1rem;
    }
    .cta-section .btn {
        font-size: 0.95rem;
        padding: 0.5rem 1.2rem;
    }
}

/* ------------------------------
   Footer
------------------------------ */
.footer-section {
    background: #0b1320;
    color: #fff;
    padding: 60px 20px 40px;
}

.footer-section .footer-link {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-section .footer-link:hover {
    opacity: 0.7;
}

.footer-section .social-link {
    color: #fff;
    font-size: 18px;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.footer-section .social-link:hover {
    transform: translateY(-3px);
}

/* ------------------------------
   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) {
    .hero-section {
        min-height: 60vh;
        padding: 60px 20px;
    }
    .feature-card {
        margin-bottom: 20px;
    }
    .mini-nav {
        top: 15px;
        right: 15px;
    }
    #fastcare-services .row {
        flex-direction: column-reverse;
        text-align: center;
    }
    #fastcare-services ul {
        text-align: center;
        padding-left: 0;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
    .mini-nav a.btn {
        font-size: 0.8rem;
        padding: 0.35rem 1rem;
    }
    #fastcare-services img {
        max-width: 70%;
        margin: 0 auto;
    }
}
