/* =========================================
   GLOBAL
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Open Sans", sans-serif;
    color: #222;
    background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar {
    font-family: "Montserrat", sans-serif;
}

a {
    text-decoration: none;
}

.btn-primary {
    background: #064d99;
    color: #fff;
}
.btn-primary:hover {
    background: #003c7d;
    color: #fff;
}

/* =========================================
   TOP BAR
========================================= */
.top-bar {
    height: 38px;
    background: #034a91;
    color: #fff;
    font-size: 13px;
}
.top-bar-inner {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top-left {
    display: flex;
    align-items: center;
    gap: 28px;
}
.top-contact {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    white-space: nowrap;
    text-decoration: none;
    transition: 0.3s;
}
.top-contact:hover {
    color: #25b9ff;
    text-decoration: none;
}
.top-contact i {
    font-size: 14px;
}
.top-social {
    display: flex;
    align-items: center;
    gap: 18px;
}
.top-social a {
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
}
.top-social a:hover {
    color: #25b9ff;
}
/* =========================================
   NAVIGATION
========================================= */
.main-nav {
    height: 100px;
    background: #fff;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1000;
    transition: 0.3s;
}
.main-nav.scrolled {
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.12);
}
.main-nav .container {
    height: 100%;
}
.navbar {
    height: 100%;
    padding: 0;
}
/* Logo */
.brand-logo img {
    width: 90%;
}
/* Menu */
.navbar-nav {
    align-items: center;
    gap: 2px;
}
.navbar-nav .nav-link {
    position: relative;
    color: #111 !important;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 14px 10px !important;
    white-space: nowrap;
}
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 1px;
    height: 2px;
    background: #064d99;
    transform: scaleX(0);
    transition: 0.25s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}
.navbar-nav .free-quote-nav {
    background: #064d99;
    color: #fff !important;
    border-radius: 5px;
    padding: 14px 16px !important;
    margin-left: 14px;
}
.navbar-nav .free-quote-nav::after {
    display: none;
}
.navbar-nav .free-quote-nav:hover {
    background: #003d7c;
}
/* =========================================
   HERO
========================================= */
.hero {
    height: 430px;
    position: relative;
    overflow: hidden;
    background-image:
        linear-gradient(
            90deg,
            rgba(0, 52, 112, 0.98) 0%,
            rgba(0, 66, 132, 0.94) 25%,
            rgba(0, 72, 140, 0.65) 43%,
            rgba(0, 0, 0, 0.05) 70%
        ),
        url("../images/hero_bg.jpg");
    background-size: cover;
    background-position: center;
}
.hero-content {
    height: 430px;
    display: flex;
    align-items: center;
}
.hero-inner {
    width: 500px;
    color: #fff;
}
.hero-title {
    font-size: 37px;
    font-weight: 600;
    line-height: 1.13;
    margin-bottom: 8px;
    letter-spacing: -1px;
}
.hero-title span {
    display: block;
    color: #009cff;
}
.hero-description {
    max-width: 430px;
    font-size: 14px;
    line-height: 26px;
    margin-top: 20px;
    margin-bottom: 16px;
    color: #f4f8fc;
}
.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #fff;
    color: #064d99;
    border: none;
    border-radius: 4px;
    padding: 9px 17px;
    font-size: 12px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
    text-decoration: none;
}
.hero-button:hover {
    background: #079df1;
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}
.hero-button i {
    font-size: 14px;
}
/* =========================================
   SECTION TITLES
========================================= */
.section-small-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    color: #07508f;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0;
}
.section-small-title::before,
.section-small-title::after {
    content: "";
    width: 38px;
    height: 2px;
    background: #55a9d9;
}
.section-small-left {
    justify-content: flex-start;
}
.section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 30px;
    color: #171717;
}
/* =========================================
   SERVICES
========================================= */
.services {
    padding: 60px 0 14px;
    background: #fff;
}
.service-row {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 10px;
}
.service-card {
    height: 96px;
    border: 1px solid #e4e4e4;
    border-radius: 4px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: 0.3s;
    padding: 6px;
    cursor: pointer;
}
.service-card:hover {
    transform: translateY(-4px);
    border-color: #8ab8df;
    box-shadow: 0 8px 18px rgba(0, 60, 120, 0.12);
}
.service-icon {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #084d91;
    font-size: 34px;
    margin-bottom: 4px;
}
.service-card h6 {
    font-size: 11px;
    line-height: 1.25;
    font-weight: 700;
    margin: 0;
    color: #111;
}
/* =========================================
   WHY CHOOSE US
========================================= */
.why-section {
    background: #f3f7fd;
    padding: 5px 0 5px;
}
.why-title {
    color: #064d99;
    font-size: 13px;
    font-weight: 800;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 8px;
}
.why-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}
.why-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 78px;
    text-align: center;
    border-right: 1px solid #d3dae2;
    padding: 1px 9px;
}
.why-item:last-child {
    border-right: none;
}
.why-icon {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #124d8e;
    font-size: 29px;
}
.why-item h6 {
    font-size: 10px;
    line-height: 1.3;
    font-weight: 700;
    margin: 3px 0 0;
    color: #161616;
}
/* =========================================
   CONTACT BOX
========================================= */
.contact-box {
    min-height: 132px;
    border-radius: 7px;
    overflow: hidden;
    position: relative;
    padding: 15px 30px;
    color: #fff;
    background:
        linear-gradient(
            90deg,
            rgba(0, 67, 143, 0.98),
            rgba(0, 67, 143, 0.18)
        ),
        url("../images/about_contact_bg.jpg");
    background-size: cover;
    background-position: center;
}
.contact-box::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    right: -45px;
    bottom: -100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
}
.contact-title {
    position: relative;
    z-index: 2;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 10px;
}
.contact-list {
    position: relative;
    z-index: 2;
    padding: 0;
    margin: 0;
    list-style: none;
}
.contact-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 10.5px;
    margin-bottom: 7px;
}
.contact-list li a,
.contact-list li span {
    color: #fff;
}
.contact-list i {
    width: 15px;
    font-size: 13px;
}
/* =========================================
   ABOUT
========================================= */
.about-section {
    padding: 80px 0;
    background: #fff;
}
.about-image {
    width: 100%;
    height: 370px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.about-title {
    font-size: 30px;
    font-weight: 700;
    margin: 10px 0 20px;
}
.about-section p {
    color: #555;
    line-height: 1.8;
    font-size: 14px;
}
.about-button {
    display: inline-block;
    margin-top: 8px;
    background: #064d99;
    color: #fff;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}
.about-button:hover {
    background: #003c7c;
    color: #fff;
    text-decoration: none;
}
/* =========================================
   PROJECTS
========================================= */
.projects-section {
    padding: 65px 0;
    background: #f6f8fb;
}
.project-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    height: 100%;
}
.project-card:hover {
    transform: translateY(-5px);
}
.project-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}
.project-content {
    padding: 20px;
}
.project-content h5 {
    font-weight: 700;
    margin-bottom: 8px;
}
.project-content p {
    color: #666;
    font-size: 13px;
    margin: 0;
}
/* =====================================
    CTA SECTION
===================================== */
.bottom-cta {
    background: #064d9e;
    color: #fff;
    padding: 45px 0;
    margin-top: 40px;
}
.bottom-cta h3 {
    font-size: 25px;
    font-weight: 700;
}
.bottom-cta p {
    margin-bottom: 0;
    opacity: .9;
}
.cta-btn {
    background: #fff;
    color: var(--primary);
    border: none;
    padding: 13px 23px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
}
/* =========================================
   FOOTER
========================================= */

footer {
    background: #062f5d;
    color: #fff;
    padding: 22px 0;
    font-size: 12px;
}
footer a {
    color: #fff;
    margin: 0 5px;
}
footer a:hover {
    color: #fff;
}
/* =========================================
   MODAL
========================================= */
.modal-header {
    background: #064d99;
    color: #fff;
}
.modal-header .btn-close {
    filter: brightness(0) invert(1);
}
.modal-title {
    font-weight: 700;
}
.form-label {
    font-size: 13px;
    font-weight: 600;
}
.form-control,
.form-select {
    min-height: 42px;
    font-size: 13px;
}
/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1199px) {
    .brand-logo {
        min-width: 270px;
    }
    .brand-logo img {
        width: 100%;
    }
    .navbar-nav .nav-link {
        padding-left: 8px !important;
        padding-right: 8px !important;
        font-size: 9px;
    }
    .free-quote-nav {
        margin-left: 5px;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    .service-row {
        grid-template-columns: repeat(5, 1fr);
    }
}
@media (max-width: 991px) {
    .top-bar {
        height: auto;
        padding: 8px 0;
    }
    .top-bar-inner {
        height: auto;
    }
    .main-nav {
        height: auto;
        min-height: 78px;
    }
    .navbar {
        min-height: 78px;
    }
    .navbar-toggler {
        border: none;
        outline: none !important;
        box-shadow: none !important;
        font-size: 26px;
    }
    .navbar-collapse {
        background: #fff;
        padding: 15px 0;
    }
    .navbar-nav {
        align-items: flex-start;
    }
    .navbar-nav .nav-link {
        padding: 10px 5px !important;
        width: 100%;
    }
    .navbar-nav .nav-link::after {
        bottom: 3px;
        left: 5px;
        right: auto;
        width: 35px;
    }
    .free-quote-nav {
        margin: 8px 0;
        display: inline-block;
        width: auto !important;
        padding: 12px 18px !important;
    }
    .hero,
    .hero-content {
        height: 400px;
    }
    .hero-inner {
        padding-left: 20px;
    }
    .service-row {
        grid-template-columns: repeat(5, 1fr);
    }
    .why-title {
        text-align: center;
    }
    .why-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .why-item {
        margin-bottom: 10px;
    }
    .why-item:nth-child(3) {
        border-right: none;
    }
    .contact-box {
        margin-top: 15px;
    }
}
@media (max-width: 767px) {
    .top-left {
        gap: 14px;
        flex-wrap: wrap;
    }
    .top-contact {
        font-size: 10px;
    }
    .top-social {
        display: none;
    }
    .brand-logo {
        min-width: auto;
        max-width: 83%;
    }
    .brand-logo img {
        width: 100%;
    }
    .hero,
    .hero-content {
        height: 460px;
    }
    .hero {
        background:
            linear-gradient(
                90deg,
                rgba(0, 53, 111, 0.96),
                rgba(0, 68, 130, 0.78)
            ),
            url("../images/hero_bg.jpg");
        background-size: cover;
        background-position: center;
    }
    .hero-inner {
        width: 100%;
        padding: 0 20px;
    }
    .hero-title {
        font-size: 31px;
    }
    .hero-description {
        font-size: 13px;
    }
    .service-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .service-card {
        height: 105px;
    }
    .why-title {
        text-align: center;
    }
    .why-item {
        border-right: 1px solid #d3dae2;
    }
    .why-item:nth-child(even) {
        border-right: none;
    }
    .contact-box {
        padding: 18px 22px;
    }
    .about-section {
        padding: 50px 0;
    }
    .cta-btn {
        margin-top: 20px;
    }
}
@media (max-width: 575px) {
    .top-left {
        width: 100%;
        justify-content: center;
    }
    .email-contact {
        display: none;
    }
    .brand-name {
        font-size: 14px;
    }
    .brand-sub {
        font-size: 6px;
        letter-spacing: 1px;
    }
    .hero-title {
        font-size: 28px;
    }
    .section-title {
        font-size: 22px;
    }
    .why-item {
        border-right: none !important;
        border-bottom: 1px solid #d3dae2;
    }
    .about-image {
        height: 280px;
    }
    footer {
        text-align: center;
    }
}
/* =========================================================
   INTERNAL PAGES
   ABOUT / SERVICES / PROJECTS / WHY CHOOSE US / CONTACT
========================================================= */
/* =========================================================
   INTERNAL PAGE HERO
========================================================= */
.internal-page-hero {
    min-height: 245px;
    display: flex;
    align-items: center;
    position: relative;
    background:
        linear-gradient(
            90deg,
            rgba(0, 50, 108, 0.96),
            rgba(0, 72, 140, 0.72)
        ),
        url("../images/hero_bg_all.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.internal-page-content {
    text-align: center;
    color: #fff;
}
.internal-page-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}
.internal-page-content p {
    font-size: 15px;
    margin-bottom: 20px;
    opacity: 0.95;
}
.breadcrumb-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    font-size: 12px;
}
.breadcrumb-custom a {
    color: #50b8f7;
}
.breadcrumb-custom span {
    color: #fff;
}
.breadcrumb-custom i {
    font-size: 9px;
}

/* =========================================================
   INTERNAL SECTION LABEL
========================================================= */
.internal-section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #07508f;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.4px;
    margin-bottom: 8px;
}
.internal-section-label::before,
.internal-section-label::after {
    content: "";
    width: 35px;
    height: 2px;
    background: #50a8d7;
}

/* =========================================================
   ABOUT PAGE
========================================================= */
.internal-about-section {
    padding: 75px 0;
    background: #fff;
}
.internal-about-section h2,
.why-page-section h2,
.contact-page-section h2 {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    color: #161616;
    margin-bottom: 20px;
}
.internal-about-section p,
.why-page-section p {
    color: #5e5e5e;
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 15px;
}
.internal-main-image {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
.internal-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #064d99;
    color: #fff;
    padding: 13px 21px;
    border-radius: 4px;
    font-size: 11px;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    margin-top: 8px;
    transition: 0.3s;
    text-decoration: none;
}
.internal-primary-btn:hover {
    background: #003d7d;
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

/* =========================================================
   ABOUT MISSION / VISION / VALUES
========================================================= */
.internal-blue-section {
    padding: 65px 0;
    background: linear-gradient(110deg,#034b91,#063b72);
}
.info-box {
    height: 100%;
    text-align: center;
    color: #fff;
    padding: 35px 25px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    transition: 0.3s;
}
.info-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}
.info-box-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: #064d99;
    font-size: 27px;
}
.info-box h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
}
.info-box p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.86);
    margin: 0;
}

/* =========================================================
   STATS
========================================================= */
.stats-section {
    padding: 55px 0;
    background: #f3f7fd;
}
.stat-number {
    color: #064d99;
    font-family: "Montserrat", sans-serif;
    font-size: 35px;
    font-weight: 800;
}
.stat-label {
    color: #555;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

/* =========================================================
   SERVICES PAGE
========================================================= */
.internal-services-section {
    padding: 70px 0;
    background: #fff;
}
.services-intro {
    max-width: 750px;
    margin: auto;
}
.services-intro h2,
.projects-gallery-section h2,
.reasons-section h2,
.process-section h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 13px;
}
.services-intro p,
.gallery-intro {
    color: #666;
    line-height: 1.8;
    font-size: 14px;
    max-width: 720px;
    margin: auto;
}
.internal-services-section .row {
    gap: 30px 0;
}
.large-service-card {
    height: 100%;
    padding: 32px 28px;
    border: 1px solid #e3e7ec;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.045);
    transition: 0.3s;
}
.large-service-card:hover {
    transform: translateY(-7px);
    border-color: #86b9df;
    box-shadow: 0 15px 30px rgba(0, 50, 100, 0.12);
}
.large-service-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #edf6ff;
    color: #07509a;
    font-size: 31px;
    margin-bottom: 20px;
}
.large-service-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
}
.large-service-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}
.large-service-card ul {
    padding: 0;
    margin: 17px 0 0;
    list-style: none;
}
.large-service-card li {
    position: relative;
    padding-left: 21px;
    font-size: 13px;
    color: #444;
    margin-bottom: 7px;
}
.large-service-card li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    left: 0;
    top: 0;
    color: #0875c5;
}

/* =========================================================
   INTERNAL CTA
========================================================= */
.internal-cta {
    padding: 65px 0;
    background:
        linear-gradient(
            100deg,
            #034b91,
            #006cb8
        );
    color: #fff;
}
.internal-cta h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 10px;
}
.internal-cta p {
    font-size: 14px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}
.internal-white-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #064d99;
    padding: 13px 22px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    transition: 0.3s;
    text-decoration: none;
}
.internal-white-btn:hover {
    background: #061f40;
    color: #fff;
    text-decoration: none;
}

/* =========================================================
   PROJECTS PAGE
========================================================= */
.projects-gallery-section {
    padding: 70px 0;
    background: #f7f9fc;
}
.projects-gallery-section .row {
    gap: 30px 0;
}
.gallery-project {
    height: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 22px rgba(0, 0, 0, 0.07);
    transition: 0.3s;
}
.gallery-project:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.13);
}
.gallery-image {
    height: 270px;
    position: relative;
    overflow: hidden;
}
.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.gallery-project:hover .gallery-image img {
    transform: scale(1.07);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 67, 135, 0.7);
    opacity: 0;
    transition: 0.3s;
}
.gallery-project:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay i {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #064d99;
    font-size: 20px;
}
.gallery-info {
    padding: 22px;
}
.gallery-info span {
    display: inline-block;
    color: #0756a0;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 7px;
}
.gallery-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.gallery-info p {
    color: #666;
    font-size: 12px;
    line-height: 1.65;
    margin: 0;
}

/* =========================================================
   PROJECT LIGHTBOX
========================================================= */
.project-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(0, 0, 0, 0.88);
    opacity: 0;
    transition: opacity 0.25s ease;
}
.project-lightbox.show {
    opacity: 1;
}
.project-lightbox-inner {
    position: relative;
    max-width: 1100px;
    max-height: 90vh;
}
.project-lightbox-inner img {
    display: block;
    max-width: 100%;
    max-height: 85vh;
    border-radius: 5px;
}
.project-lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #064d99;
    cursor: pointer;
    font-size: 14px;
}
.project-lightbox-close:hover {
    background: #079df1;
    color: #fff;
}

/* =========================================================
   WHY CHOOSE US PAGE
========================================================= */
.why-page-section {
    padding: 75px 0;
    background: #fff;
}
.reasons-section {
    padding: 70px 0;
    background: #f5f8fc;
}
.reasons-section .row {
    gap: 30px 0;
}
.reason-card {
    height: 100%;
    position: relative;
    background: #fff;
    padding: 32px 28px;
    border-radius: 8px;
    border: 1px solid #e5e9ee;
    overflow: hidden;
    transition: 0.3s;
}
.reason-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 50, 100, 0.1);
}
.reason-number {
    position: absolute;
    right: 18px;
    top: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 55px;
    font-weight: 800;
    color: rgba(0, 77, 153, 0.09);
}
.reason-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #edf6ff;
    color: #064d99;
    font-size: 27px;
    margin-bottom: 18px;
}
.reason-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}
.reason-card p {
    color: #666;
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}

/* =========================================================
   PROCESS
========================================================= */
.process-section {
    padding: 70px 0;
    background: #fff;
}
.process-step {
    position: relative;
    text-align: center;
    padding: 10px 25px;
}
.process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 38px;
    right: -1px;
    width: 45px;
    height: 2px;
    background: #c7d9e9;
}
.process-icon {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #064d99;
    color: #fff;
    font-size: 27px;
    border: 7px solid #eaf3fb;
}
.process-step h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}
.process-step p {
    color: #666;
    font-size: 12px;
    line-height: 1.6;
}

/* =========================================================
   CONTACT PAGE
========================================================= */
.contact-page-section {
    padding: 75px 0;
    background: #fff;
}
.contact-intro {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}
.contact-detail-card {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 15px 0;
    border-bottom: 1px solid #e7ebef;
}
.contact-detail-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #edf6ff;
    color: #064d99;
    font-size: 19px;
}
.contact-detail-card small {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: #064d99;
    margin-bottom: 1px;
}
.contact-detail-card a,
.contact-detail-card span {
    display: block;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
}
.contact-detail-card a:hover {
    color: #064d99;
    text-decoration: none;
}
.contact-social-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 22px;
    color: #333;
    font-size: 13px;
}
.contact-social-box div {
    display: flex;
    gap: 8px;
}
.contact-social-box a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #064d99;
    color: #fff;
    font-size: 16px;
    border-radius: 50%;
    transition: 0.3s;
    text-decoration: none;
}
.contact-social-box a:hover {
    background: #079df1;
    text-decoration: none;
}

/* CONTACT FORM */
.contact-form-box {
    padding: 35px;
    background: #f6f9fc;
    border-radius: 8px;
    border: 1px solid #e2e8ef;
}
.contact-form-box .row {
    gap: 20px 0;
}
.form-heading {
    margin-bottom: 25px;
}
.form-heading h3 {
    font-size: 23px;
    font-weight: 800;
    margin-bottom: 7px;
}
.form-heading p {
    color: #666;
    font-size: 13px;
    margin: 0;
}
.contact-form-box label {
    display: block;
    color: #333;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 6px;
}
.contact-form-box .form-control,
.contact-form-box .form-select {
    min-height: 44px;
    border: 1px solid #d9e0e7;
    border-radius: 4px;
    font-size: 12px;
    background: #fff;
}
.contact-form-box textarea.form-control {
    min-height: 130px;
    resize: vertical;
}
.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus {
    border-color: #2687c7;
    box-shadow: 0 0 0 3px rgba(38, 135, 199, 0.1);
}
.form-check-label {
    font-weight: 400 !important;
    color: #666 !important;
}
.form-check-input {
    margin-top: .1rem;
}
.contact-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    background: #064d99;
    color: #fff;
    padding: 13px 22px;
    border-radius: 4px;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 700;
    transition: 0.3s;
}
.contact-submit:hover {
    background: #003d7d;
    transform: translateY(-2px);
}

/* =========================================================
   MAP / LOCATION
========================================================= */
.map-section {
    padding: 0 0 65px;
    background: #fff;
}
.location-banner {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    background: #f2f7fc;
    border-radius: 7px;
    border-left: 4px solid #064d99;
}
.location-banner div {
    display: flex;
    align-items: center;
    gap: 13px;
    color: #333;
    font-size: 14px;
}
.location-banner div i {
    color: #064d99;
    font-size: 23px;
}
.location-banner a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #064d99;
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 800;
}
/* =========================================================
   INTERNAL PAGE RESPONSIVE
========================================================= */
@media (max-width: 991px) {
    .internal-page-hero {
        min-height: 220px;
    }
    .internal-page-content h1 {
        font-size: 36px;
    }
    .internal-main-image {
        height: 350px;
    }
    .process-step {
        margin-bottom: 35px;
    }
    .process-step:not(:last-child)::after {
        display: none;
    }
}
@media (max-width: 767px) {
    .internal-page-hero {
        min-height: 210px;
    }
    .internal-page-content h1 {
        font-size: 31px;
    }
    .internal-page-content p {
        font-size: 13px;
    }
    .internal-about-section,
    .internal-services-section,
    .projects-gallery-section,
    .why-page-section,
    .contact-page-section {
        padding: 50px 0;
    }
    .internal-about-section h2,
    .why-page-section h2,
    .contact-page-section h2,
    .services-intro h2,
    .projects-gallery-section h2,
    .reasons-section h2,
    .process-section h2 {
        font-size: 27px;
    }
    .internal-main-image {
        height: 290px;
    }
    .internal-blue-section {
        padding: 50px 0;
    }
    .info-box {
        padding: 28px 20px;
    }
    .gallery-image {
        height: 240px;
    }
    .contact-form-box {
        padding: 25px 20px;
    }
    .location-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}
@media (max-width: 575px) {
    .internal-page-content h1 {
        font-size: 27px;
    }
    .breadcrumb-custom {
        font-size: 10px;
    }
    .internal-section-label {
        font-size: 9px;
    }
    .internal-main-image {
        height: 250px;
    }
    .stat-number {
        font-size: 27px;
    }
    .stat-label {
        font-size: 9px;
    }
    .large-service-card {
        padding: 25px 20px;
    }
    .gallery-image {
        height: 220px;
    }
    .internal-cta {
        padding: 50px 20px;
    }
    .internal-cta h2 {
        font-size: 25px;
    }
}