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: #023555;
}

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;
}


/**blue-btn**/

.cta_btn_blue {
    padding: 12px 24px;
    font-weight: 600;
    background-color: #23BA03;
    border: 2px solid #23BA03;
    color: white;
    cursor: pointer;
    transition: 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
    display: inline-block;
}

.cta_btn_blue a {
    text-decoration: none;
    color: white;
}

.cta_btn_blue:hover {
    background-color: #1A3240;
    border: 2px solid #1A3240;
    color: white;
}


/**Blue-btn**/

.cta_btn_orange {
    padding: 12px 24px;
    font-weight: 600;
    background-color: #23BA03;
    border: 2px solid #23BA03;
    color: white;
    cursor: pointer;
    transition: 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
    display: inline-block;
}

.cta_btn_orange a,
.cta_btn_white a {
    text-decoration: none;
    color: white;
}

.cta_btn_orange:hover,
.cta_btn_white:hover {
    background-color: #1A3240;
    border: 2px solid #1A3240;
    color: white;
}

.section_title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    color: #ED8B00;
    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: #000 !important;
}

.announcement-bar {
    color: white;
    padding: 15px 0px;
    text-align: center;
    display: flex;
    justify-content: space-between;
}

.announcement-bar p {
    margin-bottom: 0;
}

.announcement-contact {
    display: flex;
    gap: 10px;
}

header {
    background-color: #141414;
    padding: 40px 50px;
}

.header_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    flex: 1;
}

.logo img {
    height: 50px;
    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: #ffffff;
}


/* 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;
}

.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/Manly-Solar-13-1024x683.jpg") no-repeat center center / cover;
    position: relative;
}

body.home main .hero_container {
    background: url("assets/image\ \(2\).webp") no-repeat center center / cover;
    position: relative;
}

.hero_container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
    /* 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: 300px;
}

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_content {
    display: flex;
    align-items: center;
    padding: 5rem 0rem;
    gap: 2rem;
}

.services_img {
    flex: 1;
}

.services_img img {
    width: 450px;
}

.services_item .item_icon {
    width: 45%;
    padding: 1rem;
}

.services_item .item_icon .orange {
    background-color: #ED8B00;
    padding: 1.5rem;
    margin-bottom: 10px;
    border-radius: 10px;
    font-size: 35px;
}

.services_item .item_icon .blue {
    background-color: #023555;
    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: url("assets/Manly-Solar-10.jpg") no-repeat center center / cover;
    position: relative;
}

.cta::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.7;
    /* 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;
}

.cta_row .item i {
    color: #023555;
    background-color: #ED8B00;
    padding: 2rem;
    border-radius: 10px;
    margin: 0 0 20px 0;
    transition: transform 0.2s ease;
}

.cta_row .item i:hover {
    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/a-workman-carrying-a-large-solar.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: 1150px;
    margin: auto;
}

footer .footer_cta_container .footer_cta_wrap {
    position: relative;
}

footer .footer_cta_container .footer_cta_wrap h2 {
    text-align: start;
    color: #f2f2f2;
}

footer .footer_cta_container .footer_cta_wrap p {
    text-align: start;
    color: #f2f2f2;
}

footer .footer_cta_container .footer_cta_wrap p {
    margin-top: 30px;
}

footer .footer_main {
    padding: 70px 30px;
    background-color: #000;
}

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: 80%;
}

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: #23BA03;
}

@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: 50px;
    flex-wrap: wrap;
}

.blog .blog_container .blog_wrap .blog_item {
    width: calc(50% - 25px);
}

.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;
}


/* FORM CARD */

.hero_form {
    flex: 1;
    max-width: 420px;
    background: rgb(0, 0, 0);
    padding: 50px;
    border-radius: 16px;
    color: #fff;
    z-index: 99;
}

.hero_form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}

.form_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.hero_form input,
.hero_form textarea {
    width: 100%;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
}

.hero_form textarea {
    margin-top: 15px;
    resize: none;
}

.hero_form button {
    width: 100%;
    margin-top: 20px;
    padding: 14px;
    background: #27c200;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}


/* 📱 Mobile Responsive */

@media (max-width: 900px) {
    .hero_wrapper {
        flex-direction: column;
        text-align: center;
    }
    .hero_form {
        max-width: 100%;
    }
    .form_grid {
        grid-template-columns: 1fr;
    }
}

img {
    width: 100%;
    display: block;
}


/* CONTAINERS */

.ng-container {
    max-width: 1200px;
    margin: auto;
    padding: 90px 20px;
}

.ng-center {
    text-align: center;
}

.ng-center-review {
    text-align: center;
    margin-bottom: -20px;
}


/* GRIDS */

.ng-grid-2,
.ng-grid-3,
.ng-grid-4 {
    display: grid;
    gap: 40px;
}

.ng-grid-2 {
    grid-template-columns: 1fr;
}

.ng-grid-3 {
    grid-template-columns: 1fr;
}

.ng-grid-4 {
    grid-template-columns: 1fr;
}


/* BACKGROUNDS */

.bg-dark {
    background: #0f0f0f;
    color: #fff;
}

.bg-light {
    background: #f5f7f8;
}

.bg-white {
    background: #ffffff;
}


/* CARDS */

.ng-card {
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
}


/* HERO */

.ng-hero-grid {
    display: grid;
    gap: 50px;
    align-items: center;
}

.ng-hero h1 {
    font-size: 42px;
    line-height: 1.2;
}

.ng-lead {
    margin: 25px 0 35px;
}

.ng-hero-form {
    background: #fff;
    color: #222;
    padding: 40px;
    border-radius: 10px;
}

.ng-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.ng-hero-form textarea {
    width: 100%;
    min-height: 120px;
    margin: 15px 0;
}


/* IMAGE BADGE */

.ng-img img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    height: 530px;
    object-fit: cover;
}

.ng-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: #2ecc71;
    color: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
}


/* SERVICES */

.ng-service img {
    border-radius: 6px;
    margin-bottom: 20px;
    width: 100%;
    height: 250px;
    object-fit: cover;
}


/* CHECKLIST */

.ng-checklist {
    list-style: none;
    margin: 25px 0;
}

.ng-checklist li {
    padding-left: 26px;
    margin-bottom: 14px;
    position: relative;
}

.ng-checklist li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #2ecc71;
}


/* RESPONSIVE */

@media (min-width: 768px) {
    .ng-hero-grid {
        grid-template-columns: 1.3fr 1fr;
    }
    .ng-grid-2 {
        grid-template-columns: 1fr 1fr;
    }
    .ng-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .ng-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* ================= UTILITIES ================= */

.ng_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 20px;
}

.ng_center {
    text-align: center;
}

.ng_muted {
    color: #666;
}

.ng_bg_dark {
    background: #0f0f0f;
    color: #fff;
}

.ng_bg_light {
    background: #f5f7f8;
}

.ng_bg_white {
    background: #fff;
}

.ng_grid {
    display: grid;
    gap: 40px;
}

.ng_grid_2 {
    grid-template-columns: 1fr;
}

.ng_grid_3 {
    grid-template-columns: 1fr;
}

.ng_grid_4 {
    grid-template-columns: 1fr;
}

.ng_card {
    background: #fff;
    border-radius: 12px;
    padding: 34px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
}

.ng_kicker {
    display: inline-block;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #2ecc71;
    font-weight: 800;
    margin-bottom: 10px;
}

.ng_media {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(0, 0, 0, .10);
    background: #000;
}


/* ================= HERO BANNER ================= */

.ng_service_hero {
    position: relative;
    min-height: 280px;
    background-image: linear-gradient(rgba(0, 0, 0, .55), rgba(0, 0, 0, .55)), url("assets/P_Team-onsite-Christies-Beach-NG.webp");
    background-size: cover;
    background-position: center;
    display: grid;
    align-items: end;
}

.ng_service_hero_inner {
    padding: 70px 0;
}

.ng_service_hero h1 {
    color: #fff;
    font-size: 42px;
    line-height: 1.15;
    max-width: 980px;
}


/* ================= INTRO (BIG WHITE SPACE LEFT, TEXT RIGHT) ================= */

.ng_intro {
    background: #fff;
}

.ng_intro_wrap {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr;
    align-items: center;
}

.ng_intro_spacer {
    display: none;
}

.ng_intro_box h2 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.ng_intro_box h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #2ecc71;
    margin: 14px 0 10px;
}

.ng_intro_box p {
    margin-bottom: 14px;
    color: #333;
}


/* ================= DARK SPLIT FEATURE ================= */

.ng_dark_split {
    position: relative;
    overflow: hidden;
}

.ng_dark_split_inner {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr;
    align-items: center;
}

.ng_dark_text h2 {
    font-size: 34px;
    line-height: 1.15;
    margin-bottom: 12px;
}

.ng_dark_text p {
    color: rgba(255, 255, 255, .88);
    margin-bottom: 14px;
    max-width: 560px;
}

.ng_dark_image img {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .25);
    height: 500px;
    object-fit: cover;
    display: block;
}


/* ================= WHAT WE DELIVER (IMAGE LEFT, CONTENT RIGHT) ================= */

.ng_deliver .ng_deliver_card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    padding: 0;
}

.ng_deliver_img img {
    height: 100%;
    object-fit: cover;
}

.ng_deliver_content {
    padding: 36px;
    background: #f1f3f4;
}

.ng_deliver_content h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.ng_bullets {
    list-style: none;
    margin-top: 16px;
    display: grid;
    gap: 10px;
}

.ng_bullets li {
    position: relative;
    padding-left: 22px;
    color: #333;
    font-size: 14px;
}

.ng_bullets li::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 0;
    color: #2ecc71;
}


/* ================= WHY CHOOSE (ICON CARDS) ================= */

.ng_why h2 {
    font-size: 32px;
    margin-bottom: 26px;
}

.ng_icon_card {
    background: #fff;
    border-radius: 12px;
    padding: 26px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
    text-align: center;
    min-height: 150px;
    display: grid;
    gap: 10px;
    align-content: start;
    justify-items: center;
}

.ng_icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #eafaf1;
    display: grid;
    place-items: center;
    color: #2ecc71;
    font-weight: 900;
    font-size: 18px;
}

.ng_icon_card p {
    color: #444;
    font-size: 14px;
}


/* ================= FAQ (DETAILS/SUMMARY, NO JS) ================= */

.ng_faq h2 {
    font-size: 32px;
    margin-bottom: 26px;
}

.ng_faq_list {
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

details.ng_faq_item {
    background: #f1f3f4;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e6e8ea;
}

details.ng_faq_item[open] {
    background: #2ecc71;
    border-color: #2ecc71;
    color: #fff;
}

details.ng_faq_item summary {
    cursor: pointer;
    padding: 16px 18px;
    list-style: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: 14px;
}

details.ng_faq_item summary::-webkit-details-marker {
    display: none;
}

.ng_faq_icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(0, 0, 0, .06);
    display: grid;
    place-items: center;
    font-weight: 900;
    flex: 0 0 auto;
}

details.ng_faq_item[open] .ng_faq_icon {
    background: rgba(255, 255, 255, .22);
}

.ng_faq_body {
    padding: 0 18px 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, .92);
}

details.ng_faq_item:not([open]) .ng_faq_body {
    color: #444;
}

details.ng_faq_item:not([open]) .ng_faq_body {
    padding-top: 0;
}

details.ng_faq_item:not([open]) .ng_faq_body {
    display: none;
}

details.ng_faq_item[open] .ng_faq_body {
    display: block;
}


/* ================= BOTTOM CTA ================= */

.ng_bottom_cta {
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75)), url("https://www.ngelec.com.au/wp-content/uploads/L_NG-ELEC_Team-768x589.webp");
    background-size: cover;
    background-position: center;
}

.ng_bottom_cta h2 {
    font-size: 40px;
    line-height: 1.15;
    margin-bottom: 12px;
    max-width: 820px;
}

.ng_bottom_cta p {
    color: rgba(255, 255, 255, .86);
    max-width: 820px;
    margin-bottom: 22px;
}


/* ================= RESPONSIVE ================= */

@media (min-width: 768px) {
    .ng_grid_2 {
        grid-template-columns: 1fr 1fr;
    }
    .ng_grid_3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .ng_grid_4 {
        grid-template-columns: repeat(4, 1fr);
    }
    /* Intro layout: spacer left, content right */
    .ng_intro_wrap {
        grid-template-columns: 1.1fr .9fr;
        align-items: center;
    }
    .ng_intro_spacer {
        display: block;
    }
    /* Dark split */
    .ng_dark_split_inner {
        grid-template-columns: 1fr 1fr;
    }
    /* Deliver layout */
    .ng_deliver .ng_deliver_card {
        grid-template-columns: 1fr 1.2fr;
    }
    .ng_service_hero {
        min-height: 320px;
    }
}

@media (max-width: 767px) {
    .ng_container {
        padding: 70px 18px;
    }
    .ng_service_hero h1 {
        font-size: 30px;
    }
    .ng_bottom_cta h2 {
        font-size: 28px;
    }
    .ng_dark_text h2 {
        font-size: 28px;
    }
    .ng_intro_box h2 {
        font-size: 26px;
    }
}


/* ================= UTILITIES ================= */

.ng_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 20px;
}

.ng_center {
    text-align: center;
}

.ng_kicker {
    display: inline-block;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #2ecc71;
    font-weight: 700;
    margin-bottom: 10px;
}

.ng_bg_dark {
    background: #0f0f0f;
    color: #fff;
}

.ng_bg_light {
    background: #f5f7f8;
}

.ng_bg_white {
    background: #fff;
}

.ng_grid {
    display: grid;
    gap: 40px;
}

.ng_grid_2 {
    grid-template-columns: 1fr;
}

.ng_grid_3 {
    grid-template-columns: 1fr;
}

.ng_grid_4 {
    grid-template-columns: 1fr;
}

.ng_card {
    background: #fff;
    border-radius: 10px;
    padding: 35px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
}

.ng_muted {
    color: #666;
}


/* ================= ABOUT HERO ================= */

.ng_about_hero {
    position: relative;
    min-height: 280px;
    background-image: linear-gradient(rgba(0, 0, 0, .55), rgba(0, 0, 0, .55)), url("assets/P_Team-onsite-Christies-Beach-NG.webp");
    background-size: cover;
    background-position: center;
    display: grid;
    align-items: end;
}

.ng_about_hero_inner {
    text-align: center;
}

.ng_about_hero h1 {
    font-size: 44px;
    line-height: 1.15;
    margin-bottom: 10px;
}

.ng_about_hero p {
    color: rgba(255, 255, 255, .85);
    max-width: 760px;
    margin: 0 auto;
}


/* ================= EXPERIENCE BLOCK ================= */

.ng_experience_wrap {
    margin-top: -60px;
}

.ng_experience_left h2 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 14px;
}

.ng_experience_left p {
    margin-bottom: 18px;
    color: #333;
}

.ng_media {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(0, 0, 0, .10);
}

.ng_float_badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: #fff;
    padding: 16px 16px;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
    width: min(220px, 90%);
}

.ng_float_badge .ng_kicker {
    margin-bottom: 6px;
}

.ng_float_badge strong {
    display: block;
    font-size: 22px;
    line-height: 1.1;
}

.ng_float_badge span {
    display: block;
    margin-top: 4px;
    color: #222;
    font-weight: 700;
}


/* ================= WHO WE ARE STRIP ================= */

.ng_who_we_are {
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75)), url("https://www.ngelec.com.au/wp-content/uploads/L_NG-ELEC_Team-768x589.webp");
    background-size: cover;
    background-position: center;
}

.ng_who_we_are h2 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 14px;
}

.ng_who_we_are p {
    color: rgba(255, 255, 255, .88);
    margin-bottom: 14px;
}

.ng_checklist {
    list-style: none;
    margin-top: 18px;
    display: grid;
    gap: 10px;
}

.ng_checklist li {
    position: relative;
    padding-left: 26px;
    color: rgba(255, 255, 255, .92);
    font-size: 14px;
}

.ng_checklist li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #2ecc71;
    font-weight: 800;
}


/* ================= MEET OUR TEAM ================= */

.ng_team h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.ng_team p {
    max-width: 760px;
    margin: 0 auto 35px;
}

.ng_team_grid {
    display: grid;
    gap: 22px;
    grid-template-columns: 1fr;
}

.ng_team_card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
    text-align: center;
    padding-bottom: 18px;
}

.ng_team_card img {
    aspect-ratio: 3 / 3;
    object-fit: cover;
}

.ng_team_card h3 {
    font-size: 16px;
    margin-top: 14px;
    margin-bottom: 2px;
}

.ng_team_card span {
    font-size: 12px;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: #2ecc71;
    font-weight: 800;
}


/* ================= WHAT WE DO ================= */

.ng_what_we_do_block .ng_card {
    padding: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.ng_what_image img {
    height: 500px;
    object-fit: cover;
}

.ng_what_content {
    padding: 35px;
}

.ng_what_content h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.ng_bullets {
    list-style: none;
    margin-top: 18px;
    display: grid;
    gap: 10px;
}

.ng_bullets li {
    position: relative;
    padding-left: 22px;
    color: #333;
    font-size: 14px;
}

.ng_bullets li::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 0;
    color: #2ecc71;
}


/* ================= WHO WE WORK WITH ================= */

.ng_work_with {
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, .72), rgba(0, 0, 0, .72)), url("https://www.ngelec.com.au/wp-content/uploads/L_NG-ELEC_Team-768x589.webp");
    background-size: cover;
    background-position: center;
    text-align: center;
}

.ng_work_with h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.ng_work_with p {
    max-width: 900px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .88);
}


/* ================= WHY CHOOSE ================= */

.ng_why_choose h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.ng_icon_card {
    background: #fff;
    border-radius: 10px;
    padding: 28px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
    text-align: center;
}

.ng_icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #eafaf1;
    margin: 0 auto 14px;
    display: grid;
    place-items: center;
    color: #2ecc71;
    font-weight: 900;
    font-size: 18px;
}

.ng_icon_card p {
    color: #444;
    font-size: 14px;
}


/* ================= CTA BANNER ================= */

.ng_about_cta {
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, .72), rgba(0, 0, 0, .72)), url("https://www.ngelec.com.au/wp-content/uploads/L_NG-ELEC_Team-768x589.webp");
    background-size: cover;
    background-position: center;
}

.ng_about_cta h2 {
    font-size: 40px;
    line-height: 1.15;
    margin-bottom: 12px;
}

.ng_about_cta p {
    color: rgba(255, 255, 255, .86);
    max-width: 860px;
    margin-bottom: 22px;
}


/* ================= RESPONSIVE ================= */

@media (min-width: 768px) {
    .ng_grid_2 {
        grid-template-columns: 1fr 1fr;
    }
    .ng_grid_3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .ng_grid_4 {
        grid-template-columns: repeat(4, 1fr);
    }
    .ng_team_grid {
        grid-template-columns: repeat(5, 1fr);
    }
    .ng_what_we_do_block .ng_card {
        grid-template-columns: 1fr 1.2fr;
    }
}

@media (max-width: 767px) {
    .ng_container {
        padding: 70px 18px;
    }
    .ng_about_hero {
        padding: 90px 0 60px;
    }
    .ng_about_hero h1 {
        font-size: 32px;
    }
    .ng_experience_left h2 {
        font-size: 28px;
    }
    .ng_who_we_are h2,
    .ng_work_with h2,
    .ng_about_cta h2 {
        font-size: 28px;
    }
}


/* ================= UTILITIES ================= */

.ng_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 20px;
}

.ng_center {
    text-align: center;
}

.ng_muted {
    color: #666;
}

.ng_bg_dark {
    background: #0f0f0f;
    color: #fff;
}

.ng_bg_white {
    background: #ffffff;
}


/* ================= HERO ================= */

.ng_contact_hero {
    background-image: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url("assets/P_Team-onsite-Christies-Beach-NG.webp");
    background-size: cover;
    background-position: center;
    padding: 110px 0 80px;
}

.ng_contact_hero h1 {
    color: #fff;
    font-size: 42px;
    line-height: 1.15;
}

.ng_contact_hero p {
    color: rgba(255, 255, 255, .85);
    margin-top: 8px;
    font-size: 16px;
}


/* ================= CONTACT WRAP ================= */

.ng_contact_wrap {
    background: #ecebe6;
}

.ng_contact_card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}


/* ================= LEFT INFO ================= */

.ng_contact_info {
    padding: 40px;
}

.ng_contact_info h2 {
    font-size: 26px;
    margin-bottom: 8px;
}

.ng_contact_info p {
    font-size: 14px;
    margin-bottom: 18px;
    color: #444;
}

.ng_contact_list {
    display: grid;
    gap: 14px;
    margin-bottom: 28px;
}

.ng_contact_item {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    align-items: start;
}

.ng_icon_box {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    background: #2ecc71;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: bold;
}

.ng_contact_item strong {
    font-size: 14px;
    display: block;
}

.ng_contact_item span {
    font-size: 13px;
    color: #555;
}


/* ================= SOCIAL ================= */

.ng_social h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.ng_social a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-top: 8px;
}


/* ================= FORM ================= */

.ng_contact_form {
    background: linear-gradient(135deg, #000, #111);
    padding: 40px;
    color: #fff;
}

.ng_form_group {
    margin-bottom: 14px;
}

.ng_contact_form label {
    display: block;
    font-size: 12px;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, .85);
}

.ng_contact_form input,
.ng_contact_form textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 4px;
    border: none;
    font-size: 14px;
}

.ng_contact_form textarea {
    min-height: 110px;
}

.ng_recaptcha {
    background: #fff;
    border-radius: 4px;
    padding: 10px;
    margin: 18px 0;
    display: inline-block;
}


/* ================= MAP ================= */

.ng_map iframe {
    width: 100%;
    height: 420px;
    border: 0;
}


/* ================= RESPONSIVE ================= */

@media (min-width: 768px) {
    .ng_contact_card {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .ng_container {
        padding: 70px 18px;
    }
    .ng_contact_hero h1 {
        font-size: 30px;
    }
}


/* 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;
    }
}