/* ===== HEADER LEFT (LOGO CONTAINER) ===== */
.header-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;        /* REQUIRED */
    z-index: 1;                /* LOGO BACK */
}

/* ===== LOGO IMAGE ===== */
.header-logo img {
    height: 200px;
    width: auto;
    background-color: rgb(255 255 255);
    padding: 3px 4px;
    display: block;

    position: relative;
    z-index: 2;                /* behind header */

    margin-top: -16px;
    margin-bottom: -63px;

    box-shadow: 0 0 160px rgba(0, 0, 0, 0.4);
    border-radius: 0 0 10px 10px;
}

/* ===== TOP HEADER (FRONT) ===== */
.top-header {
    position: relative;        /* REQUIRED */
    background-color: #2f4357;
    color: #ffffff;
    font-size: 13px;
    padding: 8px 0;
    z-index: 9999 !important;               /* FRONT */
}

/* ICON SPACING */
.top-header i {
    margin-right: 5px;
}


.top-info span {
    white-space: nowrap;
}

.top-social a {
    color: #ffffff;
    margin-left: 12px;
    font-size: 14px;
    text-decoration: none;
}

.top-social a:hover {
    color: #d1d1d1;
}

/* ===== MAIN HEADER ===== */
/* Header */
.main-header {
    height: 80px;
}

/* Logo */
.logo-img {
    height: 55px;
    width: auto;
}

/* Nav Links */
.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    padding: 8px 0;
    text-decoration: none !important;
}

.navbar-nav .nav-link:hover {
    color: #c62828;
}

.navbar-nav .nav-link.active {
    color: #2e86c1;
}

/* Call Now Button */
.btn-call {
    background-color: #2e86c1 !important;
    color: #fff !important;
    border-radius: 10px !important;
    padding: 10px 18px !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
}

.btn-call:hover {
    background-color: #c62828 !important;
    color: #fff;
}

.nav-link-wrapper {
    text-decoration: none;
    color: inherit;
}

.nav-link-wrapper:hover {
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: #6c757d;
    /* normal */
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.navbar-nav .nav-link:hover {
    color: #000;
}

/* ACTIVE MENU */
.navbar-nav .nav-link.active {
    color: #000;
    /* dark color */
    font-weight: 700;
    /* bold */
}

/* <------------------------------------Home----------------------------------------------------> */
.banner-carousel {
    border-radius: 8px;
    overflow: hidden;
}

/* Slide height */
.banner-slide {
    height: 320px;
    display: flex;
    align-items: center;
    padding-left: 80px;
    color: #fff;
}

/* Background images */
.banner-bg-1 {
    background: url("../img/banner1.jpg") center/cover no-repeat;
}

.banner-bg-2 {
    /* background: linear-gradient(120deg, #4facfe, #00f2fe); */
    background: url("../img/banner2.jpg") center/cover no-repeat;
}

.banner-bg-3 {
    background: url("../img/banner3.jpg") center/cover no-repeat;

}

.banner-bg-4 {
    background: url("../img/ban1.jpg") center/cover no-repeat;

}

/* Content */
.banner-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 18px;
    font-weight: 500;
}

/* Logo */
.banner-logo {
    max-width: 120px;
    margin-bottom: 15px;
}

/* Controls background */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    padding: 15px;
}

/* Indicators */
.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}


/* ================================
   WHO WE ARE SECTION
================================ */
.who-we-are-section {
    padding: 60px 0;
}

/* Title */
.who-we-are-section .sub-title {
    color: #0d6efd;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.who-we-are-section .main-title {
    font-size: 26px;
    font-weight: 800;
    color: #212529;
    line-height: 1.2;
}

/* ================================
   ABOUT CONTENT
================================ */
.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 25px;
}

/* Button */
.btn-book {
    background-color: #0b2a5b;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-book:hover {
    background-color: #091f44;
    color: #ffffff;
}

/* ================================
   IMAGE
================================ */

.about-image img {

    height: 535px;
    object-fit: cover;
    border-radius: 6px;
}

/* ================================
   STATS
================================ */
.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #111;
    margin-bottom: 6px;
}

.stat-text {
    font-size: 16px;
    color: #4b5d52;
    font-weight: 500;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
    .who-we-are-section {
        padding: 40px 0;
    }

    .main-title {
        font-size: 26px;
    }

    .stat-number {
        font-size: 30px;
    }

    .about-image img {
        max-height: 300px;
        margin-top: 30px;
    }
}


.ux-stats-wrapper {
    background: #FFEFD2;
}

.ux-stat-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px 20px;
    height: 100%;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.ux-stat-box:hover {
    transform: translateY(-6px);
}

.ux-stat-icon {
    width: 90px;
    height: 90px;
    background: #def4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.ux-stat-icon i {
    font-size: 40px;
    color: #0b7ea1;
}

.ux-stat-count {
    font-size: 22px;
    font-weight: 700;
    color: #0b7ea1;
    margin-bottom: 6px;
}

.ux-stat-label {
    font-size: 15px;
    color: #555;
    margin-bottom: 14px;
}

.ux-stat-divider {
    width: 60px;
    height: 3px;
    background: #0b7ea1;
    margin: 0 auto;
    border-radius: 2px;
}

.wcu-section {
    background: #ffffff;
}

/* Image */
.wcu-image-box img {
    border-radius: 6px;
}

/* Experience Badge */
.wcu-exp-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: #f7df7c;
    padding: 18px 22px;
    text-align: center;
    border-radius: 2px;
}

.wcu-exp-badge strong {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: #333;
}

.wcu-exp-badge span {
    font-size: 14px;
    color: #555;
}

/* Content */
.wcu-subtitle {
    color: #1aa1b8;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    padding-left: 40px;
}

.wcu-subtitle::before {
    content: "";
    width: 30px;
    height: 2px;
    background: #1aa1b8;
    position: absolute;
    left: 0;
    top: 50%;
}

.wcu-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

/* Checklist */
.wcu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wcu-list li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
}

.wcu-list i {
    color: #1aa1b8;
    margin-right: 8px;
}

/* Offer Box */
.wcu-offer-box {
    border: 1px solid #eaeaea;
    padding: 20px;
    max-width: 320px;
}

.wcu-offer-percent {
    font-size: 28px;
    font-weight: 700;
    color: #1aa1b8;
}


.svc-section {
    background: #C4DDEA;
}

/* Heading */
.svc-subtitle {
    font-weight: 700;
    color: #0a8fa3;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.svc-title {
    font-size: 26px;
    font-weight: 700;
    color: #222;
}

/* Card */
/* COMMON CARD */
.svc-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px 22px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease;
}

.svc-card:hover {
    transform: translateY(-8px);
}

/* BACKGROUND IMAGE LAYER */
.svc-bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: all 0.6s ease;
    transform: scale(1.1);
    z-index: 1;
}

.svc-card:hover .svc-bg {
    opacity: 1;
    transform: scale(1);
}

.svc-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 60, 90, 0.85);
}

/* UNIQUE IMAGES */
.svc-install .svc-bg {
    background: url("../img/install1.jpg") center/cover no-repeat;
}

.svc-upgrade .svc-bg {
    background: url("../img/install2.jpg") center/cover no-repeat;
}

.svc-cleaning .svc-bg {
    background: url("../img/install3.jpg") center/cover no-repeat;
}

.svc-gas .svc-bg {
    background: url("../img/install4.jpg") center/cover no-repeat;
}

.svc-maintenance .svc-bg {
    background: url("../img/install5.jpg") center/cover no-repeat;
}

.svc-emergency .svc-bg {
    background: url("../img/install6.jpg") center/cover no-repeat;
}

/* CONTENT */
.svc-content {
    position: relative;
    z-index: 2;
}

.svc-title,
.svc-text {
    transition: color 0.4s ease;
}

.svc-card:hover .svc-title,
.svc-card:hover .svc-text {
    color: #fff;
}

/* ICON */
.svc-icon-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, #083b7a, #0a8fa3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.svc-icon-circle i {
    font-size: 40px;
    color: #fff;
}

/* BUTTON */
.svc-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: 30px;
    background: #0b3b78;
    color: #fff;
    text-decoration: none;
}

.svc-card:hover .svc-btn {
    background: #0a8fa3;
}



.wc-heading-wrap {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.wc-heading-text {
    font-weight: 600;
    margin-bottom: 10px;
    color: #1aa3c8;
    text-transform: capitalize;
}

.wc-heading-line {
    width: 30px;
    height: 2px;
    margin-top: 4px;
    margin-bottom: 10px;
    background-color: #1aa3c8;
}


.why-choose-us {
    max-width: 900px;
}

/* TOP SMALL TITLE */
.why-subtitle {
    display: flex;
    align-items: center;
    gap: 12px;
}

.why-line {
    width: 40px;
    height: 3px;
    background: #0a8fa3;
}

.why-text {
    font-size: 14px;
    font-weight: 700;
    color: #0a8fa3;
    letter-spacing: 1px;
}

/* MAIN TITLE */
.why-title {
    font-size: 34px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
}

.img-card {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
}

/* IMAGE */
.img-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* DARK OVERLAY */
.img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    transition: opacity 0.4s ease;
}

/* REMOVE DARK ON HOVER */
.img-card:hover .img-overlay {
    opacity: 0;
}

/* TEXT ON IMAGE */
.img-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    z-index: 2;
}

/* BACKGROUND */
.brands-section {
    background: #f0f0f0;
}

/* TEXT */
.brands-subtitle {
    color: #0a8fa3;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
}

.brands-title {
    font-size: 28px;
    font-weight: 700;
    max-width: 850px;
    color: #222;
}

/* SCROLL WRAPPER */
.logo-scroll-wrapper {
    overflow: hidden;
    width: 100%;
}

/* TRACK */
.logo-scroll-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: scrollLogos 18s linear infinite;
}

/* LOGOS */
.logo-scroll-track img {
    height: 110px;
    object-fit: contain;
}

/* ANIMATION */
@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* <------------------------------------Home----------------------------------------------------> */

/* <------------------------------------About----------------------------------------------------> */

/* TOP BAR */
.top-bar {
    height: 14px;
    background: linear-gradient(90deg, #0b3b78, #0a8fa3);
}

/* SECTION */
.who-we-are-section {
    background: #f7f9fb;
}

/* CARD */


/* TEXT */
.who-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* BUTTON */
.book-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    padding: 10px 22px;
    background: linear-gradient(90deg, #0b3b78, #0a8fa3);
    color: #ffffff;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}

.book-btn span {
    background: #ffffff;
    color: #0b3b78;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* SECTION */
.uwa-section {
    background-color: #ffffff;
}

/* SUB TITLE */
.uwa-sub-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1c8cb5;
    margin-bottom: 6px;
}

/* MAIN TITLE */
.uwa-main-title {
    font-size: 32px;
    font-weight: 800;
    color: #222;
}

/* CARD */
.uwa-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    position: relative;
}

/* CONTENT */
.uwa-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.uwa-text {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

/* BUTTON */
.uwa-btn {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background-color: #0a3d62;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    width: fit-content;
}

.uwa-btn:hover {
    background-color: #062c46;
    color: #ffffff;
}

.uwa-btn-icon {
    background: #ffffff;
    color: #0a3d62;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* IMAGE */
.uwa-image-wrapper img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

/* CENTER VERTICAL LINE */
.uwa-divider {
    position: absolute;
    top: 10%;
    bottom: 10%;
    left: 50%;
    width: 1px;
    background-color: #e0e0e0;
    transform: translateX(-50%);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .uwa-divider {
        display: none;
    }

    .col-6 {
        width: 100%;
    }

    .uwa-content,
    .uwa-image-wrapper {
        padding: 0 !important;
    }
}

/* SECTION BACKGROUND */
.kaili-about-wrapper {
    background: #f5f5f5;
}

/* CARD */
.kaili-about-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* TEXT */
.kaili-about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 24px;
}

/* BUTTON */
.kaili-btn-book {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: #0b3c6f;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.kaili-btn-book:hover {
    background: #092f56;
}

/* BUTTON ICON */
.kaili-btn-icon {
    width: 28px;
    height: 28px;
    background: #fff;
    color: #0b3c6f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* IMAGE */
.kaili-about-image img {
    border-radius: 18px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.kaili-about-text {
    text-align: justify;
}

.vertical-line {
    width: 2px;
    height: 200px;
    background-color: #d6d6d6;
}

.color {
    background-color: #daf0ff;
}

/* <------------------------------------About----------------------------------------------------> */

/* <------------------------------------installation----------------------------------------------------> */
.design-card {
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.design-card-img {
    width: 100%;
    height: 260px !important;
    display: block;
}

.design-card-body {
    padding: 14px 10px 18px;
}

.design-caption {
    font-size: 13px;
    color: #777;
    margin-bottom: 4px;
}

.design-title {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin: 0;
}

.materials-section {
    background: #eaf6ff;
    padding: 60px 0;
    border-radius: 10px;
}

.materials-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #111;
}

.materials-desc {
    font-size: 18px;
    color: #333;
    margin-bottom: 28px;
    max-width: 900px;
}

.materials-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.materials-list li {
    font-size: 18px;
    color: #111;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.materials-list i {
    color: #1a73e8;
    font-size: 20px;
}

.price-section {
    width: 100%;
    padding: 20px 16px;
}

.price-card-full {
    width: 100%;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

/* Header */
.price-header {
    background: #3f86b5;
    color: #ffffff;
    padding: 30px 20px;
}

.price-header h3 {
    font-weight: 700;
    font-size: 26px;
}

.price-header p {
    font-size: 17px;
    opacity: 0.95;
}

/* Body */
.price-body {
    padding: 24px 30px 30px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #eef1f4;
    font-size: 17px;
}

.price-row:last-child {
    border-bottom: none;
}

.price {
    font-weight: 700;
    color: #3f86b5;
}

/* Checklist */
.price-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 16px;
}

.price-checklist i {
    color: #2d7ef7;
    font-size: 18px;
}

/* Mobile spacing fix */
@media (max-width: 576px) {
    .price-body {
        padding: 20px;
    }

    .price-header h3 {
        font-size: 22px;
    }
}


/* <------------------------------------installation----------------------------------------------------> */
/* <------------------------------------services----------------------------------------------------> */


/* Icon circle */
.stat-icon-box {
    width: 90px;
    height: 90px;
    background: #dff4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.stat-icon-box i {
    font-size: 38px;
    color: #0b86a8;
}

/* Number */
.stat-number {
    font-size: 26px;
    font-weight: 700;
    color: #0b86a8;
    margin-bottom: 6px;
}

/* Label */
.stat-label {
    font-size: 17px;
    color: #555;
    margin-bottom: 10px;
}

/* Underline */
.stat-line {
    display: inline-block;
    width: 60px;
    height: 3px;
    background: #0b86a8;
    border-radius: 2px;
}

/* Mobile */
@media (max-width: 576px) {
    .stat-number {
        font-size: 26px;
    }

    .stat-label {
        font-size: 15px;
    }
}

.gas-section {
    padding: 60px 0;
}

.gas-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

/* Header */
.gas-header {
    background: #3f86b5;
    color: #ffffff;
    padding: 30px 20px;
}

.gas-header h3 {
    font-size: 28px;
    font-weight: 700;
}

.gas-header p {
    font-size: 17px;
    opacity: 0.95;
}

/* Body */
.gas-body {
    padding: 28px 30px 34px;
}

.gas-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
}

.gas-price-row strong {
    font-size: 20px;
    font-weight: 700;
    color: #3f86b5;
}

/* Info note */
.gas-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: #444;
}

.gas-note i {
    color: #2d7ef7;
    font-size: 18px;
    margin-top: 2px;
}

/* Mobile */
@media (max-width: 576px) {
    .gas-header h3 {
        font-size: 22px;
    }

    .gas-body {
        padding: 22px;
    }
}

/* <------------------------------------services----------------------------------------------------> */

/* <------------------------------------maintenance----------------------------------------------------> */


.call-box {
    background: #eaf6ff;
    border-radius: 20px;
    padding: 50px 40px;
}

.call-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 26px;
    color: #111;
}

.call-text {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    max-width: 1000px;
    margin: 0 auto 22px;
}

/* Mobile adjustment */
@media (max-width: 576px) {
    .call-box {
        padding: 35px 20px;
    }

    .call-title {
        font-size: 24px;
    }

    .call-text {
        font-size: 16px;
    }
}

.fancoil-table {
    border: 1px solid #cfd8e3;
    font-size: 16px;
}

.fancoil-table thead th {
    background: #d6e8ff;
    color: #000;
    font-weight: 700;
    border: 1px solid #c0d4f5;
    padding: 14px 12px;
}

.fancoil-table td {
    border: 1px solid #dee2e6;
    padding: 14px 12px;
}

.fancoil-table tbody td:first-child {
    font-weight: 500;
    white-space: nowrap;
}

.fancoil-table strong {
    font-size: 18px;
}



.services-box {
    background: #eaf6ff;
    border-radius: 22px;
    padding: 40px 36px;
}

.services-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #111;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    font-size: 18px;
    color: #111;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.services-list i {
    color: #1a73e8;
    font-size: 20px;
}

/* Mobile */
@media (max-width: 576px) {
    .services-box {
        padding: 30px 22px;
    }

    .services-title {
        font-size: 24px;
    }

    .services-list li {
        font-size: 16px;
    }
}

/* <------------------------------------maintenance----------------------------------------------------> */

/* <------------------------------------contact----------------------------------------------------> */

.contact {
    background-color: white;
}

.contact-section {
    padding: 10px 0;
    /* margin-top: 50px !important; */
}

.topmargin {
    margin-top: 30px !important;
}

.contact-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    padding: 30px;
}

.contact-card h4 {
    font-weight: 700;
}

.form-control {
    border-radius: 8px;
    padding: 12px;

}

.submit-btn {
    background-color: #1aa1b8;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    padding: 12px;
    width: 100%;
    border: none;
}

.contact-info h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info p {
    color: #000000;
    margin-bottom: 20px;
}

.info-box {
    margin-bottom: 20px;
}

.info-box i {
    font-size: 24px;
    margin-right: 10px;
    color: #1aa1b8;
}

.highlight {
    color: #1aa1b8;
    ;
    font-weight: 600;
    font-weight: 1.1rem;
}

.lady-img {
    max-width: 150px;
    margin-top: 20px;
}

.bh-title {
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}

.bh-emergency {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: #0d6efd;
    font-weight: 500;
}

.bh-emergency i {
    font-size: 18px;
}

/* <------------------------------------contact----------------------------------------------------> */


/* <------------------------------------footer----------------------------------------------------> */
/* FOOTER */
.footer-section {
    position: relative;
    background: url("footer-wave-bg.png") center/cover no-repeat;
    color: #fff;
    padding: 80px 0 40px;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(3, 25, 84, 0.95),
            rgba(0, 120, 140, 0.95));
    ;
    z-index: 0;
}

.footer-section .container {
    z-index: 1;
}

/* TEXT */
.footer-title {
    font-size: 28px;
    font-weight: 700;
    text-decoration: underline;
}

.footer-text {
    color: #cfd6ff;
    font-size: 15px;
    line-height: 1.6;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* LIST */
.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 10px;
    color: #cfd6ff;
}

.footer-list a {
    color: #cfd6ff;
    text-decoration: none;
}

.footer-list a:hover {
    color: #fff;
}

/* BUTTONS */
.btn-call {
    background: #4aa3df;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
}

.btn-call:hover {
    background: #2d8ed0;
    color: #fff;
}

.btn-email {
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
}

.btn-email:hover {
    background: #fff;
    color: #000;
}

/* CONTACT */
.footer-contact i {
    margin-right: 8px;
    color: #4aa3df;
}

/* DIVIDER */
.footer-divider {
    margin: 40px 0 20px;
    border-color: rgba(255, 255, 255, 0.2);
}

/* BOTTOM */
.footer-bottom {
    font-size: 14px;
    color: #cfd6ff;
}

/* SCROLL TOP */
.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #4aa3df;
    color: #fff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 20px;
}

.mitaname {
    text-decoration: none;
    color: #ffffff;
}

.mitaname:hover {
    color: rgb(255, 0, 0);
}