@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

:root {
    --primary-color: #135541;
    --bg: #0d0d0d;
    --muted: #8d8d8d;
    --line: #2f2f2f;
    --accent: #ffffff;
    font-size: 10px;


}

p {
    color: #444444;
}

body {
    font-family: "Inter", sans-serif;
    /*     font-family: 'Gotham', sans-serif; */
    font-size: 1.6rem;
}


.btn-login {
    position: relative;
    display: inline-block;
    padding: 7px 39px;
    border: 1px solid #ffffff;
    border-radius: 20px;
    font-weight: 500;
    color: black;
    background: linear-gradient(120deg, white 0%, white 50%, var(--primary-color, #095540) 50%);
    background-size: 220%;
    transition: all 0.4s ease;
    cursor: pointer;
    width: 100px;
    text-align: center;
}

.btn-login:hover {
    background-position: 100%;
    color: #fff;
    border-color: var(--primary-color, #095540);
}


.nav-link {
    color: #ffffff;
    text-transform: capitalize;
    font-weight: 500;
}

ul#menu-main-menu {
    gap: 30px !important;
}

.nav-link:focus,
.nav-link:hover {
    color: var(--primary-color);
}

.swiper,
.swiper-slide {
    width: 100%;
    height: 100dvh;
    color: #fff;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: end;
    place-content: end;
    padding-bottom: clamp(20px, 10vw, 170px);
}

.swiper-slide video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.swiper-slide .overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 13, 0.6);
    z-index: 2;
    pointer-events: none;
    transition: opacity .45s ease;
}

.slide-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 700px;
    box-sizing: border-box;

}

.slide-content h2 {
    font-size: 80px;
    font-weight: normal;
    color: #ffffff;
    line-height: 1;
}

.slide-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    opacity: .9;
}

.progress-root {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 4;
    pointer-events: auto;
}

.segments {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.segment {
    flex: 1;
    cursor: pointer;
    position: relative;
}

.segment .label {
    font-size: 12px;
    color: var(--muted, #aaa);
    position: absolute;
    left: 0;
    font-weight: 500;
    white-space: nowrap;
}

.segment::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.25);
}

.segment .fill {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: #fff;
    width: 0%;
    transition: width linear;
}

.segment.active .label {
    color: #fff;
}

.about-text-home {
    position: absolute;
    bottom: 130px;
    right: 100px;
    transform: translateY(-50%);
    z-index: 9;
    color: #fff;
    width: 100%;
    pointer-events: none;
}

.about-text-home .container {
    display: flex;
    justify-content: flex-end;
    align-items: end;
    flex-direction: column;
    pointer-events: auto;
}

.about-text-home p {
    max-width: 300px;
    text-align: left;
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    opacity: 0.9;
    margin: 0;
}



.main-header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 20;
    padding: 2rem 0;
    transition: all 0.4s ease-in-out;
}

.main-header.fixeds {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    background: rgba(17, 17, 17, 0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    animation: slideDown 0.4s ease forwards;
}

.main-header.unfixeds {
    transform: translateY(0);
    transition: transform 0.4s ease;
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}


.home-banner-sec {
    position: relative;
    overflow: hidden;

}

.about-section {
    margin: 10rem 0;
}

.title-wrapper h2 {
    font-size: clamp(3rem, 3vw + 3rem, 4.5rem);
    color: black;
    /*     text-transform: capitalize; */
    margin: 4rem 0;
}

.title-wrapper h2 span {
    color: #11111180;
}

.about-content p {
    margin-bottom: 3rem;
    line-height: 25.6px;
}

.about-content .title-wrapper h2 {
    margin-bottom: 2rem;
}

.custum-btn {
    border: 2px solid #095540;
    padding: 1rem 1.5rem;
    border-radius: 3rem;
    margin: 3rem 0;
    display: inline-block;
    background: linear-gradient(120deg, transparent 0%, transparent 50%, var(--primary-color, #095540) 50%);
    background-size: 220%;
    color: #095540;
    transition: all 0.4s ease;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 1.6rem;
    font-weight: 700;
}

.custum-btn2 {
    border: 2px solid #095540;
    padding: 1rem 1.5rem;
    border-radius: 3rem;
    margin: 3rem 0;
    display: inline-block;
    background: linear-gradient(120deg, transparent 0%, transparent 50%, var(--primary-color, #095540) 50%);
    background-size: 220%;
    color: #095540;
    transition: all 0.4s ease;
    font-weight: 600;
    font-size: 1.6rem;
    font-weight: 700;
}

.custum-btn:hover,
.custum-btn2:hover {
    background-position: 100%;
    color: #fff;
    border-color: var(--primary-color, #095540);
}


.image-wrapper {
    overflow: hidden;
    border-radius: 10px;
}

.image-wrapper img {
    transition: all.3s ease-in-out;
    width: 100%;
    border-radius: 10px;
}

/* .image-wrapper:hover img {
    filter: brightness(1.2);
} */

.about-content {
    padding-left: 5rem !important;
}


.service-section {
    padding: 5rem 0;
}

.service-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 500px;
    cursor: pointer;
    background: #f8f8f8;
    transition: all 0.4s ease;
    margin: 0 7.5px;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, opacity 0.5s ease;
}

.service-card .overlay {
    position: absolute;
    inset: 0;
    /*     background: rgba(0, 0, 0, 0.493); */
    background: rgb(0 0 0 / 0%);
    transition: background 0.5s ease;
    z-index: 1;
}

.service-card .card-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    z-index: 2;
    color: #000;
}

.service-card h3 {
    font-weight: 400;
    color: white;
    font-size: 3rem;
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.4s ease;
    z-index: 3;
    /*     text-transform: capitalize; */
}

.content-scroll {
    max-height: 0;
    overflow-y: hidden;
    transition: all 0.5s ease;
}


.service-card p {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    line-height: 1.6;
    color: #000;
}

/* Hover effects */
.service-card:hover img {
    transform: scale(1.1);
    opacity: 0.4;
}

.service-card:hover h3 {
    color: #000;
    margin-bottom: 0.5rem;
}

.service-card:hover .overlay {
    background: #f6f6f6;
}


.service-card:hover h3 {
    transform: translateY(-10px);
}

.service-card:hover .content-scroll {
    max-height: 200px;
    margin-top: 15px;
    overflow-y: auto;
}

.service-card:hover p {
    opacity: 1;
    transform: translateY(0);
}

.content-scroll::-webkit-scrollbar {
    width: 4px;
}

.content-scroll::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.read-more-egs {
    padding: 5rem 0;
}



.faq-sec {
    margin: 8rem 0;
}

/* Faq */
.faq-wrapper {
    background: #F5F5F5;
    padding: 3rem 3rem;
    border-radius: 1.5rem;
}

.accordion {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.accordion-header {
    padding: 10px 0;
    cursor: pointer;
    font-weight: 500;
    color: black;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}



.accordion-content {
    padding: 15px 0;
    display: none;
    /* border-top: 1px solid #ddd; */
}

.accordion-header::after {
    content: '\2b';
    font-size: 18px;
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 900;
    color: var(--primary-color);
}

.accordion-header.active::after {
    content: '\f068';
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 900;
    color: var(--primary-color);
}



.postid-324 .company_news_sec {
    margin: 5rem 0;
}

.news-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-flow: wrap;
}

.news-card img {
    max-height: 300px;
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 1rem;
    transition: .3s;
}

.image-card-news {
    overflow: hidden;
    border-radius: 10px;
}

.news-card:hover .image-card-news img {
    transform: scale(1.2);
}

.news-content {
    margin: 2rem 0;
}

.publish-date span {
    background: black;
    color: white;
    width: 34px;
    display: inline-block;
    text-align: center;
    padding: 0.2rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.news-content h3 {
    font-size: 2rem;
}


.protecting_oceans {
    min-height: clamp(660px, 80vh, 400px);
    place-content: center;
    color: white;
    padding: clamp(1.5rem, 4vw, 3rem) 0;
    position: relative;
}

.protecting_oceans .container {
    position: relative;
    z-index: 11;
}

.protecting_oceans::before {
    content: "";
    background: #11111157;
    position: absolute;
    inset: 0;
}

.protecting_oceans h2 {
    font-size: clamp(2rem, 4vw + 1rem, 6rem);
    font-weight: 400;
    position: relative;
}

.protecting_oceans h2::before {
    content: "";
    height: 6px;
    width: 60px;
    background: white;
    position: absolute;
    top: -70px;
}

.protecting-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.protecting_oceans .custum-btn {
    border: 2px solid white;
    background: linear-gradient(120deg, #ffffff 0%, #ffffff 50%, var(--primary-color, #095540) 50%);
    background-size: 220%;
    margin: 2rem 0;
    color: #1d1a1a;
}


.protecting_oceans .custum-btn:hover {
    background-position: 100%;
    color: #fff;
    border-color: var(--primary-color, #095540);
}

.custom-footer {
    background: #111;
    color: #fff;
    padding: 6rem 0;
}

.custom-footer .container {
    display: flex;
    flex-direction: column;
    /* height: 200px; */
    justify-content: space-between;
}



.footer-logo img {
    width: 150px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: flex-end;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.6rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--primary-color);
}

.contact-btn {
    background: #fff;
    color: #111 !important;
    padding: 8px 14px;
    border-radius: 20px;
    font-weight: 500;
    transition: all .3s;
}

.contact-btn:hover {
    background: var(--primary-color);
    color: white !important;
}

.footer-social {
    display: flex;
    gap: 15px;
    color: gray;
    margin: 2rem 0;
}

.footer-bottom {
    /* text-align: center; */
    font-size: 14px;
    padding: 0;
}

.footer-bottom p {
    margin: 0;
    padding: 0;
}



.footer-bottom :is(a, p) {
    color: #888888;
    text-decoration: none;
}

.footer-bottom p {
    margin: 0;
    padding: 0;
    color: #888888;
}

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

.footer-bottom p:nth-child(1) {
    display: flex;
    flex-direction: row;
    flex-flow: wrap;
    gap: 10px;
}

.copy-right-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}




/*============About Page Css Start==============  */
.breadcrumbs {
    position: relative;
    padding: 0 0 5rem;
    color: #fff;
    overflow: hidden;
    min-height: 600px;
    align-items: center;
    place-content: flex-end;
}

/* Overlay */
.breadcrumbs::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.breadcrumbs .container {
    position: relative;
    z-index: 2;
}

.breadcrumbs-new {
    position: relative;
    padding: 12rem 5rem;
    color: #000;
    background: white;
    overflow: hidden;
    padding-bottom: 0;
}

.header-news .btn-login {
    position: relative;
    display: inline-block;
    padding: 7px 39px;
    border: 1px solid #ffffff;
    border-radius: 20px;
    font-weight: 500;
    width: 100px;
    text-align: center;
    background: linear-gradient(268deg, white 0%, white 50%, var(--primary-color, white) 50%);
    background-size: 220%;
    transition: all 0.4s ease;
    cursor: pointer;
    color: white;
}

.header-news .btn-login:hover {
    background-position: 100%;
    color: black !important;
    border-color: var(--primary-color, #095540);
}

/* .header-news a.navbar-brand.me-lg-5 {
    background: white;
    border-radius: 7px;
    padding: 8px;
} */


.header-news .nav-link {
    color: #000;
}

header.main-header.header-news.fixeds .nav-link {
    color: white;
}

.breadcrumbs-new .breadcrumb-content.p-0 p {
    font-size: 16px;
    color: #444444;
    max-width: 900px;
}

/* Page name */
.page-name {
    display: inline-block;
    padding: 0;
    border-bottom: 0.4rem solid white;
    padding-bottom: 0.8rem;
    margin-bottom: 2rem;
    max-width: fit-content;
}

.page-name ul {
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
    display: flex;
    align-items: center;
}

.page-name li {
    display: inline-block;
}

.page-name a {
    color: #fff;
    /* font-weight: 600; */
    font-size: clamp(1.4rem, 1.2vw, 1.8rem);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-name ul li:first-child a {
    pointer-events: none;
    user-select: none;
    cursor: default;
}

.breadcrumb-content h1 {
    font-weight: normal;
    margin-top: 6rem;
    font-size: clamp(4rem, 4vw, 6.2rem);
    line-height: 1.2;
    margin-bottom: 4rem;
}

.breadcrumb-content p {
    margin-top: 1rem;
    color: #e0e0e0;
    font-size: clamp(1.6rem, 2vw, 1.6rem);
    line-height: 1.6;
}

/* .about-sec {
    padding: 8rem 0;
    padding-top: 10rem;
} */

.about-sec {
    margin: 10rem 0;
}

.about-sec .image-wrapper img {
    max-height: 600px;
    object-fit: cover;
    height: 100%;
    height: 600px;
}

.why-it-matters {
    margin: 4rem 0;
}

.why-it-matters h2 {
    font-size: clamp(3.5rem, 3vw, 4rem);
    margin: 4rem 0;
}

.why-it-matters .about-card {
    margin-top: 3rem;
}

.text-box-area {
    background: #F5F5F5;
    padding: 10rem 12rem;
    border-radius: 10px;
}

.text-box-area p {
    font-size: 2.8rem;
    font-weight: 500;
    color: #111111;
    text-align: center;
}

.leadership-sec {
    padding: 10rem 0;
}

.title-wrapper h3 {
    font-size: clamp(1.5rem, 3vw + 1rem, 4rem);
}


.card-leadership {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin: 20px 10px;
    background: #fff;
    transition: .3s;
}


.card-leadership .image-wrapper {
    border-radius: 10px;
    overflow: hidden;
}

.img-leadership {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: .4s;
}

.card-content-leadership {
    padding: 20px 10px;
}

.team-info h4 {
    font-size: 18px;
    margin-bottom: 3px;
}

.team-info p {
    font-size: 14px;
    color: #777;
    margin-bottom: 5px;
}



.linkedin-btn {
    color: #095540;
    font-size: 16px;
    display: inline-block;
    margin-top: 5px;
}



@media (min-width:992px) {

    .hover-bio {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        padding: 25px;
        transform: translateY(100%);
        transition: .4s ease;
        overflow-y: auto;
    }


    .card-leadership:hover .hover-bio {
        transform: translateY(0);
    }


    .card-leadership:hover .img-leadership {
        transform: scale(1.05);
        opacity: .85;
    }

}

/* ================================
Mobile & Tablet Layout
================================ */

@media (max-width:991px) {
    .card-content-leadership {
        padding-left: 0;
    }

    .leadership-sec h3 {
        margin: 2rem 0;
    }

    .hover-bio {
        position: relative;
        transform: none;
        height: auto;
        padding: 10px;
        background: #fff;
        overflow: visible;
        padding-top: 5px;
        padding-left: 0;

    }

    .hover-bio .team-info {
        display: none;
    }

    .card-content-leadership {
        padding-bottom: 0;
    }
}


.hover-bio::-webkit-scrollbar {
    width: 3px;
}

.hover-bio::-webkit-scrollbar-thumb {
    background: #095540;
    border-radius: 5px;
}



.text-box-area h2 {
    text-align: center;
    font-size: clamp(4rem, 2vh, 5rem);
    margin-bottom: 4rem;
}

.text-box-area h2 span {
    color: var(--muted);
}

.highlight-sec {
    position: relative;
    margin: 5rem 0;
}

.highlight-sec .owl-carousel.history-slider .item {
    background: #F5F5F5;
    border-radius: 12px;
    padding: 25px 35px;
    text-align: left;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08); */
    min-height: 300px;
    height: 100%;
}

.highlight-sec .year {
    font-weight: 600;
    font-size: 23px;
    color: #111111;
    margin-bottom: 2rem;
    border-bottom: 7px solid var(--primary-color);
    width: fit-content;
    line-height: 60px;
}

.highlight-sec .category {
    font-weight: 500;
    color: #111111;
    display: inline-block;
    margin-bottom: 16px;
    padding-bottom: 0px;
    font-size: 18px;
}

.highlight-sec .desc {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.highlight-sec .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    padding: 0 36px;
    z-index: 10;
}

.highlight-sec button.owl-prev:hover,
.highlight-sec button.owl-next:hover {
    opacity: 0.5;
}

.highlight-sec .owl-nav .owl-prev,
.highlight-sec .owl-nav .owl-next {
    pointer-events: auto;
    background: #fff !important;
    border-radius: 50% !important;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none !important;
    outline: none !important;
}

.highlight-sec .owl-nav .owl-prev i,
.highlight-sec .owl-nav .owl-next i,
.highlight-sec .owl-nav .owl-prev span,
.highlight-sec .owl-nav .owl-next span {
    font-size: 18px;
    color: #0b3d2e;
    line-height: 1;
}

.highlight-sec .owl-dots {
    margin-top: 4rem;
}

.highlight-sec button.owl-prev {
    transform: translate(-60px, -50%);
}

.highlight-sec button.owl-next {
    transform: translate(60px, -50%);
}

.looking-para p {
    max-width: 1000px;
    margin: 0 auto;
}

.company-card {
    border-radius: 1.5rem;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 3rem;

    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-grow: 1;
    text-align: left;
}

.company-card:hover {
    /* transform: translateY(-5px); */
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); */
}

.visit-link:hover {
    color: #0b3d2e;
}

.working-together-sec {
    padding: 10rem 0;
}

.card-image {
    position: relative;
    height: 280px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: #0000009c;
    z-index: 1;
}

.card-logo {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.card-logo img {
    width: auto;
    margin-bottom: 10px;
    /* background: #F5F5F5; */
}

.card-logo h3 {
    font-size: 2rem;
    font-weight: 600;
}

/* Card Content */
.card-body {
    padding: 2rem;
    padding-left: 0;
}

.card-body h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.card-body h4 {
    font-size: 1.8rem;
    font-weight: 600;
}

.card-body .subtitle {
    color: var(--muted);
    font-size: 1.6rem;
    letter-spacing: 0px;
    padding: 0;
    margin: 0;
    margin-bottom: 1rem;
}

.card-body p {
    font-size: 1.5rem;
    line-height: 1.6;
}

.working-together-sec .col-md-6 {
    margin-bottom: 2rem;
}

.visit-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    transition: color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 1px solid var(--primary-color);
    width: fit-content;
}

.visit-link:hover {
    color: var(--line);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.15);
}



.details-page-breadcrumb {
    padding: 2rem 0;
}

.details-page-breadcrumb ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 10px;
}


.detail-section {
    padding: 2rem 2rem;
}

.detail-section :is(h2, h3, h4, h5, p) {
    padding: 1rem 0;
}

.detail-section h2 {
    font-weight: 400;
    font-size: 45px;
    line-height: 60px;
}

.detail-section h3 {
    font-size: 3rem;
}

.detail-section h4 {
    font-size: 2rem;
}

.detail-section h5 {
    font: 1.8rem;
}

.contact-wrappper-sec {
    padding-bottom: 8rem;
}

.conatct-form p {
    padding: 0;
    margin: 0;
}

.contact-wrappper-sec h5 {
    font-size: 1.8rem;
    color: #111111;
    font-weight: 500;
    text-transform: capitalize;
}

.post-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
}

.contact-info {
    margin: 2rem 0;
}

.detail-content .custum-btn {
    margin: 5rem 0;
}

input#choice_1_6_1 {
    border-color: black;
    border-radius: 0 !important;
}

.gform_wrapper.gravity-theme .gfield_label {
    color: black;
}

div#gform_confirmation_message_1 {
    background: var(--primary-color);
    color: white;
    padding: 10px;
    text-align: center;
}

label#label_1_6_1 {
    color: black;
}

label#label_1_6_1 a {
    color: blue;
}

.conatct-form input,
.conatct-form textarea {
    padding: 1rem;
    border-radius: 3rem;
    border: 1px solid #11111133;
}


.conatct-form textarea {
    min-height: 120px;
    border-radius: 1rem;
}

.conatct-form button {
    background-color: transparent;
    padding: 1rem 3rem;
    color: var(--primary-color);
    border-radius: 3rem;
    border: 1px solid var(--muted);
    transition: .3s;
}

.conatct-form button:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.conatct-form a {
    text-decoration: underline;
}


.card-service img {
    height: 250px;
    object-fit: cover;
    border-radius: 1rem;
}

.card-service h5 {
    font-size: 1.6rem;
    margin: 1rem 0;
    font-weight: 700;
    color: var(--primary-color);
}


.page-id-144 .highlight-sec .owl-nav .owl-prev i,
.page-id-144 .highlight-sec .owl-nav .owl-next i,
.page-id-144 .highlight-sec .owl-nav .owl-prev span,
.page-id-144 .highlight-sec .owl-nav .owl-next span {
    font-size: 29px !important;
}

.details-page-breadcrumb li a {
    text-transform: math-auto;
    color: #095540;
    font-family: Inter;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
}


.padding-zero {
    padding-left: 0 !important;
    padding-right: 5rem;
}

.working-together-sec .title-wrapper {
    max-width: 70%;
    margin: 0 auto;
}


.working-together-sec .title-wrapper p {
    padding-top: 3rem;
    margin: 2rem 0;
}

/*============About Page Css End==============  */
@media (min-width: 992px) {

    /* Bootstrap lg breakpoint */
    .custom-lg-75 {
        width: 75% !important;
    }
}



/* Only for purpose service card  */


/* === PAGE 179 SERVICE CARD STYLE === */

/* .page-id-179 .service-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 500px;
    cursor: default;
    background: #f8f8f8;
    transition: all 0.4s ease;
}


.page-id-179 .service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none;
    opacity: 1;
    transition: none;
} */

/* .page-id-179 .service-card .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.493);
    z-index: 1;
}


.page-id-179 .service-card .card-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
    padding: 30px;
    z-index: 2;
    color: white;
} */

/* .page-id-179 .service-card h3 {
    font-weight: 400;
    color: white;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    transform: none;
} */



/* .page-id-179 .service-card p {
    opacity: 1;
    transform: translateY(0);
    line-height: 1.6;
    color: white;
}

.page-id-179 .content-scroll::-webkit-scrollbar {
    width: 4px;
}

.page-id-179 .content-scroll::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}
 */
.navbar-brand img {
    border-radius: 7px;

}

/* .header-other .navbar-brand img {
    max-width: 140px;
    height: auto;
} */


.conatct-form textarea,
.conatct-form input {
    padding: 14px 21px !important;
    resize: none;
    outline: none;
    margin: 4px 0 !important;
}

textarea.wpcf7-form-control.wpcf7-textarea.row-3 {
    max-height: 150px;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.conatct-form-button {
    border: 2px solid #095540;
    padding: 10px !important;
    font-size: 18px;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

.conatct-form input::placeholder,
.conatct-form textarea::placeholder {
    color: #000;
}

.conatct-form {
    position: relative;
}

div#field_1_7 {
    position: absolute;
    bottom: 34px;
    left: 140PX;
    color: #444444;
}

#gform_submit_button_1 {
    background-color: transparent;
    color: var(--primary-color);
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: 2px solid #095540;
    padding: 10px !important;
    font-size: 18px;
    font-weight: 600;
    min-width: 120px;
}

#gform_submit_button_1:hover {
    background-color: #095540;
    color: white;
}

.title-wrapper h5 {
    font-size: 17px;
    margin: 3rem;
    text-decoration: underline;
}

.company_news_sec .title-wrapper h2 span {
    color: #000;
}

.footer-group-title {
    font-weight: 600;
    margin-bottom: 2rem;
    margin-top: 1rem;

}

.footer-group-lists {
    display: flex;
    gap: 4rem;
}

.footer-group-lists ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-group-lists li+li {
    margin-top: .4rem;
}

.footer-group-lists a {
    color: #888888;
    text-decoration: none;
    /* opacity: .8; */
}

.footer-group-lists a:hover {
    opacity: 1;
    color: var(--primary-color);
}

footer .menu-item-41 {
    display: none;
}


/* Default Page Css Start*/


.breadcrumbs-default-page {
    padding-top: 10rem;
}

.default-section {
    padding: 5rem 0;
    padding-top: 0;
}

.default-section h4 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 1.5rem;
    color: #444444;
}

.default-section p {
    margin-bottom: 3rem;
}

section.default-section ul li {
    color: #444444;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

/* .footer-bottom p {
    display: flex;
    gap: 11px;
} */

/* Default Page Css End*/
button#load-more-news {
    margin-bottom: 7rem;
}


/* New css add for faq  and  other site*/

.faq-sec .title-wrapper h2 {
    padding-top: 0;
    margin-top: 10px;
}

.accordion-content {
    max-width: 900px;
}



.custum-btn {
    text-transform: lowercase;
}

.custum-btn::first-letter {
    text-transform: uppercase;
}

.footer-nav-new {
    column-count: 2;
}

.footer-group-title {
    margin-top: 0;
}

.footer-nav-new li {
    margin-bottom: 3.5rem;
}



.footer-group-lists ul li {
    margin-bottom: 1.5rem;
}

nav.footer-nav-new li a {
    font-weight: 500;
}

@media (min-width:992px) {
    .company_news_sec .owl-dots {
        display: none;
    }

    .custom-footer .col-lg-4:nth-child(2),
    .custom-footer .col-lg-4:nth-child(3) {
        position: relative;
        padding-left: 60px;
    }

    .custom-footer .col-lg-4:nth-child(2)::before,
    .custom-footer .col-lg-4:nth-child(3)::before {
        content: "";
        position: absolute;
        left: 15px;
        top: 0;
        height: 160px;
        width: 1px;
        background: rgba(255, 255, 255, 0.15);
    }
}

@media (max-width:991px) {
    .footer-left-top {
        display: flex;
        flex-direction: row;
        gap: 20px;
        justify-content: space-between;
        padding-right: 3dvh;
        margin-bottom: 2rem;
    }

    .footer-group-lists ul li {
        margin-bottom: 3.5rem;
    }

    header.main-header.header-news.fixeds .nav-link {
        color: black !important;
    }
}

@media (max-width:575px) {
    .footer-nav-new {
        column-count: 1;
        text-align: center;
    }

    .footer-group-title {
        text-align: center;
        margin-bottom: 32px;
        position: relative;
        padding: 15px 0 0 0;
    }

    .footer-group-title:before {
        content: "";
        height: 2px;
        width: 35px;
        background: white;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, -25px);
    }

    .footer-group {
        margin: 5rem 0;
    }

    .footer-group-lists {
        display: block;
        text-align: center;
    }

    .footer-group-lists ul li {
        margin-bottom: 2rem;
    }

    .footer-nav-new li {
        margin-bottom: 2.5rem;
    }

    .footer-bottom p {
        text-align: center;
        justify-content: center;
    }

    .footer-bottom {
        margin-top: 6rem;
    }

    .custom-footer {
        padding: 3rem 0;
    }

}


/* New Css for Mubarak Career Page */
.footer-nav-new li a:hover {
    color: var(--primary-color);
}

.mubarak-find-sec {
    padding: 8rem 0;
}

.find-title {
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    color: #000000;
    line-height: 120%;
    letter-spacing: -5%;
}

.find-item {
    margin-bottom: 30px;
}

.find-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
}

.find-item h3 {
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0%;
}

.career-message-sec {
    background: #ffffff;
    padding: 8rem 0;
}

.career-message-box {
    background: #F5F5F5;
    border-radius: 10px;
    text-align: center;
    min-height: 320px;
    place-content: center;
    padding: 10rem;
    margin-bottom: 5rem;
}

.career-message-box p {
    font-size: 28px;
    line-height: 39.2px;
    font-weight: 500;
    color: #444444;
    letter-spacing: -5%;
    margin: 0;
}

@media (max-width:580px) {
    .career-message-box {
        background: transparent;
        padding: 5rem;
        margin-bottom: 0;
    }

    .career-message-sec {
        background: #D9D9D9;
        padding: 4rem 0;
        margin-bottom: 10rem;
        margin-top: 5rem;
    }
}

/* End Mubarak Career Page Styles */
.logo-white {
    display: none;
}

.main-header.fixeds .logo-white {
    display: block;
}

.main-header.fixeds .logo-green {
    display: none;
}