@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
    --black : #000000;
    --grey : #F3F4F6;
    --dark-grey : #636363;
    --purle-grey : #7F879E;
    --light-grey : #F6F8F9;
    --light-green : #479E8E;
    --mid-green : #1E6B75;
    --dark-green : #00434C;
    --green : #005C57;
    --light-black : #201E1F;
    --white : #ffffff;
    --lightest-green : #92C1BB;
    --light-cyan : #65FFE5;
    --cyan : #9FE9DF;
    --black-45 : rgba(0, 0, 0, 0.45);
    --black-35 : rgba(0, 0, 0, 0.35);
    --black-30 : rgba(0, 0, 0, 0.30);
    --black-51 : rgba(0, 0, 0, 0.51);
    --mid-green-23 : rgba(30, 107, 117, 0.23);;
    --blur : 5px;
    --green-shadow-40 : 0px 7px 24.3px 1px rgba(30, 107, 117, 0.40);
    --black-shadow : 0px 7px 19.4px -1px rgba(0, 0, 0, 0.53);
    --black-shadow-25 :0px 4px 24.6px 0px rgba(0, 0, 0, 0.25);
    --lightest-green-75 : rgba(146, 193, 187, 0.70);
    --lightest-green-25 : rgba(146, 193, 187, 0.24);
    --green-shadow-30 : 0px 4px 11.8px 5px rgba(30, 107, 117, 0.30);;
}

* {
    box-sizing: border-box;
    font-family: Lato;
}
body {
    box-sizing: border-box;
    font-family: Lato;
    background: var(--white);
    /* height: 5000px; */
}

ul {
    list-style: none;
    padding-left: 0px;
}

a {
    text-decoration: none;
}

.text-black {
    color: var(--black);
}
.text-grey {
    color: var(--grey);
}
.text-light-green {
    color: var(--light-green);
}
.text-mid-green {
    color: var(--mid-green);
}
.text-light-black {
    color: var(--light-black);
}
.text-lightest-green {
    color: var(--lightest-green);
}
.text-white{
    color: var(--white);
}
.text-light-cyan{
    color: var(--light-cyan);
}
.text-cyan{
    color: var(--cyan);
}
.text-dark-green {
    color: var(--dark-green);
}

.header {
    background: var(--mid-green);
    padding: 25px 40px;
    /* height: 195px; */
    position: absolute;
    width: 100%;
    z-index: 5;
}
.sticky-header {    
    position: sticky;
    width: 100%;
    top: 0px;
}
.nav-brand img {
    height: 100px;
}
.social-media-ul {
    display: flex;
    align-items: center;
    gap: 15px;
}
.social-media-ul a {
    border-radius: 8px;
    background: var(--white);
    display: flex;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    transition: all 300ms linear;
}
.social-media-ul a svg {
    height: 22px;
    color: var(--black);
}
.social-media-ul a:hover {
    background: var(--lightest-green);
}
.social-media-ul a:hover svg {
    color: var(--white);
}

.navbar .navbar-collapse .navbar-nav{
    display: flex;
    gap: 20px;
    flex-direction: row;
    justify-content: center;
    transition: all 300ms linear;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    font-size: 24px;
    line-height: 1;
    font-weight: 600;
    color: var(--white);
    padding: 0px;
    transition: all 300ms linear;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover {
    border-bottom: 1px solid var(--white);
    transition: all 300ms linear;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link.active {
    border-bottom: 1px solid var(--white);
    transition: all 300ms linear;
}
.offcanvas.offcanvas-top {
    width: 100vw;
    transition-property: transform;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(16px) opacity(90%);
    color: var(--white);
    padding: 20px;
    height: 100%;
}
.offcanvas-header .btn-close {
    position: absolute;
    right: 20px;
    top: 50px;
}
.offcanvas.offcanvas-top .navbar-nav{
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: start;
}
.offcanvas.offcanvas-top .navbar-nav .nav-item .nav-link {
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
    color: var(--mid-green);
    padding: 0px;
}
.offcanvas.offcanvas-tio .navbar-nav .nav-item .nav-link:hover {
    border-bottom: 1px solid var(--mid-green);
}
.offcanvas.offcanvas-top .navbar-nav .nav-item .nav-link.active {
    border-bottom: 1px solid var(--mid-green);
}
.navbar-toggler {
    border: none;
    font-size: 30px;
}
.navbar-toggler:focus{
    box-shadow: none;
}
.navbar-toggler:focus-visible {
    outline: none;
}
.hero-section {
    position: relative;
    height: 1000px;
    padding-top: 190px;    
}
.hero-section:before {
    content: "";
    position: absolute;
    z-index: 1;
    background: url(../images/header.png);
    width: 100%;
    height: 376px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    top: 190px;
}
.hero-section::after {
    content: "";
    position: absolute;
    z-index: 1;
    background: url(../images/header-bg.png);
    width: 100%;
    height: 481px;
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    bottom: 0px;
    right: 0px;
}
.hero-slider {
    z-index: 0;
}
.hero-slider .owl-stage-outer , .hero-slider .owl-stage , .hero-slider .owl-item{
    height: 100%;
}
.hero-slider .item{
    height: 100%;
    width: 100%;
}
.hero-slider-bg {
    padding-top: 150px;
    width: 100%;
    height: 100%;
    background-size:cover !important;
    background-position: center !important;
    position: relative;
}
.hero-slider-bg::after {
    position: absolute;
    content: "";
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.45) 100%);
    background-blend-mode: luminosity, normal;
    top: 0px;
    left: 0px;
    z-index: 0;
    width: 100%;
    height: 100%;
}
.hero-slider-bg h1 {
    position: relative;
    z-index: 1;
}
.about-details > * {
    margin-bottom: 0px;
}
.img-box {
    position: relative;
}
.img-box::after {
    content: "";
    position: absolute;
    height: 120px;
    width: 50%;
    top: 0px;
    right: -1px;
    background: url(../images/upper-wave-1.png);
    background-position: top left;
    background-size: contain;
    background-repeat: no-repeat
}
.img-box::before {
    content: "";
    position: absolute;
    height: 100%;
    max-width: 50%;
    width: 100%;
    bottom: 0px;
    left: 0px;
    background: url(../images/down-wave-1.png);
    background-position: bottom;
    background-size: contain;
    background-repeat: no-repeat;
}
.categories-section {
    border-top: 5px solid var(--light-green, #479E8E);
    border-bottom: 5px solid var(--light-green, #479E8E);
    background: var(--mid-green, #1E6B75);
}
.bd-right-white {
    border-right: 3px solid var(--white);
}
.categories-slider .item {
    padding: 15px;
    background: transparent;
}
.categories-card {
    background: #FFF;
/* height:407px;*/
    border-radius: 8px;
    overflow: clip;
    transition: all 300ms linear;
    aspect-ratio: 1 / 1 ;
    display: flex;
    justify-content: center;
    align-items: center;
}
.categories-card:hover {
    box-shadow: 0px 4px 12px 2px rgba(235, 235, 235, 0.25);
    transition: all 300ms linear;
}
.categories-slider {
    padding-left: 75px;    
}
.categorie-img {
    margin: 20px 50px;
    transition: all 300ms linear;
}
.categorie-img img {
    object-fit: contain;
    transition: all 300ms linear;
    width: 261px !important;
    height: 261px;
}
.category-name {
    height: 110px;
    position: relative;    
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: end;
}
.category-name div {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    height: 70px;
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 2px 20px 20px;
    position: relative;
    background: var(--light-green);
    width: 100%;
    transition: all 300ms linear;
}
.category-name::after {
    content: "";
    position: absolute;
    height: 40px;
    width: 100%;
    background: url(../images/card-waves-lght.png);
    background-position: center;
    top: 0px;
    left: 0px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 300ms linear;
}
.categories-card:hover .categorie-img img{
    transform: scale(1.05);
    transition: all 300ms linear;
}
.categories-slider .owl-dots {
    display: none;
}
.serve-box {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 20px 10px;
    align-self: stretch;
    flex-wrap: wrap;
}
.indstry-box {
    background: var(--black-30);
    display: flex;
    align-items: center;
    gap: 15px;
    padding-right: 20px;
}
.indstry-box img {
    border: 1px solid var(--white, #FFF);
    width: 50px;
    height: 50px;
    aspect-ratio: 1/1;
    border-radius: 100%;
    object-fit: cover;
}
.indstry-box p {
    color: var(--light-black);
    font-size: 20px;
    font-weight: 700;
    line-height: 80%;
    margin-bottom: 0px;
}
.key-section {
    border-top: 5px solid var(--mid-green);
    border-bottom: 5px solid var(--mid-green);
    background: url(../images/key-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.key-box {
    border-radius: 16px;
    background: var(--mid-green-23) ;
    box-shadow: var(--black-shadow);
    backdrop-filter: blur(5px);
    padding: 105px 40px;
    
}
.bd-right-black {
    border-right: 3px solid var(--black);
}
.pe-130 {
    /* padding-right: 130px; */
    padding-right: calc(100% - 420px);
}
.key-icon-box {
    max-width: 220px;
    display: flex;
    gap: 15px;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
}
.key-icon-box .icon-box {
    border-radius: 100px;
    background: var(--mid-green);
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.key-icon-box .icon-box img {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0px 8px 2px rgba(0, 0, 0, 0.25));
}
.key-icon-box p {
    color: var(--green);
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0px;
}
.box-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column: 2;
    gap: 30px 0px;
    justify-items: center;
}

.testimonials-section {
    background: var(--grey);
}

.testimonial-slider .item{
    padding: 10px;
    padding-bottom: 20px;
}
.testimonial-card {
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0px 4px 17.9px 0px rgba(0, 0, 0, 0.06);
    padding: 30px;
    padding-top: 66px;
    margin-top: 60px;
    position: relative;
}
.testimonial-card p {
    height: 99px;
    overflow: hidden;
    color: var(--light-black);
    text-overflow: ellipsis;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
.testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    overflow: clip;
    box-shadow: 5px 7px 19.8px 0px rgba(0, 0, 0, 0.23);
    position: absolute;
    left: 30px;
    top: -49px;
}
.testimonial-img img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}
.testimonial-slider .owl-item.active.center .item .testimonial-card {
    background: var(--mid-green);
}
.testimonial-slider .owl-item.active.center .item .testimonial-card p {
    color: var(--white);
}
.testimonial-hr {
    color: var(--dark-grey);
    opacity: 1;
    margin-bottom: 20px;
}
.testimonial-slider .owl-item.active.center .item .testimonial-card .testimonial-hr {
    color: var(--white);
}
.rating-img img{
    height: 16px;
    width: auto !important;
}
.testimonial-slider .owl-item.active.center .item .testimonial-card .customer-name h6 {
    color: var(--white);
}
.footer {
    background: var(--black);
}
.footer-logo {
    height: 126px;
}
.footer-logo img {
    height: 126px;
    width: auto !important;
}
ul.quick-links li:first-child {
    color: #9FE9DF;     
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 40px;
}
ul.quick-links li a {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
}
ul.quick-links li {
    margin-bottom: 20px;
}
.small-gallery-card {
    display: flex;
    padding: 15px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: url(../images/white-bg.jpg);
    background-position: center;
    background-size: cover;
    max-height: 100px;
    max-width: 100px;
    aspect-ratio: 1/1;
    position: relative;
    transition: all 300ms linear;
}
.small-gallery-card img {
    width: 70px;
    height: 70px;
    aspect-ratio: 1/1;
    object-fit: contain;
    transition: all 300ms linear;
}
.small-gallery-card:hover {
    /* padding: 10px; */
    transition: all 300ms linear;
}
.small-gallery-card:hover img {
    transform: scale(1.1);
    transition: all 300ms linear;
}
.small-gallery-card .gallery-hover-card {
    z-index: 1;
    position: absolute;
    left: 5px;
    top: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    aspect-ratio: 1/1;
    padding: 30px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: var(--lightest-green-75);
    transition: all 300ms linear;
    display: none;
}
.small-gallery-card .gallery-hover-card i {
    font-size: 30px;
    color: var(--white);
    transition: all 300ms linear;
}
.small-gallery-card:hover .gallery-hover-card {
    display: flex;
    transition: all 300ms linear;
}
.svipl-img {
    width: 170px !important;
    margin-left: 13px;
}
.breadcrumb-section {
    position: relative;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.51) 0%, rgba(0, 0, 0, 0.51) 100%), url(../images/breadcrumb-bg.jpg) lightgray 0px -159.975px / 100% 188.25% no-repeat;
    padding-top: 300px;
    padding-bottom: 150px;
}
.breadcrumb-section nav {
    display: flex;
    justify-content: center;
}
.breadcrumb-item {
    font-size: 24px;
    font-weight: 700;
}
.breadcrumb-item a ,
.breadcrumb-item {
    color: var(--white) !important;
    line-height: normal;
}
.breadcrumb-item+.breadcrumb-item::before {
    color: var(--white);
}
.breadcrumb-section::before {
    content: "";
    position: absolute;
    z-index: 1;
    background: url(../images/header.png);
    width: 100%;
    height: 376px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    top: 150px;   
}
.breadcrumb-section .container {
    position: relative;
    z-index: 1;
}
.img-box-2 {
    position: relative;
}
.img-box-2::after {
    content: "";
    position: absolute;
    height: 139px;
    width: 60%;
    top: 0px;
    left: 0px;
    background: url(../images/left-wave.png);
    background-position: top left;
    background-size: contain;
    background-repeat: no-repeat
}
.img-box-2::before {
    content: "";
    position: absolute;
    height: 70%;    
    width: 193px;
    bottom: 0px;
    right: 0px;
    background: url(../images/right-wave.png);
    background-position: bottom right;
    background-size: contain;
    background-repeat: no-repeat;
}
.about-section .img-box-2 {
    max-height: 490px;
    height: 100%;
}
.about-section .img-box-2 img {
    object-fit: cover;
}
.mission-vision-section {
    background: url(../images/mission-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.number-ul {
    color: var(--white);
    list-style: decimal;
    font-size: 20px;   
    padding-left: 20px; 
}
.number-ul li + li {
  margin-top: 20px;
}
.future-section .img-box-2 {
    max-height: 369px;
    height: 100%;
}
.future-section .img-box-2 img{
    max-height: 369px;
    height: 100%;
    object-fit: cover;
}
.service-card {
    max-width: 400px;
    width: 100%;
    border-radius: 8px;
    background: var(--mid-green);
    overflow: clip;
    transition: all 300ms linear;
}
.service-card .services-img {
    height: 350px;
    position: relative;
    transition: all 300ms linear;
}
.service-card .services-img img {
    width: 100%;
    max-height: 350px;
    height: 100%;
    object-fit: cover;
    transition: all 300ms linear;
    overflow: clip;
    position: relative;
    z-index: 0;
}
.service-card .services-img::after {
    content: "";
    position: absolute;
    background: url(../images/card-waves-lght-2.png);
    background-position: center top;
    background-repeat: no-repeat;
    height: 41px;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: 1;
}
.service-card .services-img::before {
    content: "";
    position: absolute;
    background: url(../images/card-waves-lght-1.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    height: 42px;
    width: 100%;
    bottom: 0px;
    left: 0px;
    z-index: 1;
}
.service-card:hover .services-img img{
    transform: scale(1.05);
    transition: all 300ms linear;
}
.service-card-detail {
    padding: 15px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--mid-green);
    position: relative;
    z-index: 1;
}
.service-card:hover {
    box-shadow: var(--green-shadow-40);
}
.img-box-3 {
    position: relative;
}
.img-box-3::after {
    content: "";
    position: absolute;
    height: 60%;
    width: 150px;
    top: 0px;
    right: 0px;
    background: url(../images/right-wave-d.png);
    background-position: top right;
    background-size: contain;
    background-repeat: no-repeat
}
.img-box-3::before {
    content: "";
    position: absolute;
    height: 100px;    
    width: 60%;
    bottom: 0px;
    left: 0px;
    background: url(../images/upper-wave-d.png);
    background-position: left bottom;
    background-size: contain;
    background-repeat: no-repeat;
}
.img-box-3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 400px;
    border-radius: 15px;
}
.services-detail-ul {
    list-style: decimal;
    padding-left: 30px; 
}
.services-detail-ul li + li {
  margin-top: 20px;
}
.service-det-section .img-box-3 {
    max-width: 540px;
    width: 100%;
}
.service-det-section .img-box-3 img {
    max-width: 540px;
    width: 100%;
}
.industry-card {
    max-width: 420px;
    width: 100%;
    height: 250px;
    overflow: clip;
    position: relative;
    transition: all 300ms linear;
}
.industry-img {
    width: 100%;
    height: 100%;
    margin-bottom: 0px;    
    padding: 20px;
    display: grid;
    align-items: center;
    transition: all 300ms linear;
    overflow: clip;
}
.industry-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0px;
    top: 0px;
    transition: all 300ms linear;
    border-radius: 10px;
}
.industry-card::after {
    content: "";
    position: absolute;
    height: 120px;
    width: 60%;
    top: 0px;
    right: 0px;
    background: url(../images/upperdown-wave-1.png);
    background-position: top right;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}
.industry-card::before {
    content: "";
    position: absolute;
    height: 100px;
    max-width: 80%;
    width: 100%;
    bottom: 0px;
    left: 0px;
    background: url(../images/upperdown-wave-2.png);
    background-position: bottom;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}
.industry-img::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
    background: var(--mid-green);
    transition: all 300ms linear;
    border-radius: 10px;
}
.industry-card .indstry-name {
    color: var(--white);
    font-size: 24px;
    line-height: normal;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    transition: all 300ms linear;
}
.industry-card .indstry-name p {
    text-align: center;
    transition: all 300ms linear;
}
.industry-card:hover .industry-img::after {
    opacity: 50%;
    transition: all 300ms linear;
}
.gallery-card {
    display: flex;
    max-width: 420px;
    height: 400px;
    padding: 75px 85px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: url(../images/white-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    transition: all 300ms linear;
    aspect-ratio: 1 / 1;
    width: 100%;
    margin: auto;
}
.gallery-card img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 300ms linear;
}
.gallery-card .gallery-hover-card {
    z-index: 1;
    position: absolute;
    left: 20px;
    top: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    aspect-ratio: 1/1;
    padding: 30px;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    background: var(--lightest-green-75);
    transition: all 300ms linear;
    display: none;
}
.gallery-card .gallery-hover-card i {
    font-size: 30px;
    color: var(--white);
    transition: all 300ms linear;
}
.gallery-card:hover .gallery-hover-card {
    display: flex;
    transition: all 300ms linear ;
}
.gallery-card:hover {
    box-shadow: var(--black-shadow-25);
    transition: all 300ms linear;
}
.gallery-card:hover {
    transition: all 300ms linear;
}
.gallery-card:hover img {
    transform: scale(1.05);
}
.contact-box {
    border-radius: 20px;
    background: var(--lightest-green-25);
    box-shadow: var(--green-shadow-30);
    overflow: clip;
}
.contact-box .bg-white {
    padding: 30px 20px;
}
.form-floating > .form-control {
    border-radius: 16px !important;
    background: var(--light-grey) ;
    border: 0px;
    padding: 19px 16px;
    height: 58px;
}
.form-floating > label {
    color: var(--purle-grey);
    padding: 19px 16px;
    line-height: 1;
    background: transparent;
}
.form-control:focus {
    box-shadow: none;
}
.form-floating > textarea.form-control {
    height: 150px;
    resize: none;
}
.primary-btn {
    width: fit-content;
    padding: 10px 30px;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    background: var(--mid-green);
}
.primary-btn:hover , .primary-btn:focus {
    background: var(--lightest-green);
    color: var(--mid-green);
}
.contact-info {
    padding: 30px;
}
div.alert {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 11px;
    line-height: normal;
}
div.alert .close {
    background: none;
    border: none;
    box-shadow: none;
    position: absolute;
    right: 10px;
    top: 10px;
}
.form-floating > textarea:focus ~ label::after, .form-floating > textarea:not(:placeholder-shown) ~ label::after {
    background: transparent;
}