@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: #7a7a7a;
    --line: #2f2f2f;
    --accent: #ffffff;
    font-size: 10px;


}

p {
    color: #444444;
    opacity: 0.9;
}

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


.btn-login {
    position: relative;
    display: inline-block;
    padding: 7px 22px;
    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;
}

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


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

.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, 7vw, 100px);
}

.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: 600px;
    box-sizing: border-box;

}

.slide-content h2 {
    font-size: 70px;
    font-weight: normal;
    color: #ffffff;
}

.slide-content p {
    font-size: 18px;
    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: 10%;
    right: 100px;
    transform: translateY(-50%);
    z-index: 9;
    color: #fff;
    width: 100%;
    pointer-events: none;
    /* optional – keeps it non-blocking */
}

.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 {
    padding: 8rem 0;
}

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

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

.about-content p {
    margin-bottom: 3rem;
}

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

.custum-btn {
    border: 2px solid #095540;
    padding: 1rem 1.5rem;
    border-radius: 3rem;
    margin: 1rem 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;
}

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

.image-wrapper {
    overflow: hidden;
    border-radius: 1.5rem;
}

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

/* .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;
    /* box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px; */
}

.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);
    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;
}



.faq-sec {
    padding: 3rem 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: 20px 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: 12px;
    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);
}



.company_news_sec {
    padding: 3rem 0;
}

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

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

.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: 4px;
    width: 60px;
    background: white;
    position: absolute;
    top: -10px;
}

.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;
}


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

.custom-footer {
    background: #111;
    color: #fff;
    padding: 4rem 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: 20px;
    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;
}

.footer-bottom {
    text-align: center;
}

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

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

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




/*============About Page Css Start==============  */
.breadcrumbs {
    position: relative;
    padding: 16rem 0 8rem;
    color: #fff;
    overflow: hidden;
}

/* 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;
}

.header-news .btn-login {
    position: relative;
    display: inline-block;
    padding: 7px 22px;
    border: 1px solid #ffffff;
    border-radius: 20px;
    font-weight: 500;

    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 {
    color: black;
}

/* 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: 2rem;
    font-size: clamp(3rem, 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.8rem);
    line-height: 1.6;
}

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

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

.why-it-matters {
    padding: 2rem 0;
}

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

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

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

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

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

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

.leadership-sec .card-leadership {
    background: white;
    margin: 2rem 0.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.leadership-sec .card-leadership img {
    height: 380px;
    object-fit: cover;
    border-radius: 0;
    width: 100%;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.card-content-leadership {
    background: white;
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 100%;
    transition: all 0.3s ease;
    padding: 1.5rem;
    max-height: 380px;
    overflow-x: hidden;
    margin: 0;
    overflow-y: scroll;
}

.card-content-leadership::-webkit-scrollbar {
    width: 2px;
}

.card-content-leadership::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
}

.card-content-leadership::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.team-member-about {
    display: none;
    transition: all 0.3s ease;
}

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

.card-leadership:hover .team-member-about {
    display: block;
}

/* .card-leadership:hover img {
    opacity: 0.7;
    transform: scale(1.02);
} */

.team-info p {
    display: block;
    color: #000 !important;
}

/* end */

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

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

.highlight-sec {
    position: relative;
    padding: 3rem 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: 20px;
    color: #0b3d2e;
    margin-bottom: 2rem;
    border-bottom: 6px solid #0b3d2e;
    width: fit-content;
    line-height: 10vh;
}

.highlight-sec .category {
    font-weight: 500;
    color: #111111;

    display: inline-block;
    margin-bottom: 10px;
    padding-bottom: 2px;
}

.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;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
    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 {
    display: none !important;
}

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

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


.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;
    justify-content: space-between;
    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: rgba(0, 0, 0, 0.55);
    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: 250px;
    height: auto;
    margin-bottom: 10px;
}

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

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

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

.card-body .subtitle {
    color: var(--muted);
    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 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;
}

.contact-info {
    margin: 2rem 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 {
    /*width: 100%;
    margin-bottom: 1.5rem;*/
    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: capitalize;
}


.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;
}

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

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

/* Text area styling — all aligned equally */
.page-id-179 .service-card .card-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    /* ensures all text aligns neatly */
    text-align: left;
    padding: 30px;
    z-index: 2;
    color: white;
}

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

/* Scrollable content area */
/* .page-id-179 .service-card .content-scroll {
    max-height: 200px;
    margin-top: 15px;
    overflow-y: auto;
} */

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

/* Optional: scrollbar styling */
.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;
}



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


.conatct-form {
    position: relative;
}

div#field_1_7 {
    position: absolute;
    bottom: 38px;
    left: 115PX;
    color: #444444;
}

#gform_submit_button_1 {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 24px !important;
    font-size: 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#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;
}