@charset "UTF-8";

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Bold.woff2') format('woff2'),
        url('../fonts/Gilroy-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Medium.woff2') format('woff2'),
        url('../fonts/Gilroy-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Light.woff2') format('woff2'),
        url('../fonts/Gilroy-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Heavy.woff2') format('woff2'),
        url('../fonts/Gilroy-Heavy.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Semibold.woff2') format('woff2'),
        url('../fonts/Gilroy-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Regular.woff2') format('woff2'),
        url('../fonts/Gilroy-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --black-color: #000;
    --white-color: #fff;
    --greent-color: #004C3F;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

section {
    overflow: hidden;
}

body {
    background: #000;
    font-family: 'Gilroy';
}

img {
    max-width: 100%;
}

.container {
    max-width: 1302px;
}

.btns {
    background: var(--greent-color);
    color: var(--white-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    padding: 12px 52px 12px 23px;
    border-radius: 8px;
    line-height: 26px;
    position: relative;
    border: 0;
}

.btns:before {
    font-family: bootstrap-icons !important;
    content: " \F138";
    position: absolute;
    right: 22px;
    top: 15px;
    display: block;
    line-height: 22px;
    font-size: 18px;
    transform: rotate(315deg);
    transition: all 0.3s ease;
}

.btns:hover:before {
    transform: rotate(360deg);
}

p {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #FFFFFF;
}

/* ====== Header Css Start ====== */
header {
  position: relative;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.header-inner {
    padding: 25px 0;
}

.header-inner nav ul {
    gap: 50px;
}

.header-inner nav ul li a {
    color: var(--white-color);
    text-decoration: none;
    font-weight: 500;
    text-align: left;
}
.header-inner nav ul .sub-menu-main li + li{
    margin-top: 7px;
}
.header-inner nav ul{
    position: relative;
    align-items: center;
}

.header-inner nav ul>li.sub-menu-main>a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-inner nav ul li {
    position: relative;
}

.header-inner nav ul li ul {
    position: absolute;
    width: 230px;
    padding: 20px;
    background: linear-gradient(180deg, #000000 0%, #001914 100%);
    display: none;
    flex-direction: column;
    gap: 15px;
    left: -20px;
    border-radius: 12px;
}
.hamburger {
    display: none;
  }
/* Hide toggle menu on desktop, show on mobile */
#menuToggle {display: none;}
.mobile-get-started {display: none;}
/* Show desktop nav on desktop, hide on mobile */
.desktop-nav {display: flex;}



/* ====== Header Css End ====== */


/* ====== Home Css Start ====== */
.banner-section {
    padding: 24px 0 100px;
    background: linear-gradient(180deg, #000000 0%, #001914 100%);
}

@keyframes moveGradient {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.banner-content h1 {
    font-weight: 600;
    font-size: 65px;
    line-height: 120%;
    background: linear-gradient(90deg, #5FD5B6, #6EA6D2, #5FD5B6);
    background-size: 200% 200%;
    background-position: 0% 50%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    animation: moveGradient 4s linear infinite;
    margin-bottom: 16px;
}

.banner-content p {
    margin-bottom: 32px;
}

.banner-img {
    padding-left: 82px;
}

.banner-img img {
    max-width: unset;
}

.logo-slider img {
    height: 100px;
    margin: auto;
    filter: brightness(0) invert(1);
}

.section-title {
    text-align: center;
    margin-bottom: 41px;
}

.section-title h2 {
    font-weight: 600;
    font-size: 54px;
    line-height: 130%;
    color: #FFFFFF;
    margin-bottom: 14px;
}

.section-title p {
    font-size: 16px;
    margin-bottom: 0;
}

.services-section {
    padding: 73px 0;
}

.services-section .row {
    --bs-gutter-x: 30px;
    row-gap: 30px;
}

.service-card {
    border: 1px solid rgba(0, 76, 63, 0.2);
    border-radius: 20px;
    padding: 11px;
}

.service-card:hover {
    border: 1px solid rgba(0, 76, 63, 1);
}

.service-box {
    background: radial-gradient(50% 72.45% at 49.87% 50%, rgba(0, 76, 63, 0.65) 0%, rgba(0, 21, 17, 0.65) 100%);
    border-radius: 12px;
    padding: 24px;
}

.service-box h4 {
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    color: #FFFFFF;
    margin: 30px 0 9px;
}

.blog-box-img .service-icon {
    position: absolute;
    right: 30px;
    bottom: -30px;
}

.service-box p {
    font-size: 16px;
    margin-bottom: 43px;
}

.setup-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #001914 0%, #000000 100%);
}

.setup-box {
    text-align: center;
}

.setup-box h4 {
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    color: #FFFFFF;
    margin: 20px 0 10px;
}

.services-cms-section .row {
    row-gap: 100px;
    --bs-gutter-x: 50px;
}

.setup-box b {
    width: 80px;
    height: 80px;
    font-size: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin: auto;
    background: radial-gradient(50% 72.45% at 49.87% 50%, rgba(0, 76, 63, 0.65) 0%, rgba(0, 21, 17, 0.65) 100%);
}

.view-more-link a {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    text-decoration: none;
    position: relative;
    padding-right: 27px;
}

.view-more-link a::before {
    font-family: bootstrap-icons !important;
    content: " \F138";
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    line-height: 22px;
    font-size: 18px;
    transform: rotate(315deg);
    transition: all 0.3s ease;
}

.view-more-link a:hover::before {
    transform: rotate(360deg);
}

.logo-slider {
    padding: 50px 0 0 0;
}


.who-we-are-section {
    padding: 168px 0 120px;
    background: linear-gradient(180deg, #000000 0%, #001914 100%);
}

.who-we-img-02 {
    margin-top: 60px;
}

.who-we-content {
    padding: 15px 0 0 4px;
}

.who-we-content h2 {
    font-size: 54px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 15px;
}

.who-we-content p {
    font-size: 16px;
    margin-bottom: 24px;
}

.who-we-content h4 {
    font-weight: 600;
    font-size: 24px;
    line-height: 150%;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.who-we-content ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 33px;
}

.who-we-content ul li {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #FFFFFF;
    padding-left: 26px;
    position: relative;
}

.who-we-content ul li:before {
    font-family: bootstrap-icons !important;
    position: absolute;
    content: "\F518";
    color: #ccc;
    font-size: 14px;
    top: 0;
    left: 0;
}

.projects-section {
    padding: 116px 0 120px;
    background: linear-gradient(143.49deg, #000000 0.86%, #191A1B 50.43%, #000000 100%);
}

.projects-section {
    background: transparent;
}

.project-img {
    position: relative;
    padding: 31.4% 25%;
    margin-bottom: 14px;
}

.small-project .project-img {
    padding: 44.7% 25%;
}

.projects-main {
    margin-bottom: 53px;
}

.projects-main .row {
    --bs-gutter-x: 30px;
    row-gap: 62px;
}

.project-img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.project-box>h3 {
    font-size: 24px;
    line-height: 130%;
    color: #FFFFFF;
}

.project-box>p {
    font-size: 16px;
    margin: 0;
    width: 80%;
    color: #aaadaf;
}

.mix-section {
    padding: 120px 0 0;
    background: linear-gradient(180deg, #000000 0%, #001914 100%);
    margin-bottom: -2px;
}

.why-partner-box-inner {
    width: calc(50% - 15px);
}

.why-partner-box {
    background: radial-gradient(50% 72.45% at 49.87% 50%, rgba(0, 76, 63, 0.65) 0%, rgba(0, 21, 17, 0.65) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(50px);
    border-radius: 12px;
    padding: 24px;
    min-height: 196px;
}

.why-partner-box:not(:last-child) {
    margin-bottom: 30px;
}

.why-partner-box-inner:nth-child(2) {
    margin-top: 50px;
}

.why-partner-box p {
    font-weight: bold;
    font-size: 20px;
    line-height: 130%;
    color: #FFFFFF;
    margin-bottom: 0;
}

.why-partner .row {
    --bs-gutter-x: 30px;
}

.why-partner-main {
    row-gap: 30px;
}

.why-partner-box img {
    margin-bottom: 57px;
    height: 60px;
}

.why-partner .section-title {
    text-align: left;
    margin: 0;
    padding-right: 37%;
}

.why-partner .section-title p {
    margin-bottom: 0;
}

.testimonial-main .section-title {
    text-align: left;
   
   
}

.testimonial-main {
    margin-top: 120px;
}

.testimonial-slider {
    background: radial-gradient(50% 72.45% at 49.87% 50%, rgba(0, 76, 63, 0.35) 0%, rgba(0, 21, 17, 0.35) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 51px 76px 54px;
}

.testimonial-main .row {
    --bs-gutter-x: 30px;
}

.testimonial-icon {
    text-align: center;
    margin-bottom: 30px;
}



.testimonial-profile-img img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-profile-name {
    padding-left: 16px;
}

.testimonial-profile-name h5 {
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    color: #FFFFFF;
    margin-bottom: 5px;
}

.testimonial-profile-name p {
    text-align: left;
    margin-bottom: 0;
    font-size: 16px;
}

.testimonial-slider-main .slick-arrow {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #004C3F;
    top: 50%;
    border-radius: 50%;
    border: 0;
    transform: translate(0, -50%);
    font-size: 0;
}

.testimonial-slider-main .slick-arrow::before {
    font-family: bootstrap-icons !important;
    content: " \F138";
    font-size: 20px;
    color: #fff;
}


.testimonial-slider-main .slick-prev {
    left: -30px;
    transform-origin: center center;
    transform: rotate(180deg) translateY(30px);
    margin-bottom: 40px;
}
.testimonial-slider-main .slick-next {
    right: -30px;
}

.testimonial-slider {
    position: relative;
}

.testimonial-slider .slick-slider {
    position: unset;
}

.testimonial-slider .slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
}

.testimonial-slider .slick-dots button {
    border-radius: 50%;
    border: 0;
    display: flex;
    font-size: 0;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 0;
    position: relative;
}

.testimonial-slider .slick-dots .slick-active button {
    background-color: #fff;
}

.testimonial-slider .slick-dots .slick-active button::before {
    content: "";
    width: 16px;
    height: 16px;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    position: absolute;
    left: -4px;
    top: -4px;
}

.testimonial-client {
    gap: 16px;
    margin-bottom: 15px;
}

.satisfaction-data-main {
    margin-top: 120px;
    background: radial-gradient(50% 72.45% at 49.87% 50%, rgba(0, 21, 17, 0.35) 0%, rgba(0, 0, 0, 0.35) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(50px);
    border-radius: 12px;
    padding: 80px;
    overflow: hidden;
}

.journey{
  justify-content: flex-end;
}

.satisfaction-data-main .section-title {
    text-align: left;
}

.satisfaction-data-list ul {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.satisfaction-data-list ul li {
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    color: #FFFFFF;
}

.satisfaction-data-list ul li b {
    font-size: 24px;
    font-weight: 500;
}

.circle-box {
    width: 270px;
    height: 270px;
    background: rgba(0, 76, 63, 0.1);
    border: 1px solid rgba(0, 76, 63, 0.1);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    text-align: center;
    color: #FFFFFF;
    padding: 5px;
}

.satisfaction-circle {
    position: relative;
}

.circle-box.circle-box-up {
    position: absolute;
    bottom: 0;
}

.circle-box:nth-child(2) {
    width: 230px;
    height: 230px;
}

.circle-box:nth-child(3) {
    width: 190px;
    height: 190px;
}

.circle-box:nth-child(4) {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.worldwide-reach {
    position: relative;
    background: linear-gradient(180deg, #001914 0%, #000000 100%);
    padding: 267px 0 99px;
}

.worldwide-reach::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../images/map.png) no-repeat left 234px top 121px;
}

.worldwide-reach .section-title {
    text-align: left;
    padding-right: 5%;
}

.worldwide-reach .section-title h2 {
    margin-bottom: 20px;
}

.worldwide-reach .section-title p {
    margin-bottom: 36px;
}

.worldwide-reach .container {
    position: relative;
}

.logo-slider-2 img {
    height: 100px;
    margin: auto;
    filter: brightness(0) invert(1);
}

.happy-that-section {
    padding-top: 265px;
}

.happy-that-slider p {
    font-style: 500;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #FFFFFF;
}

.happy-that-slider {
    padding-left: 15%;
    padding-top: 14px;
}

.blog-box-main {
    background: radial-gradient(50% 72.45% at 49.87% 50%, rgba(0, 76, 63, 0.35) 0%, rgba(0, 21, 17, 0.35) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 15px 26px;
    min-height: 100%;
}

.blog-box-main:hover {
    border: 1px solid rgba(0, 76, 63, 1);
}

.blog-box-img>span {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    color: #FFFFFF;
    padding: 8px 12px;
    display: inline-flex;
}

.blog-section {
    padding: 0 0 120px;
}

.blog-section .row {
    margin-bottom: 52px;
    --bs-gutter-x: 30px;
    margin-top: 46px;
    row-gap: 30px;
}

.blog-box-img {
    position: relative;
    padding: 36.8% 25%;
    margin-bottom: 15px;
}

.blog-box-img>img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}


.blog-box-main label {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #FFFFFF;

}

.blog-box-main h4 {
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    color: #FFFFFF;
    margin: 7px 0 9px;
}

.blog-box-main>p {
    font-size: 16px;
    margin-bottom: 24px;
    color: #aaadaf;
}

.page-blog-section {
    padding-top: 120px;
}

.blog-box-main h6 {
    color: #fff;
    font-weight: bold;
}

.blog-box-main ul {
    list-style: circle;
    padding-left: 17px;
}

.blog-box-main li {
    color: #fff;
}

/* ====== Home Css End ====== */


/* ====== Footer Css Start ====== */
.footer {
    background: linear-gradient(180deg, #000000 0%, #001914 100%);
}

.social-links ul {
    gap: 10px;
}

.social-links ul li a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.logo-links {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 31px 0;
    margin-bottom: 59px;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 21px 0 24px;
    margin-top: 59px;
}

.footer-copyright p {
    font-size: 16px;
    margin-bottom: 0;
}

.footer-widget h5 {
    margin-bottom: 24px;
    font-weight: 600;
    font-size: 18px;
    color: #FFFFFF;
}

.footer-widget ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-widget ul li img {
    width: 40px;
}

.footer-widget ul li a {
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    display: inline-flex;
    color: #FFFFFF;
    text-decoration: none;
}

.footer-widget ul li a:hover {
    color: var(--white-color);
}

.footer-widget p {
    font-size: 16px;
}

.email-input input {
    width: calc(100% - 60px);
    height: 50px;
    background: #101920;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(50px);
    border-radius: 12px;
    padding: 0 15px;
    color: #fff;
    outline: none;
    outline-color: inherit;
}

.email-input button[type="submit"] {
    width: 50px;
    height: 50px;
    background: var(--greent-color);
    border-radius: 12px;
    border: 0;
    color: #fff;
}

/* ====== Footer Css End ====== */

/* ====== About Css Start ====== */
.about-banner-section .row .section-title {
    text-align: left;
}

.about-img {
    text-align: right;
}

.about-banner-section {
    padding: 40px 0 121px;
    background: linear-gradient(180deg, #000000 0%, #001914 100%);
}

.about-banner-section .col-md-5 {
    width: 47%;
}

.about-banner-section .col-md-7 {
    width: 53%;
}

.about-banner-content p {
    margin-bottom: 34px;
}

.about-banner-content {
    padding-top: 21px;
}

.about-box {
    border: 1px solid rgba(0, 76, 63, 0.2);
    border-radius: 20px;
    padding: 12px;
    display: flex;
    min-height: 100%;
}

.about-box:hover {
    border: 1px solid #004C3F;
}

.about-banner-box {
    background: radial-gradient(50% 72.45% at 49.87% 50%, rgba(0, 76, 63, 0.65) 0%, rgba(0, 21, 17, 0.65) 100%);
    border-radius: 12px;
    padding: 24px;
    min-height: 100%;
}

.about-banner-box-main {
    margin: 129px 0 116px;
}

.about-banner-box h4 {
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    color: #FFFFFF;
    margin: 30px 0 9px;
}

.about-banner-box p {
    font-size: 16px;
    margin-bottom: 0;
}

.core-values-card {
    background: radial-gradient(50% 72.45% at 49.87% 50%, rgba(0, 76, 63, 0.65) 0%, rgba(0, 21, 17, 0.65) 100%);
    border-radius: 12px;
    padding: 24px;
}

.core-values-card img {
    width: 60px;
}

.core-values-card h5 {
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    color: #FEFEFF;
    margin: 30px 0 17px;
}

.core-values-card p {
    font-size: 16px;
    margin-bottom: 0;
}

.our-core-values .section-title {
    margin-bottom: 46px;
}

.our-core-values .col-md-3:nth-child(2n+0) {
    margin-top: 50px;
}

.team-section {
    padding: 116px 0 122px;
    background: linear-gradient(143.49deg, #000000 0.86%, #191A1B 50.43%, #000000 100%);
}

.section-title p {
    width: 100%;
    max-width: 800px;
    margin: auto;
}

.team-section .section-title {
    margin-bottom: 44px;
}

.team-card-main {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.team-card-main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.75) 100%);
    border-radius: 12px;
    z-index: 1;
    opacity: 0.5;
}


.team-card-main:hover::before {
    background: linear-gradient(180deg, rgba(0, 48, 40, 0) 41.53%, #003028 100%);
    opacity: 1;
}

.team-card-img {
    position: relative;
    padding: 60.5% 25%;
}

.team-card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.team-card-main:hover img {
    filter: grayscale(0%);
}

.team-card-name {
    position: absolute;
    bottom: -100%;
    z-index: 1;
    padding: 16px;
    transition: all 0.3s ease;
}

.team-card-main:hover .team-card-name {
    bottom: 0;
}

.team-card-name h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    color: #FFFFFF;
    margin-bottom: 5px;
}

.team-card-name p {
    margin-bottom: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #FFFFFF;
}

.team-section .row {
    --bs-gutter-x: 30px;
    row-gap: 42px;
}

.connect-section {
    padding: 0 0 120px;
}

.lets-connect {
    background: radial-gradient(50% 72.45% at 49.87% 50%, rgba(0, 76, 63, 0.35) 0%, rgba(0, 21, 17, 0.35) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 80px;
    position: relative;
}

.lets-connect::before,
.lets-connect::after {
    content: "";
    width: 248px;
    height: 125px;
    background: url(../images/Ellipse-1.png) no-repeat center center;
    position: absolute;
    left: 80px;
    top: 0;
    z-index: -1;
}

.lets-connect::after {
    background: url(../images/Ellipse-2.png) no-repeat right center;
    bottom: 0;
    right: 80px;
    top: unset;
    left: unset;
}

.our-journey-section {
    padding: 116px 0 120px 0;
}

.icon-logo-main {
    width: 407px;
    height: 394px;
    border: 1px solid rgba(0, 76, 63, 0.2);
    border-radius: 20px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-logo {
    width: 383px;
    height: 370px;
    background: radial-gradient(50% 72.45% at 49.87% 50%, rgba(0, 76, 63, 0.65) 0%, rgba(0, 21, 17, 0.65) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-journey-section .section-title {
    margin-bottom: 45px;
}

.culture-section .row {
    row-gap: 30px;
}


.key-milestones-section .container {
    max-width: 1085px;
}

.key-milestones-section .section-title {
    text-align: left;
}

.key-milestones-section {
    background: linear-gradient(180deg, #000000 0%, #001914 100%);
    padding-bottom: 120px;
}

.key-milestones-data ul {
    display: flex;
    flex-direction: column;
    row-gap: 42px;
    counter-reset: item;
    position: relative;
    z-index: 9;
}

.key-milestones-data ul::before {
    content: "";
    position: absolute;
    width: 1px;
    position: absolute;
    top: 0;
    bottom: 10px;
    background-color: #fff;
    left: 19px;
    z-index: -1;
}

.key-milestones-data li {
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color: #FFFFFF;
    counter-increment: item;
    position: relative;
    padding: 7px 0 7px 60px;
}

.key-milestones-data li::before {
    content: counter(item);
    width: 38px;
    height: 38px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    border-radius: 50%;
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    text-align: center;
    color: #004C3F;
    top: 0;
    left: 0;
}

.key-milestones-data li::after {
    content: "";
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    position: absolute;
    left: -6px;
    top: -6px;
    border-radius: 50%;
    background: #000;
    z-index: -1;
}

.why-choose-img img {
    max-width: unset;
}

.why-choose-section {
    background: url(../images/why-choose-bg.png) no-repeat center center / cover;
    padding: 116px 0 120px 0;

}

.why-choose-section .section-title {
    text-align: left;
    margin: 0;
}

.why-choose-section .section-title p {
    margin: 20px 0 36px;
}

.culture-section {
    padding: 116px 0;
    background: linear-gradient(180deg, #001914 0%, #000000 100%);
}

.call-email-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #101920;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.call-email-icon img {
    width: 40px;
}

.call-email {
    padding-left: 16px;
}

.call-email label {
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.call-email>a {
    font-weight: 700;
    font-size: 18px;
    line-height: 160%;
    color: #FFFFFF;
    text-decoration: none;
}

.call-email-box-main {
    gap: 80px;
    margin-bottom: 42px;
}

.our-journey-content {
    padding-left: 20px;
    width: 80%;
    border-left: 2px solid #fff;
}

.our-journey-content p {
    font-size: 16px;
    margin-bottom: 0;
}

/* ====== About Css End ====== */

/* ====== Contact Css Start ====== */
.contact-form-section {
    padding: 120px 0;
}

.form-group label {
    width: 100%;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    height: 50px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 15px;
    border-radius: 12px;
    color: #fff;
}

.form-group textarea {
    height: 100px;
    display: flex;
    padding: 15px;
}

.google-map iframe {
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
}

.our-locations {
    padding-bottom: 120px;
}

.contact-info .section-title {
    text-align: left;
}

.google-map {
    margin-bottom: 50px;
}

.contact-form-section .row {
    --bs-gutter-x: 50px;
}

.contact-form {
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
}
.contact-form .form-group input,
.contact-form .form-group textarea {
    padding: 30px;
}

.contact-form .form-group textarea{
    padding-top: 20px;
}

.contact-form>h4 {
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.contact-form .row {
    row-gap: 20px;
}

.maintenance-section {
    padding: 120px 0 120px;
}

.services-cms-img img {
    border-radius: 20px;
}

.service-detail-slider .section-title {
    text-align: left;
}


.service-detail-slider {
    margin-bottom: 120px;
}

.custom-arrow {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.custom-arrow button {
    width: 50px;
    height: 50px;
    background: var(--greent-color);
    border: 0;
    border-radius: 50%;
    color: var(--white-color);
}

.portfolio-detail-section {
    padding: 50px 0 0;
}

.problem-main h2,
.portfolio-detail h1 {
    text-align: center;
    font-size: 62px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 30px;
}

.problem-main h2 {
    text-align: left;
}

.service-icon-number {
    width: 60px;
    height: 60px;
    background-color: #fff;
    color: var(--greent-color);
    font-weight: bold;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.problem-main {
    margin-top: 100px;
}



.problem-main ul {
    counter-reset: item;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 30px 0;
}

.problem-main ul li {
    counter-increment: item;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #FFFFFF;
    border: 1px solid rgba(0, 76, 63, 1);
    padding: 20px 20px 20px 50px;
    border-radius: 10px;
    position: relative;
}

.problem-main ul li::before {
    content: counter(item);
    position: absolute;
    left: 20px;
    font-weight: bold;
}

.portfolio-detail-inner-main {
    margin-top: 50px;
}

.portfolio-detail-inner h4 {
    color: var(--white-color);
    font-weight: bold;
}




.blog-detail-section {
    padding-top: 80px;
    padding-bottom: 100px;
}
.blog-detail-section .col-lg-9 {
    padding: 0;
    width: 952px;
    margin-right: 15px;
}
.blog-detail-section .row .col-lg-9 .blog-image img {
    border-radius: 12px;
}
.blog-detail-section .row .col-lg-9 h1 {
    padding-top: 42px;
    font-weight: 700;
}
.text-white p {
    color: #aaadaf;
}
.blog-detail-section .row .col-lg-9 .blog-content {
    margin-bottom: 0;
    padding-top: 42px;
    margin-top: 0;
}
.blog-detail-section .row .col-lg-9 .blog-content ul li {
    position: relative;
    padding-left: 25px;
    color: #aaadaf;
}
.blog-detail-section .row .col-lg-9 .blog-content ul li:before {
    position: absolute;
    display: inline-block;
    content: "\F309";
    font-family: bootstrap-icons !important;
    left: 0;
}
.blog-detail-section .row .col-lg-9 .blog-content ul {
    margin-bottom: 10px;
}
.blog-detail-section .col-lg-2 {
    padding: 0;
    width: 298px;
    margin-left: 15px;
}
.blog-detail .blog-content-detail {
    background-color: #020202;
    border-radius: 12px;
    
    width: 298px;
    margin-bottom: 24px;
}
.blog-detail .blog-content-detail p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 0;
    padding-bottom: 8px;
}
.blog-detail .blog-content-detail h3 {
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
    margin-bottom: 0;
}
.blog-detail-section .col-lg-2 .blog-title {
    margin-bottom: 0;
    padding-top: 18px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding-bottom: 12px;
}
.blog-detail-section .col-lg-2 .blog-title-detail {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 26px 38px 26px 0px;
}
.blog-detail-section .col-lg-2 .blog-title-detail ul li {
    margin-bottom: 0;
    padding-bottom: 39px;
}
.blog-detail-section .col-lg-2 .blog-title-detail ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}
.blog-detail-section .col-lg-2 .blog-title-detail ul li p {
    margin-bottom: 0;
    border-left: 2px solid #3e3e3e;
    padding-left: 22px;
    transition: all 0.4s ease;
    cursor: pointer;
}
.blog-detail-section .col-lg-2 .blog-title-detail ul li p a{
    text-decoration: none;
    color: #aaadaf;
}
.blog-detail-section .col-lg-2 .blog-title-detail ul li p:hover{
    border-left-color: #ffffff;
    font-weight: 600;
    transition: all 0.4s ease;
}
.blog-detail-section .col-lg-2 .social-share {
    margin-bottom: 0;
    margin-top: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0 24px 32px;
    border-radius: 12px;
}
.blog-detail-section .col-lg-2 .social-share p {
    color: #aaadaf;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}
.blog-detail-section .col-lg-2 .social-share ul{
    gap: 15px;
}
.seo-table {
  width: 100%;
  max-width: 700px;
  border-collapse: collapse;
}

.seo-table td {
  border: 1px solid #2e2e2e;
  padding: 16px;
  vertical-align: top;
}

.seo-table td:first-child {
  font-weight: bold;
  width: 35%;
}

.blog-content-img {
    margin-top: 10px;
    display: inline-block;
    border-radius: 12px;
}

