:root {
    --white-color: #ffffff;
    --primary-color: #17282A;
    --secondary-color: #337676;
    --title-color: #111111;
    --font-family: "Lato", sans-serif;
    --paragraph-color: #313030;

    /* RGBA color setup */
    --primary-color-rgb: 23, 40, 42;
}

body {
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    color: var(--paragraph-color);
}

/* typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0px;
    font-weight: 600;
}
h1{
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 25px;
}
h2 {
    font-size: 45px;
    margin-bottom: 20px;
    line-height: 1.2;

}

h2 span {
    color: var(--secondary-color);
}

h3 {
    font-size: 28px;
    margin-bottom: 25px;
    line-height: 1.5;
}
h4{
    line-height: 1.5;
}
.section-title {
    font-size: 45px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-title span {
    color: var(--secondary-color);
}

.section-title--sm {
    font-size: 36px;
}

.section-subtitle {
    font-size: 28px;
    font-weight: 600;
    color: var(--title-color);
    margin-bottom: 25px;
}

p {
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 20px;
}

ul,
ol {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

ul li::marker {
  color: #337676;
}
/* global */
.ml-5 {
    margin-left: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.row--align-center {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.o-section-padding {
    padding: 80px 0px;
}

.o-content-spacing {
    padding: 15px 0px;
}

.o-section {
    position: relative;
    overflow: hidden;
}

.btn {
    border: none;
    border-radius: 5px !important;
    text-decoration: none !important;
    display: inline-block !important;
    padding: 10px 30px !important;
    font-size: 16px !important;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
    transition: 0.3s;
    text-decoration: none;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.btn-secondary:hover {
    background-color: color-mix(in srgb, var(--secondary-color), black 20%);
    color: var(--white-color);
    transition: 0.3s;
    text-decoration: none;
}

.btn-lg {
    padding: 20px 30px !important;
    font-size: 20px;
    font-weight: 600;
}

.btn-rounded {
    border-radius: 50px !important;
}

/* header */
header {
    padding: 12px 0px;
    background-color: #f4f4f4;
    border-bottom: 1px solid #e6e6e6;
}

.header__logo {
    max-width: 200px;
    width: 100%;
}

.ph-height {
    height: 250px;
}
.ph-height img {
    height: 100%;
    width: 100%;
}
.google-logo {
    height: auto;
    width: 200px;
}

.services-about-us li {
    width: calc((100% - 60px) / 3);
    /* background: red; */
    padding: 15px;
    border: 1px solid #f2f2f2;
    box-shadow: 0 10px 15px rgba(0, 0, 0, .05);
    text-align: center;
    align-items: center;
    height: auto;
    justify-content: center;
    display: flex;
    min-height: 100px;
}
.my-5 {
    margin: 50px 0;
}
.align-items-center {
    display: flex;
    align-items: center;
}
.abt-us-img img {
    width: 100%;
}
.abt-contact-us {

}

.header__right {
    text-align: right;
}

.header-phone {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.header-phone--right {
    float: right;
}

.header-phone__icon {
    font-size: 24px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}

.footer-social__icon {
    font-size: 24px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}

.header-phone__h3 {
    font-size: 25px;
    margin-bottom: 4px !important;
}
.abt-contact-details {
    margin-top:50px;
}
.services-about-us ul {
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
}

.header-phone__h4 {
    font-size: 19px;
    font-weight: 600;
    margin: 0px;
    margin-bottom: 2px;
    text-align: right;
}

.header-phone__number {
    font-size: 17px;
    margin: 0px;
    font-weight: 600;
}
header #header-menu nav ul {
    gap: 0 !important;
}
header #header-menu nav {
    margin-top: 0 !important;
}
header nav {
    margin-top: 17px;
}

header nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    flex-wrap: wrap;
    font-size: 17px;
    justify-content: center;
    margin-bottom: 0px;
}

header nav ul li a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
}

header nav ul li a:hover {
    color: var(--secondary-color);
    transition: 0.3s;
    text-decoration: none;
}

.header-mobile-menu {
    font-size: 24px;
    margin-top: 20px;
    /* float: right; */
}

.o-dropdown {
    display: none;
}
.o-dropdown {
  position: fixed;
  top: 0;
  right: -300px; /* Hidden off-screen */
  width: 250px;
  height: 100%;
  background: #222;
  color: #fff;
  overflow-y: auto;
  transition: right 0.3s ease-in-out;
  z-index: 9999;
  padding: 20px;
}
/* When active, slide in */
.o-dropdown.active {
  right: 0;
}


/* Optional overlay for dim effect */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  display: none;
}
.menu-overlay.active {
  display: block;
}

/* Style the mobile nav items */
.mobile-nav li {
  list-style: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 10px 0;
}
.mobile-nav a {
  color: #fff;
  text-decoration: none;
  display: block;
}
/* .o-dropdown ul {
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: 600;
}

.o-dropdown ul li a {
    text-decoration: none;
    color: var(--primary-color);
}

.o-dropdown.o-toggle-visible {
    display: block !important;
} */
/* Close icon and header inside mobile menu */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 15px;
  padding-bottom: 10px;
}

.close-menu {
  font-size: 22px;
  cursor: pointer;
  color: #fff;
  transition: color 0.3s;
}

.close-menu:hover {
  color: #f44336; /* Red hover */
}

.mobile-menu-header h4 {
  color: #fff;
  font-size: 18px;
  margin: 0;
}
/* BANNER */
.o-banner {
    height: 550px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.o-banner h1 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--white-color);
}

.o-banner p {
    font-size: 36px;
    font-weight: 500;
    color: var(--white-color);
}


.o-overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--primary-color-rgb), 0.4);
}

.content-area {
    position: relative;
    z-index: 1;
}

.o-overlay {
    color: #fff;
}
.abt-us {
    display: flex;
    margin-top: 10px !important;
    align-items: end;
}
.o-about-us-content {
    width: 937px;
    padding-bottom: 40px;
}
.o-about-us {
    width: 500px;
    display: flex;
    height: 100%;
    align-items: end;
}
.px-5 {
    padding-right: 48px;
    padding-left: 48px;
}
input[type="text"],
input[type="email"],
input[type="tel"] {
    height: 46px !important;
    border-radius: 8px !important;
    border: 1px solid rgba(209, 213, 219, 0.40) !important;
    background: #F9FAFB !important;
    color: #6B7280 !important;
    font-family: "Inter", sans-serif !important;
    font-size: 14px !important;
    font-style: normal;
    font-weight: 400 !important;
    line-height: 21px !important;
    padding: 12px !important;
    width: 100%;
    outline: none;
    cursor: pointer;
}
.wpcf7-submit {
    background-color: #337676;
    color: #ffffff;
    border: 0;
    border-radius: 3px;
    padding: 5px 20px;
}
form label {
    font-size: 16px;
    color: #6e6e6e;
}
.services-list-row {
    display:flex; 
    flex-wrap:wrap; 
    gap:20px;
}
.service-card {
    width: calc((100% - 60px) / 3);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    background: #fff;
}
.service-image {
    height: 240px;
}
.service-image img {
    border-radius: 6px 6px 0 0 !important;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}
.service-content {
    padding: 0 15px;
}
.service-content h3 {
    font-size: 22px;
}
.service-content .description {
    font-size: 15px;
}
textarea {
    border-radius: 8px !important;
    border: 1px solid rgba(209, 213, 219, 0.40) !important;
    background: #F9FAFB !important;
    color: #6B7280 !important;
    font-family: "Inter", sans-serif !important;
    font-size: 14px !important;
    font-style: normal;
    font-weight: 400 !important;
    line-height: 21px !important;
    padding: 12px !important;
    width: 100%;
    outline: none;
    cursor: pointer;
}

/* footer */
footer {
    background-color: color-mix(in srgb, var(--primary-color), black 40%);
    color: var(--white-color);
    padding: 20px 0px 10px

}

footer a {
    color: var(--white-color);
    text-decoration: none;
}

footer a:hover {
    color: var(--secondary-color);
    text-decoration: none;
    transition: 0.3s;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

}

.footer-social--center {
    justify-content: center;
    align-items: center;
}

footer nav ul {
    list-style: none;
    padding-left: 0px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.header-logo {
    /* height: 120px; */
    height: 130px;
}
.header-logo img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.footer-logo img {
    height: auto;
    width: 100px;
    text-align: center;
    margin: 0 auto;
    display: block;
}
/* Highlight current menu item */
/* Current menu item underline */
.nav li.current-menu-item > a,
.nav li.current_page_item > a {
    position: relative;
    color: #337676; /* Text color for active link */
}

.nav li.current-menu-item > a::after,
.nav li.current_page_item > a::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;          /* Thickness of underline */
    background: #337676;  /* Color of underline */
    position: absolute;
    bottom: 0;          /* Space below text */
    left: 0;
}

/* Pagination */
.pagination {
    text-align: center;
    margin-top: -40px;
    margin-bottom: 40px;
    display: block;
}

.pagination a,
.pagination span {
    display: inline-block;
    margin: 0 5px;
    padding: 8px 14px;
    border-radius: 5px;
    text-decoration: none;
    color: #17282A;
    border: 1px solid #17282A;
    transition: all 0.3s ease;
    font-weight: 500;
}

.pagination a:hover {
    background-color: #17282A;
    color: #fff;
}

.pagination .current {
    background-color: #17282A;
    color: #fff;
    border: 1px solid #17282A;
}
.pb-top {
    padding: 80px 0px 0 0;
}

.footer-links ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.parallax-window {
    min-height: 400px;
    background: transparent;
}
.car-overlay-img img{
    width: 800px;
    height: 500px;
}
.map-responsive {
  position: relative;
  overflow: hidden;
  height: 350px;
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.contact-address-m {
    margin-right: 50px;
}
.map-responsives iframe {
    height: 350px;
    width: 430px;
}
.contact-section-padding{
  padding: 40px 0;
}
@media(max-width: 1023px) {
    footer .o-content-spacing {
        text-align: center;
    }
    .service-card {
        width: calc((100% - 40px) / 2);
    }
    .services-about-us li {
        width: calc((100% - 40px) / 2);
    }
    .row--align-center {
        gap: 0;
    }
    .header-phone__h3,
    .header-phone__icon {
        display: none !important;
    }
    #header-menu {
        display: none;
    }
    .o-toggle-button {
        display: block !important;
        font-size: 24px;
        cursor: pointer;
        z-index: 10000;
    }
    .o-dropdown {
        display: block;
    }
    .map-responsives iframe {
        height: 350px;
        width: auto;
    }
}
@media(max-width: 767px) {
    .header-phone__h3,
    .header-phone__icon {
        display: none !important;
    }
    #header-menu {
        display: none;
    }
    .o-section-padding {
        padding: 50px 0px;
    }
    .o-banner h1 {
        font-size: 45px;
    }
    .header-phone__h3 {
        font-size: 18px;
        margin-bottom: 5px !important;
    }
    .o-dropdown {
        display: block;
    }

    .header-phone__h4 {
        font-size: 16px;
    }
    
    .align-items-center {
        display: block;
    }

    .abt-us-img {
        margin-bottom: 20px;
    }

    .abt-contact-details {
        margin-top: 20px;
    }

    .abt-map {
        margin-top: 30px;
    }
    .services-about-us li {
        width: 100%;
    }
    .service-card {
        width: calc((100% - 0px) / 1);
    }
    .pagination {
        margin-top: -20px;
    }
    .car-overlay-img img {
        width: auto !important;
        height: auto !important;
    }
    .o-banner p {
        font-size: 30px;
    }
    h1{
        font-size: 50px;
        font-weight: 800;
        margin-bottom: 25px;
        }
    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 22px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-title--sm {
        font-size: 30px;
    }

    .section-subtitle {
        font-size: 22px;
    }

    p {
        font-size: 17px;
        line-height: 1.4;
    }

    ul,
    ol {
        font-size: 17px;
        line-height: 1.6;
    }
    .header__logo {
        max-width: 150px;
    }
    .map-responsives iframe {
        height: 350px;
        width: auto;
    }
}

.map-responsives iframe {
    width: 100%;
}

/* ===== FULL WIDTH + FIXED HEIGHT ===== */

.video-wrapper {
    width: 100%;
}

/* Force all WP video containers full width */
.video-wrapper .wp-video,
.video-wrapper .wp-video-shortcode,
.video-wrapper .mejs-container,
.video-wrapper .mejs-inner,
.video-wrapper .mejs-mediaelement {
    width: 100% !important;
    max-width: 100% !important;
}

/* FIXED HEIGHT + FULL WIDTH */
.video-wrapper video,
.video-wrapper .mejs-mediaelement video {
    width: 100% !important;
    height: 640px !important; /* 👈 change this value if needed */
    object-fit: cover; /* keeps video looking good */
}

/* Match player container height */
.video-wrapper .mejs-container {
    height: 640px !important;
}

/* Controls full width */
.video-wrapper .mejs-controls {
    width: 100% !important;
}

.fb-btn {
    display: inline-block;
    background: #337676; /* Facebook blue */
    color: #fff !important;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.fb-btn:hover {
    background: #145dbf;
    color: #fff;
    transform: translateY(-2px);
}

.about-us-img {
    max-width: 100%;
    height: auto;
}

/* Menu Area */

@media (max-width: 1024px) {
    .row--align-center {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    /* .header-logo {
        height: 80px;
    } */

    .header-logo {
        height: auto;
    }

    .header-logo img {
        max-height: 80px;
        width: auto;
        height: auto;
        display: block;
    }

    .header-phone__number {
        font-size: 16px;
    }

    /* 1st → top left */
    .row--align-center > div:nth-child(1) {
        order: 1;
        /* width: 50%;
        display: flex;
        justify-content: flex-start;
        align-items: center; */
        width: auto;
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    /* 3rd → top right */
    .row--align-center > div:nth-child(3) {
        order: 2;
        /* width: 50%;
        display: flex;
        justify-content: flex-end;
        align-items: center; */
        width: auto;
        flex: 0;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin-left: auto;
    }

    /* 2nd → full width second row */
    .row--align-center > div:nth-child(2) {
        order: 3;
        width: 100%;
    }

    /* 4th → full width */
    .row--align-center > div:nth-child(4) {
        order: 4;
        width: 100%;
    }

    /* 5th → full width */
    .row--align-center > div:nth-child(5) {
        order: 5;
        width: 100%;
    }

    .header-phone--right{
        display: flex !important;
        align-items: center  !important;
        justify-content: center  !important;
    }

    .header-phone--right>div{
        display: flex;
        gap: 10px;
        align-items: center;
        justify-content: center;
    }

    .header__right {
        width: 90%;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 10px;
    }

    .header-phone__h4 {
        font-size: 12px;
    }
        
    .header-phone__number {
        font-size: 12px;
        margin-bottom: 4px;
    }

    header {
        padding: 5px 0px 5px;
    }
}