/* =========================
   GLOBAL RESET + BASE
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
}

/* LINKS */
a {
    color: #2a6fdb;
    text-decoration: none;
}

a:hover {
    color: #1d4fa3;
}

/* BUTTON BASE */
.btn {
    display: inline-block;
    border: none;
    outline: none;
    box-shadow: none;
    text-decoration: none !important;
    cursor: pointer;
}

/* CONTAINER FIX */
.container-fluid {
    padding-right: 30px;
    padding-left: 30px;
}

/* =========================
   HEADER
========================= */
.header {
    width: 100%;
    padding: 8px 0;
    border-bottom: 1px solid #e5eaf0;
    background: #ffffff;
}

/* LOGO */
.header .brand {
    display: flex;
    align-items: center;
}

.header .brand a {
    display: flex;
    align-items: center;
}

.header .brand img {
    max-width: 60px;
    height: auto;
}

/* TOPBAR */
.header .topbar {
    text-align: right;
    margin-bottom: 4px;
    font-size: 13px;
}

.header .topbar a {
    color: #555;
    margin-left: 15px;
}

.header .topbar a:hover {
    color: #2a6fdb;
}

/* NAVBAR */
.navbar {
    padding: 4px 0;
    background: #fff !important;
}

.navbar .navbar-brand {
    display: none;
}

.navbar .navbar-nav {
    align-items: center;
}

.navbar .nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #333 !important;
    padding: 6px 14px !important;
}

.navbar .nav-link:hover {
    color: #2a6fdb !important;
}

.navbar .nav-link.active {
    color: #2a6fdb !important;
    font-weight: 600;
}

/* =========================
   HERO SECTION
========================= */
.hero {
    width: 100%;
    padding: 55px 0 60px;
    text-align: center;
    background: #ffffff;
}

.hero h2 {
    margin: 0;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.3;
    color: #213546;
}

.hero h2 span {
    color: #4F84C4;
}

.hero p {
    max-width: 700px;
    margin: 15px auto 0;
    font-size: 15px;
    line-height: 1.7;
    color: #3f4b5a;
}

.hero a.btn {
    display: inline-block;
    min-width: 160px;
    margin-top: 25px;
    padding: 11px 24px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff !important;
    border-radius: 30px;
    background: linear-gradient(#4F84C4, #00539C);
}

.hero a.btn:hover {
    background: linear-gradient(#00539C, #4F84C4);
    color: #ffffff !important;
}

/* =========================
   SECTION HEADERS
========================= */
.section-header {
    position: relative;
    width: 100%;
    max-width: 850px;
    text-align: center;
    margin: 0 auto 40px;
    padding-bottom: 12px;
}

.section-header::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 3px;
    left: calc(50% - 25px);
    bottom: 0;
    background: linear-gradient(to left, #4F84C4, #00539C, #4F84C4);
}

.section-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: #213546;
    text-transform: uppercase;
}

.section-header p {
    margin-top: 10px;
    font-size: 15px;
    color: #3f4b5a;
}

/* =========================
   ABOUT SECTION
========================= */
.about {
    width: 100%;
    padding: 40px 0;
    background: #ffffff;
}

.about .container {
    max-width: 1100px;
}

.about h2.section-title {
    margin-bottom: 14px;
    padding-bottom: 8px;
    font-size: 26px;
    font-weight: 700;
    color: #213546;
}

.about h2.section-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #4F84C4;
    margin-top: 8px;
}

.about p {
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.7;
    color: #3f4b5a;
}

/* =========================
   SERVICES SECTION
========================= */
.service {
    width: 100%;
    padding: 50px 0 20px;
    background: #ffffff;
}

.service .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
}

.service .col-lg-4,
.service .col-md-6 {
    display: flex;
    margin-bottom: 20px;
}

.service .service-item {
    width: 100%;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e3eaf3;
    border-radius: 12px;
    transition: 0.25s ease;
}

.service .service-item:hover {
    box-shadow: 0 8px 20px rgba(33, 53, 70, 0.08);
    transform: translateY(-3px);
}

.service .service-item h3 {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #213546;
}

.service .service-item img {
    width: 55px;
    margin-bottom: 12px;
}

.service .service-item p {
    font-size: 14px;
    color: #4c5a6a;
}

/* =========================
   CALL TO ACTION
========================= */
.call-to-action {
    width: 100%;
    padding: 50px 0;
    background: linear-gradient(to right, #00539C, #4F84C4 50%);
}

.call-to-action h2 {
    margin-bottom: 10px;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    text-transform: uppercase;
}

.call-to-action p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #eef5ff;
}

.call-to-action .col-md-4 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.call-to-action a.btn {
    display: inline-block;
    min-width: 160px;
    padding: 12px 22px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    color: #213546 !important;
    background: #ffffff;
    border-radius: 30px;
    text-decoration: none;
    transition: .3s;
}

.call-to-action a.btn:hover {
    background: #eef5ff;
    color: #00539C !important;
}

/* =========================
   FOOTER
========================= */
.footer {
    width: 100%;
    padding: 50px 0 0;
    background: #1e2a38;
    color: #cfd8e3;
}

.footer h2,
.footer h3 {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer p {
    font-size: 14px;
}

.footer a {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #cfd8e3;
}

.footer a:hover {
    color: #ffffff;
}

.footer .copyright {
    border-top: 1px solid #2e3c4c;
    margin-top: 20px;
    padding: 15px 0;
    font-size: 13px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
    .header .topbar {
        text-align: center;
    }

    .header .brand {
        justify-content: center;
        margin-bottom: 10px;
    }

    .navbar .navbar-nav {
        text-align: center;
    }

    .hero h2 {
        font-size: 26px;
    }

    .call-to-action .col-md-4 {
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .container-fluid {
        padding: 0 15px;
    }

    .header .brand img {
        max-width: 50px;
    }

    .hero h2 {
        font-size: 22px;
    }
}