html {
    overflow-x: hidden;
}

h1 {
    font-size: 56px;
    line-height: 1.2em;
    margin-bottom: 30px;
}

h2 {
    font-size: 42px;
    line-height: 1.2em;
    margin-bottom: 30px;
    color: #113A82;
}

h3 {
    font-size: 24px;
    line-height: 1.3em;
    margin-bottom: 20px;
}

p {
    margin-bottom: 20px;
    line-height: 1.5rem;
}

p:last-child {
    margin-bottom: 0;
}

.flex {
    display: flex;
}

.flex_col {
    display: flex;
    flex-direction: column;
}

.max_width {
    max-width: 1140px;
    margin: auto;
}

.cta_btn_white {
    padding: 12px 24px;
    font-weight: 600;
    background: none;
    border: 2px solid white;
    color: white;
    cursor: pointer;
    transition: 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
    display: inline-block;
    border-radius: 10px;
}


/**blue-btn**/

.cta_btn_blue {
    padding: 12px 24px;
    font-weight: 600;
    background-color: #113A82;
    border: 2px solid #113A82;
    color: white;
    cursor: pointer;
    transition: 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
    display: inline-block;
    border-radius: 10px;
}

.cta_btn_blue a {
    text-decoration: none;
    color: white;
}

.cta_btn_blue:hover {
    background-color: #113A82;
    border: 2px solid #113A82;
    color: white;
}


/**Blue-btn**/

.cta_btn_orange {
    padding: 12px 24px;
    font-weight: 600;
    background-color: #113A82;
    border: 2px solid #113A82;
    color: white;
    cursor: pointer;
    transition: 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
    display: inline-block;
    border-radius: 10px;
}

.cta_btn_orange a,
.cta_btn_white a {
    text-decoration: none;
    color: white;
}

.cta_btn_orange:hover,
.cta_btn_white:hover {
    background-color: #113A82;
    border: 2px solid #113A82;
    color: white;
}

.cta_btn_red {
    border: none;
    border-radius: 4px;
    background: none;
}

.cta_btn_red a {
    padding: 15px 24px;
    font-weight: 600;
    background-color: #113A82;
    border: 2px solid #113A82;
    color: white;
    cursor: pointer;
    transition: 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
    display: inline-block;
}

.cta_btn_red a:hover {
    background-color: #FFFFFF;
    border: 2px solid #FFFFFF;
    color: #EE3131;
}

.section_title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    color: #404241;
    margin-bottom: 0;
}

main.inner_page_header .hero_container {
    padding: 0 30px;
}

@media (max-width: 991px) {
    main.inner_page_header .hero_container .hero_wrapper .hero_content h1 {
        font-size: 45px;
    }
    h2 {
        font-size: 35px;
    }
}

@media (max-width: 767px) {
    main.inner_page_header .hero_container .hero_wrapper .hero_content h1 {
        font-size: 35px;
    }
    main.inner_page_header .hero_container .hero_wrapper .hero_content {
        width: 100% !important;
    }
    h2 {
        font-size: 30px;
    }
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
}

body {
    position: relative;
}

#header {
    position: sticky;
    top: 0;
    z-index: 999999;
}

.header_container {
    position: relative;
    z-index: 999999;
    width: 100%;
    background-color: #005A8F;
}

.announcement-bar {
    color: white;
    padding: 15px 0px;
    text-align: center;
    display: flex;
    justify-content: space-between;
}

.announcement-bar a {
    text-decoration: none;
    color: #fff;
}

.announcement-bar p {
    margin-bottom: 0;
}

.announcement-contact {
    display: flex;
    gap: 10px;
}

header {
    background-color: #ffffff;
    border-bottom: 1px solid #ddd;
    padding: 40px 50px;
}

.header_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    flex: 1;
}

.logo img {
    height: 35px;
    width: auto;
}

nav {
    flex: 1;
    text-align: center;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 60px;
}

nav ul li {
    display: inline-block;
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: #000000;
}


/* Submenu styles */

nav ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    z-index: 1000;
    padding: 10px;
}

nav ul li:hover>ul {
    display: block;
}

nav ul ul li {
    display: block;
    width: 250px;
    text-align: left;
    margin: 15px;
}

nav ul ul li a {
    padding: 10px;
    border-radius: 10px;
    transition: 0.2s ease;
}

nav ul ul li:hover a {
    background-color: #000;
    color: white;
}

.header-call-btn {
    flex: 1;
    display: flex;
    justify-content: end;
}

.header-call-btn button {
    background-color: #E3C900;
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    border: 1px solid #fff;
    border-radius: 10px;
}

.header-call-btn button:hover {
    background-color: #000;
    color: white;
}


/* Mobile menu styles */

.burger {
    display: none;
    /* Hide burger icon by default */
}

.topbar_email a {
    text-decoration: none;
    color: #fff;
}

@media only screen and (max-width: 768px) {
    .header_wrapper {
        flex-wrap: wrap;
    }
    .burger {
        display: block;
        /* Show burger icon on smaller screens */
        cursor: pointer;
        margin-left: auto;
        /* Push burger to the right */
    }
    .burger .bar {
        width: 25px;
        height: 3px;
        background-color: #000;
        margin: 5px 0;
        transition: 0.4s;
    }
    /* Rotate bars to form X shape when menu is open */
    .burger.open .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .burger.open .bar:nth-child(2) {
        opacity: 0;
    }
    .burger.open .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    nav {
        flex-basis: 100%;
        display: none;
        /* Hide the nav items by default */
    }
    nav.open {
        display: block;
        /* Show the nav items when burger is clicked */
    }
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    nav ul li {
        text-align: center;
    }
    nav ul li a {
        font-size: 18px;
        /* Adjust font size for mobile */
    }
    .header-call-btn {
        display: none;
    }
    .announcement-bar {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }
    .announcement-bar p {
        font-size: 12px;
    }
    .announcement-contact {
        align-items: center;
        flex-direction: column;
    }
    .burger+nav {
        margin-top: 50px;
    }
    .serving_text {
        display: none;
    }
    .announcement-contact {
        line-height: 10px;
    }
}

main .hero_container {
    background: url("assets/IMG_1244-3046x1024-1\ \(1\).webp") no-repeat center center / cover;
    position: relative;
}

body.home main .hero_container {
    background: url("assets/IMG_1244-3046x1024-1\ \(1\).webp") no-repeat center center / cover;
    position: relative;
}

.hero_container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #123B82;
    opacity: 0.7;
    /* Adjust the opacity as needed */
}

main .hero_container .hero_wrapper {
    padding: 7rem 0 7rem 0;
    margin: auto;
    display: flex;
    align-items: center;
}

main.inner_page_header .hero_container .hero_wrapper {
    height: 400px;
    padding-top: 180px;
}

main .hero_container .hero_wrapper .hero_content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    color: white;
    width: 60%;
    z-index: 1;
}

main .hero_container .hero_wrapper .hero_content h1,
main .hero_container .hero_wrapper .hero_content h2,
main .hero_container .hero_wrapper .hero_content h3 {
    margin-bottom: 0;
}

.hero_cta {
    display: flex;
    gap: 20px;
}


/* banner about section */

.banner_about_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.3em;
    padding: 5rem 1rem 0rem 1rem;
    word-spacing: 1x;
    font-size: 18px;
}

.banner_about_wrapper p a {
    color: #E3C900;
    text-decoration: none;
    font-weight: 600;
}


/* banner about section */


/* services section */

.services_item {
    background-color: none;
}

.services_content {
    display: flex;
    align-items: center;
    padding: 5rem 0rem;
    gap: 2rem;
}

.services_img {
    flex: 1;
}

.services_img_serve img {
    width: 450px;
    height: 500px;
    object-fit: cover;
}

.services_img img {
    width: 450px;
    height: 900px;
    object-fit: cover;
}

@media (max-width: 600px) {
    .services_img img {
        width: 450px;
        height: auto;
        object-fit: cover;
    }
    .services_img_serve img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

.services_item .item_icon {
    width: 45%;
    padding: 1rem;
}

.services_item .item_icon .orange {
    background-color: #005A8F;
    padding: 1.5rem;
    margin-bottom: 10px;
    border-radius: 10px;
    font-size: 35px;
}

.services_item .item_icon .blue {
    background-color: #005A8F;
    padding: 1.5rem;
    margin-bottom: 10px;
    border-radius: 10px;
    font-size: 35px;
}

.services_item p {
    line-height: 1.7rem;
}

.services_items {
    display: flex;
    flex-direction: column;
    align-items: start;
    flex: 2;
    gap: 20px;
    padding: 20px;
}

.services_items h2 {
    margin-bottom: 0;
}

.services_items_cards {
    margin-top: 15px 0px;
    display: flex;
    gap: 10px;
}

.services_items_cards_content {
    flex: 1;
}

.services_items_cards_content ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.services_items_cards_content li {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 80px;
    list-style: none;
    border: 1px solid rgb(235, 232, 232);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.062);
    padding: 5px;
    transition: 0.2s ease;
}

.services_items_cards_content li:hover {
    background-color: rgba(0, 0, 0, 0.055);
    transform: scale(1.08);
}

.services_items_cards_content li a {
    text-decoration: none;
    font-weight: 600;
    color: #000;
}


/* services section */


/* CTA section */

.cta {
    background-color: #005A8F;
    position: relative;
}

.cta::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.2;
    /* Adjust the opacity as needed */
}

.cta_wrapper {
    position: relative;
    z-index: 1000;
    padding: 8rem 0rem;
}

.cta_wrapper .cta_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    color: white;
}

.cta_wrapper .cta_content h2 {
    margin-bottom: 0;
    color: #f2f2f2;
}

.cta_row_column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    padding: 10px;
    align-items: stretch;
}

.cta_row_column .item {
    color: #f2f2f2;
    padding: 10px;
    text-align: left;
}

.services_item i {
    font-size: 50px;
    padding: 20px 0;
    color: #f2f2f2;
}

.cta_row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
    padding: 10px;
    align-items: left;
    justify-content: stretch;
}

.cta_row .item {
    color: #f2f2f2;
    padding: 10px;
    align-items: left;
    border: #0000001e solid 1px;
    border-radius: 10px;
    padding: 2rem;
    background-color: #ffff;
}

.cta_row .item i {
    color: #005A8F;
    background-color: #ffff;
    padding: 2rem;
    border-radius: 10px;
    margin: 0 0 20px 0;
    transition: transform 0.2s ease;
    border: solid 1px #005A8F;
}

.cta_row .item:hover i {
    transform: rotate(10deg);
    transition: transform 0.2s ease;
}

.cta_row .item h3 {
    color: #000d;
}

.cta_row .item .cta_p {
    color: #000d;
    font-weight: 500;
}

@media (max-width: 768px) {
    .cta_row_column,
    .cta_row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .cta_row_column,
    .cta_row {
        grid-template-columns: 1fr;
    }
}


/* CTA section */


/* Why Choose Sunbrite Section */

.why_content {
    display: flex;
    align-items: center;
}

.why_us_wrapper {
    padding: 5rem 0rem;
}

.why_us_wrapper .section_title {
    text-align: center;
    padding: 0px 0px 30px 0px;
}

.why_content .why_us_details {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 10px;
}

.why_content .why_us_details h2 {
    margin-bottom: 0;
}

.why_content .why_us_details ul li {
    padding: 5px 0px;
}

.why_content .why_us_image {
    flex: 1;
}

.why_content .why_us_image img {
    max-width: 600px;
}


/* Why Choose Sunbrite Section */


/* FAQ SECTION */

.faq_section {
    background-color: #f5f5f5;
}

.faq_wrapper {
    text-align: center;
    padding: 4rem 0rem;
}

.faq_wrapper h2 {
    margin-bottom: 10px;
}


/* accordion */

.accordion {
    max-width: 600px;
    margin: 3rem auto;
}

.accordion-item {
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
}

.accordion-header {
    background-color: #ffffff;
    border-bottom: 1px solid #ddd;
}

.accordion-button {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 15px;
    font-size: 16px;
    cursor: pointer;
    outline: none;
}

.accordion-button[aria-expanded="true"] {
    /* background-color: #e2e2e2; */
    background-color: #E3C900;
    color: white;
}

.accordion-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.accordion-body {
    padding: 15px;
    border-top: 1px solid #ddd;
}

.accordion-collapse[aria-expanded="true"] {
    max-height: 500px;
    /* adjust as needed */
}


/* accordion */


/* map section */

.map_section_wrapper {
    padding: 5rem 0rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.map_section_wrapper .g_map {
    width: 100%;
}

.map_section_wrapper .connect {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 2rem;
}

.map_section_wrapper .connect h2 {
    margin-bottom: 0;
}


/* map section */


/* reviews section */

.reviews {
    background-color: #f7f7f7;
}

.reviews_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 0rem;
}

.google_review {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.google_review h3,
p {
    margin: 0;
}

.stars {
    display: flex;
    align-items: center;
}

.stars img {
    width: 20px;
}

.reviews_slider {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}


/* review card */

.review-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    max-width: 300px;
    margin: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
}

.review-header img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.review-header div {
    display: flex;
    flex-direction: column;
}

.review-header div .name {
    font-weight: bold;
}

.review-header div .date {
    color: #888;
    font-size: 0.9em;
}

.stars {
    color: gold;
    margin: 8px 0;
}

.review-content {
    color: #333;
}

.highlight {
    background-color: yellow;
}

.review-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    width: 300px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 220px;
    background-color: #ffffff;
}

.review-header {
    display: flex;
    align-items: center;
}

.review-header img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.review-header div {
    display: flex;
    flex-direction: column;
}

.review-header div .name {
    font-weight: bold;
}

.review-header div .date {
    color: #888;
    font-size: 0.9em;
}

.stars {
    color: gold;
    margin: 8px 0;
}

.review-content {
    color: #333;
    flex-grow: 1;
}

.highlight {
    background-color: yellow;
}

.google-logo {
    margin-left: auto;
    width: 20px;
    height: 20px;
}


/* Tablet responsiveness */

@media (max-width: 900px) and (min-width: 600px) {
    main .hero_container .hero_wrapper .hero_content {
        width: 80%;
    }
    .hero_cta {
        flex-direction: column;
        gap: 10px;
    }
    .services_content {
        flex-direction: column;
        gap: 1rem;
    }
    .services_img img {
        width: 100%;
    }
    .services_items {
        align-items: center;
        text-align: center;
    }
    .why_content {
        flex-direction: column;
    }
    .why_content .why_us_image img {
        max-width: 100%;
    }
    .cta_wrapper {
        padding: 8rem 0rem;
    }
    .faq_section {
        padding: 4rem 0rem;
    }
    .accordion {
        max-width: 100%;
    }
}


/* Mobile responsiveness */

@media (max-width: 600px) {
    main .hero_container .hero_wrapper .hero_content {
        width: 100%;
        padding: 1rem;
    }
    .hero_content h1 {
        font-size: 34px;
        text-align: center;
    }
    .hero_content h3 {
        font-size: 21px;
        text-align: center;
    }
    .hero_content p {
        text-align: center;
    }
    .hero_cta {
        flex-direction: column;
        gap: 10px;
    }
    .services_content {
        flex-direction: column;
        gap: 1rem;
        padding: 2rem 1rem;
    }
    .services_img img {
        width: 100%;
    }
    .services_items {
        align-items: center;
        text-align: center;
    }
    .services_items h2 {
        font-size: 30px;
    }
    .services_items_cards {
        flex-direction: column;
        gap: 1rem;
    }
    .cta_wrapper {
        padding: 6rem 1rem;
    }
    .cta_wrapper .cta_content {
        padding: 1rem;
    }
    .cta_content h2 {
        font-size: 30px;
        text-align: center;
    }
    .cta_content p {
        text-align: center;
    }
    .why_content {
        flex-direction: column;
        padding: 20px;
    }
    .why_content .why_us_image img {
        max-width: 100%;
    }
    .why_content h2 {
        font-size: 30px;
        text-align: center;
    }
    .faq_section {
        padding: 3rem 1rem;
    }
    .accordion {
        max-width: 100%;
        padding: 0 1rem;
    }
    .reviews {
        padding: 10px;
    }
    .reviews h2 {
        font-size: 30px;
        text-align: center;
    }
    .map_section_wrapper {
        flex-direction: column;
        padding: 20px;
    }
    .map_section_wrapper h2 {
        font-size: 30px;
        text-align: center;
    }
    .map_section_wrapper p {
        text-align: center;
    }
    .map_section_wrapper button {
        align-self: center;
    }
    .faq_wrapper h2 {
        font-size: 30px;
        text-align: center;
    }
}

.image_text {
    margin: 70px 0;
    padding: 0 30px;
}

.image_text .image_text_container .image_text_wrap {
    display: flex;
    justify-content: center;
    column-gap: 50px;
}

.image_text .image_text_container .image_text_wrap .image_text__text {
    width: 50%;
}

.image_text .image_text_container .image_text_wrap .image_text__image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 50%;
}

@media (max-width: 767jpgpx) {
    .image_text .image_text_container .image_text_wrap {
        flex-wrap: wrap;
        gap: 30px;
    }
    .image_text .image_text_container .image_text_wrap .image_text__text,
    .image_text .image_text_container .image_text_wrap .image_text__image {
        width: 100%;
    }
    .image_text .image_text_container .image_text_wrap .image_text__image {
        min-height: 300px;
    }
    .image_text .image_text_container .image_text_wrap .image_text__text p {
        text-align: left;
    }
}

footer .footer_cta {
    padding: 70px 30px;
    background-image: url(assets/coffison-team.webp );
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

footer .footer_cta:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

footer .footer_cta_container {
    max-width: 800px;
    margin: auto;
}

footer .footer_cta_container .footer_cta_wrap {
    position: relative;
}

footer .footer_cta_container .footer_cta_wrap h2 {
    text-align: center;
    color: #f2f2f2;
}

footer .footer_cta_container .footer_cta_wrap p {
    text-align: center;
    color: #f2f2f2;
}

footer .footer_cta_container .footer_cta_wrap p {
    margin-top: 30px;
}

footer .footer_main {
    padding: 70px 30px;
    background-color: #0C0A1F;
}

footer .footer_container {
    max-width: 1140px;
    margin: auto;
}

footer .footer_container .footer_wrap {
    display: flex;
    justify-content: center;
    gap: 30px;
}

footer .footer_container .footer_wrap .footer_item {
    width: 25%;
}

footer .footer_container .footer_wrap .footer_item img {
    width: 220px;
}

footer .footer_container .footer_wrap .footer_item,
footer .footer_container .footer_wrap .footer_item h3 {
    color: #fff;
}

footer .footer_container .footer_wrap .footer_item h3 {
    margin-bottom: 30px;
}

footer .footer_container .footer_wrap .footer_item a {
    text-decoration: none;
    color: #fff;
}

footer .footer_container .footer_wrap .footer_item ul {
    list-style: none;
    padding-left: 10px;
}

footer .footer_container .footer_wrap .footer_item ul li {
    position: relative;
    padding: 7px 0;
}

footer .footer_container .footer_wrap .footer_item ul li:after {
    font-family: "FontAwesome";
    content: "\f0da";
    position: absolute;
    top: 11px;
    left: -10px;
    font-size: 14px;
    color: #005A8F;
}

@media (max-width: 991px) {
    footer .footer_container .footer_wrap {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 767px) {
    footer .footer_container .footer_wrap .footer_item {
        width: 100%;
        text-align: center;
    }
    footer .footer_container .footer_wrap .footer_item ul li:after {
        display: none;
    }
}

.team {
    padding: 70px 30px 80px;
    background-color: #000;
}

.team .team_container>h2 {
    text-align: center;
    color: #fff;
}

.team .team_container>p {
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
}

.team .team_container .team_wrap {
    display: flex;
    justify-content: center;
    column-gap: 30px;
}

.team .team_container .team_wrap .team_item {
    width: 25%;
}

.team .team_container .team_wrap .team_item img {
    box-shadow: 8px 8px 0px 0px #E3C900;
    width: 100%;
}

@media (max-width: 767px) {
    .team .team_container .team_wrap {
        flex-wrap: wrap;
        gap: 30px;
    }
    .team .team_container .team_wrap .team_item {
        width: calc(50% - 15px);
    }
}

@media (max-width: 500px) {
    .team .team_container .team_wrap .team_item {
        width: 100%;
    }
}

.contact {
    padding: 70px 30px 80px;
}

.contact .contact_container .contact_wrap {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.contact .contact_container .contact_wrap .contact_details {
    width: 33.33%;
}

.contact .contact_container .contact_wrap .contact_form {
    width: 66.67%;
}

.contact .contact_container .contact_wrap .contact_details p a {
    display: flex;
    column-gap: 15px;
    text-decoration: none;
    color: #000;
}

.contact .contact_container .contact_wrap .contact_details p a .contact_icon {
    text-align: center;
    display: block;
    min-width: 20px;
}

.contact .contact_container .contact_wrap .contact_details p a i {
    color: #E3C900;
}

.contact .contact_container .contact_wrap .contact_details p a i.fa-map-marker {
    font-size: 20px;
    margin-top: 3px;
}

.contact .contact_container .contact_wrap .contact_details p a i.fa-phone {
    font-size: 20px;
    margin-top: 2px;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea {
    width: 100%;
    border: 1px solid #acacac;
    border-radius: 5px;
    padding: 8px 15px 8px 20px;
    font-size: 16px;
    margin-bottom: 15px;
}

form button {
    margin-top: 15px;
    font-size: 16px;
}

@media (max-width: 767px) {
    .contact .contact_container .contact_wrap {
        flex-wrap: wrap;
        gap: 30px;
    }
    .contact .contact_container .contact_wrap .contact_details {
        width: 100%;
    }
    .contact .contact_container .contact_wrap .contact_details p {
        text-align: left;
    }
    .contact .contact_container .contact_wrap .contact_form {
        width: 100%;
    }
}

.blog {
    padding: 70px 30px;
}

.blog .blog_container .blog_wrap {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.blog .blog_container .blog_wrap .blog_item {
    width: calc(32% - 1px);
    background-color: #fff;
    padding: 1em;
}

.blog .blog_container .blog_wrap .blog_item h3 {
    margin-top: 20px;
}

.blog .blog_container .blog_wrap .blog_item .blog_image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 300px;
}

.blog_page {
    padding: 70px 30px;
}

.blog_page .blog_page_container .blog_page_wrap .blog_page_image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    margin-bottom: 30px;
}

body.blog_single main .hero_container .hero_wrapper .hero_content {
    width: 80%;
}

body.blog_single main.inner_page_header .hero_container .hero_wrapper {
    height: 250px;
}

@media (max-width: 767px) {
    .blog .blog_container .blog_wrap {
        flex-wrap: wrap;
        gap: 30px;
    }
    .blog .blog_container .blog_wrap .blog_item {
        width: 100%;
    }
    .blog_page .blog_page_container .blog_page_wrap p,
    .blog .blog_container .blog_wrap .blog_item p {
        text-align: left;
    }
}

.our_services_wrapper {
    display: flex;
    flex-direction: column;
    padding: 2rem 0rem;
}

.our_services_content {
    display: flex;
    align-items: center;
    padding: 3rem 0rem;
    gap: 2rem;
}

.f-reversed {
    display: flex;
    flex-direction: row-reverse;
}

.our_services_img {
    flex: 1;
}

.our_services_img img {
    width: 450px;
    height: 350px;
}

.our_services_items {
    display: flex;
    flex-direction: column;
    align-items: start;
    flex: 2;
    gap: 20px;
    padding: 20px;
}

.our_services_items h2 {
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .our_services_content {
        flex-direction: column;
        padding: 15px;
    }
    .our_services_content h2,
    p {
        text-align: center;
    }
}

.text-center {
    text-align: center !important;
}

ul {
    padding-left: 20px;
}

.reviews_slider {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.reviews_slider .img-wrap {
    background-color: #ffff;
    padding: 3.5rem;
    border-radius: 10px;
    border: solid 1px #ED8B00;
    margin: 0.5rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
}

.reviews_slider .img-wrap img {
    height: 50px;
    width: 250px;
}

.reviews_slider .review_items {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.reviews_slider .review_items p {
    margin-bottom: 10px;
}

h4 {
    font-size: 20px;
}

span.quote {
    font-size: 20px;
    font-weight: 700;
}

.team .team_container .team_wrap .team_item h4,
.team .team_container .team_wrap .team_item p {
    text-align: center;
    color: #fff;
}

.team .team_container .team_wrap .team_item h4 {
    margin-bottom: 15px;
    color: #E3C900;
}


/**************number-count*****************/

.number-count {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    padding: 20px 0;
}

@media (max-width: 600px) {
    .number-count {
        flex-wrap: wrap;
    }
    .number-count .elementor-widget-container {
        padding-bottom: 20px;
    }
}

.number-percentage {
    font-size: 30px;
    font-weight: 600;
}

.number-count h5 {
    font-size: 20px;
    color: #005A90;
}


/**************number-count*****************/


/**************new css code home*****************/

.services_container {
    display: grid;
    grid-template-columns: 1fr;
    /* Mobile default: 1 column */
    gap: 20px;
    color: #fff;
    z-index: 99999999;
}

@media (min-width: 768px) {
    .services_container {
        grid-template-columns: 1fr 1fr;
        /* Desktop: 2 columns */
    }
}

.services_item {
    color: #fff;
    z-index: 99999;
}


/* ---------------- HERO ---------------- */

.hero-v2 {
    color: #fff;
    padding: 8em 0;
    background: linear-gradient(rgba(12, 31, 114, 0.6), rgba(0, 0, 0, 0.6)), url("assets/IMG_1252-scaled (1).webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-left h1 {
    font-size: 65px;
    line-height: 1.2;
    font-weight: 800;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.hero-features li {
    margin-bottom: 10px;
    font-size: 16px;
}

.hero-call {
    margin-top: 20px;
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
}

.callout-box {
    background: #113A82;
    color: #fff;
    padding: 70px 100px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
}

.callout-box h3 {
    font-size: 40px;
}

.hero-people {
    width: 320px;
    border-radius: 10px;
}

.hero-van {
    width: 350px;
    margin-top: 20px;
}


/* ---------------- STATS ---------------- */

.stats-section {
    padding: 40px 0;
    background: #fff;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-box h2 {
    font-size: 50px;
    color: #001e54;
    font-weight: 800;
}


/* ---------------- EXPERIENCE SECTION ---------------- */

.experience-section {
    padding-top: 30px;
    padding-bottom: 80px;
}

.experience-text {
    align-content: center;
}

.experience-text p {
    line-height: 1.8em;
    text-align: start;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.exp-badge {
    background: #001e54;
    color: #fff;
    padding: 10px 20px;
    font-weight: 700;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 15px;
}

.experience-img img {
    width: 100%;
    border-radius: 10px;
    height: 450;
}


/* ---------------- TESTIMONIALS ROW ---------------- */

.testimonials-row {
    padding: 60px 1em;
    background: #fafafa;
}

.testimonials-grid {
    display: flex;
    gap: 25px;
}

.review-box {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    flex: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


/* ---------------- SERVICES GRID ---------------- */

.services-block {
    padding: 80px 1em;
    background: #0C0A1F;
    color: #fff;
}

.services-grid-v2 {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}

.service-card-v2 {
    background: #132a55;
    padding: 35px;
    border-radius: 10px;
    transition: .3s;
}

.service-card-v2 h3,
.section-heading {
    color: #ffff;
}

.service-card-v2:hover {
    background: #1c366e;
    transform: translateY(-5px);
}


/* ---------------- TEAM ---------------- */

.team-section {
    padding: 80px 1em;
    text-align: center;
    background: #fff;
}

.team-photo {
    width: 60%;
    border-radius: 10px;
    margin-top: 20px;
}


/* ---------------- CTA BANNER ---------------- */

.cta-banner {
    background: url('assets/cta-bg.webp') center/cover no-repeat;
    padding: 100px 0;
    color: #fff;
    text-align: center;
}

.cta-big {
    padding: 18px 40px;
    font-size: 20px;
}


/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-people,
    .hero-van {
        width: 90%;
    }
    .experience-grid {
        grid-template-columns: 1fr;
    }
    .services-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .hero-left h1 {
        font-size: 32px;
    }
    .services-grid-v2 {
        grid-template-columns: 1fr;
    }
    .team-photo {
        width: 100%;
    }
    .callout-box {
        padding: 60px;
    }
    .stat-box h2 {
        font-size: 30px;
        color: #001e54;
        font-weight: 800;
    }
    .stats-section {
        padding: 20px 10px;
    }
    .experience-section {
        padding: 20px 10px;
    }
    .experience-img img {
        height: 250;
    }
}


/**************new css code home*****************/

 :root {
    --navy: #0b1230;
    --navy2: #0f1b45;
    --text: #0f172a;
    --muted: #64748b;
    --border: #e5e7eb;
    --card: #141a35;
    --btn: #0b2a66;
    --btn2: #143b8a;
    --shadow: 0 12px 28px rgba(2, 6, 23, .12);
    --radius: 14px;
    --container: 1140px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.55;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: min(100%, var(--container));
    margin-inline: auto;
    padding: 0 20px;
}

.section {
    padding: 64px 0;
}

.h2 {
    margin: 0 0 8px 0;
    font-size: clamp(24px, 2.8vw, 34px);
    letter-spacing: -.3px;
}

.lead {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 12px;
    background: var(--btn);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: background .18s ease;
    border: 1px solid rgba(255, 255, 255, .08);
    white-space: nowrap;
}

.btn:hover {
    background: var(--btn2);
}


/* 1) 24/7 Emergency Plumber */

.hero-split {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 34px;
    align-items: center;
}

.hero-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(2, 6, 23, .06);
}

.hero-img img {
    width: 100%;
    height: 270px;
    object-fit: cover;
}

.hero-copy p {
    margin: 10px 0 0 0;
    color: var(--muted);
    font-size: 14px;
}

.hero-copy .btn {
    margin-top: 14px;
}


/* 2) On-the-Spot Plumbing Repairs */

.dark {
    background: linear-gradient(180deg, var(--navy), var(--navy2));
    color: #fff;
}

.dark .lead {
    color: rgba(255, 255, 255, .72);
}

.repairs {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 34px;
    align-items: center;
    margin-top: 24px;
}

.repairs-list {
    border-top: 1px solid rgba(255, 255, 255, .10);
}

.repairs-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.repairs-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.repairs-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.repairs-item h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
}

.repairs-item p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, .72);
}

.repairs-media {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .35);
    border: 1px solid rgba(255, 255, 255, .12);
}

.repairs-media img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}


/* 3) On Call. On Time. Every Time. cards */

.center-title {
    text-align: center;
    margin-bottom: 26px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.card {
    background: var(--card);
    color: #fff;
    border-radius: 14px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: var(--shadow);
    min-height: 170px;
}

.card .mini {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    display: grid;
    place-items: center;
    margin-bottom: 12px;
}

.card .mini img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.card h4 {
    margin: 0 0 8px 0;
    font-size: 15px;
}

.card p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
}


/* 4) From First Fix to Final Clean Up */

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: center;
}

.split p {
    margin: 10px 0 0 0;
    color: var(--muted);
    font-size: 14px;
}

.split-media {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(2, 6, 23, .06);
}

.split-media img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}


/* 5) FAQ */

.faq {
    padding-top: 10px;
}

.faq-wrap {
    border-top: 1px solid var(--border);
    margin-top: 18px;
}

details {
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}

summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-weight: 700;
    color: #0b1220;
}

summary::-webkit-details-marker {
    display: none;
}

.chev {
    width: 18px;
    height: 18px;
    border-right: 2px solid #64748b;
    border-bottom: 2px solid #64748b;
    transform: rotate(45deg);
    transition: transform .15s ease;
    flex: 0 0 auto;
    margin-top: -2px;
}

details[open] .chev {
    transform: rotate(-135deg);
}

details p {
    margin: 10px 0 0 0;
    color: var(--muted);
    font-size: 14px;
    max-width: 900px;
}


/* Responsive */

@media (max-width: 1024px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hero-split,
    .repairs,
    .split {
        grid-template-columns: 1fr;
    }
    .hero-img img {
        height: 240px;
    }
    .repairs-media img {
        height: 260px;
    }
    .split-media img {
        height: 240px;
    }
}

@media (max-width: 520px) {
    .section {
        padding: 46px 0;
    }
    .cards {
        grid-template-columns: 1fr;
    }
    .card {
        min-height: auto;
    }
}

 :root {
    --navy: #0b1230;
    --navy2: #0f1b45;
    --text: #0f172a;
    --muted: #64748b;
    --border: #e5e7eb;
    --card: #141a35;
    --btn: #0b2a66;
    --btn2: #143b8a;
    --shadow: 0 12px 28px rgba(2, 6, 23, .12);
    --radius: 14px;
    --container: 1140px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.55;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: min(100%, var(--container));
    margin-inline: auto;
    padding: 0 20px;
}

.section {
    padding: 64px 0;
}

.h2 {
    margin: 0 0 10px 0;
    font-size: clamp(24px, 2.8vw, 34px);
    letter-spacing: -.3px;
}

.lead {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 12px;
    background: var(--btn);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: background .18s ease;
    border: 1px solid rgba(255, 255, 255, .08);
    white-space: nowrap;
}

.btn:hover {
    background: var(--btn2);
}


/* Shared splits */

.split {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 34px;
    align-items: center;
}

.media {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(2, 6, 23, .06);
    background: #fff;
}

.media img {
    width: 100%;
    height: 370px;
    object-fit: cover;
}

.media-custom img {
    width: 100%;
    height: 570px;
    object-fit: cover;
    border-radius: 12px;
}


/* DARK BAND */

.dark {
    background: linear-gradient(180deg, var(--navy), var(--navy2));
    color: #fff;
}

.dark .lead {
    color: rgba(255, 255, 255, .72);
}

.dark p {
    color: rgba(255, 255, 255, .72);
}

.eyebrow {
    display: inline-block;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: .2px;
}

.emphasis {
    color: #f5b700;
    font-weight: 800;
}


/* Bullet list (yellow tick style) */

.bullets {
    margin: 12px 0 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.bullets li {
    position: relative;
    padding-left: 22px;
    color: var(--muted);
    font-size: 14px;
}

.bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #f5b700;
    font-weight: 900;
}


/* Brands */

.center-title {
    text-align: center;
    margin-bottom: 26px;
}

.brands {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    justify-content: center;
    align-items: center;
}

.brand-logo {
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: 0 8px 18px rgba(2, 6, 23, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    min-height: 64px;
}

.brand-logo img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}


/* Guarantee row (more spacing like screenshot) */

.guarantee {
    padding-top: 18px;
}


/* FAQ */

.faq-wrap {
    border-top: 1px solid var(--border);
    margin-top: 18px;
}

details {
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}

summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-weight: 700;
    color: #0b1220;
}

summary::-webkit-details-marker {
    display: none;
}

.chev {
    width: 18px;
    height: 18px;
    border-right: 2px solid #64748b;
    border-bottom: 2px solid #64748b;
    transform: rotate(45deg);
    transition: transform .15s ease;
    flex: 0 0 auto;
    margin-top: -2px;
}

details[open] .chev {
    transform: rotate(-135deg);
}

details p {
    margin: 10px 0 0 0;
    color: var(--muted);
    font-size: 14px;
    max-width: 900px;
}


/* Responsive */

@media (max-width: 900px) {
    .split {
        grid-template-columns: 1fr;
    }
    .media img {
        height: 240px;
    }
    .media-custom img {
        height: 240px;
    }
    .brands {
        justify-content: flex-start;
    }
}

@media (max-width: 520px) {
    .section {
        padding: 46px 0;
    }
    .brand-logo {
        min-width: 120px;
    }
}


/* Services dropdown */

.services-menu {
    position: relative;
}

.services-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 260px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    padding: 10px 0;
    z-index: 999;
}

.services-dropdown li {
    list-style: none;
}

.services-dropdown li a {
    display: block;
    padding: 3px 20px;
    color: #000;
    text-decoration: none;
}

.services-dropdown li a:hover {
    background: #0a0a0a;
}


/* Desktop hover */

@media (min-width: 769px) {
    .services-menu:hover .services-dropdown {
        display: block;
    }
}


/* Mobile friendly */

@media (max-width: 768px) {
    .services-dropdown {
        position: static;
        box-shadow: none;
    }
}