/*------------------------------------------------------------------
Project: Meghji Solar
Author:Dk_theme009    
-------------------------------------------------------------------*/
/*----------------Table of contents Start---------------------------
1.Top Header Section
---------Table of contents End-----------------------------------*/
/*------------------------ [Color codes] ------------------------                     
Background:#FFF
Content:#FFF
-------------------------------------------------------------------*/
/*----------------------- [ Default css ] -----------------------*/
html {
    scroll-behavior: auto;
    -webkit-text-size-adjust: 100%;
    width: 100%;
    height: 100%;
    cursor: none;
    scrollbar-width: none;
    overflow-x: hidden;
}

html::-webkit-scrollbar {
    display: none;
}

*, ::after, ::before {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

a:focus, a {
    outline: none;
    text-decoration: none;
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

svg {
    vertical-align: middle;
}

input {
    outline-width: 0;
    outline-offset: 0;
    outline: 0;
    border: none;
    outline: none;
    width: 100%;
}

textarea {
    outline-width: 0;
    outline-offset: 0;
    outline: 0;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

body {
    height: 100%;
    width: 100%;
    font-family: "Rajdhani", sans-serif;
    font-family: "Nunito Sans", sans-serif;
    box-sizing: border-box;
    scroll-behavior: smooth;
    cursor: auto;
    overflow-x: clip;
}

::-webkit-scrollbar {
    width: 0px;
}

::-webkit-scrollbar-corner {
    display: none;
}

::-webkit-scrollbar-thumb {
    background: transparent;
    background-clip: content-box;
    border-radius: 20px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}


.fade_up,
.fade_down,
.zoom_in,
.zoom_out {
    opacity: 0;
    transition: all 2s;
}

.fade_up {
    transform: translateY(-100%);
}

.fade_down {
    transform: translateY(100%);
}

.zoom_in {
    transform: scale(0.5);
}

.zoom_out {
    transform: scale(1.5);
}

.fade_right {
    opacity: 0;
    transform: translateX(-100%);
    transition: all 2s;
}

.fade_left {
    opacity: 0;
    transform: translateX(100%);
    transition: all 2s;
}

.flip_left {
    opacity: 0;
    transform: perspective(400px) rotateY(-90deg);
    transition: all 2s;
}

.flip_right {
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
    transition: all 2s;
}

.flip_up {
    opacity: 0;
    transform: perspective(400px) rotateX(-90deg);
    transition: all 2s;
}

.flip_down {
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
    transition: all 2s;
}

.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.animation-data {
    animation: drop-in 5s ease 500ms backwards;
    transition: all 0.2s ease;
    overflow: hidden;
}

.container {
    width: 1290px;
    margin: auto;
}

@keyframes drop-in {
    0% {
        opacity: 0;
        transform: translateY(80px);
    }

    100% {
        opacity: 1;
        transform: translate(0px);
    }
}

/* ----- [ root Data ] ----- */
/*  */
:root {
    --text-blue-color: #2d537a;
    --text-yellow-color: #9FD456;
}

/* --------------- [ Preloader Design section ] --------------- */
.preloader {
    align-items: center;
    display: flex;
    height: 100vh;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    z-index: 9999999;
    background-color: #FFF;
}

.preloader .animation-preloader {
    z-index: 1000;
}

.preloader .animation-preloader .spinner {
    margin: 0 auto 2.5em auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner img {
    width: 100%;
    max-width: 280px;
    object-fit: cover;
}

.preloader .animation-preloader .txt-loading {
    font-size: 70px;
    font-weight: bold;
    text-align: center;
    user-select: none;
}

.preloader .animation-preloader .txt-loading .letters-loading {
    color: var(--text-yellow-color);
    position: relative;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
    animation-delay: 0.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
    animation-delay: 0.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
    animation-delay: 0.6s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
    animation-delay: 0.8s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
    animation-delay: 1s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
    animation-delay: 1.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
    animation-delay: 1.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(9):before {
    animation-delay: 1.6s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(10):before {
    animation-delay: 1.8s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(11):before {
    animation-delay: 2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(12):before {
    animation-delay: 2.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading::before {
    animation: letters-loading 4s infinite;
    color: var(--text-blue-color);
    content: attr(data-text-preloader);
    left: 0;
    opacity: 0;
    position: absolute;
    top: -10px;
    transform: rotateY(-90deg);
}

@keyframes letters-loading {
    0%, 75%, 100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }

    25%, 50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

.preloader p {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: var(--main-text);
}

.preloader .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 0;
    z-index: 1;
    pointer-events: none;
}

.preloader .loader .row {
    height: 100%;
}

.preloader .loader .loader-section {
    padding: 0px;
}

.preloader .loader .loader-section .bg {
    background-color: var(--body-color);
    height: 100%;
    left: 0;
    width: 100%;
    transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader.loaded .animation-preloader {
    opacity: 0;
    transition: 0.3s ease-out;
}

.preloader.loaded .loader-section .bg {
    width: 0;
    transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

/* --------------------- [ hero Section Design ] --------------------- */
.bg-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    max-width: 100%;
    margin: 20px;
}

.left-data {
    width: 100%;
    background-color: #10271D;
    border-radius: 20px;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.left-data::after {
    width: 100%;
    height: 100%;
    content: " ";
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: url(../images/hero/left-mask.png);
    background-position: left center;
    background-repeat: no-repeat;
}

.data-gap .data-hero-sport {
    padding: 0;
    width: calc(50% - 10px);
}

.data-gap .data-hero-sport-two {
    padding: 0;
    width: calc(50% - 10px);
}

.spect-data {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.spect-text {
    font-size: 24px;
    font-weight: 500;
    font-family: "Nunito Sans", sans-serif;
    line-height: normal;
    color: #FFF;
}

.spect-data img {
    width: 100%;
    max-width: 100px;
}

.hero-title {
    font-size: 64px;
    font-weight: normal;
    line-height: 80px;
    color: #FFF;
}

.hero-title span {
    font-weight: 800;
    color: #9FD456;
}

.hero-desc {
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    color: #FFF;
    margin-top: 40px;
    max-width: 730px;
}

.button {
    position: relative;
    padding: 15px 40px;
    border-radius: 30px;
    border: none;
    color: #fff;
    cursor: pointer;
    background-color: #9FD456;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 11;
    margin-top: 40px;
}

.btn-text {
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    color: #10271D;
    white-space: nowrap;
}

.button img {
    width: 100%;
    max-width: 30px;
}

.button:active {
    transform: scale(0.96);
}

.button:before,
.button:after {
    position: absolute;
    content: "";
    width: 100%;
    left: 50%;
    height: 100%;
    transform: translateX(-50%);
    z-index: 0;
    background-repeat: no-repeat;
}

.button:hover:before {
    top: -70%;
    background-image: radial-gradient(circle, #9FD456 20%, transparent 20%),
        radial-gradient(circle, transparent 20%, #9FD456 20%, transparent 30%),
        radial-gradient(circle, #9FD456 20%, transparent 20%),
        radial-gradient(circle, #9FD456 20%, transparent 20%),
        radial-gradient(circle, transparent 10%, #9FD456 15%, transparent 20%),
        radial-gradient(circle, #9FD456 20%, transparent 20%),
        radial-gradient(circle, #9FD456 20%, transparent 20%),
        radial-gradient(circle, #9FD456 20%, transparent 20%),
        radial-gradient(circle, #9FD456 20%, transparent 20%);
    background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%,
        10% 10%, 18% 18%;
    background-position: 50% 120%;
    animation: greentopBubbles 0.6s ease;
}

@keyframes greentopBubbles {
    0% {
        background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%,
            40% 90%, 55% 90%, 70% 90%;
    }

    50% {
        background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%,
            50% 50%, 65% 20%, 90% 30%;
    }

    100% {
        background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%,
            50% 40%, 65% 10%, 90% 20%;
        background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
}

.button:hover::after {
    bottom: -70%;
    background-image: radial-gradient(circle, #9FD456 20%, transparent 20%),
        radial-gradient(circle, #9FD456 20%, transparent 20%),
        radial-gradient(circle, transparent 10%, #9FD456 15%, transparent 20%),
        radial-gradient(circle, #9FD456 20%, transparent 20%),
        radial-gradient(circle, #9FD456 20%, transparent 20%),
        radial-gradient(circle, #9FD456 20%, transparent 20%),
        radial-gradient(circle, #9FD456 20%, transparent 20%);
    background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 20% 20%, 18% 18%;
    background-position: 50% 0%;
    animation: greenbottomBubbles 0.6s ease;
}

@keyframes greenbottomBubbles {
    0% {
        background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%,
            70% -10%, 70% 0%;
    }

    50% {
        background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%,
            105% 0%;
    }

    100% {
        background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%,
            110% 10%;
        background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
}

.text-design-font {
    margin: auto;
    margin-top: 128px;
    width: 100%;
}

.text-font {
    font-size: 140px;
    font-weight: 800;
    line-height: 123px;
    text-transform: uppercase;
    color: #FFF;
    text-align: center;
    background: linear-gradient(181deg, rgba(255, 255, 255, 0.2) 0%, rgb(255 255 255 / 0%) 90%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShimmer 3s linear infinite;
}

@keyframes gradientShimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.data-left {
    padding: 100px;
    padding-top: 0;
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    margin-top: -80px;
}

.right-data {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.right-data img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

/* ------------------------------------ slider-home Index.html slider */
.video-slider-slider {
    width: 100%;
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;

    z-index: 1;
}

.slider-under-home {
    width: 100%;
    position: relative;
    height: 100%;
}

.bg-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
    max-height: 600px;
}

.slide-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.slide-content .home-made-services {
    transition-delay: 0.2s;
}

.slide-content .home-hero-title {
    transition-delay: 0.3s;
}

.slide-content .home-desc-made {
    transition-delay: 0.5s;
}

.slide-content .slider-btn {
    transition-delay: 0.7s;
}

.slick-active .slide-content,
.slick-active .slide-content .provide,
.slick-active .slide-content .quality,
.slick-active .slide-content .residents,
.slick-active .slide-content .btn-cutomer-main {
    opacity: 1;
    transform: translateY(0);
}

.slider-under-home {
    margin: 0;
}

/* ----------------------------- bg-home Index.html image */
.image-home {
    width: 100%;
    height: 100%;
    background-image: url(../images/hero/image-home-1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
    padding-top: 160px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.image-home::after {
    position: absolute;
    content: " ";
    background: #000000;
    width: 100%;
    height: 100%;
    opacity: 0.65;
    pointer-events: none;
    top: 0;
    left: 0;
}

.data-hero-home {
    position: relative;
    z-index: 995;
    width: 100%;
    max-width: 750px;
}

.home-made-services {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
}

.home-made-services img {
    width: 100%;
    max-width: 100px;
}

.home-made-title {
    font-size: 24px;
    font-weight: 500;
    line-height: normal;
    color: #FFF;
}

.home-hero-title {
    font-size: 64px;
    font-weight: normal;
    line-height: 80px;
    color: #FFF;
    margin-top: 20px;
}

.home-hero-title span {
    color: #9FD456;
    font-weight: 800;
}

.home-desc-made {
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    color: #FFF;
    margin-top: 40px;
}

.text-relable-data {
    position: absolute;
    width: 100%;
    margin: auto;
    text-align: center;
    bottom: -2%;
    left: 0;
    z-index: 111;
}

.home-renewable {
    font-size: 290px;
    line-height: 290px;
    pointer-events: none;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ------------------------------------ Video-home Index.html video */
.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 0;
}

.data-video {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    border-radius: 20px;
}

.video-home {
    background-image: none;
}

/* ================ [ top header section design start ]  ================ */
.top-header {
    margin: auto;
    transition: all 0.3s ease-in-out;
    max-width: 1880px;
    padding: 10px 0;
    width: calc(100% - 40px);
    background-color: #FFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.data-mail {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
}


.mail-design img {
    width: 100%;
    max-width: 20px;
}

.mail-design {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 8px;
}

.mail-name {
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
    color: #2d537a;
}

.main-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}



.social-data-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color: #2d537a;
    transition: all .5s ease;

}

.social-data-footer:hover {
    background-color: #9FD456;
    transition: all .5s ease;
}

.social-data-footer img {
    width: 100%;
    max-width: 18px;
    object-fit: cover;
}

.social-media {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.contact-detail {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}


.menu-mail {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 8px;
}

.menu-mail img {
    width: 100%;
    max-width: 20px;
}








/* ================ [ header section design start ]  ================ */
.header-container {
    width: 100%;
    margin: 0 15px;
    animation: slideIn 0.5s ease forwards;

}

.header {
    position: relative;
    z-index: 1000;
    transition: .5s ease;
}

.header {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    z-index: 99;
    transition: all 0.3s ease-in-out;
    max-width: 1880px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 20px 20px 0px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background: #FFF;
    padding: 10px 0;
    width: calc(100% - 30px);
}

.header.active {
    position: fixed;
    padding: 0;
    top: 0;
    margin: auto;
    right: 0;
    left: 0;
    transform: translateY(-100%);
    transition: none;
    animation: slideIn 0.5s ease forwards;
    padding: 10px 0;
    box-shadow: none;
}

@keyframes slideIn {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

.logo img {
    width: 300px;
    object-fit: cover;
}


.ul-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.li-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
}

.navbar-anchor {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: #2d537a;
    text-transform: capitalize;
    transition: all .5s ease-in;
}

.navbar-anchor:hover {
    color: #9FD456;
    transition: all .5s ease-in;
}


.ul-design {
    padding: 20px;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    background-color: #FFF;
    border-radius: 20px;
    position: absolute;
    top: 40px;
    left: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    min-width: 250px;
    opacity: 0;
    transform: translateY(15px);
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.ul-design.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.li-design {
    width: 100%;
}

.anchor-design {
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #2d537a;
    text-transform: capitalize;
    display: flex;
    transition: all .5s ease-in;
}

.anchor-design:hover {
    color: #9FD456;
    transition: all.5s ease-in;
}

.main-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-btn {
    justify-content: center;
    outline: none;
    border: 0;
    background-color: transparent;
    display: flex;
    align-items: center;
    color: #2d537a;
}

.menu-btn i {
    font-size: 28px;
    font-weight: 500;
    color: #2d537a;
}

.display-menu-mobile {
    display: none;
}

.btn-menu-data {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 290px;
    height: 100vh;
    background: #FFF;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: 999;
    display: none;
    padding: 30px 20px;
    border-radius: 20px;
    align-items: start;
    justify-content: space-between;
    flex-direction: column;
    overflow: auto;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 998;
}

.mobile-menu.active {
    transform: translateX(0);
}

.menu-close {
    display: none;
}

.navbar-anchor.active {
    color: #9FD456;
}

.data-flex {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.menu-logo img {
    width: 100%;
    max-width: 250px;
    object-fit: cover;
}


.data-class-li-anchor {
    margin: 25px 0;
    display: flex;
    flex-direction: column;
}

.data-anchor-vibe {
    font-size: 18px;
    font-weight: 800;
    line-height: 24px;
    color: #2d537a;
    width: 100%;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .5s ease-in;

}


.anchor-li-class:hover .data-anchor-vibe {
    color: #9FD456;
    transition: all .5s ease-in;
}

.anchor-li-class {
    padding: 18px 0;
    border-bottom: 1px solid #2d537a63;
}

.dropdown-data {
    padding-top: 12px;
}

.dropdown-data li {
    padding: 5px 0 0 20px;
}

.drop-down {
    width: 100%;
    font-size: 16px;
    line-height: normal;
    font-weight: 700;
    display: flex;
    align-items: center;
    color: #2d537a;
    padding: 12px 0;
    justify-content: start !important;
    gap: 10px;
    text-transform: capitalize;
    transition: all 0.2s ease-in-out;
}

.drop-down:hover {
    color: #9FD456;
}

.dropdown-data {
    display: none;
    overflow: hidden;
}

.drop-arrow {
    transition: transform 0.3s ease;
}

.vibe-open-close.active .drop-arrow {
    transform: rotate(180deg);
}


/* ================ [ About section design start ]  ================ */
.padding-data {
    padding: 100px 0;
}

.all-row-space {
    row-gap: 30px;
}


.about-image {
    position: relative;
    background: url(../images/about/about-right-shape.svg) no-repeat top 30px right 6%;
    background-size: 18% auto;

}

.about-img-1 {
    display: inline-block;
    width: 75%;
    border-radius: 30px;
    overflow: hidden;
    line-height: 0;
}

.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.about-img-2 {
    width: 50%;
    border-radius: 30px;
    overflow: hidden;
    line-height: 0;
    position: absolute;
    right: 0;
    bottom: -13%;
    border: 6px solid #FFF;
}

.about-us .section-title {
    text-align: left;
    margin-bottom: 60px;
}

.section-title h3 {
    display: inline-block;
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    color: #9FD456;
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    z-index: 2;
}

.section-title h3:before {
    content: '';
    display: block;
    width: 12px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../images/about/icon-sub-heading.svg) no-repeat left center;
    z-index: -1;
}

.section-title h2 {
    font-size: 46px;
    font-family: "Rajdhani", sans-serif;
    color: #2d537a;
    letter-spacing: -0.5px;
    font-weight: 700;
    line-height: 1.1em;
    margin-bottom: 0;
}

.section-title {
    text-align: left;
    margin-bottom: 30px;
}

.text-desc-all {
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
    color: #000000;
}

.margin-bottom {
    margin-bottom: 15px;
}

.about-content ul {
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

.about-content ul li {
    width: 48%;
    margin-right: 2%;
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #10271D;
    display: flex;
    align-items: center;
}

.about-content ul li:before {
    content: "\EB80";
    font-family: "remixicon";
    color: #9FD456;
    font-size: 18px;
    font-weight: normal;
    position: absolute;
    top: 0;
    left: 0;
}


.about-btn {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
    align-items: center;
    justify-content: start;
}

.chat-whatsapp {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 40px;
    border: 1px solid #2d537a;
}

.chat-whatsapp img {
    width: 100%;
    max-width: 24px;
    object-fit: cover;
}

.chat-whatsapp p {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: #2d537a;
}


/* ================ [ services section design start ]  ================ */
.services {
    background-color: #10271d17;
}


.services-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #FFF;
    text-align: center;
    border-radius: 20px;
    margin: 0 5px;
    position: relative;
    margin-bottom: 140px;
}

.services-detail img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.services-title {
    font-size: 20px;
    font-weight: 800;
    line-height: 32px;
    color: #2d537a;
    cursor: pointer;
}

.services-desc {
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
    text-align: center;
    color: #040404;
}

.data-detail-services {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background-color: #FFF;
    position: absolute;
    bottom: -25%;
    border-radius: 20px;
    width: 90%;
    min-height: 215px;
}

#services {
    background-image: url(../images/about/section-bg-1.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% auto;
}


/* ================ [ work prosses section design start ]  ================ */


.step-item {
    text-align: center;
    padding: 20px 40px 0;
    position: relative;
}

.step-header {
    margin-bottom: 30px;
    position: relative;
}

.step-header .step-icon {
    width: 130px;
    height: 130px;
    position: relative;
    background: #9FD456;
    margin: 0 auto;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-item.step-1 .step-header::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 212px;
    height: 46px;
    background: url(../images/about/icon-step1.svg) no-repeat center center;
    background-size: 100% auto;
    transform: translate(156px, -50%);
}

.step-header .step-icon .image-sep {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    margin-bottom: 0;
}

.step-header .step-icon .image-sep::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #10271D;
    border-radius: 30px;
    transform: translate(-100%, 100%);
    transition: all 0.3s ease-out;
}

.step-header .step-icon .image-sep img {
    position: relative;
    z-index: 1;
    object-fit: cover;

}

.step-header .step-no {
    display: block;
    height: 48px;
    width: 48px;
    background: #9FD456;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    color: #10271D;
    line-height: 40px;
    position: absolute;
    top: -20px;
    right: -20px;
    border: 4px solid #FFF;
}

.step-item:hover .step-icon .image-sep::before {
    transform: translate(0);
}

.step-item.step-2 .step-header:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 212px;
    height: 46px;
    background: url(../images/about/icon-step2.svg) no-repeat center center;
    background-size: 100% auto;
    transform: translate(156px, -50%);
}

.step-content h3 {
    font-size: 22px;
    color: #2d537a;
    font-weight: 700;
    margin-bottom: 15px;
}

.infobar {
    padding-top: 50px;
}

.cta-box {
    background-color: #eff1ed;
    border-radius: 30px;
    overflow: hidden;
}

.cta-box .cta-image img {
    width: 100%;
}

.cta-content {
    position: relative;
    padding: 0 60px;
}

.cta-content .phone-icon {
    width: 90px;
    height: 90px;
    position: relative;
    border-radius: 50px;
    border: 6px solid #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #9FD456;
    position: absolute;
    left: 0;
    top: 50%;
    overflow: hidden;
    transform: translate(-70px, -50%);
}

.cta-content .phone-icon:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #10271D;
    border-radius: 50%;
    transform: translate(-100%, 100%);
    transition: all 0.3s ease-out;
}

.cta-content .phone-icon .cta-image-data {
    text-align: center;
}

.cta-content .phone-icon .cta-image-data img {
    position: relative;
    z-index: 1;
}

.cta-content h3 span {
    color: #9FD456;
}

.cta-box:hover .cta-content .phone-icon:before {
    transform: translate(0);
}


.cta-content h3 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #10271D;
}


/* ================ [ Project section design start ]  ================ */
.compensate-for-scrollbar {
    margin: auto !important;
}

.gallry-design-data {
    margin-top: 20px;
    padding: 0 10px;
}

.contact-data {
    margin-top: 20px;
}

.gallary-image {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    border-radius: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.gallary-image img {
    width: 100%;
    border-radius: 20px;

}

.overlay-gallary {
    position: absolute;
    left: 2%;
    top: 3%;
    width: 96%;
    height: 94%;
    content: "";
    background: #10271d52;
    opacity: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
    -webkit-transform: scale(0);
    transform: scale(0);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: normal;
    border-radius: 20px;
}

.gallary-image:hover .overlay-gallary {
    opacity: 1;
    -webkit-transition: all .3s;
    transition: all .3s;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.card {
    background: transparent;
    border: none;
}


.company-name-project {
    font-size: 20px;
    font-weight: 800;
    line-height: 30px;
    color: #2d537a;
    margin-top: 20px;
}

.location-project {
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
    color: #000000;
}

.image-project {
    overflow: hidden;
    position: relative;
}

/* ================ [ counter section design start ]  ================ */

.stat-counter {
    padding: 60px 0;
    background: #10271D;
}

.counter-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}


.counter-item .counter-icon {
    width: 80px;
    height: 80px;
    border-radius: 30px;
    background-color: #9FD456;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.counter-content {
    width: calc(100% - 110px);
}

.counter-content h3 {
    font-size: 40px;
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 0;
}

.counter-content p {
    margin-bottom: 0;
    color: #9FD456;
}

.company-overview {
    padding: 100px 0 70px;
}

.company-overview .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.gallery-mex-design .slick-slide {
    padding: 0 10px;
}

.gallery-mex-design .slick-list {
    margin: 0 -10px;
}


/* ================ [ testimonial section design start ]  ================ */

.testimonial-item {
    background: #FFF;
    position: relative;
    border-radius: 30px;
    text-align: center;
    margin-top: 60px;
    min-height: 340px;
}

.testimonial-header {
    position: relative;
    top: -60px;
    margin-bottom: -60px;
}

.testimonial-header .testimonial-author-img {
    max-width: 130px;
    margin: 0 auto 10px;
    position: relative;
}



.testimonial-author-img .icon-quote {
    width: 30px;
    height: 30px;
    background: #9FD456;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    position: absolute;
    right: -10px;
    bottom: 30px;
    transition: all 0.3s ease-out;
}

.testimonial-author-img .icon-quote img {
    border: none;
}

.testimonial-header h2 {
    font-size: 22px;
    font-weight: 700;
    font-family: "Rajdhani", sans-serif;
    line-height: 34px;
    color: #10271D;
    margin: 0;
}

.testimonial-rating {
    margin: 20px 0 10px;
}

.testimonial-body {
    padding: 0 20px 30px;
}

.data-image-testi img {
    max-width: 130px;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.data-image-testi {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 130px;
    height: 130px;
    border: 6px solid #FFF;
    border-radius: 100%;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-slider .slick-slide {
    padding: 0 10px;
}

.testimonial-slider .slick-list {
    margin: 0 -10px;
}

/* ================ [ team section design start ]  ================ */
.team-data-main .slick-slide {
    padding: 0 10px;
}

.team-data-main .slick-list {
    margin: 0 -10px;
}

.team-card-42 {
    text-align: center;
    position: relative;
    z-index: 1;
    text-align: start;
}

.team-image-42 {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    margin-bottom: 20px;
    transition: all 0.3s linear 0s;
}

.team-image-42 img {
    width: 100%;
    height: auto;
    position: relative;
    object-fit: cover;
    object-position: center;
}

.social-icon-42 {
    position: absolute;
    display: flex;
    align-items: end;
    justify-content: end;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
    right: 0;
    padding: 10px;
    width: 100%;
    top: 0;
}

.social-icon-42 a {
    text-decoration: none;
    color: #fff;
    background-color: #2d537a;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: all .35s ease-in-out;
}


.team-card-42:hover .social-icon-42 a {
    visibility: visible;
    opacity: 1;
    transform: translateX(0%);
}

.team-card-42:hover .social-icon-42 a:nth-child(1) {
    transition: all .3s ease-in-out;
    opacity: 1;
    transform: translateY(0px);
}

.team-card-42:hover .social-icon-42 a:nth-child(2) {
    transition: all .4s ease-in-out;
    opacity: 1;
    transform: translateY(0px);
}

.team-card-42:hover .social-icon-42 a:nth-child(3) {
    transition: all .6s ease-in-out;
    opacity: 1;
    transform: translateY(0px);
}

.team-card-42:hover .social-icon-42 a:nth-child(4) {
    transition: all .8s ease-in-out;

    opacity: 1;
    transform: translateY(0px);
}

.team-detail a {
    font-size: 22px;
    font-weight: 700;
    text-transform: capitalize;
    display: block;
    color: #2d537a;
    transition: all .35s ease-in;
}

.team-content-42 span {
    font-size: 16px;
    font-weight: 400;
    color: #10271D;
}

/* ================ [ footer section design start ]  ================ */

.footer-contact {
    border-bottom: 1px solid #10271d24;
    margin-bottom: 80px;
    padding: 30px 0;
}

.footer-contact-box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.footer-contact-box .contact-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #9FD456;
    margin-right: 30px;
}

.footer-contact-info {
    width: calc(100% - 110px);
}

.footer-contact-info h3 {
    color: #10271D;
    font-size: 22px;
    font-weight: 700;
    font-family: "Rajdhani", sans-serif;
    line-height: 34px;
}

.footer-contact-info p {
    margin-bottom: 0;
    color: #10271D;
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
}

.main-footer {
    padding: 0 0 60px;
    background: #10271d17;
    background-size: cover;
}

.footer-about p {
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
    color: #10271D;
}

.footer-logo img {
    width: 100%;
    max-width: 300px;
    object-fit: cover;
}

.footer-about {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 15px;
}

.footer-links {
    padding-left: 80px;
}

.footer-links h2 {
    color: #10271D;
    font-size: 22px;
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    position: relative;
    margin-bottom: 30px;
    line-height: 30px;
}

.footer-links ul li a {
    display: block;
    padding-left: 16px;
    font-weight: 500;
    color: #10271D;
}

.footer-links ul li a::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10271D;
    transform: translate(0, -50%);
}

.footer-links ul li {
    position: relative;
    margin-bottom: 10px;
}

.navbar-anchor {
    position: relative;
    z-index: 99999;
}


/* ------------------------------[ Second services main all page ]------------------------------ */
.services-home-hero {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    background-image: url(../images/services/main-all.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    padding: 140px 100px;
    position: relative;
}

.services-home-hero::after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0.65;
}

.title-of-hero p {
    font-size: 64px;
    font-weight: 800;
    font-family: "Rajdhani", sans-serif;
    line-height: 80px;
    color: #FFF;
}

.title-of-hero span {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    color: #FFF;
}

.title-of-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.title-of-hero a {
    color: #9FD456;
}


.data-testin {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

/* ------------------------------[ contact page ]------------------------------ */
.contact-box-data {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    border-radius: 20px;
    min-height: 170px;
    text-align: center;
}

.data-contact-row {
    row-gap: 60px !important;
}

.mail-contact-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #9FD456;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    position: absolute;
    top: -20px;

}

.mail-contact-box img {
    width: 100%;
    object-fit: cover;
    max-width: 30px;
}

.contact-box-data span {
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    color: #10271D;
    margin-top: 20px;
}

.contact-box-data p {
    font-size: 20px;
    font-weight: 700;
    line-height: 34px;
    color: #2d537a;
}


.contact-data-post {
    font-size: 40px;
    font-weight: 700;
    font-family: "Rajdhani", sans-serif;
    line-height: 58px;
    color: #2d537a;
}

.form-box {
    background-color: #FFF;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 20px;
    padding: 20px;
    width: 100%;

}

.form-data {
    margin-top: 20px;
}


input {
    box-shadow: rgb(149 157 165 / 16%) 0px 5px 20px;
    background-color: #FFF;
    border-radius: 10px;
    padding: 10px 20px;
}

textarea {
    box-shadow: rgb(149 157 165 / 16%) 0px 5px 20px;
    background-color: #FFF;
    border-radius: 10px;
    padding: 10px 20px;
    width: 100%;
    border: none;
    resize: none;
}

.map-box {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.map-box iframe {
    width: 100%;
}

.success-message {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #28a745;
    color: #fff;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.success-message.show {
    opacity: 1;
    visibility: visible;
}


/* ------------------ About Page design ------------------ */

.why-choose-item {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    padding: 25px;
    height: 100%;
}

.why-choose-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #FFF;
    z-index: 3;
    border-radius: 30px;
    transition: all 0.3s ease-out;
}

.why-choose-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 36px;
    overflow: hidden;
    transition: all 0.1s ease-out;
}

.why-choose-image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #10271db8;
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.why-choose-content {
    position: relative;
    z-index: 4;
}

.why-choose-content .why-choose-icon {
    margin-bottom: 20px;
}

.why-choose-content .why-choose-icon img {
    max-height: 60px;
}

.why-choose-content h3 {
    font-size: 22px;
    font-weight: 700;
    font-family: "Rajdhani", sans-serif;
    transition: all 0.3s ease-out;
    line-height: 34px;
    margin-bottom: 5px;
}

.why-choose-content p {
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
    margin-bottom: 0;
    transition: all 0.3s ease-out;
}

.why-choose-item:hover:before {
    transform: translate(100%, -100%);
}

.why-choose-item:hover .why-choose-image {
    opacity: 1;
}

.why-choose-item:hover .why-choose-content h3,
.why-choose-item:hover .why-choose-content p {
    color: #FFF;
}

.why-chooseus-layout2 .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.why-chooseus-layout2 .why-choose-us-img-box {
    position: relative;
    background: url(../images/whyus-left-img.jpg) no-repeat center center;
    background-size: cover;
    padding: 100px 15px;
    height: 100%;
    min-height: 300px;
}

.why-choose-us-layout2-content {
    padding: 100px;
}

.why-choose-us-layout2-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.why-choose-us-layout2-content .why-choose-us-body {
    margin-bottom: 40px;
}

.why-choose-us-layout2-features .why-features-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 40px;
}

.why-choose-us-layout2-features .why-features-item:last-child {
    margin-bottom: 0;
}

.why-choose-us-layout2-features .why-features-item .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background: 28a745;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.why-choose-us-layout2-features .why-features-item .why-features-desc {
    width: calc(100% - 80px);
}

.why-choose-us-layout2-features .why-features-item .why-features-desc h3 {
    font-size: 22px;
    margin-bottom: 0;
}

.why-choose-us-layout2-features .why-features-item .why-features-desc p {
    margin: 0;
}


.why-choose-item3 {
    background: #FFF;
    text-align: center;
    padding: 40px 30px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.why-choose-item3:before {
    content: '';
    display: block;
    position: absolute;
    top: 100%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 30px;
    transition: all 0.4s ease-in-out;
}

.why-choose-item3 .icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: #28a745;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    position: relative;
    z-index: 1;
}

.why-choose-item3 h3 {
    font-size: 22px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.why-choose-item3 p {
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.why-choose-item3:hover:before {
    top: 0;
    left: 0;
}

.why-choose-item3:hover h3,
.why-choose-item3:hover p {
    color: #FFF;
}



.box-design-vision {
    background-color: #FFF;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    text-align: center;
    min-height: 375px;
}

.vison-heading {
    font-size: 30px;
    font-weight: 800;
    font-family: "Rajdhani", sans-serif;
    line-height: 48px;
    color: #10271D;
    gap: 20px;
}

.box-design-vision span {
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
    color: #040404;
}

/* ------------------- [ FAQ Section design ] ------------------- */

.sep-faq-scot {
    max-width: 1140px;
    margin: 0 auto;
}

.faq-container {
    margin-bottom: 15px;
}

.faq-item {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
}

.font-faq {
    border: none;
    background: transparent;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    text-align: left;
    cursor: pointer;
    padding: 0;
    width: 100%;
}

.arroew-faq-data {
    min-width: 24px;
    margin-left: 15px;
}

.arroew-faq-data img {
    width: 20px;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 0 25px 20px;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.faq-item.active {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-item.active .arroew-faq-data img {
    transform: rotate(180deg);
}


/* ---------------- all services design ------------------------ */
.main-services-image {
    width: 100%;
    overflow: hidden;
    max-height: 600px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.main-services-image img {
    width: 100%;
    object-fit: cover;
}

.services-heading-main {
    font-size: 32px;
    font-weight: 700;
    line-height: 42px;
    color: #10271D;
}

.services-desc-text {
    font-size: 18px;
    font-weight: normal;
    line-height: 30px;
    text-align: left;
    color: #222;
}

.box-data-med-eight {
    row-gap: 20px;
}

.box-detail-services {
    background-color: #10271d17;
    padding: 20px;
    border: 1px solid #10271d24;
    border-radius: 30px;
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    position: relative;
    gap: 10px;
}

.box-detail-services::before {
    content: " ";
    position: absolute;
    left: -10px;
    border-radius: 30px 0 0 30px;
    top: 35px;
    height: 100px;
    background-color: #28a745;
    width: 10px;
    z-index: 0;
}

.dot-box-data {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background-color: #FFF;
}

.box-detail-services p {
    font-size: 20px;
    font-weight: 700;
    font-family: "Rajdhani", sans-serif;
    line-height: 28px;
    color: #10271D;
}

.box-detail-services span {
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
    color: #222;
}

.dot-box-data img {
    width: 100%;
    max-width: 25px;
    object-fit: cover;
}

.check-data-mek {
    width: 100%;
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    gap: 15px;
}

.check-data-main {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.check-data-main p {
    font-size: 18px;
    font-weight: normal;
    line-height: 30px;
    color: #222;
}

.check-data-main img {
    width: 100%;
    max-width: 26px;
    object-fit: cover;
}

.data-stcket {
    position: sticky;
    top: 100px;
}

.top-heading-sec {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: normal;
    color: #10271D;
}

.box-link-anchor {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.faq-link-services {
    width: 100%;
    display: flex;
    align-items: start;
    justify-content: start;
    border: 1px solid #10271d24;
    background-color: #10271d17;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 600;
    line-height: 34px;
    color: #10271D;
    transition: all .5s ease-in-out;
}

.faq-link-services:hover {
    transition: all .5s ease-in-out;
    color: #FFF;
    background-color: #9FD456;
}

.box-contact {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 15px;
}


.box-mail img {
    width: 26px;
    object-fit: cover;
}

.box-mail span {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    color: #000000;
}

.box-mail {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px;
}

.data-strong{
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    color: #10271D;
    margin-bottom: 15px;
}

.data-pri-desc{
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    color: #10271D;
    margin-bottom: 10px;
}

.privacy-ul {
    margin: 0;
    padding-left: 20px;
}

.privacy-li {
    list-style-type: disc;
    margin-bottom: 10px;
     font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    color: #10271D;
    margin-bottom: 10px;
}

.img-career{
    border-radius: 20px;
    overflow: hidden;
}

.img-career img{
    width: 100%;
    object-fit: cover;
}

.career-data{
    padding-top: 60px;
}

.box-career-design{
    width: 100%;
    border-radius: 20px;
    padding: 25px;
    background-color: #FFF;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}


.main-heading-career{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 10px;
    width: 100%;
}

.heading-career{
    font-size: 34px;
    font-weight: 700;
    font-family: "Rajdhani", sans-serif;
    line-height: 48px;
    color: #2d537a;
}

.heaidng-one{
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    color: #040404;
    margin-top: 20px;
}

.data-send-career{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
}

.box-number{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.box-number img{
    width: 100%;
    object-fit: cover;
    max-width: 24px;
}

.box-number p{
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #10271D;
}


.tranig-data-btn {
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    color: #FFF;
    background-color: #10271D;
    border-radius: 40px;
    padding: 13px 25px;
    transition: all .5s ease-in-out;

}

.tranig-data-btn:hover{
    background-color: #2d537a;
    color: #FFF;
    transition: all .5s ease-in-out;
}

/* ---------------- traning Data services start ------------------------ */

.shadow-data{
    box-shadow: none;
    background-color: #10271d17;
    min-height: 1110px;
}

.traning-image{
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 20px;
}

.traning-image img{
    width: 100%;
    object-fit: cover;

}

.data-traning-course .slick-list {
    margin: 0 -10px;
}

.data-traning-course .slick-slide {
    padding: 0 10px;
}