@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Moon+Dance&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --brand-color: #0096D6;
    --arrow-color: rgba(184, 212, 50, 1);
    --white-color: #FFFFFF;
    --primary-font: "Playfair Display", serif;
    --secondry-font: "Inter", sans-serif;
    --third-font: "Lato", sans-serif;
    --black-color: #000000;
    --blue-color: #17295f;

}

/* =================== topbar ================== */
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Arial, sans-serif;
    /* background-color: #f8f8f8; */
    padding: 8px 20px;
    font-size: 14px;
    border-bottom: 1px solid #821f1e;
}

.topbar-left span {
    margin-right: 15px;
    color: #555;
}

.divider {
    margin: 0 8px;
    color: #aaa;
}

.topbar-right a {
    margin-left: 15px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.topbar-right a i {
    margin-left: 4px;
    font-size: 12px;
}

.topbar i,
.topbar a {
    margin-right: 5px;
    color: #888;
    text-decoration: none;
}

/* ================= end topbar =============== */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

/* Sticky styles after scrolling */
.main-header.sticky {
    position: fixed;
    z-index: 1000;
    padding-bottom: unset;
    padding-top: 5px;
    width: 100%;
    top: -2%;
    box-shadow: 0 4px 6px 0 rgba(12, 0, 46, 0.05);
}

.main-header.sticky {
    background-color: #fff;
    box-shadow: 0 4px 6px 0 rgba(12, 0, 46, 0.05) !important;
    box-shadow: 0 4px 6px 0 rgba(12, 0, 46, 0.05);
}



.navbar {
    /* padding: 0 !important; */
}

.navbar-expand-lg .offcanvas .offcanvas-body {
    justify-content: start !important;
    margin-right: 40px;
}

.navbar-nav li a {
    font-family: var(--primary-font) !important;
    font-weight: 600 !important;
    font-size: 18px !important;
    line-height: 160% !important;
    color: var(--brand-color) !important;
    text-decoration: none !important;
    text-transform: capitalize;
    transition: all .5s !important;
    color: var(--black-color) !important;
}

.navbar-expand-lg .navbar-nav {
    gap: 10px;
    padding-left: 20px;
}

.navbar-nav li a:hover {
    color: var(--brand-color) !important;
    font-weight: 500 !important;
    overflow-x: hidden !important;
}

.navbar-toggler i {
    color: black;
    font-size: 28px;
}

.offcanvas-header .btn-close {
    border: 1px solid var(--gray-color);
}


/* ====================== header =============================== */
.logoheader {
    width: 100%;
    /* background-color: var(--blue-color); */
}

/* ------ headerBtn----- */
.headerBtn svg {
    width: 15px;
    fill: var(--white-color);
    transform: rotate(-45deg);
}

.headerBtn {
    background-color: var(--brand-color);
    padding: 10px 20px;
    border-radius: 10px;
}

.headerBtn a {
    color: var(--white-color);
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: var(--white-color);
    text-decoration: none;
    border-radius: 10px;
}

.arrowbutton {
    padding-left: 10px;
}

.navbarBtnphone {
    display: none;
}

.offcanvas-header .btn-close {
    color: var(--white-color) !important;
}

/* ============= hover btn css ======== */
.headerBtn {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border 0.4s ease;
}

.headerBtn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0%;
    height: 100%;
    background-color: #fff;
    z-index: 1;
    transform: translateX(-50%);
    transition: width 0.4s ease;
}

.headerBtn:hover::before {
    width: 100%;
}

.headerBtn:hover {
    border: 2px solid var(--brand-color);
    cursor: pointer;
}

.headerBtn a {
    position: relative;
    z-index: 2;
    color: #fff;
    text-decoration: none;
    transition: color 0.4s ease;
}

.headerBtn:hover a {
    color: #000;
}

/* ================ nav  hover =================== */
.nav-link {
    position: relative;
    display: inline-block;
    color: #000;
    text-decoration: none;
    z-index: 1;
    padding-bottom: 0;
    overflow: hidden;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background-color: #000;
    z-index: 0;
}

.nav-link:hover::after {
    animation: underline-sweep 0.6s ease-in-out 2;
    background-color: var(--brand-color);
}

@keyframes underline-sweep {
    0% {
        width: 0;
        left: 0;
    }

    50% {
        width: 100%;
        left: 0;
    }

    100% {
        width: 0;
        left: 100%;
    }
}

.footer_wrapper .link_bx ul li a {
    position: relative;
    /* display: inline-block; */
    color: #000;
    text-decoration: none;
    z-index: 1;
    padding-bottom: 3px;
    overflow: hidden;
    transition: color 0.3s ease, font-weight 0.3s ease;

}

.main-contact a:hover {
    color: var(--brand-color) !important;
    font-weight: 500 !important;
}

.main-contact a {
    transition: color 0.3s ease !important;
}

.link_bx ul li a:hover {
    color: var(--brand-color) !important;
    font-weight: 500 !important;
}

.footer_wrapper .link_bx ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background-color: #000;
    z-index: 0;
}

.footer_wrapper .link_bx ul li a:hover::after {
    animation: underline-sweep 0.6s ease-in-out 2;
    background-color: var(--brand-color);
}

@keyframes underline-sweep {
    0% {
        width: 0;
        left: 0;
    }

    50% {
        width: 100%;
        left: 0;
    }

    100% {
        width: 0;
        left: 100%;
    }
}

.main-contact a {
    position: relative;
    color: #000;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    overflow: hidden;
}

.main-contact a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background-color: #000;
    z-index: 0;
    transition: width 0.3s ease;

}

.main-contact a:hover::after {
    width: 100%;
    background-color: var(--brand-color);

}

@keyframes underline-sweep {
    0% {
        width: 0;
        left: 0;
    }

    50% {
        width: 100%;
        left: 0;
    }

    100% {
        width: 0;
        left: 100%;
    }
}


/* ================= banner section ======================== */

.leadership-section {
    background-color: #821f1e;
}

.leadership-section h2 {
    color: #fff;
    /* dark navy blue */
    line-height: 1.3;
    font-family: var(--primary-font);
}

.leadership-section p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    font-family: var(--secondary-font);
}

.btn-primary {
    background-color: #0f2d52;
    border-color: #0f2d52;
}

.btn-outline-primary {
    border-color: #0f2d52;
    color: #0f2d52;
}

.btn-outline-primary:hover {
    background-color: #0f2d52;
    color: #fff;
}

.consultant-card img {
    height: 500px;
    width: 100%;
    display: block;
    object-fit: cover;
}

.consultant-card {
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.consultant-card:hover {
    transform: translateY(-5px);
}

.btn-group {
    display: flex;
    gap: 10px;
}

/* ==================      why choose frame  ==================== */
.choose-section {
    background-color: #fff;
}

/* ===== Top heading line + icon ===== */
.section-top {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.section-top .line {
    height: 2px;
    width: 80px;
    background-color: #2b3b53;
    margin: 0 12px;
    opacity: 0.3;
    border-radius: 2px;
}

.section-top2 .line {
    background-color: #ffff !important;
    opacity: 1 !important;
}

.section-top2 .icon {
    color: #fff !important;
}

.section-top .icon {
    color: #2b3b53;
    font-size: 20px;
}

/* ===== Section title ===== */
.section-title {
    font-weight: 700;
    color: #1b2a46;
    margin-bottom: 40px;
}

/* ===== Box section styles ===== */
.icon-circle {
    background-color: var(--brand-color);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 22px;
}

.choose-box {
    padding: 15px;
}

.choose-box h5 {
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 10px;
    color: #1b2a46;
    font-family: var(--primary-font);
    text-align: left;
}

.choose-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    text-align: left;
}

.choose-section h2 {
    color: var(--black-color);
    font-family: var(--primary-font);
    font-size: 2.5rem;
}

.choose-box {
    background-color: #f8fafb;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.choose-box .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    background-color: var(--brand-color);
    color: #fff;
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.choose-box p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    font-family: var(--secondry-font);
}

/* ======================= about section ===================== */

.abouimg {
    animation: bounceUpDown 6s ease-in-out infinite;
    position: relative;
}

@keyframes bounceUpDown {
    0% {
        top: 0;
    }

    15% {
        top: -55px;
    }

    25% {
        top: -55px;
    }

    35% {
        top: -100px;
    }

    50% {
        top: -100px;
    }

    70% {
        top: 0;
    }

    100% {
        top: 0;

    }
}



.shape-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}



.round-img {
    border-radius: 30px;
}

.circle-img {
    /* aspect-ratio: 1 / 1; */
    object-fit: cover;
}

.about-section {
    padding: 60px 0;
    background: #fff;
}

.subtitle {
    color: #113D48;
    font-weight: 500;
    font-family: Moon Dance;
    font-weight: 400;
    font-style: Regular;
    font-size: 28.72px;
    line-height: 28.72px;
}

.title {
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 42px;
    line-height: 53px;
    color: #113D48;
    margin-bottom: 15px;
}

.description {
    font-family: Inter;
    font-weight: 400;
    /* font-size: 14px;
    line-height: 21px; */
    margin-bottom: 25px;
    color: #6E7070;
    max-width: 430px;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    gap: 15px;
}

.feature i {
    font-size: 24px;
    color: #fff;
    background-color: var(--brand-color);
    padding: 10px;
    border-radius: 50px;
    width: 45px;
    height: 45px;
}

.feature h4 {
    margin: 0;
    font-family: Manrope;
    font-weight: 600;
    font-size: 17.23px;
    line-height: 24.42px;
}

.feature p {
    margin: 0;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 11.49px;
    line-height: 20.1px;
    color: #666;
    max-width: 200px;
}

.learn-btn {
    background-color: #005b94;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 30px;
}

.learn-btn:hover {
    background-color: #004272;
}

.about-person {
    position: absolute;
    bottom: 0;
    right: 0;
}

.person-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.person-bg img {
    max-width: 100%;
    height: auto;
}


/* ================= service section ========== */
.service-box {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px #821f1e33;
    padding: 25px;
    border-top: 6px solid #821f1e;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.service-box h3 {
    font-size: 1.75rem;
    margin-bottom: 10px;
    color: var(--black-color);
    font-family: var(--primary-font);
}

.service-box p {
    color: var(--gray-color);
    font-size: 1rem;
    margin-bottom: 15px;
    font-family: var(--secondary-font);
    font-weight: 500;
}

.service-box ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.service-box ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #444;
    font-family: var(--secondary-font);
    font-weight: 400;
}

.section-subtitle {
    font-size: 20px;
    font-family: var(--secondary-font);
}

.service-box ul li::before {
    content: "✔";
    color: var(--brand-color);
    position: absolute;
    left: 0;
    top: 0;
}

.btn-learn {
    background-color: var(--brand-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 18px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    font-weight: 500;
    text-decoration: none;
}

.btn-learn:hover {
    background-color: #821f1e;
}

/* ==================== service section end ====================== */

.section-subtitle {
    font-style: italic;
    color: #fff;
    margin-bottom: 10px;
}

.text3 {
    padding: 40px 0;
    color: #fff !important;
}

.title3 {
    color: #fff !important;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--black-color);
    font-family: var(--primary-font);
}

.section-desc {
    color: #555;
    margin-top: 10px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #555;
    /* border-top: 1px solid #eee; */
    padding-top: 25px;
}

.card-footer span {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    color: #113D48;
}

.book-btn {
    color: #113D48;
    padding: 6px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.5s ease-in-out;
    border: 0.75px solid #E1E4E5;
    font-weight: 500;
}

.book-btn span i {
    font-size: 12px;
    padding-left: 3px;
    transition: all 0.5s ease-in-out;

}

.book-btn:hover {
    background-color: #004272;
    color: #fff;
}

.book-btn:hover i {
    color: #fff;
}

.testimonial-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-header h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #1b2e5e;
    margin-bottom: 2px;
}

.testimonial-header p {
    font-size: 0.85rem;
    color: #777;
    margin: 0;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 10px;
}

.read-more {
    font-size: 0.85rem;
    color: #1b2e5e;
    text-decoration: none;
    font-weight: 600;
}

.read-more:hover {
    text-decoration: underline;
}

.author {
    font-size: 0.9rem;
    color: #333;
}

.author span {
    font-size: 0.8rem;
    color: #777;
}

.section-subtitle2 {
    max-width: 650px;
    margin: 0 auto !important;
    color: var(--black-color);

}

/* ====================== contact section ====================== */

.contact-section {
    position: relative;
    padding: 60px 20px;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0px 4px 0px 0px #00A0B1;
    background: #E9F6F9;
    border-radius: 0px 0px 12px 12px;
}

.highlighttext {
    color: var(--white-color) !important;
    max-width: 560px;
    text-align: right;
    margin-left: auto;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("../images/Group 1000001021.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 99;
    opacity: 1;
}

.form-container {
    max-width: 1122px;
    margin: auto;
    /* background: #F7FFEB; */
    padding: 50px 100px;
    border-radius: 10px;
    /* box-shadow: 0px 4px 0px 0px #1CA8CB; */
}

.contact-title {
    font-size: 24px;
    color: #3b7d2d;
    font-weight: bold;
}

.contact-subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
}

.contact-form .input-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    padding-top: 30px;
    position: relative;
    z-index: 999;
}

.description2 {
    max-width: 650px !important;
}

.form-field {
    flex: 1;
    position: relative;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    padding-left: 20px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px 40px 12px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background-color: #fff;
    border-bottom: 5px solid #1CA8CB;
    position: relative;
    z-index: 999;
    text-align: left;
}

.form-field textarea {
    resize: vertical;
    min-height: 150px;
}

.form-field .icon {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #1CA8CB;
    z-index: 999;
    margin-right: 20px;
}

.message_icon {
    top: 15% !important;
}

.submit-btn {
    background: linear-gradient(269.77deg, #7BBF44 -1.28%, #3EA345 99.79%);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s;
    position: relative;
    z-index: 999;
}

.sbtn {
    margin-top: 30px;
}

.submit-btn i {
    margin-left: 8px;
}

.submit-btn:hover {
    background-color: #4ca95d;
}

.headlinesc h1 {

    text-align: right !important;
}

.headlinesc {
    color: var(--brand-green) !important;
    position: relative;
}

/* ::after adds the line image */
.headlinesc::after {
    content: '';
    display: block;
    width: 60%;
    height: 10px;
    background-image: url('../images/contacticon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    left: 0px;
    position: relative;
}

.green-promo-section .green-box {
    /* background: linear-gradient(269.77deg, #7BBF44 -1.28%, #3EA345 99.79%); */
    border-radius: 12px;
    padding: 40px;
}

.image-promo {
    max-width: 100%;
    border-radius: 10px;
}

.green-promo-section .btn-light {
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 5px;
    color: #3EA345;
}

.makebtn {
    z-index: 999;
}

/* ===================== map section =============== */
.google-map-card {
    background-image: url('../images/map2.jpeg');
    background-size: cover;
    background-position: center;
    height: 800px;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}



.map-overlay {

    background-color: rgba(255, 255, 255, 0.3);
}

.map-logo {
    position: relative;
    animation: floatUpDownPause 4s ease-in-out infinite;
}

@keyframes floatUpDownPause {
    0% {
        transform: translateY(0);
    }

    20% {
        transform: translateY(0);
        /* Pause at top */
    }

    50% {
        transform: translateY(50px);
    }

    70% {
        transform: translateY(50px);
        /* Pause at bottom */
    }

    100% {
        transform: translateY(0);
    }
}

.map-logo {
    width: 181px;
    height: auto;
    transition: transform 0.3s ease;
    position: relative;
    top: 84px;
}

.offcanvas-body {
    justify-content: center;
}

.philosophy-section {
    background: #f8fff5;
}

.philosophy-box,
.principles-box {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 12px;
    border: 1px solid #e7efdf;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.choose-box2 h5,
.choose-box2 p {
    text-align: left;
    color: var(--black-color) !important;
}

.philosophy-box1 {
    background: #00a0b121 !important;
}

.experience-box {
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #e6e6e6;
}
.dash-bullet {
    font-weight:bold;
    margin-right:8px;
    color:var(--brand-color);
}
.choose-rown h5{
    font-size: 17px;

}
.experience-box h5{
    font-family: var(--primary-font);
}
.experience-section ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.choose-box2 {
    background-color: #821f1e26 !important;
}

.consultant-card2 img {
    height: 400px !important;
}

.icon-square {
    width: 42px;
    height: 42px;
    background: var(--brand-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.principle-list {
    padding-left: 0;
    list-style: none;
}

.principle-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    color: #2a3f4c;
    font-family: var(--secondary-font);
    font-weight: 400;
}

.principle-list i {
    color: var(--brand-color);
    margin-right: 8px;
    margin-top: 3px;
    font-size: 15px;
}

.philosophy-box h5,
.principles-box h5 {
    font-family: var(--primary-font);
}

.philosophy-box p {
    color: var(--gray-color);
    line-height: 1.6;
    font-family: var(--secondary-font);
    font-weight: 400;
}

/* ==============ReadytoStrengthen ====================== */
.ReadytoStrengthen2 {
    background-color: unset !important;
    box-shadow: 0 4px 14px rgba(130, 31, 30, 0.75);

}

.ReadytoStrengthen2 h2,
.ReadytoStrengthen2 p {
    color: var(--black-color) !important;
}

.ReadytoStrengthen {
    background-color: #821f1e;
    padding: 80px 0;
}

.servicesection {
    /* background-color: #63c2e8; */
    background-color: var(--brand-color);
    padding: 20px 0;

}

/* ================ footer ============================ */


/* Subscribe section */
.subscribe-section {
    background: url('../images/Subscribe_background.png') no-repeat center center/cover;
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.subscribe-section h2 {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 50px;
    line-height: 56px;
    text-align: center;
    margin-bottom: 60px;
}

.subscribe-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
}

.subscribe-form input {
    flex: 1;
    padding: 15px;
    border: none;
    outline: none;
    font-size: 16px;
}

.subscribe-form button {
    padding: 15px 25px;
    background: #0D4671;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.mapsection {
    overflow: hidden;
}

/* Footer styling */
.footer {
    background-color: var(--brand-color);
    color: white;
    padding: 60px 0px 5px 0px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: auto;
}

.footer-links ul {
    padding-left: unset !important;
}

.footer-about,
.footer-links,
.footer-social {
    flex: 1 1 200px;
    margin: 15px;
}

.footer-about h3 {
    font-family: 'Georgia', serif;
    font-size: 28px;
    margin-bottom: 10px;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 10px;
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 21px;
    line-height: 24px;
    color: #FFFFFF;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin: 5px 0;
}

.footer-links ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-family: Lato;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    opacity: 0.9;
}

.footer-social .social-icons span {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: white;
    margin-right: 8px;
    border-radius: 4px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
    color: #fff;
    border-top: 1px solid #FFFFFF;
    padding-top: 15px;
    font-family: var(--secondary-font);
}

.flogo img {
    width: 200px;
    height: 80px;
    padding-bottom: 10px;
}

.social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: white;
    color: #043b5c;
    margin-right: 8px;
    text-align: center;
    line-height: 35px;
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.6s ease-in-out;

}

.social-icons a:hover {
    background: var(--brand-color);
    color: white;
    border: 1px solid #fff;
}

.footer-links ul li a {
    position: relative;
}

.footer-links ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease-in-out;
}

.footer-links ul li a:hover::after {
    width: 100%;
}


/* ========================= About Us Banner Section =============================*/
.aboutBanner {
    position: relative;
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white-color);
    overflow: hidden;
}

/* Background Image */
.aboutbannerImg {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}


.aboutbannerImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aboutbannerImg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.bannerContent {
    position: relative;
    z-index: 2;
    padding-top: 30px;
    /* text-align: left; */
}

.bannerContent .titletext {
    font-size: 56px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 10px;
    font-family: var(--primary-font);
    color: var(--white-color);
    text-transform: uppercase;
}

.breadcrumbs-custom-path {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}

.breadcrumbs-custom-path li {
    display: inline-block;
    color: var(--white-color);
    font-size: 22px;
    font-family: var(--secondary-font);
    font-weight: 700;
}

.ctabtn2 {
    background-color: unset !important;
    border: 2px solid var(--white-color);
    padding: 12px 20px !important;
}

.ctabtn1 {
    border: 2px solid var(--white-color);
}

.cta-two__img {
    animation: rotateBackAndForth 20s ease-in-out infinite;
    display: inline-block;
}

.active span {
    position: relative;
    top: 2px;
}

@keyframes rotateBackAndForth {
    0% {
        transform: rotate(0deg);
    }

    40% {
        transform: rotate(180deg);
    }

    50% {
        transform: rotate(180deg);
    }

    90% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.breadcrumbs-custom-path li a {
    color: var(--white-color);
    text-decoration: none;
    transition: color 0.4s ease-in-out;
    font-weight: 600;
    font-family: var(--secondary-font);
    font-size: 24px;
}

.breadcrumbs-custom-path li a:hover {
    /* text-decoration: underline; */
    color: var(--brand2);
}



/*--------------------------------------------------------------
# CTA Two
--------------------------------------------------------------*/
.cta-two {
    position: relative;
    display: block;
    z-index: 2;
    padding: 60px 0;
    background-color: var(--black2-color);
}

.cta-two__inner {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 30px 71px 30px;
    padding-right: 109px;
    z-index: 1;
}

.cta-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}


.cta-two__bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .90;
    background: linear-gradient(to bottom, #1976A5, #0D4671);
    border-radius: 20px;
    z-index: -1;
}

.cta-two__img-and-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 145px;
}

.cta-two__img {
    position: relative;
    display: block;
    max-width: 324px;
    width: 100%;
}

.cta-two__img img {
    width: 100%;
    border-radius: 50%;
}

.cta-two__content {
    position: relative;
    display: block;
}

.cta-two__title {
    font-size: 49px;
    font-weight: 700;
    line-height: 59px;
    letter-spacing: -1.2px;
    color: var(--white-color);
    font-family: var(--primary-font);
}

.cta-two__text {
    color: var(--white-color);
    margin-top: 9px;
    margin-bottom: 22px;
    font-family: var(--secondary-font);
    font-size: 18px;
    padding: 20px 0;
}

.cta-two__btn-box {
    position: relative;
    display: block;
    display: flex;
    gap: 20px;
}

.callusbtn a {
    background-color: unset !important;
    border: 2px solid var(--brand-color);
    padding: 8px 17px 6px 17px !important;
}

.callusbtn a:hover {
    background-color: var(--brand-color) !important;
}

.featuresabout a {
    background-color: var(--brand-color);
    color: var(--white-color);

}

.featuresabout h4 {
    color: var(--brand-color);
}

.aboutimg {
    width: 100%;
    /* or set a fixed width */
    max-width: 600px;
    /* optional: control size */
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    /* optional: smooth corners */
}

.aboutimg img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
    display: block;
    object-fit: cover;
}

.aboutimg:hover img {
    transform: scale(1.1);
}



/* =================================== clientFeedback ===================== */
.clientFeedback {
    position: relative;
    padding: 80px 0px 30px 0px;
    background-image: url(../images/feedbackbackground.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 1;
    overflow: hidden;
}

.clientFeedback::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background: linear-gradient(88.74deg, #1C1E22 57.21%, rgba(255, 255, 255, 0.31) 100%);
    pointer-events: none;
}


.flip-card {
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    min-height: 380px;
}

.feedbackcarousel .owl-stage-outer {
    padding: 35px 0px 20px 0px !important;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    padding: 30px 20px;
}

.flip-front {
    background-color: var(--brand-color);
    z-index: 2;
}

.flip-back {
    background-color: #23afce;
    transform: rotateY(180deg);
}

.testimonial-imgs {
    width: 80px;
    height: 80px;
    border: 4px solid #fff;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card {
    background-color: #E9F6F9;
    position: relative;
    overflow: hidden;
}

.testimonial-top-triangle {
    width: 100%;
    height: 80px;
    background-color: #111;
    clip-path: polygon(0 100%, 0 0, 50% 30%, 100% 0, 100% 100%);
}

.testimonial-img-wrapper {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.testimonial-imgs img,
.feedbackcarousel .owl-item img {
    width: 130px !important;
    height: 130px !important;
}

.testimonialssec::after {
    /* margin-top: 60px; */
    bottom: 0 !important;
    top: unset !important;
    height: 350px !important;
}

.testimonial-imgs {
    color: aliceblue;
    width: 130px !important;
    height: 130px;
    border-radius: 50%;
    border: 4px solid var(--brand-color);
    object-fit: cover;
    background-color: white;
    position: absolute;
    z-index: 99;
    margin: 0 auto;
    left: 29%;
    top: -34px;
}

.flip-card-face h6 {
    color: var(--white-color) !important;
    padding-top: 110px;
    font-family: var(--secondary-font);
    font-weight: 700 !important;
    font-size: 17px;
    line-height: 24px;
    text-align: center;
}

.flip-card-face h4 {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    text-align: center;
    color: var(--brand-color);
    padding-top: 6px;
}

.flip-card-face h5 {
    font-family: var(--secondary-font);
    font-weight: 700;
    font-size: 21px;
    line-height: 30px;
    letter-spacing: -0.21px;
    text-align: center;
    vertical-align: middle;
    color: var(--white-color);
}

.flip-card-face p {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: var(--white-color);
}

.testimonial-content {
    margin-top: 60px;
}

.flip-card-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    clip-path: polygon(0 0, 50% 60px, 100% 0, 100% 100%, 0 100%);
    overflow: hidden;
}


/*----------------------------------------*/
/*  BLOG STYLE ONE CSS START
/*----------------------------------------*/
.blog-section-one {
    padding: 60px 0;
    background-color: var(--black2-color);
    position: relative;
    background-image: url(../images/background_service.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 1;
}

.blog-title-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-style-one .blog-content {
    background: #fff;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.08);
    padding: 30px;
}

.blog-style-one .post-meta span {
    font-size: 14px;
}

.blog-style-one .post-meta span:hover {
    color: var(--theme-color);
}

.blog-style-one .post-meta span i {
    color: var(--theme-color);
    margin-right: 8px;
}

.blog-style-one .post-meta {
    display: inline-flex;
    gap: 26px;
}

.blog-style-one hr {
    margin: 15px 0;
}

.blog-style-one .blog-content .blog-title:hover {
    color: var(--theme-color);
}

/* Shine start */
.blog-style-one .blog-image {
    position: relative;
    display: block;
    overflow: hidden;
}

.box4 {
    margin-top: 70px !important;
}

.blog-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px 15px 0px 0px;
}

.blog-style-one .blog-content {
    border-radius: 0px 0px 15px 15px;
}

.blog-style-one .blog-image:before {
    position: absolute;
    top: 0;
    left: -75%;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    transform: skewX(-25deg);
    z-index: 99;
}

.blog-style-one:hover .blog-image:before {
    animation: shine 1.5s;
}

/* Shine animation */
@keyframes shine {
    100% {
        left: 125%;
    }
}

.roof-section h2 {
    padding-bottom: 40px;
}

/* shine end */


@media only screen and (max-width: 991px) {

    .blog-title-box {
        align-items: self-start;
        flex-direction: column;
        gap: 20px;
    }

}

.blog-title {
    font-family: var(--primary-font);
    color: var(--black-color);
    padding-bottom: 20px;
    font-weight: 700;
}

.post-meta span a {
    font-family: var(--primary-font);
    color: var(--black-color);
    font-weight: 500;
}

/* button style five */
.blog-link a,
.blog-title a,
.post-meta a {
    text-decoration: none;
    color: var(--black-color);
}

.blog-link a i {
    position: relative;
    top: 2px;
    transition: all 0.5s ease-in-out;
}

.blog-link:hover i {
    transform: rotate(-45deg);

}

.primary-btn-5 {
    color: var(--theme-color-1);
    font-size: 14px;
    font-weight: 500;
    background-color: #fff;
    border: 1px solid #ECECEC;
    display: inline-flex;
    align-items: center;
    line-height: normal;
    white-space: nowrap;
    padding: 15px 20px;
    gap: 10px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    transition: all .6s
}

.primary-btn-5 span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--brand-color);
    transition: all .6s;
    transform: translate(-50%, -50%);
    z-index: -1
}

.primary-btn-5:hover {
    color: #fff;
    border: 1px solid var(--brand-color);
}

.primary-btn-5:hover span {
    width: 225%;
    height: 1000.5px
}

.primary-btn-5:active {
    background-color: #fff
}

.help-map-section {
    padding: 60px 0;
}

.help-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--black-color);
    font-family: var(--primary-font);
}

.help-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.help-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.help-list li i {
    font-size: 22px;
    color: var(--brand-color);
    margin-top: 5px;
}

.help-list h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    font-family: var(--primary-font);
    color: var(--black-color);
}

.help-list p {
    margin: 3px 0 0;
    color: #555;
    font-family: var(--secondary-font);
}

.map-box iframe {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(130, 31, 30, 0.4);
    /* red shadow */
}

/* ========================== contact  us page ================= */
.contact-one_info {
    background-color: #E9F6F9;
}


/* Section Titles */
.sec-title.centered {
    text-align: center;
    margin-bottom: 50px;
}

.inner-container {
    padding-top: 40px;
}

.contact-form_one,
.contact-one_info {
    padding: 60px 0;
}

/* Contact Info Blocks */
.contact-info_block {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    /* border-radius: 12px 0px 0px  ; */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.contact-info_block:hover {
    transform: translateY(-5px);
}

.contact-info_block-icon {
    font-size: 40px;
    color: var(--brand-color);
    margin-bottom: 15px;
}

.contact-info_block h4 {
    font-family: var(--primary-font);
    font-weight: 500;
    font-size: 32px;
    line-height: 53px;
    color: #113D48;
    margin-bottom: 15px;
    margin-bottom: 10px;
}

.contact-info_block p,
.contact-info_block a {
    display: block;
    margin-bottom: 5px;
    font-family: var(--secondary-font);
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.21px;
    text-align: center;
    vertical-align: middle;
    color: var(--gray-color);
    text-decoration: none;
}

/* Map */
.map-one iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
    margin-top: 80px;
}

/* Contact Form */
.contact-form_one .contact-form {
    /* background: #fff; */
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
    position: relative;

}

.contact-form_one {
    position: relative;
}

.contact-form_one .contact-form::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/background_service.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 15px;
    z-index: -1;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--brand-color);
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff3d3d;
    outline: none;
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

/* Button Styling */
.theme-btn.btn-style-three {
    background: var(--brand-color);
    color: #fff;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.theme-btn.btn-style-three:hover {
    background: var(--blue-color);
}

.theme-btn.btn-style-three .btn-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.theme-btn.btn-style-three .btn-wrap .text-one,
.theme-btn.btn-style-three .btn-wrap .text-two {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.theme-btn.btn-style-three .btn-wrap .text-two {
    display: none;
}

.school-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e5e5e5;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.06);
    transition: 0.2s ease;
}

.school-card:hover {
    transform: translateY(-3px);
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
}

.school-logo {
    width: 60px;
}

.school-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    font-family: var(--secondary-font);
}

.step-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(130, 31, 30, 0.75);
    height: 100%;
    /* Ensures equal height */
    display: flex;
    flex-direction: column;
}

.step-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--brand-color);
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
}

.step-title {
    font-weight: 700;
    margin-bottom: 10px;
    font-family: var(--primary-font);
}

.step-text {
    font-size: 14px;
    color: #555;
    font-weight: 500;
    font-family: var(--secondary-font);
}

.info-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    height: 100%;
    border: 1px solid #e5e7eb;
}

.icon-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: linear-gradient(135deg, #1f3c55, #2b4f6b); */
    color: #fff;
    font-size: 22px;
    margin-bottom: 20px;
}

.info-card h5 {
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 15px;
    font-family: var(--primary-font);
}

.info-card ul {
    padding-left: 18px;
}

.info-card ul li {
    margin-bottom: 8px;
    color: var(--gray-color);
    font-family: var(--secondary-font);
    font-weight: 500;
}

/* ===========================  book now ======================== */


.booknowsection-box {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.booknowsection-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-color);
    position: relative;
    padding-left: 25px;
}

.booknowsection-title-line {
    content: "";
    width: 10px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-left: 4px solid var(--brand-color);
}

.booknowsection-img img {
    border-radius: 12px;
    max-width: 100%;
    height: auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Form Elements */
.booknowsection form .form-control,
.booknowsection form .form-select,
.booknowsection form textarea {
    border-radius: 8px;
    border: 1px solid var(--brand-color);
    padding: 10px 40px 10px 12px;
    font-size: 15px;
    transition: border-color 0.3s;
    position: relative;
    color: var(--brand-color);
    font-family: var(--primary-font);
    font-weight: 500;

}

.booknowsection {
    padding: 60px 0 !important;
}

.booknowsection .form-label,
.booknowsection.form-check-label {
    position: relative;
    color: var(--brand-color);
    font-family: var(--primary-font);
    font-weight: 500;
}

.booknowsection form .form-control:focus,
.booknowsection form .form-select:focus,
.booknowsection form textarea:focus {
    border-color: var(--brand-color);
    outline: none;
    box-shadow: none;
}

/* Input Icons */
.form-group {
    position: relative;
}

.form-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brand-color);
    pointer-events: none;
}

/* Radio Buttons Inline */
.form-check-inline {
    margin-right: 15px;
}

/* Button */
.booknowsection .btn-warning {
    background-color: var(--brand-color);
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: var(--white-color) !important;
}

.booknowsection .btn-warning:hover {
    background-color: #fff !important;
    border: 1px solid var(--brand-color);
    color: var(--brand-color) !important;

}

.booknowsection .btn-warning:hover {
    background-color: var(--brand-color);
    color: #fff;
}

/* Responsive */
@media (max-width: 767px) {
    .booknowsection-title {
        font-size: 20px;
    }
}


/* ========================= our feet===================== */

.taxi-info-section {
    background: #fefdfc;
    padding-top: 80px;
}

.taxi-info-section img {
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
    /* Blue shadow */

}

.taxi-box {
    margin-bottom: 60px;
}

.contfleet {
    background-color: var(--brand-color);
    padding: 65px 20px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
    /* Blue shadow */
    border-radius: 6px;
}

.taxi-info-section .title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    font-family: var(--primary-font);
}

.taxi-info-section .desc {
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
}

.taxi-feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.taxi-feature-list li {
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.taxi-feature-list i {
    color: #fff;
    font-size: 18px;
    margin-right: 10px;
}

.btn-yellow {
    background-color: #fff;
    color: #000;
    font-weight: 700;
    padding: 12px 28px;
    display: inline-block;
    border-radius: 4px;
    text-decoration: none;
    box-shadow: 3px 3px 0 #000;
    transition: all 0.3s ease;
}

.ourfleett .description {
    margin: 0 auto;
    padding-top: 0;
    padding-bottom: 50px !important;
}

.fleetsect p {
    max-width: 1000px !important;
}

.fleetsect p {
    margin: 0 auto;
    text-align: center;
}

.fleetsect::after {
    height: 350px !important;
}

.ourfleett h2 {
    color: var(--brand-color) !important;
}

.btn-yellow:hover {
    background-color: var(--brand-color);
    color: #fff;
}

/* ======================= work areas ===================== */
.area-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease-in-out;
    border-left: 5px solid var(--brand-color);
}

.area-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(13, 110, 253, 0.2);
    background: var(--brand-color);
    border-left: 5px solid #fff;

}

.area-card:hover h4,
.area-card:hover li,
.area-card:hover i {
    color: #fff;
}

.area-card-section {
    padding: 80px 0;
    background-color: #E9F6F9;
}

.area-card h4 {
    color: var(--brand-color);
    font-size: 45px;
    margin-bottom: 15px;
    font-weight: 900;
    font-family: Moon Dance;

    transition: all 0.5s ease-in-out;
}

.area-card ul {
    padding: 0;
    list-style: none;
}

.area-card ul li {
    font-size: 16px;
    color: #6E7070;
    margin-bottom: 10px;
    display: flex;
    transition: all 0.5s ease-in-out;

    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    font-family: var(--primary-font);
    font-weight: 500;
}

.area-card ul li i {
    color: var(--brand-color);
    transition: all 0.5s ease-in-out;

}

.area-card:hover ul li i {
    transform: scale(1.2);
}

tbody tr:hover {
    background-color: var(--brand-color) !important;
    /* Light blue */
    cursor: pointer;
}

/* =========================== service page ========================= */
.listservice ul {
    list-style: none;
    padding: 0;
}

.listservice li {
    font-size: 18px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-color);
    transition: color 0.3s ease;
    font-weight: 500;
}

.listservice li i {
    color: #0d6efd;
}

.w-100 {
    max-width: 90%;
}

.serviceimg {
    height: 580px;
    border: 5px solid var(--brand-color);
}

.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Base styling */
.price-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 15px;
    background: rgb(255, 255, 255) !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.6s ease-in-out;
    border-radius: 25px 0px 25px 0px;
    border-color: var(--brand-color);
}

/* Lift, scale, and glow */
.price-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background-color: #E9F6F9;
}

/* Optional Shine Sweep Animation */
.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1));
    transform: skewX(-25deg);
    transition: none;
    z-index: 2;
}

/* Trigger shine on hover */
.price-card:hover::before {
    animation: shine 1s ease-in-out forwards;
}

/* Shine keyframes */
@keyframes shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

.price-card h5 {
    font-family: var(p);
    font-weight: 700;
    font-size: 24px;
    text-transform: capitalize;
}

.price-card p {
    font-family: var(--primary-font);
    font-size: 18px;
}

/* ======================================== privacy-section ======================= */
.privacy-section {
    background-color: var(--brand-color);
}

.cardpricy {
    font-family: var(--primary-font);
    color: var(--brand-color);
    text-transform: capitalize;

}

.cardpricy {
    background-color: #E9F6F9;
}

.privacy-section ul {
    padding-left: 20px;
}

.privacy-section li {
    margin-bottom: 5px;
}

.privacy-section h4 {
    font-weight: bold;
}