body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #6b6fde;
}

section {
    margin: 0px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 60px;
    background: rgb(243, 242, 245);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


/* ===== NAVBAR BASE ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: rgba(11, 61, 145, 0.9);
    backdrop-filter: blur(10px);
    transition: 0.3s;
    padding-left: 0px;
    padding-right: 0px;
}

/* SCROLL EFFECT */
.navbar.scrolled {
    background: #0b3d91;
}

/* CONTAINER */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 40px;
    /* gives breathing space */
}

/* RIGHT SIDE GROUP */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

/* MENU */
.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    /* margin-left: 90px; */
    /* KEY GAP BETWEEN LOGO & MENU */
}

/* LOGO TEXT */
.logo span {
    font-size: 18px;
    font-weight: 600;
    margin-left: 5px;
}

/* ===== LOGO ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 700;
    font-size: larger;
}

.logo img {
    width: 50px;
}

/* LINKS */
.nav-links a {
    color: #fff;
    text-decoration: none;
    position: relative;
}

/* UNDERLINE FIX */
.nav-links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #ff7a00;
    left: 0;
    /* FIXED */
    bottom: -5px;
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* ===== DROPDOWN ===== */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 40px;
    left: 0;
    background: #fff;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
}

/* SHOW DROPDOWN */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* DROPDOWN LINKS */
.dropdown-menu a {
    display: block;
    padding: 12px 15px;
    color: #333;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
    color: #0b3d91;
}

/* ===== BUTTON ===== */
.nav-btn {
    background: #ff7a00;
    color: #fff;
    padding: 10px 18px;
    border-radius: 5px;
    text-decoration: none;
}


/* ===== MOBILE MENU ICON ===== */
.menu-toggle {
    display: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {

    .nav-right {
        position: relative;
    }

    .nav-links {
        position: absolute;
        top: 60px;
        right: 10px;
        width: 260px;
        background: #0b3d91;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        display: none;
        border-radius: 8px;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        padding: 10px 0;
    }

    /* DROPDOWN FIX FOR MOBILE */
    .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
    }

    .dropdown-menu a {
        color: #fff;
        padding-left: 10px;
    }

    /* SHOW MENU ICON */
    .menu-toggle {
        display: block;
    }

    /* HIDE BUTTON */
    .nav-btn {
        display: none;
    }
}


/* Hero Section start */
.hero-banner {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.hero-banner img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* Overlay content */
.hero-overlay {
    position: absolute;
    top: 35%;
    left: 8%;
    transform: translateY(-15%);
    max-width: 700px;
    color: #002b5b;
    animation: fadeIn 1.2s ease-in-out;
}

/* Heading */
.hero-overlay h1 {
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1.3;
    /* font-size: x-large; */
    font-weight: 700;
    margin-bottom: 5px;
}

/* Paragraph */
.hero-overlay p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #444;
}

/* Buttons */
.hero-buttons .btn {
    padding: 12px 25px;
    margin-right: 10px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: 0.3s;
}

.primary {
    background: #0056d2;
    color: white;
}

.secondary {
    background: orange;
    color: white;
}

.btn:hover {
    transform: scale(1.05);
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

/* ===== TABLET ===== */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 30px;
    }

    .hero-image {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 576px) {

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

/* ===== TABLET ===== */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 80px 30px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        text-align: center;
    }

    .hero-image img {
        max-width: 400px;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 576px) {

    .hero {
        padding: 70px 20px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-image img {
        max-width: 100%;
    }
}

/* Splash card and other utility */
#services {
    padding: 0px 80px;
    background: #f8fbff;
}

/* Section Title */
#services .section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #003366;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Grid Layout */
#services .cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Card Design */
#services .card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    color: #333;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

/* Card Hover Effect */
#services .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Image */
#services .card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
}

/* Title */
#services .card h3 {
    font-size: 18px;
    margin: 15px 0 10px;
    color: #003366;
}

/* Description */
#services .card p {
    font-size: 14px;
    padding: 0 15px 20px;
    color: #555;
}

/* Hover Color Accent */
#services .card:hover h3 {
    color: orange;
}

@media (max-width: 992px) {
    #services .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    #services {
        padding: 40px 20px;
    }

    #services .cards {
        grid-template-columns: 1fr;
    }
}

.why {
    position: relative;
    width: 100%;
    height: 250px;
    background: linear-gradient(to right, #f1f1f1, #f8fbff);
    overflow: hidden;
    object-fit: cover;
    padding-top: 10px;
}

.why img {
    width: 95%;
    height: 100%;
    align-items: center;
    object-fit: cover;

}

/* Overlay content */
.why-overlay {
    position: absolute;
    top: 20%;
    left: 8%;
    transform: translateY(-15%);
    max-width: 700px;
    color: #002b5b;
}

.why ul {
    font-size: medium;
    line-height: 2;
}

.why-overlay h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0px;
}

@media (max-width: 992px) {
    .why-choose {
        flex-direction: column;
        text-align: center;
    }

    .why-right {
        text-align: center;
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .why-choose {
        padding: 40px 20px;
    }

    .why-left h2 {
        font-size: 22px;
    }

    .why-left ul li {
        font-size: 14px;
    }
}

.reviews {
    text-align: center;
    padding: 0px;
}

.review-box {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.review-card {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
}

.cta {
    text-align: center;
    padding: 50px;
}

/* ===== STATS SECTION ===== */
.stats {
    padding: 10px 40px;
    background: #f5f7fb;
}

.stats h2 {
    text-align: left;
    margin-bottom: 30px;
    color: #0b3d91;
    font-size: 28px;
}

/* GRID LAYOUT */
.stats-box {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: stretch;
}

/* ===== STATS CARDS ===== */
.stats-box>div {
    background: #0b3d91;
    color: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
}

.stats-box>div:hover {
    transform: translateY(-5px);
    background: #1c5ed6;
}

.stats-box h3 {
    font-size: 28px;
    margin-bottom: 5px;
}

.stats-box p {
    font-size: 14px;
}

/* ===== REVIEW CARDS ===== */
.review,
.review-card {
    background: #fff;
    color: #333;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.review h4,
.review-card h4 {
    margin-bottom: 8px;
    color: #0b3d91;
}

.review p,
.review-card p {
    font-size: 14px;
    color: #555;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .stats-box {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-box {
        grid-template-columns: 1fr;
    }

    .stats h2 {
        text-align: center;
    }
}

.cta {
    background: linear-gradient(135deg, #0b3d91, #1c5ed6);
    color: #fff;
    text-align: center;
    padding: 5px 20px;
    border-radius: 10px;
    margin: 10px;
}

/* CTA TEXT */
.cta h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.cta p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #dcdcdc;
}

/* CTA BUTTON */
.cta-btn {
    background: #ff7a00;
    color: #fff;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    transition: 0.3s ease;
}

/* HOVER EFFECT */
.cta-btn:hover {
    background: #e66900;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .cta h2 {
        font-size: 22px;
    }

    .cta p {
        font-size: 14px;
    }

    .cta {
        padding: 40px 15px;
        margin: 20px;
    }
}

/* FOOTER MAIN */
footer {
    background: #0b3d91;
    color: #fff;
    padding: 50px 40px;
}

/* GRID FIX */
.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

/* LOGO ALIGN */
.logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.logo-box img {
    width: 45px;
}

.logo-box h3 {
    margin: 0;
}

/* TEXT */
.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #dcdcdc;
    margin-bottom: 15px;
}

/* REMOVE LINE BREAK ISSUE */
/* .footer-col p br {
    display: none;
} */

/* HEADINGS */
.footer-col h3 {
    margin-bottom: 15px;
}

/* LIST */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
    color: #dcdcdc;
    cursor: pointer;
}

.footer-col ul li:hover {
    color: #ff7a00;
}

/* SOCIAL */
.social-icons span {
    margin-right: 12px;
    cursor: pointer;
}

.social-icons span:hover {
    color: #ff7a00;
}

/* CONTACT LINKS */
.footer-col a {
    color: #fff;
    text-decoration: none;
}

.footer-col a:hover {
    color: #ff7a00;
}

.footer-bottom {
    text-align: center;
    padding: 15px 10px;
    background: #072a63;
    color: #ccc;
    font-size: 14px;
    margin-top: 20px;
}

.footer-bottom p {
    margin: 0;
}

/* RESPONSIVE FIX */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .logo-box {
        justify-content: center;
    }
}