﻿/* ==========================
   Global Settings
========================== */
body {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

/* ==========================
   Hero Section
========================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

    .hero-section img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .hero-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.6);
        z-index: 1;
    }

    .hero-section .hero-text {
        position: absolute;
        z-index: 2;
        max-width: 800px;
        padding: 0 15px;
    }

/* ==========================
   Contact Section
========================== */
.contact-section h2 {
    font-weight: bold;
    margin-bottom: 0px;
}

.contact-section .phone-number a {
    font-size: 22px;
    text-decoration: none;
}

/* ==========================
   About Section
========================== */
.about-section {
    background: #f8f9fa;
    padding: 80px 20px;
    text-align: center;
}

    .about-section h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: #333;
        text-transform: uppercase;
    }

    .about-section p {
        font-size: 1rem;
        color: #555;
        max-width: 800px;
        margin: 0 auto 20px;
        line-height: 1.8;
    }

.about-highlight {
    font-weight: 600;
    color: #000;
}

.btn-custom {
    background: #000;
    color: #fff;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 30px;
    transition: 0.3s ease;
    text-decoration: none;
}

    .btn-custom:hover {
        background: #444;
        color: #fff;
    }

/* ==========================
   Policy Section
========================== */
.policy-section {
    background: #f8f9fa;
    padding: 60px 20px;
}

    .policy-section h2 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 30px;
        text-align: center;
        text-transform: uppercase;
        color: #333;
    }

.policy-list .card {
    border-left: 5px solid #0d6efd;
    transition: transform 0.2s ease;
}

    .policy-list .card:hover {
        transform: translateY(-5px);
    }

.policy-list .card-body {
    text-align: left;
}

.policy-list .policy-number {
    font-weight: 700;
    color: #0d6efd;
    margin-right: 10px;
}

/* ==========================
   Procedure Section
========================== */
.procedure-section {
    background: #f8f9fa;
    padding: 60px 20px;
}

.step {
    text-align: center;
    position: relative;
    flex: 1;
    padding: 20px 15px;
}

    .step .circle {
        width: 50px;
        height: 50px;
        line-height: 50px;
        border-radius: 50%;
        background: #0d6efd;
        color: #fff;
        font-weight: bold;
        display: inline-block;
        margin-bottom: 15px;
    }

    .step p {
        margin: 0;
        font-size: 15px;
    }

    .step::after {
        content: '';
        position: absolute;
        top: 35px;
        right: -50%;
        width: 100%;
        height: 3px;
        background: #0d6efd;
        z-index: -1;
    }

    .step:last-child::after {
        display: none;
    }

/* Mobile Responsive for Steps */
@media (max-width: 767px) {
    .d-flex {
        flex-direction: column;
    }

    .step {
        margin-bottom: 40px;
    }

        .step::after {
            display: none;
        }
}

/* ==========================
   Header Bar (Centered Logo)
========================== */
.header-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.logo-img {
    max-height: 90px;
    width: auto;
    transition: transform 0.3s ease;
}

    .logo-img:hover {
        transform: scale(1.05);
    }

@media (max-width: 767px) {
    .logo-img {
        max-height: 70px;
    }
}

/* ==========================
   Floating WhatsApp Button
========================== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #25D366;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .whatsapp-float img {
        width: 35px;
        height: 35px;
    }

    .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 10px rgba(0,0,0,0.3);
    }

/* ==========================
   Navbar (Bluish Gradient)
========================== */
.navbar {
    background: linear-gradient(90deg, #002147, #004080, #0059b3);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: background 0.3s ease-in-out;
}

    .navbar .nav-link {
        color: #e3e3e3 !important;
        font-weight: 500;
        font-size: 16px;
        padding: 10px 18px;
        transition: color 0.3s ease, transform 0.2s ease;
    }

        .navbar .nav-link:hover {
            color: #ffcc00 !important;
            transform: scale(1.05);
        }

        .navbar .nav-link.active {
            color: #ffffff !important;
            border-bottom: 2px solid #ffcc00;
        }

.navbar-brand {
    color: #ffffff !important;
    font-weight: 600;
    font-size: 1.2rem;
}

.navbar-toggler {
    border: none;
    background-color: transparent;
}

.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

@media (max-width: 991px) {
    .navbar .navbar-nav {
        text-align: center;
    }

    .navbar .nav-link {
        display: inline-block;
        margin: 5px 0;
    }
}

/* ==========================
   Blog Highlight Section
========================== */
.blog-highlight-section {
    background: #f8f9fa;
    color: #333;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 15px;
    text-align: center;
}

.blog-heading {
    font-size: 2.2rem;
    color: #0a1a2f;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: 1px;
}

.blog-box {
    max-width: 500px;
    width: 100%;
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 auto;
}

    .blog-box:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    }

    .blog-box h2 {
        font-size: 1.9rem;
        font-weight: 700;
        margin-bottom: 12px;
        color: #004080;
    }

    .blog-box p {
        font-size: 0.95rem;
        color: #555;
        margin-bottom: 20px;
        line-height: 1.6;
    }

.btn-blog {
    background: #004080;
    color: #fff;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

    .btn-blog:hover {
        background: #002d66;
        color: #ffcc00;
        transform: scale(1.05);
    }

/* Responsive Adjustments for Blog */
@media (max-width: 768px) {
    .blog-highlight-section {
        min-height: auto;
        padding: 50px 15px;
    }

    .blog-heading {
        font-size: 1.8rem;
    }

    .blog-box {
        max-width: 90%;
        padding: 30px 20px;
    }

        .blog-box h2 {
            font-size: 1.6rem;
        }
}



/* Facebook Section */
.facebook-section {
    padding: 60px 0;
}

    .facebook-section h2 {
        text-align: center;
        font-size: 32px;
        color: #222;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 40px;
        position: relative;
    }
