* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

/* HEADER */
.header {
    background-color: #0b2a4a;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 1000;
}


.nav a {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    height: 90px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: #ff7a18;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}
.btn-appointment {
    background-color: #ff7a18;
    color: #ffffff;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 4px;
}

.logo {
    color: #ffffff;
    line-height: 1.1;
}

.logo-main {
    display: block;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 12px;
    color: #9cc6e5;
}

.nav {
    display: flex;
    gap: 16px;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.nav a:hover {
    color: #ff7a18;
}
.header {
    background-color: #0b2a4a;
    height: 80px;
    display: flex;
    align-items: center;
}

.nav {
    display: flex;
    gap: 28px;
}

.nav a {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
}


.btn-appointment {
    background-color: #ff7a18;
    color: #ffffff;
    padding: 10px 18px;
    text-decoration: none;
    font-size: 14px;
    border-radius: 4px;
}

.menu-icon {
    display: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
}

/* HERO */
.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* dark overlay like reference */
.hero-overlay {
    background: linear-gradient(
        to right,
        rgba(11, 42, 74, 0.55),
        rgba(11, 42, 74, 0.25),
        rgba(11, 42, 74, 0.55)
    );
}


/* text positioning same as screenshot */
.hero-content {
    position: absolute;
    left: 40px;
    bottom: 90px;
    max-width: 650px;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 17px;
    margin-bottom: 30px;
}


.hero-buttons a {
    display: inline-block;
    margin-right: 15px;
    padding: 14px 26px;
    text-decoration: none;
    font-size: 15px;
    border-radius: 4px;
}

.btn-orange {
    background-color: #ff7a18;
    color: #ffffff;
}

.btn-white {
    background-color: #ffffff;
    color: #0b2a4a;
}
@media (max-width: 768px) {
    .hero {
        height: 75vh;
    }

    .hero-content {
        left: 20px;
        right: 20px;
        bottom: 60px;
        max-width: none;
        text-align: left;
    }

    .hero-content h1 {
        font-size: 28px;
    }
}


/* MOBILE */
@media (max-width: 900px) {

    .nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #0b2a4a;
        flex-direction: column;
        display: none;
        padding: 20px 0;
    }

    .nav a {
        padding: 12px 30px;
        font-size: 16px;
    }

    .menu-icon {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .hero-content {
        padding: 80px 20px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons a {
        margin-bottom: 10px;
        padding: 12px 22px;
    }
}

/* FOOTER */
.footer {
    background-color: #0b2a4a;
    color: #ffffff;
}

/* strong separation from above section */
.footer-top-line {
    height: 6px;
    background-color: #ff7a18;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-brand h3 {
    font-size: 26px;
    margin-bottom: 22px;
    font-weight: 700;
}
.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}


/* small underline for headings */
.footer-col h4::after {
    content: "";
    display: block;
    width: 35px;
    height: 2px;
    background-color: #ff7a18;
    margin-top: 8px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    font-size: 15px;
    margin-bottom: 14px;
}


.footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: #ff7a18;
}

/* bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    padding: 26px 20px;
    font-size: 14px;
}


/* MOBILE */
@media (max-width: 900px) {

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 20px 40px;
        text-align: center;
    }

    .footer-col h4::after {
        margin-left: auto;
        margin-right: auto;
    }
}
.btn-call {
    display: inline-block;
    margin-top: 20px;
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}
.services-header h1 {
    font-size: 34px;
}

/* SERVICES PAGE */
.services {
    background-color: #f4f7fb;
    padding: 130px 40px;
}


.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.services-tag {
    display: inline-block;
    background-color: #d62828;
    color: #ffffff;
    padding: 8px 20px;
    font-size: 30px;
    margin-bottom: 22px;
}

.services-header h1 {
    font-size: 52px;
    color: #0b2a4a;
    margin-bottom: 22px;
    font-weight: 800;
}


.services-header p {
    font-size: 16px;
    color: #333;
}

/* GRID */
.services-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 45px;
}


.service-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 24px 22px 36px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.15);
}


/* IMAGE */
.service-img {
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 22px;
}

.service-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover img {
    transform: scale(1.08);
}

/* TEXT */
.service-card h3 {
    font-size: 22px;
    color: #0b2a4a;
    margin-bottom: 14px;
    font-weight: 700;
}

.service-card p {
    font-size: 15.5px;
    color: #555;
    line-height: 1.75;
}


/* RESPONSIVE */
@media (max-width: 1000px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services {
        padding: 80px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-header h1 {
        font-size: 30px;
    }
}
@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        background-size: contain;
    }

    .hero-content {
        padding: 80px 20px;
        text-align: center;
    }
}
/* =====================================
   WHY CHOOSE US – PRO VERSION
===================================== */

.why-choose {
    background: #ffffff;
    padding: 110px 0 90px;
    position: relative;
}

/* soft background accent */
.why-choose::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: #f7f9fc;
    z-index: 0;
}

/* container */
.why-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 70px;
    align-items: center;
}

/* ---------- LEFT ---------- */

.why-tag {
    display: inline-block;
    background: rgba(255, 122, 24, 0.1);
    color: #ff7a18;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.why-left h2 {
    font-size: 46px;
    font-weight: 800;
    color: #0b2a4a;
    margin-bottom: 32px;
    line-height: 1.2;
}

/* list */
.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-list li {
    position: relative;
    padding-left: 42px;
    margin-bottom: 22px;
    font-size: 19px;
    font-weight: 600;
    color: #1f1f1f;
}

/* icon */
.why-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    width: 28px;
    height: 28px;
    background: #ff7a18;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---------- RIGHT ---------- */

.why-right {
    display: flex;
    justify-content: center;
}

.why-box {
    background: #ffffff;
    padding: 42px 44px;
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    border-radius: 12px;
    box-shadow: 0 18px 45px rgba(11, 42, 74, 0.15);
    position: relative;
}

/* accent bar */
.why-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: #ff7a18;
    border-radius: 12px 0 0 12px;
}

/* ---------- BOTTOM SEPARATOR ---------- */

.why-choose::after {
    content: "";
    display: block;
    width: 100%;
    height: 6px;
    background: #ff7a18;
    margin-top: 100px;
}

/* ---------- MOBILE ---------- */

@media (max-width: 900px) {
    .why-choose {
        padding: 80px 0;
    }

    .why-choose::before {
        display: none;
    }

    .why-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-left h2 {
        font-size: 34px;
    }

    .why-list li {
        font-size: 16px;
    }

    .why-box {
        padding: 32px;
    }
}
/* =====================================
   WHY CHOOSE US – THEME BLOCK DESIGN
===================================== */

.why-choose {
    position: relative;
    background: #ffffff;
    padding: 120px 0 140px;
    overflow: hidden;
}

/* TOP ANGLED ORANGE STRIP */
.why-choose::before {
    content: "";
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 120px;
    background: #ff7a18;
    transform: skewY(-3deg);
}

/* BOTTOM NAVY STRIP */
.why-choose::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    height: 160px;
    background: #0b2a4a;
    transform: skewY(-3deg);
}

/* MAIN CONTAINER */
.why-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 70px;
    align-items: center;
}

/* ---------- LEFT SIDE ---------- */

.why-tag {
    display: inline-block;
    background: #ff7a18;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 3px;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.why-left h2 {
    font-size: 48px;
    font-weight: 800;
    color: #0b2a4a;
    margin-bottom: 36px;
    line-height: 1.2;
}

/* LIST */
.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-list li {
    position: relative;
    padding-left: 46px;
    margin-bottom: 24px;
    font-size: 20px;
    font-weight: 600;
    color: #1e1e1e;
}

/* CHECK ICON IN CIRCLE */
.why-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background: #0b2a4a;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---------- RIGHT SIDE FEATURE BOX ---------- */

.why-right {
    display: flex;
    justify-content: center;
}

.why-box {
    background: #ffffff;
    padding: 46px;
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    border-radius: 8px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}

/* ORANGE ACCENT BAR */
.why-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: #ff7a18;
    border-radius: 8px 0 0 8px;
}

/* ---------- MOBILE ---------- */

@media (max-width: 900px) {
    .why-choose {
        padding: 90px 0 110px;
    }

    .why-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-left h2 {
        font-size: 34px;
    }

    .why-list li {
        font-size: 16px;
    }

    .why-box {
        padding: 32px;
    }
}
/* =====================================
   WHY CHOOSE US – THEME BLOCK DESIGN
===================================== */

.why-choose {
    position: relative;
    background: #ffffff;
    padding: 120px 0 140px;
    overflow: hidden;
}

/* TOP ANGLED ORANGE STRIP */
.why-choose::before {
    content: "";
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 120px;
    background: #ff7a18;
    transform: skewY(-3deg);
}

/* BOTTOM NAVY STRIP */
.why-choose::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    height: 160px;
    background: #0b2a4a;
    transform: skewY(-3deg);
}

/* MAIN CONTAINER */
.why-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 70px;
    align-items: center;
}

/* ---------- LEFT SIDE ---------- */

.why-tag {
    display: inline-block;
    background: #ff7a18;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 3px;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.why-left h2 {
    font-size: 48px;
    font-weight: 800;
    color: #0b2a4a;
    margin-bottom: 36px;
    line-height: 1.2;
}

/* LIST */
.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-list li {
    position: relative;
    padding-left: 46px;
    margin-bottom: 24px;
    font-size: 20px;
    font-weight: 600;
    color: #1e1e1e;
}

/* CHECK ICON IN CIRCLE */
.why-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background: #0b2a4a;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---------- RIGHT SIDE FEATURE BOX ---------- */

.why-right {
    display: flex;
    justify-content: center;
}

.why-box {
    background: #ffffff;
    padding: 46px;
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    border-radius: 8px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}

/* ORANGE ACCENT BAR */
.why-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: #ff7a18;
    border-radius: 8px 0 0 8px;
}

/* ---------- MOBILE ---------- */

@media (max-width: 900px) {
    .why-choose {
        padding: 90px 0 110px;
    }

    .why-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-left h2 {
        font-size: 34px;
    }

    .why-list li {
        font-size: 16px;
    }

    .why-box {
        padding: 32px;
    }
}
/* =================================================
   WHY CHOOSE US – FULL THEME UPGRADE (1 2 3 4)
================================================= */

.why-choose {
    position: relative;
    background: #ffffff;
    padding: 130px 0 160px;
    overflow: hidden;
}

/* TOP ORANGE ANGLE */
.why-choose::before {
    content: "";
    position: absolute;
    top: -70px;
    left: 0;
    width: 100%;
    height: 140px;
    background: #ff7a18;
    transform: skewY(-3deg);
}

/* BOTTOM NAVY ANGLE */
.why-choose::after {
    content: "";
    position: absolute;
    bottom: -90px;
    left: 0;
    width: 100%;
    height: 180px;
    background: #0b2a4a;
    transform: skewY(-3deg);
}

/* CONTAINER */
.why-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

/* ---------- LEFT ---------- */

.why-tag {
    display: inline-block;
    background: rgba(255,122,24,0.15);
    color: #ff7a18;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 30px;
    letter-spacing: 1px;
    margin-bottom: 22px;
}

.why-left h2 {
    font-size: 50px;
    font-weight: 800;
    color: #0b2a4a;
    margin-bottom: 36px;
    line-height: 1.2;
}

/* LIST */
.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-list li {
    position: relative;
    padding-left: 48px;
    margin-bottom: 26px;
    font-size: 20px;
    font-weight: 600;
    color: #1c1c1c;
}

/* CHECK ICON */
.why-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 32px;
    height: 32px;
    background: #0b2a4a;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---------- RIGHT FEATURE CARD ---------- */

.why-right {
    display: flex;
    justify-content: center;
}

.why-box {
    background: #ffffff;
    padding: 50px;
    font-size: 18px;
    line-height: 1.9;
    color: #333;
    border-radius: 10px;
    box-shadow: 0 30px 70px rgba(11,42,74,0.18);
    position: relative;
}

/* ORANGE BAR */
.why-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: #ff7a18;
    border-radius: 10px 0 0 10px;
}

/* ---------- CTA BAR ---------- */

.why-choose-cta {
    position: relative;
    z-index: 2;
    margin-top: 90px;
    background: #0b2a4a;
    padding: 40px 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.why-choose-cta h3 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
}

.why-choose-cta a {
    background: #ff7a18;
    color: #ffffff;
    padding: 16px 34px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.why-choose-cta a:hover {
    background: #e66d12;
    transform: translateY(-2px);
}

/* ---------- ANIMATION ---------- */

.why-left,
.why-right,
.why-choose-cta {
    animation: fadeUp 0.9s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- MOBILE ---------- */

@media (max-width: 900px) {
    .why-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-left h2 {
        font-size: 34px;
    }

    .why-list li {
        font-size: 16px;
    }

    .why-box {
        padding: 32px;
    }

    .why-choose-cta {
        flex-direction: column;
        text-align: center;
    }
}
/* =====================================
   REVIEWS – CLEAN + PROFESSIONAL FIX
===================================== */

.reviews {
    position: relative;
    background: #f7f9fc;
    padding: 120px 0 110px;
}

/* remove any previous blocks */
.reviews::before,
.reviews::after {
    display: none;
}

/* main wrapper */
.reviews-wrapper {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- HEADER BLOCK ---------- */

.reviews-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 50px;
}

.google-logo {
    height: 38px;
}

.rating-badge {
    background: #ffffff;
    padding: 16px 28px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(11, 42, 74, 0.12);
    text-align: center;
}

.rating-number {
    font-size: 32px;
    font-weight: 800;
    color: #0b2a4a;
}

.rating-stars {
    color: #f4b400;
    font-size: 18px;
    letter-spacing: 3px;
    margin: 6px 0;
}

.rating-text {
    font-size: 13px;
    color: #666;
}

/* title */
.reviews-title {
    text-align: center;
    font-size: 44px;
    font-weight: 800;
    color: #0b2a4a;
    margin-bottom: 12px;
}

.reviews-desc {
    text-align: center;
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 70px;
    line-height: 1.7;
}

/* ---------- GRID BLOCK ---------- */

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

/* ---------- REVIEW CARD ---------- */

.review-card {
    background: #ffffff;
    padding: 40px 34px 42px;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(11, 42, 74, 0.16);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 65px rgba(11, 42, 74, 0.22);
}

/* top accent line */
.review-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #ff7a18;
    border-radius: 16px 16px 0 0;
}

/* image */
.review-card img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ff7a18;
    margin-bottom: 16px;
}

/* stars */
.stars {
    color: #f4b400;
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 14px;
}

/* review text */
.review-card p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

/* name */
.review-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #0b2a4a;
    margin-bottom: 4px;
}

/* role */
.review-card span {
    font-size: 14px;
    color: #777;
}

/* ---------- MOBILE ---------- */

@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .reviews-title {
        font-size: 32px;
    }

    .review-card {
        padding: 34px 26px 36px;
    }

    .review-card img {
        width: 95px;
        height: 95px;
    }
}
/* =====================================
   ANGLED BLOCK THEME DESIGN
===================================== */

.angled-section {
    position: relative;
    background: #ffffff;
    overflow: hidden;
    padding: 120px 0;
}



/* NAVY BLOCK BELOW */
.angled-section::after {
    content: "";
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 100px;
    background: #0b2a4a;
    clip-path: polygon(
        0 20%,
        65% 20%,
        72% 0,
        100% 0,
        100% 100%,
        0 100%
    );
    z-index: 1;
}

/* ================================
   HOME SERVICES SECTION
================================ */

.home-services {
    background: #ffffff;
}

.services-container {
    max-width: 1250px;
    margin: auto;
    padding: 0 24px;
}

/* header */
.services-header {
    text-align: center;
    margin-bottom: 70px;
}

.services-tag {
    display: inline-block;
    background: #ff7a18;
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    padding: 6px 14px;
    margin-bottom: 14px;
}

.services-header h2 {
    font-size: 44px;
    font-weight: 800;
    color: #0b2a4a;
    margin-bottom: 12px;
}

.services-header p {
    font-size: 16px;
    color: #555;
    max-width: 650px;
    margin: auto;
}

/* grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
}

/* card */
.service-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 20px 55px rgba(11,42,74,0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 75px rgba(11,42,74,0.25);
}

.service-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0b2a4a;
    margin: 22px 20px 10px;
}

.service-card p {
    font-size: 14.5px;
    color: #555;
    margin: 0 20px 26px;
    line-height: 1.6;
}

/* mobile */
@media (max-width: 1000px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-header h2 {
        font-size: 32px;
    }
}
.about-hero {
    background: linear-gradient(rgba(11,42,74,.75), rgba(11,42,74,.75)),
    url("../images/hero.jpg") center/cover no-repeat;
    padding: 130px 20px;
    text-align: center;
    color: #fff;
}

.about-hero h1 {
    font-size: 46px;
    margin-bottom: 15px;
}

.about-hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.section {
    padding: 90px 20px;
    background: #fff;
}

.section.gray {
    background: #f4f6f9;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.two-col {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
}

.tag {
    color: #ff7a18;
    font-weight: 700;
    font-size: 14px;
}

.section h2 {
    font-size: 38px;
    color: #0b2a4a;
    margin: 15px 0 25px;
}

.section p {
    color: #555;
    line-height: 1.7;
}

.highlight-box {
    background: #0b2a4a;
    color: #fff;
    padding: 40px;
    border-radius: 12px;
}

.highlight-box ul {
    list-style: none;
    padding: 0;
}

.highlight-box li {
    margin-bottom: 10px;
}

.btn-orange {
    background: #ff7a18;
    color: #fff;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 700;
    display: inline-block;
}

.btn-orange.full {
    display: block;
    margin-top: 25px;
    text-align: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.team-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.team-card img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 20px;
    margin-top: 40px;
}

.cert-box {
    background: #0b2a4a;
    color: #fff;
    padding: 25px;
    border-radius: 10px;
    font-weight: 700;
}

.cta {
    background: #0b2a4a;
    color: #fff;
    text-align: center;
    padding: 90px 20px;
}

.btn-white {
    background: #fff;
    color: #0b2a4a;
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 900px) {
    .two-col {
        grid-template-columns: 1fr;
    }

    .about-hero h1 {
        font-size: 34px;
    }
}
/* =================================
   ABOUT US – ENHANCED STYLING
================================= */

/* GENERAL TEXT POLISH */
.section h2 {
    font-size: 42px;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.section p {
    font-size: 16.5px;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* TAG ABOVE HEADINGS */
.tag {
    display: inline-block;
    margin-bottom: 12px;
    padding-bottom: 4px;
    border-bottom: 2px solid #ff7a18;
}

/* HERO TEXT */
.about-hero h1 {
    font-size: 50px;
    max-width: 900px;
    margin: 0 auto 16px;
}

.about-hero p {
    font-size: 19px;
    opacity: 0.95;
}

/* TWO COLUMN LAYOUT */
.two-col > div:first-child {
    padding-right: 30px;
}

.two-col > div:last-child {
    padding-left: 20px;
}

/* HIGHLIGHT BOX IMPROVED */
.highlight-box {
    position: relative;
    box-shadow: 0 25px 60px rgba(11,42,74,0.25);
}

.highlight-box h3 {
    font-size: 26px;
    margin-bottom: 22px;
}

.highlight-box ul li {
    padding-left: 22px;
    position: relative;
}

.highlight-box ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ff7a18;
}

/* MISSION SECTION */
.section.gray {
    position: relative;
}

.section.gray::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 120px;
    height: 4px;
    background: #ff7a18;
    transform: translateX(-50%);
}

/* VALUES CARDS */
.card {
    border-left: 5px solid #ff7a18;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

/* TEAM SECTION */
.team-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card img {
    border: 4px solid #ff7a18;
}

.team-card h4 {
    font-size: 20px;
    margin-bottom: 6px;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

/* CERTIFICATION BOXES */
.cert-box {
    position: relative;
    font-size: 16px;
    letter-spacing: 0.3px;
}

.cert-box::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
}

/* CTA SECTION */
.cta h2 {
    font-size: 40px;
}

.cta p {
    font-size: 17px;
    margin-bottom: 26px;
}

/* BUTTONS */
.btn-orange,
.btn-white {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-orange:hover,
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* RESPONSIVE FINE TUNING */
@media (max-width: 900px) {
    .about-hero h1 {
        font-size: 36px;
    }

    .section h2 {
        font-size: 32px;
    }

    .two-col > div:first-child,
    .two-col > div:last-child {
        padding: 0;
    }
}
/* =================================
   ABOUT US – TEAM TEXT SECTION
================================= */

.team-text-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-text-card {
    background: #ffffff;
    padding: 35px 32px;
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(11,42,74,0.12);
    border-left: 5px solid #ff7a18;
}

.team-text-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0b2a4a;
    margin-bottom: 6px;
}

.team-text-card .role {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #ff7a18;
    margin-bottom: 14px;
}

.team-text-card p {
    font-size: 15.5px;
    line-height: 1.75;
    color: #555;
}

/* hover polish */
.team-text-card:hover {
    transform: translateY(-4px);
    transition: transform 0.25s ease;
}

/* mobile */
@media (max-width: 600px) {
    .team-text-card {
        padding: 30px 24px;
    }
}
/* ===============================
   FOOTER – GLOBAL STYLE
================================ */

.footer {
    background: #0b2a4a;
    color: #ffffff;
    padding: 80px 20px 0;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-col h3,
.footer-col h4 {
    color: #ffffff;
    margin-bottom: 18px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #d1d8e0;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #d1d8e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ff7a18;
}

.footer-bottom {
    margin-top: 60px;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    background: #081f33;
    color: #bfc8d4;
}

/* mobile */
@media (max-width: 768px) {
    .footer {
        padding-top: 60px;
    }
}
/* ===============================
   CONTACT PAGE STYLES
================================ */

.contact-hero {
    background: linear-gradient(rgba(11,42,74,0.75), rgba(11,42,74,0.75)),
    url("../images/hero.jpg") center/cover no-repeat;
    padding: 120px 20px;
    text-align: center;
    color: #ffffff;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 14px;
}

.contact-hero p {
    font-size: 18px;
    margin-bottom: 36px;
}

.contact-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* BUTTON VARIANTS */
.btn-outline {
    border: 2px solid #ff7a18;
    color: #ff7a18;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
}

.btn-outline-light {
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
}

/* CONTACT CARDS */
.contact-card {
    background: #ffffff;
    padding: 36px 32px;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(11,42,74,0.12);
}

.contact-card h3 {
    font-size: 22px;
    color: #0b2a4a;
    margin-bottom: 14px;
}

.contact-card p {
    font-size: 15.5px;
    color: #555;
    line-height: 1.7;
}

.contact-card.highlight {
    border-top: 5px solid #ff7a18;
}

.btn-outline.full,
.btn-orange.full {
    display: block;
    text-align: center;
    margin-top: 22px;
}

/* CTA BUTTONS */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-hero h1 {
        font-size: 34px;
    }
}
/* CONTACT HERO UPGRADE */
.contact-hero h1 {
    font-size: 60px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 18px;
}

.contact-hero p {
    font-size: 20px;
    max-width: 750px;
    margin: 0 auto 45px;
    line-height: 1.7;
}
/* PRIMARY BUTTON */
.btn-orange {
    font-size: 17px;
    padding: 16px 34px;
    font-weight: 800;
    letter-spacing: 0.3px;
}

/* OUTLINE BUTTON */
.btn-outline,
.btn-outline-light {
    font-size: 17px;
    padding: 16px 34px;
    font-weight: 800;
    letter-spacing: 0.3px;
}

/* BUTTON HOVER FEEL */
.btn-orange:hover,
.btn-outline:hover,
.btn-outline-light:hover {
    transform: translateY(-2px);
}
/* SECTION HEADINGS */
.section h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 22px;
}

.section p.wide {
    font-size: 17.5px;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.8;
}
/* CONTACT INFO CARDS */
.contact-card {
    padding: 44px 38px;
}

.contact-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-card p {
    font-size: 16.5px;
    line-height: 1.75;
}

/* HIGHLIGHT CARD STRONGER */
.contact-card.highlight {
    border-top: 6px solid #ff7a18;
}
/* FINAL CTA */
.cta h2 {
    font-size: 46px;
    font-weight: 800;
}

.cta p {
    font-size: 18px;
    margin-bottom: 36px;
}
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 38px;
    }

    .section h2 {
        font-size: 32px;
    }

    .btn-orange,
    .btn-outline,
    .btn-outline-light {
        font-size: 16px;
        padding: 14px 26px;
    }
}
/* ===============================
   PROJECTS PAGE STYLES
================================ */

.projects-hero {
    background: linear-gradient(rgba(11,42,74,0.75), rgba(11,42,74,0.75)),
    url("../images/hero.jpg") center/cover no-repeat;
    padding: 120px 20px;
    text-align: center;
    color: #fff;
}

.projects-hero h1 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 16px;
}

.projects-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: auto;
}

/* PROJECT GRID */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.project-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(11,42,74,0.12);
}

.project-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.project-content {
    padding: 30px 28px;
}

.project-content h3 {
    font-size: 24px;
    color: #0b2a4a;
    margin-bottom: 14px;
}

.project-content p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #555;
}

/* PROCESS */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    background: #ffffff;
    padding: 36px 30px;
    border-radius: 14px;
    border-left: 5px solid #ff7a18;
    box-shadow: 0 15px 35px rgba(11,42,74,0.1);
}

.process-step h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0b2a4a;
}

.process-step p {
    font-size: 15.5px;
    color: #555;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .projects-hero h1 {
        font-size: 38px;
    }
}
/* ================================
   FOOTER FULL WIDTH FIX
   (All pages – match Home page)
================================ */

/* remove page side gaps */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

/* footer base */
.footer {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #0b2d4b;
}

/* inner footer container */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* footer bottom bar */
.footer-bottom {
    width: 100%;
    text-align: center;
    padding: 20px 10px;
    background: #08243b;
    color: #cfd9e2;
    font-size: 14px;
    margin: 0;
}

/* kill accidental margins from sections above footer */
section:last-of-type {
    margin-bottom: 0 !important;
}

/* ensure no container causes right shift */
.container,
.footer-container {
    box-sizing: border-box;
}

/* mobile fix */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
/* =========================================
   HARD FOOTER + PAGE WIDTH FIX (NO SPACES)
========================================= */

/* 1. Stop ANY horizontal overflow globally */
* {
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;
    background: #0b2d4b;
}

/* 2. Force footer to span full screen */
.footer {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #0b2d4b;
}

/* 3. Proper centered content inside footer */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* 4. Footer bottom bar */
.footer-bottom {
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding: 18px 10px;
    text-align: center;
    background: #08243b;
    color: #cfd9e2;
    font-size: 14px;
}

/* 5. Kill layout-breaking sections */
section,
header {
    max-width: 100vw;
    overflow-x: hidden;
}

/* 6. Fix images or grids pushing layout */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 7. Mobile fix */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
/* =========================================
   REMOVE EMPTY SPACE BELOW FOOTER
========================================= */

/* reset body height behavior */
html, body {
    min-height: auto !important;
    height: auto !important;
    margin: 0;
    padding: 0;
}

/* make sure footer is the last thing */
footer {
    margin-bottom: 0 !important;
    padding-bottom: 0;
}

/* remove bottom margin from last section before footer */
section:last-of-type {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* prevent any section forcing extra height */
section {
    min-height: auto !important;
}

/* fix common 100vh issue */
.hero,
.services-hero,
.about-hero,
.contact-hero,
.projects-hero {
    min-height: auto !important;
}

/* remove accidental empty divs */
footer::after {
    content: none !important;
}
html, body {
    overflow-x: hidden;
    overflow-y: auto;
}
html, body {
    overflow-x: hidden;
    overflow-y: auto;
}
html, body {
    overflow-x: hidden !important;
}
.header {
    overflow: hidden !important;
}
body { overflow-x: hidden; }
html, body { overflow-x: hidden; }
*::-webkit-scrollbar { display: none; }
