@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nunito", sans-serif;
  scroll-behavior: smooth;
}

:root {
  --primary-color: #353535;
  --secondary-color: #249e91;
  --primary-white: #ffffff;
  --dark-color: #141414;
  --gray-color: #7c7c7c;
  --gap: 4rem;
}

html {
  scroll-behavior: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
}

body {
  width: 100%;
  min-height: 100vh;
  background-color: var(--primary-white);
}

/* header section starts here */
.main_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  padding: 0 3%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  z-index: 999;
  transition: all 0.5s ease-in;
}

.main_header.scrolled {
  background-color: #000000b0;
}

.main_header.scrolled .header_nav_item {
  color: var(--primary-white);
  position: relative;
}

.main_header.scrolled .header_nav_item a {
  color: white;
}

.header_logo {
  width: 210px;
}

.header_nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.header_nav_items_container {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.main_header .header_nav_item {
  list-style: none;
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-color);
  /* cursor: pointer; */
  transition: all 0.4s ease-in;
  position: relative;
}

.main_header .header_nav_item.active {
  color: var(--secondary-color);
}

.main_header .pages_header_nav .header_nav_item {
  color: var(--primary-white);
}

.main_header .pages_header_nav .header_nav_item.active {
  color: #adffb9;
}

.header_nav .header_contact_btn {
  color: white;
}


@media (max-width: 992px) {
  .main_header.scrolled .header_nav_item a {
    color: #7b7b7b;
  }
}


/*--dropdown--*/
.header_nav_item ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.header_nav_item a {
  text-decoration: none;
  color: #fff;
  padding: 10px 15px;
  display: block;
}

/* .header_nav_item .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(90deg, #61bd69 0%, #249791 100%);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: none; 
} */

.header_nav_item:hover .dropdown {
  display: block;
}


.dropdown li:hover .submenu {
  display: block;
}

/* a:hover {
  background: linear-gradient(90deg, #249791 0%, #61bd69 100%);
} */

.header_nav_item .dropdown a {
  font-size: 15px;
  padding: 10px 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  color: white;
  border-bottom: 1px solid #ffffff1c;
}

/* .header_nav_item .dropdown {
  min-width: 150px;
  border-radius: 6px;
} */

@media (max-width: 768px) {
  .header_nav_item .dropdown a {
    font-size: 14px;
  }
}

.header_nav_item .dropdown-icon {
  font-size: 13px;
  margin-left: 5px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.header_nav_item:hover .dropdown-icon {
  transform: rotate(180deg);
}

.header_nav_item .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(90deg, #61bd69 0%, #249791 100%);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 150px;
  border-radius: 6px;
  z-index: 1000;
}

.header_nav_item .dropdown-icon {
  font-size: 13px;
  margin-left: 5px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.header_nav_item .dropdown-icon.open {
  transform: rotate(180deg);
}

/*--ENDdropdown--*/


.gradient_btn {
  padding: 0.9rem 1.5rem;
  font-size: 15px;
  font-weight: 400;
  color: var(--dark-color);
  /* background: linear-gradient(90deg, #61bd69 0%, #249791 100%);
  transition: all 0.5s ease-in; */
  border: 1px solid #61BD69;
  background-color: transparent;
}

.gradient_btn:hover {
  background: linear-gradient(90deg, #249791 0%, #61bd69 100%);
  border: 1px solid #fff;
  color: white;
}

.gradient_btn span {
  margin-left: 10px;
}

.header_menu_icon {
  display: none;
}

@media only screen and (max-width: 1144px) {
  .main_header .header_nav_item {
    color: var(--primary-white);
  }
}

@media (max-width: 992px) {
  .header_nav_items_container {
    gap: 1rem;
  }

  .main_header.scrolled .header_nav_item a {
    color: #7b7b7b;
  }

  .header_nav_item .dropdown a:hover {
    background: linear-gradient(90deg, #249791 0%, #61bd69 100%);
    color: white;
  }

  .header_nav_item a:hover {
    background: linear-gradient(90deg, #249791 0%, #61bd69 100%);
    color: white !important;
  }
}

@media only screen and (max-width: 890px) {
  .main_header {
    height: 60px;
  }

  .header_menu_icon {
    display: block;
    width: 30px;
    user-select: none;
    cursor: pointer;
  }

  .header_logo {
    width: 160px;
  }

  .header_nav {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    flex-direction: column;
    gap: 2rem;
    background-color: var(--primary-white);
    padding: 1.5rem 1rem;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    display: inline;
  }

  .header_nav.open {
    transform: translateX(0);
    opacity: 1;
  }

  .header_nav_items_container {
    flex-direction: column;
    gap: .15rem;
    align-items: start;
  }

  .main_header .header_nav_item {
    font-size: 14px;
    color: var(--primary-color);
    text-align: left;
    width: 100%;
    background-color: #4cb07624;
  }

  .main_header.scrolled .header_nav_item {
    color: var(--primary-color);
  }

  .header_contact_btn {
    width: 100%;
    text-align: initial;
    border-radius: 0;
    margin-top: 2px;
    background: #e5f4ec;
    color: #5d625e !important;
    padding: 13px;
    border: 0;
  }

  .header_nav_item a {
    color: #4f4949;
  }

  .main_header .pages_header_nav .header_nav_item {
    color: var(--primary-color);
  }

  .main_header .pages_header_nav .header_nav_item.active {
    color: var(--secondary-color);
  }

  .header_nav_item .dropdown {
    background: transparent;
    box-shadow: none;
    position: relative;
  }

  .header_nav_item .dropdown a {
    font-size: 14px;
    font-weight: 400;
    color: #111111c4;
    padding: 6px;
    padding-left: 30px;
  }

}

/* header section ends here */

/* banner section starts here */

.video-bg {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.video-bg__content {
  position: relative;
  z-index: 2;
}

.video-bg__media {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.text-component {
  text-align: center;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.video-bg__media video {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  max-width: none;
  object-fit: cover;
  /*support ie*/
  height: auto;
  width: auto;
  height: 100%;
  width: 100%;
}


/* .cloud-out{
  overflow: hidden;
  position: relative;
} */
/* .cloud {
  position: absolute;
  top: 50%;
  left: 0;
  white-space: nowrap;
  width: 100%; 
}

.cloud img {
  animation: moveCloud 25s linear infinite;
  height: 500px;
  width: 100%;
}

@keyframes moveCloud {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
} */

.cloud-out {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100vh;
}

.cloud {
  display: flex;
  /* position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%); */
  width: 200%;
  height: 40vh;
  display: flex;
  position: absolute;
  bottom: 0;
}

.cloud-image {
  width: 100%;
  animation: moveCloud 25s linear infinite;
  /* margin: -1px; */
}

@keyframes moveCloud {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}



/* .sec{
  height: 300px;
  width: 100%;
} */
/* .sec img{
  height: 300px;
  margin-top: -299px;
  position: relative;
  z-index: 99;
  width: 100%;
} */



/* .fog-shadow{
  margin-top: -35%;
  position: absolute;
  z-index: 1;
}
.fog-shadow img{
  width: 100%;
} */

/* .fog-shadow{
  margin-top: -35%;
  position: absolute;
  z-index: 1;
} */


/* #myCanvas{
  height:600px;
  width:100%;
  position:absolute;
  bottom:0;
  
} */

/* .banner_section {
  width: 100%;
  min-height: 100vh;
  background: url("./assets/banner_bg_04.jpg") no-repeat center center;
  background-size: cover;
  animation: backgroundZoom 12s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes backgroundZoom {
  0% {
    background-size: 100%;
  }
  50% {
    background-size: 110%;
  }
  100% {
    background-size: 100%;
  }
}

.banner_first_section {
  padding-top: 100px;
  width: 100%;
  height: 100vh;
  padding-left: 5%;
  padding-right: 1.5rem;
  background: #00000054;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.banner_title {
  margin-top: 12rem;
  font-size: 60px;
  font-weight: 600;
  line-height: 74px;
  color: var(--primary-white);
  max-width: 46rem;
  text-align: center;
}
.banner_para {
  margin-top: 1.5rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  color: var(--primary-white);
}
.banner_about_btn {
  margin-top: 1.5rem;
}
.banner_second_section {
  width: 100%;
  display: grid;
  place-items: center;
}
.banner_second_section_image {
  max-width: 550px;
  width: 80%;
} */

/* .banner_carousel_wrapper {
  width: 100%;
  margin-top: 5rem;
  max-width: 50vw;
}
.banner_carousel_wrapper .card {
  width: 100%;
  height: 210px;
  padding: 6px;
  border-radius: 16px;
  background-color: var(--primary-white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.banner_carousel_wrapper .card .imgae_wrapper {
  width: 100%;
  height: 130px;
  overflow: hidden;
  border-radius: 10px;
}
.banner_carousel_wrapper .card .imgae_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */
/* .banner_carousel_wrapper .card .card_text {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  text-align: center;
  text-transform: uppercase;
} */
/* 
.slider-count {
  text-align: center;
  margin-top: 10px;
  font-size: 16px;
  color: var(--primary-color);
}

@media only screen and (max-width: 1300px) {
  .banner_section {
    animation: none;
  }
}

@media only screen and (max-width: 1144px) {
  .banner_section {
    grid-template-columns: repeat(1, 1fr);
  }
  .banner_first_section {
    padding: 0 3%;
  }
  .banner_second_section {
    display: none;
  }
  .banner_carousel_wrapper {
    max-width: 100vw;
  }
} */
@media only screen and (max-width: 890px) {
  .banner_title {
    margin-top: 10rem;
    font-size: 50px;
    line-height: 55px;
  }

  .banner_para {
    margin-top: 1.25rem;
    font-size: 14px;
    line-height: 20px;
  }

  .banner_about_btn {
    margin-top: 1.25rem;
  }

  .banner_about_btn {
    font-size: 12px;
  }
}

/* banner section ends here */

/* about section starts here */
.about_section {
  width: 100%;
  padding: 5rem 6%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-columns: 40rem 1fr;
  gap: 4rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-top: -5px;
  background-color: white;
}

.about_first_section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.about_first_section h6 {
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  color: 000000;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.about_title {
  font-family: "Sora", sans-serif;
  font-size: 55px;
  font-weight: 700;
  color: var(--dark-color);
  line-height: 70px;
}

.about_title span {
  font-weight: 700;
  font-family: "Sora", sans-serif;
}

.about_para {
  margin-top: 1.5rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 35px;
  color: var(--gray-color);
}

.about_enquiry_btn {
  margin-top: 1.65rem;
}

.about_second_section {
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
}

.about_second_sc_img1 {
  width: 65%;
  /* margin: 0 0 auto auto; */
  /* animation: jump 3s ease-in-out infinite; */
  -webkit-animation: spin 5s linear infinite;
  -moz-animation: spin 5s linear infinite;
  animation: spin 8s linear infinite;
}

.about_second_section img {
  width: 100%;
  height: 100%;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* @keyframes jump {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
} */

/* second animation line start */
/* .anim_line_2_outr{
  position: relative;
  overflow: hidden;
} */
.anim_line_2 {
  position: absolute;
  width: 24%;
  left: 0;
}

.anim2 .animation-container {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.anim2 .line1 {
  position: absolute;
  background-color: #06960621;
  transform-origin: center;
  transition: transform 0.5s ease-in-out;
}

.anim2 .horizontal {
  top: 50%;
  left: 0;
  width: 85%;
  height: 2px;
}

.anim2 .vertical {
  top: 0;
  left: 85%;
  width: 2px;
  height: 100%;
}

.anim2 .diagonal1 {
  top: 0;
  left: 85%;
  width: 2px;
  height: 100%;
  transform: rotate(0deg);
}

.anim2 .diagonal2 {
  top: 0;
  left: 85%;
  width: 2px;
  height: 100%;
  transform: rotate(0deg);
}

.anim2 .diagonal3 {
  top: 0;
  left: 85%;
  width: 2px;
  height: 100%;
  transform: rotate(0deg);
}

.anim2 .vertical,
.anim2 .diagonal1,
.anim2 .diagonal2,
.anim2 .diagonal3 {
  transition: transform 0.1s linear;
}

/* second animation line end */


/* first animation line start */
/* .anim_line_outr{
  position: relative;
  overflow: hidden;
} */

.anim_line {
  position: absolute;
  width: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.anim1 .animation-container {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.anim1 .line1 {
  position: absolute;
  background-color: #06960621;
  transform-origin: center;
  transition: transform 0.5s ease-in-out;
}

.anim1 .horizontal {
  top: 50%;
  left: 0;
  width: 85%;
  height: 2px;
}

.anim1 .vertical {
  top: 0;
  left: 85%;
  width: 2px;
  height: 100%;
}

.anim1 .diagonal1 {
  top: 0;
  left: 85%;
  width: 2px;
  height: 100%;
  transform: rotate(0deg);
}

.anim1 .diagonal2 {
  top: 0;
  left: 85%;
  width: 2px;
  height: 100%;
  transform: rotate(0deg);
}

.anim1 .diagonal3 {
  top: 0;
  left: 85%;
  width: 2px;
  height: 100%;
  transform: rotate(0deg);
}

.anim1 .vertical,
.anim1 .diagonal1,
.anim1 .diagonal2,
.anim1 .diagonal3 {
  transition: transform 0.1s linear;
}

/* first animation line end */

/* counter */
.counter_wrapper {
  width: 70%;
  margin: 35px 0 0 auto;
}

.countr-out {
  display: flex;
  justify-content: space-between;
}

.counter_item {
  width: 35%;
  height: 130px;
}

.counter_item_one {
  display: flex;
}

.counter_item h1 {
  font-size: 50px;
  font-weight: 400;
}

.counter_item span {
  font-size: 50px;
  font-weight: 400;
}

.counter_item_two p {
  color: #7C7C7C;
  font-weight: 300;
  line-height: 25px;
  text-transform: uppercase;
}

/* END counter */

/* scroll down */
.scroll-btm{
  position: absolute;
  left: 51%;
  top: 89%;
  transform: translate(-50%, -50%);
  width: 200px;
  text-align: center;
}
.scroll-btm img{
  width: 210px;
}

#sd-container {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateY(-50%);
}

#sd-container h4 {
  color: white;
}

.arrow {
  position: relative;
  width: 42px;
  height: 16px;
  opacity: 0;
}

.arrow::before,
.arrow::after {
  content: "";
  width: 21px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  display: inline-block;
}

.arrow::before {
  transform: rotate(45deg) translateX(25%);
}

.arrow::after {
  transform: rotate(-45deg) translateX(-25%);
}

.arrow:nth-child(1) {
  top: -50px;
  opacity: 1;
  -webkit-animation: arrow2 1s ease 0s infinite;
  animation: arrow2 1s ease 0s infinite;
}

.arrow:nth-child(2) {
  top: -25px;
  -webkit-animation: arrow1 1s ease 0.25s infinite;
  animation: arrow1 1s ease 0.25s infinite;
}

@-webkit-keyframes arrow1 {
  from {
    opacity: 0;
    top: -25px;
  }

  to {
    opacity: 0;
    top: 0px;
  }

  50% {
    opacity: 1;
  }
}

@keyframes arrow1 {
  from {
    opacity: 0;
    top: -25px;
  }

  to {
    opacity: 0;
    top: 0px;
  }

  50% {
    opacity: 1;
  }
}

@-webkit-keyframes arrow2 {
  from {
    opacity: 0;
    top: -35px;
  }

  to {
    opacity: 0;
    top: -10px;
  }

  50% {
    opacity: 1;
  }
}

@keyframes arrow2 {
  from {
    opacity: 0;
    top: -35px;
  }

  to {
    opacity: 0;
    top: -10px;
  }

  50% {
    opacity: 1;
  }
}



/* END scroll down */


@media only screen and (max-width: 1144px) {
  .about_section {
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
  }
}

@media only screen and (max-width: 890px) {
  .about_section {
    padding: 4rem 3%;
  }

  .about_title {
    font-size: 26px;
  }

  .about_para {
    margin-top: 1rem;
    font-size: 14px;
    line-height: 25px;
  }

  .about_enquiry_btn {
    margin-top: 1.25rem;
    font-size: 12px;
  }

  .about_second_section {
    border-radius: 20px;
  }
}

/* about section ends here */

/* client section starts here */
.clients_section {
  width: 100%;
  padding: 5rem 0;
  background-color: var(--primary-white);
  background-color: #f4f4f4;
  /* background-image: url("assets/wrk_banner.jpg");  */
  background-image: url("../assets/banner_bg_02.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.clients_section::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.63);
}

.clients_section_title {
  font-size: 22px;
  font-weight: 500;
  color: white;
  text-transform: uppercase;
  margin: 0 auto 2rem auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.clients-carousel {
  margin: 0 auto;
  width: 100%;
  max-width: 80rem;
}

.client_logo {
  display: grid;
  place-items: center;
  background-color: white;
  height: 120px;
  margin: 10px;
}

.clients-carousel .client_logo img {
  width: 100%;
  max-width: 150px;
  height: 120px;
  object-fit: contain;
}


@media only screen and (max-width: 1144px) {
  .clients_section {
    padding: 4rem 3% 2rem;
  }

  .clients-carousel .client_logo img {
    max-width: 120px;
  }
}

@media only screen and (max-width: 890px) {
  .clients-carousel .client_logo img {
    max-width: 100px;
  }
}

/* client section ends here */

/* new service start here */
/* .services_section .services_carousel .owl-stage-outer{
  padding-top: 50px;
}
.services_carousel_wrapper {
  width: 100%;
  max-width: 100vw;
}
.services_carousel .owl-item {
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.services_carousel .owl-item.center {
  transform: scale(1.1);
  z-index: 2;
}

.services_carousel .owl-item:not(.center) {
  opacity: 0.7;
}


.services_carousel_wrapper .card {
  width: 100%;
  height: 450px;
  border-radius: 25px;
  background-color: var(--primary-white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.services_carousel_wrapper .card .imgae_wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 25px 25px 0 0;
  position: relative;
}
.services_carousel_wrapper .card .imgae_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services_carousel_wrapper .card:hover{
  box-shadow: rgba(38, 144, 151, 0.897) 0px 3px 8px;
}
.services_carousel_wrapper .card .card_text {
  font-size: 25px;
  font-weight: 700;
  line-height: 35px;
  color: white;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 3px 2px 2px #463d3dbd;
} */

.single-service-out {
  width: 100%;
  /* padding: 5rem 3%; */
  display: grid;
  grid-template-columns: repeat(3, 3fr);
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.single-service-out .imgae_wrapper {
  width: 100%;
  height: 415px;
  overflow: hidden;
  object-fit: contain;
  position: relative;
}

.single-service-out .imgae_wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 25px;
  object-fit: cover;
}

.single-service-out .imgae_wrapper::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 25px;
}



/* .slider-count {
  text-align: center;
  margin-top: 10px;
  font-size: 16px;
  color: var(--primary-color);
}

.future-services-detls .dtls-outr{
  display: flex;
  width: 100%;
  padding: 30px 25px;
  align-items: center;
  justify-content: space-between;
} */



/* 

@media only screen and (max-width: 600px) {
  .services_carousel .owl-item.center {
    transform: none;
  }
  .services_carousel_wrapper .card {
    height: 400px;
  }
  .services_section .carousel_nav .prev_btn1 svg{
    width: 1rem!important;
  } 
  .services_section .carousel_nav .next_btn1 svg {
    width: 1rem!important;
  }
}

@media only screen and (max-width: 400px) {
  .future-services-detls .dtls-outr {
    display: block;
  }
  .future-services-detls .dtls-outr .details {
    width: 100%;
    margin-bottom: 10px;
  }
} */

/* END new service */

/* services section starts here */
.serv-head-otr {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
  align-items: center;
}

.services_section {
  padding: 0 3% 1rem 3%;
}

.services_section_title {
  font-family: "Sora", sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 60px;
  color: var(--dark-color);
}

.services_accordion {
  width: 100%;
  margin: 5rem auto 0 auto;
  border-radius: 3px;
}

.services_accordion_heading {
  border-bottom: 2px solid #d9d9d97e;
  cursor: pointer;
  padding: 1.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  transition: all 0.4s ease-in;
}

.services_accordion_heading:hover {
  background-color: #f0eaea49;
}

.services_accordion_heading.active {
  border-bottom: none;
}

.services_accordion_heading_count {
  color: #61bd69;
  font-size: 28px;
  font-weight: 300;
}

.services_accordion_heading_title {
  font-size: 35px;
  font-weight: 600;
  line-height: 38px;
  color: var(--primary-color);
  max-width: 30rem;
}

.services_accordion_para {
  margin-left: auto;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  color: var(--gray-color);
  max-width: 40rem;
}

.services_accordion_contents {
  display: none;
  padding: 2rem 0;
}

.services_accordion_list {
  margin-left: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  column-gap: 3rem;
  width: 100%;
  max-width: 39rem;
}

.services_accordion_list li {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  color: var(--gray-color);
}

.services_accordion_contents_para {
  margin-left: 0;
  display: none;
}

.services_accordion_heading .services_accordion_button {
  background: transparent;
  border: 1px solid #b8b8b8;
  padding: 10px 6px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.4s ease-in;
}

.services_accordion_heading .services_accordion_button svg {
  width: 23px;
  stroke: #b8b8b8;
}

.services_accordion_heading.active .services_accordion_button {
  background: linear-gradient(360deg, #61bd69 0%, #249791 100%);
  border: 1px solid #61bd69;
}

.services_accordion_heading.active .services_accordion_button svg {
  stroke: var(--primary-white);
  rotate: 180deg;
}

.services_accordion_pic {
  width: 100%;
  height: auto;
  max-height: 30rem;
  object-fit: cover;
  border-radius: 40px;
}

.services_accordion_contents .services_accordion_list {
  display: none;
}

@media only screen and (max-width: 1300px) {
  .services_accordion_list {
    display: none;
  }

  .services_accordion_contents .services_accordion_list {
    display: flex;
    align-items: flex-start;
    margin-left: 0;
    gap: 2rem;
    row-gap: 0.5rem;
    margin-bottom: 2rem;
    padding-left: 4rem;
    flex-wrap: wrap;
  }

  .services_accordion_heading .services_accordion_button {
    margin-left: auto;
  }
}

@media only screen and (max-width: 1144px) {
  .services_section {
    padding: 6rem 3% 1rem 3%;
  }

  /* .services_section_title {
    font-size: 75px;
    line-height: 68px;
    max-width: 32rem;
  } */
  .services_accordion {
    margin: 5rem auto 0 auto;
  }

  .services_accordion_heading {
    margin-top: 1.875rem;
    padding-bottom: 1.25rem;
    gap: 1rem;
  }

  .services_accordion_heading_count {
    font-size: 22px;
  }

  .services_accordion_heading_title {
    font-size: 28px;
    line-height: 28px;
  }

  .services_accordion_contents {
    padding: 1rem 0;
  }

  .services_accordion_para {
    font-size: 13px;
    line-height: 20px;
    max-width: 30rem;
  }

  .services_accordion_heading .services_accordion_button {
    border-radius: 12px;
  }

  .services_accordion_heading .services_accordion_button svg {
    width: 15px;
  }

  .services_accordion_pic {
    border-radius: 20px;
    max-height: 20rem;
  }
}

@media only screen and (max-width: 890px) {
  .services_section {
    padding: 4rem 3% 1rem 3%;
  }

  .services_accordion_contents_para {
    display: block;
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .services_accordion_heading_para {
    display: none;
  }

  .services_accordion_heading .services_accordion_button {
    margin-left: auto;
  }

  .services_section_title {
    font-size: 50px;
    line-height: 50px;
    max-width: 20rem;
  }

  .services_accordion_heading_title {
    font-size: 22px;
    line-height: 25px;
  }

  .services_accordion_para {
    font-size: 11px;
  }

  .services_accordion_pic {
    border-radius: 10px;
    max-height: auto;
    aspect-ratio: 16/6;
  }
}

@media (min-width: 600px) and (max-width: 850px) {
  .future-services-detls .dtls-outr {
    display: block;
  }

  .future-services-detls .dtls-outr .details {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .services_section_title {
    font-size: 40px;
  }
}

@media only screen and (max-width: 600px) {
  .home_founders_exp {
    margin-top: 0 !important;
  }

  .future-services-detls {
    padding-top: 0px !important;
  }
}

/* services section ends here */


/* home founders section start */

.founders_carousel_wrapper {
  position: relative;
  padding-bottom: 40px;
}

.home_founders_exp .carousel_nav {
  display: flex;
  /* justify-content: space-between; */
  gap: 1.25rem;
  /* margin-left: auto; */
  /* padding: 0 15px; */
  /* position: absolute;
  top: 40%;
  z-index: 9;
  width: 100%; */
  margin-top: 15px;
}

.home_founders_exp .carousel_nav button {
  border: none;
  background: transparent;
  padding: 12px 1rem;
  border-radius: 20px;
  display: grid;
  place-items: center;
}

.home_founders_exp .carousel_nav .prev_btn svg {
  width: 1.5rem;
  rotate: 90deg;
  stroke: #13e7dd;
}

.home_founders_exp .carousel_nav .next_btn svg {
  width: 1.5rem;
  rotate: -90deg;
  stroke: #13e7dd;
}

.home_founders_exp .carousel_nav button:hover {
  background: linear-gradient(360deg, #61bd69 0%, #249791 100%);
}

.home_founders_exp .carousel_nav button:hover svg {
  stroke: #fff;
}

.home_founders_exp {
  margin-top: 4rem;
  width: 100%;
  background-color: #f4f4f4;
  background: url("../assets/banner_bg_03.jpg") no-repeat center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.home_founders_exp::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(45, 45, 45, 0.9);
  /* background-color: rgba(36, 154, 145, 0.75); */
  z-index: 1;
}

.home_founders_exp .founders-detls {
  padding-top: 50px;
}

.project_carousel .owl-stage-outer {
  border-radius: 25px;
}

.project_carousel .card {
  position: relative;
  overflow: hidden;
}

.project_carousel .card .imgae_wrapper {
  position: relative;
  height: 400px;
}

.project_carousel .card .imgae_wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
}

.project_carousel .card:hover .imgae_wrapper img {
  transform: scale(1.2);
}

.project_carousel .card .content_overlay {
  position: absolute;
  top: 65%;
  left: 0;
  width: 100%;
  height: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(94, 94, 94, 0) 100%);
  color: white;
  text-align: center;
  padding: 20px;
  transition: all 0.4s ease-in-out;
}

.project_carousel .card:hover .content_overlay {
  top: 58%;
}

.project_carousel .card .content_overlay h3 {
  font-size: 25px;
  color: white;
  font-weight: 700;
  line-height: 30px;
}

/* .project_carousel .card .imgae_wrapper::after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.473); 
} */

@media (max-width: 768px) {
  .project_carousel .card .imgae_wrapper img:hover {
    transform: none;
  }

  .founders_exp_title {
    font-size: 40px !important;
  }

  .home_founders_exp .founders-detls {
    padding-top: 20px;
  }

  .project_carousel .card .imgae_wrapper {
    height: 300px;
  }

  .project_carousel .card .content_overlay {
    font-size: 14px;
    padding: 10px;
  }

  .project_carousel .card .content_overlay h3 {
    font-size: 15px;
    font-weight: 500;
  }

  .project_carousel .card .content_overlay {
    height: 40%;
  }
}

@media (max-width: 600px) {
  .home_founders_exp .carousel_nav .prev_btn svg {
    width: 1rem;
  }

  .home_founders_exp .carousel_nav .next_btn svg {
    width: 1rem;
  }
}

/* .owl-dots {
  position: absolute;
  bottom: 3px;
  background: transparent;
  padding: 0;
  margin: 0;
  border: none;
  display: flex !important; 
  justify-content: center;
  z-index: 10;
}

.owl-dot {
  display: inline-block;
  width: 10px;
  height: 10px; 
  background-color: #ccc;
  border-radius: 50%; 
  margin: 0 5px; 
  transition: background-color 0.3s ease;
}

.owl-dot.active {
  background-color: #333; 
} */


/* home founders section end here */

/* about founders section starts here */
.founders_section {
  width: 100%;
  padding: 0rem 3% 3%;
}

.founders_title {
  font-size: 55px;
  font-weight: 500;
  color: var(--dark-color);
}

.founders_section .title_section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.founders_section .carousel_nav {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-left: auto;
}

.founders_section .carousel_nav button {
  background: transparent;
  border: none;
  background: linear-gradient(360deg, #61bd69 0%, #249791 100%);
  padding: 5px 1rem;
  border-radius: 20px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 2;
}

.founders_section .carousel_nav .prev_btn svg {
  width: 1.5rem;
  rotate: 90deg;
  stroke: var(--primary-white);
}

.founders_section .carousel_nav .next_btn svg {
  width: 1.5rem;
  rotate: -90deg;
  stroke: var(--primary-white);
}

.founders_section .custom-carousel .carousel_card {
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  background-color: var(--primary-white);
  border-radius: 20px;
}

.founders_section .founder_pic_container {
  min-width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
}

.founders_section .founder_pic_container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founders_section .founder_name {
  font-size: 23px;
  font-weight: 700;
  color: var(--dark-color);
}

.founders_section .founder_designation {
  margin-top: 1px;
  font-size: 13px;
  font-weight: 400;
  color: #3c3c43;
}

.founders_section .founder_divider {
  margin-top: 12px;
  margin-bottom: 1px;
  width: 35px;
  height: 2px;
  background: linear-gradient(360deg, #61bd69 0%, #249791 100%);
}

.founders_section .founder_description {
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  color: var(--gray-color);
}

@media only screen and (max-width: 700px) {

  /* .founders_section {
    margin-top: 4rem;
  } */
  .founders_section .carousel_nav button {
    border-radius: 15px;
    padding: 10px 1rem;
  }

  .founders_section .carousel_nav .prev_btn svg {
    width: 1.125rem;
  }

  .founders_section .carousel_nav .next_btn svg {
    width: 1.125rem;
  }

  .founders_title {
    font-size: 48px;
  }

  .founders_section .custom-carousel .carousel_card {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .founders_section .founder_pic_container {
    min-width: 180px;
    height: 180px;
  }

  .founders_section .founder_name {
    font-size: 20px;
  }

  .founders_section .founder_designation {
    font-size: 11px;
  }

  .founders_section .founder_description {
    font-size: 13px;
    line-height: 22px;
  }
}

/* founders section ends here */

/* capa image */
.capa-outr {
  position: relative;
  width: 100%;
}

.capa-img {
  position: absolute;
  top: -350px;
}

.capa-img img {
  width: 100%;
  transition: top 1s ease-in-out;
  position: relative;
}

/* end capa image */

/* empowering section starts here */
.empowering_section {
  width: 100%;
  padding: 6rem 3% 5rem 3%;
  position: relative;
  overflow: hidden;
}

.empower_small {
  font-size: 20px;
  font-weight: 300;
  line-height: 24px;
  color: #61BD69;
  text-align: center;
  margin-bottom: 5px;
}

.empower_small span {
  font-family: "Sora", sans-serif;
  font-weight: 600;
}

.empowering_title {
  font-family: "Sora", sans-serif;
  top: 5rem;
  left: 3%;
  font-size: 40px;
  font-weight: bold;
  line-height: 55px;
  color: var(--dark-color);
  max-width: 50rem;
  text-transform: uppercase;
  margin: 0 auto;
  text-align: center;
}

.empowering_card_wrapper {
  /* order: 2;
  height: 650px;
  display: flex;
  flex-direction: column;
  align-items: flex-start; */
  padding: 2rem 0;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  width: 50%;
  margin: 0 auto;
}

.empowering_card.vision,
.empowering_card.purpose {
  margin-top: auto;
}

.empowering_card.purpose {
  order: 1;
}

.empowering_card {
  width: 100%;
  max-width: 25rem;
  border-radius: 20px;
  padding: 1rem;
  transition: all 0.5s ease-in;
  margin-top: 20px;
}

.empowering_card:hover {
  background-color: var(--primary-white);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.empowering_card_icon {
  width: 50px;
  position: relative;
  transition: top 1s ease-in-out;
}

.empowering_card_icon_2 {
  width: 50px;
  position: relative;
  transition: top2 1s ease-in-out;
}

.empowering_card_title {
  margin-top: 5px;
  font-size: 28px;
  font-weight: 600;
  /* color: var(--primary-color); */
}

.empowering_card_para {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 400;
  line-height: 25px;
  color: var(--gray-color);
}

.empowering_image_container {
  order: 3;
  width: 100%;
  max-width: 35%;
  height: 650px;
  border-radius: 50px;
  overflow: hidden;
  background: url("../assets/bg-02.jpg") no-repeat center center;
  background-size: cover;
}

@media only screen and (max-width: 1400px) {
  .empowering_section {
    padding: 5rem 3% 5rem 3%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }

  .empowering_title {
    position: static;
    top: 0;
    left: 0;
  }

  .empowering_card_wrapper {
    height: fit-content;
    padding: 0;
    gap: 3rem;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .empowering_card.vision,
  .empowering_card.purpose {
    margin-top: 0;
  }

  .empowering_card.purpose {
    order: 2;
  }

  .empowering_image_container {
    order: 1;
    max-width: 100%;
    aspect-ratio: 16/7;
    height: auto;
    border-radius: 30px;
    background: url("../assets/empowering-mobile.webp") center center no-repeat;
    background-size: cover;
  }

  .empowering_card {
    width: 100%;
    max-width: 23rem;
    border-radius: 20px;
    padding: 1rem;
    transition: all 0.5s ease-in;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }
}

@media only screen and (max-width: 890px) {
  .empowering_section {
    padding: 3rem 3% 3rem 3%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .empowering_title {
    font-size: 35px;
    line-height: 48px;
    margin-bottom: 30px;
  }

  .empowering_card {
    margin-top: 0;
    max-width: 100%;
  }

  .empowering_card_wrapper {
    gap: 2rem;
  }

  .empowering_image_container {
    border-radius: 20px;
  }

  .empowering_card_icon {
    width: 34px;
  }

  .empowering_card_title {
    font-size: 22px;
  }

  .empowering_card_para {
    margin-top: 5px;
    font-size: 12px;
    line-height: 22px;
  }
}

/* empowering section ends here */

/* newsletter section starts here */
.newsletter_section {
  width: 100%;
  padding: 4rem 3%;
  background: linear-gradient(90deg, #61bd69 0%, #249791 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.newsletter_title {
  font-size: 48px;
  font-weight: 400;
  line-height: 60px;
  color: var(--primary-white);
  max-width: 20rem;
}

.newsletter_form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 30rem;
}

.newsletter_section .label_text {
  font-size: 22px;
  font-weight: 400;
  color: var(--primary-white);
  margin-bottom: 1rem;
}

.newsletter_input {
  margin-top: 1.5rem;
  width: 100%;
  background-color: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid #ffffff81;
  color: var(--dark-color);
  font-size: 1rem;
  padding: 5px 0;
}

.newsletter_input::placeholder {
  color: #ffffff81;
}

.left-form-logo {
  width: 100%;
  height: 100%;
}

.left-form-logo-in {
  width: 16%;
  position: absolute;
  left: 0;
  opacity: 0.1;
  bottom: -5px;
  animation: pulseFadeto 4s ease-in-out infinite;
}

.left-form-logo-in img {
  width: 100%;
  height: 100%;
}

@keyframes pulseFadeto {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
}

.form-logo {
  width: 100%;
  height: 100%;
}

.form-logo-in {
  width: 16%;
  position: absolute;
  right: 0;
  opacity: 0.1;
  top: -52px;
  animation: pulseFade 4s ease-in-out infinite;
}

.form-logo-in img {
  width: 100%;
  height: 100%;
}

@keyframes pulseFade {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
}

.ftr-logo {
  width: 100%;
  height: 100%;
}

.ftr-logo-in {
  width: 16%;
  position: absolute;
  right: 0;
  opacity: 0.1;
  bottom: -10px;
  animation: floatFade 5s ease-in-out infinite;
}

.ftr-logo-in img {
  width: 100%;
  height: 100%;
}

@keyframes floatFade {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.1;
  }

  50% {
    transform: translateY(-15px);
    opacity: 0.4;
  }
}


@media only screen and (max-width: 890px) {
  .newsletter_section {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0rem;
  }

  .newsletter_title {
    font-size: 40px;
    line-height: 48px;
  }

  .newsletter_form {
    max-width: 100%;
    margin-top: 20px;
  }

  .newsletter_section .label_text {
    font-size: 15px;
    margin-bottom: 0;
  }

  .newsletter_input {
    font-size: 0.875rem;
  }
}

/* newsletter section ends here */

/* footer starts here */
.footer {
  width: 100%;
  background-color: #272727;
  position: relative;
  background-image: url("../assets/footer_gradient.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.footer_top_section {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
  padding: 2rem 3% 1rem 3%;
}

.footer .logo {
  width: 220px;
}

.footer_title {
  margin-top: 1rem;
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
  color: var(--primary-white);
  max-width: 30rem;
}

.footer_getInTouch_btn {
  margin-top: 2rem;
  padding: 0.875rem 1.5rem;
  color: white;
}

.footer_contact_wrapper {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer_contact_text {
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-white);
}

.footer_contact_text span {
  color: var(--secondary-color);
}

.footer_list_secction {
  display: flex;
  align-items: flex-start;
  gap: 6rem;
  flex-wrap: wrap;
}

.footer .list_title {
  font-size: 12px;
  font-weight: 400;
  color: #ffffffb4;
}

.footer .list_cotainer {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer .list_cotainer li {
  list-style: none;
  font-size: 15px;
  font-weight: 400;
  color: var(--primary-white);
  transition: all 0.4s ease-in;
}

.footer .list_cotainer li:hover {
  color: var(--secondary-color);
}

.footer_gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.scrollToTop_btn {
  position: absolute;
  bottom: 8rem;
  right: 5rem;
  background: linear-gradient(360deg, #61bd69 0%, #249791 100%);
  border: none;
  display: grid;
  place-items: center;
  padding: 1rem 0.75rem;
  border-radius: 20px;
  z-index: 2;
}

.scrollToTop_btn svg {
  width: 20px;
  stroke: var(--primary-white);
  rotate: 180deg;
}

@media only screen and (max-width: 1300px) {
  .footer_list_secction {
    gap: 4rem;
  }
}

@media only screen and (max-width: 890px) {
  .footer_top_section {
    gap: 3rem;
  }

  .footer .logo {
    width: 180px;
  }

  .footer_title {
    margin-top: 0.87rem;
    font-size: 33px;
    line-height: 40px;
  }

  .footer_getInTouch_btn {
    margin-top: 1.875rem;
    padding: 0.85rem 1.25rem;
  }

  .footer_contact_wrapper {
    margin-top: 2rem;
    gap: 1.5rem;
  }

  .footer_contact_text {
    font-size: 14px;
  }

  .footer_list_secction {
    gap: 3rem;
  }

  .footer .list_title {
    font-size: 10px;
  }

  .footer .list_cotainer li {
    font-size: 13px;
  }
}

@media only screen and (max-width: 700px) {
  .scrollToTop_btn {
    right: 3%;
    bottom: 2rem;
  }
}

@media only screen and (max-width: 420px) {
  .scrollToTop_btn {
    bottom: 5rem;
  }
}

/* footer ends here */

/* copyright starts here */
.copyright_section {
  width: 100%;
  border-top: 1px solid #ffffff1a;
  padding: 1rem 3%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.copyright_section .copyright_container {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.copyright_section .copyright_container li {
  list-style: none;
  font-size: 11px;
  font-weight: 400;
  color: #ffffffa6;
}

.copyright_section .social_medias {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.copyright_section .social_medias li {
  font-size: 14px;
  font-weight: 200;
  color: var(--primary-white);
  display: flex;
  align-items: center;
  gap: 5px;
}

.copyright_section .social_medias li img {
  width: 15px;
  aspect-ratio: 1/1;
}

@media only screen and (max-width: 890px) {
  .copyright_section .copyright_container {
    gap: 1rem;
  }

  .copyright_section .copyright_container li {
    font-size: 10px;
  }

  .copyright_section .social_medias {
    gap: 1rem;
  }

  .copyright_section .social_medias li {
    font-size: 12px;
    gap: 3px;
  }

  .copyright_section .social_medias li img {
    width: 13px;
  }
}

/* copyright ends here */

/* --------------------------------------------------------------------- */

/* about page  start here */
.page_header {
  width: 100%;
  height: 18rem;
  background-image: url("../assets/bg-05.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0 3%;
  padding-top: 100px;
  position: relative;
  z-index: 1;
}

.page_header_title {
  margin-top: 1rem;
  font-size: 35px;
  font-weight: 700;
  color: var(--primary-white);
}

.page_header_subtitle {
  margin-top: 1rem;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-white);
}

.page_header_subtitle a:hover {
  color: #065752;
}

.about_details_container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 4rem 3% 1rem;
  margin-bottom: 50px;
}

.about_details_container .about_para {
  text-align: center;
  max-width: 65rem;
}

.about_our_section {
  margin-top: 2rem;
  width: 100%;
  background: linear-gradient(90deg, #61bd69 0%, #249791 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3% 9rem 3%;
}

.about_our_section .about_our_data_wrapper {
  width: 100%;
  max-width: 67rem;
}

.about_our_section_sub_title {
  font-size: 16px;
  font-weight: 500;
  color: #adffb9;
  display: flex;
  align-items: center;
  gap: 5px;
}

.about_our_section_sub_title .line {
  width: 90px;
  height: 1px;
  background-color: #adffb9;
}

.about_our_section_title {
  font-size: 26px;
  font-weight: 500;
  line-height: 30px;
  color: var(--primary-white);
  max-width: 25rem;
}

.empowering_card_container {
  width: 100%;
  margin-top: 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 0 3% 4rem 3%;
}

.empowering_card_container .empowering_card {
  background-color: var(--primary-white);
  border-radius: 10px;
  padding: 0.875rem;
  margin-top: -8.5rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 1225px) {
  .about_our_section {
    padding: 2rem 3%;
  }

  .empowering_card_container {
    justify-content: flex-start;
    padding: 0 3% 3rem 3%;
  }

  .empowering_card_container .empowering_card {
    margin-top: 0;
  }
}

@media only screen and (max-width: 890px) {
  .about_our_section_sub_title {
    font-size: 14px;
  }

  .about_our_section_sub_title .line {
    width: 70px;
  }

  .about_our_section_title {
    font-size: 23px;
    line-height: 27px;
    max-width: 22rem;
  }
}


/* whychooseUs section starts here */
.why_choose_section {
  width: 100%;
  padding: 4rem 3%;
}

.why_choose-out {
  width: 100%;
  max-width: 76%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.why_choose_first_section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background-color: #f4f4f4;
  padding: 30px;
  box-shadow: rgba(99, 99, 99, 0.24) 0px 2px 6px 0px;
  border-radius: 25px;
  height: 85%;
}

.why_choose_title {
  font-size: 30px;
  font-weight: 300;
  color: var(--dark-color);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 3rem;
}

.why_choose_title span {
  font-weight: 700;
}

.why_choose_para {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--gray-color);
}

.why_choose_enquiry_btn {
  margin-top: 1.65rem;
}

.why_choose_second_section {
  width: 100%;
  background-color: white;
  padding: 50px;
  box-shadow: rgba(99, 99, 99, 0.24) 0px 2px 6px 0px;
  background: linear-gradient(90deg, #61bd69 0%, #249791 100%);
  border-radius: 25px;
  height: 90%;
  margin-top: 30px;
}

.why_choose_second_section p {
  color: var(--primary-white) !important;
}

.why_choose_third_section {
  width: 100%;
  background-color: #f4f4f4;
  padding: 50px;
  box-shadow: rgba(99, 99, 99, 0.24) 0px 2px 6px 0px;
  border-radius: 25px;
  height: 85%;
}

.why_choose_forth_section {
  width: 100%;
  background-color: white;
  padding: 50px;
  box-shadow: rgba(99, 99, 99, 0.24) 0px 2px 6px 0px;
  background: linear-gradient(90deg, #61bd69 0%, #249791 100%);
  border-radius: 25px;
  height: 90%;
  margin-top: 30px;
}

.why_choose_forth_section p {
  color: var(--primary-white) !important;
}

.why_choose_img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.why_choose_img img {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 1400px) {
  .why_choose-out {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 1400px) {
  .why_choose-out {
    max-width: 100%;
  }
}

@media only screen and (max-width: 1144px) {
  .why_choose_section {
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
  }
}

@media only screen and (max-width: 890px) {
  .why_choose_section {
    padding: 4rem 3%;
  }

  .why_choose_title {
    font-size: 26px;
  }

  .why_choose_para {
    margin-top: 1rem;
    font-size: 14px;
    line-height: 25px;
  }

  .why_choose_first_section {
    height: 100%;
  }

  .why_choose_second_section {
    height: 100%;
  }

  .why_choose_third_section {
    height: 100%;
  }

  .why_choose_forth_section {
    height: 100%;
  }
}

@media only screen and (max-width: 500px) {
  .why_choose-out {
    grid-template-columns: repeat(1, 1fr);
  }

  .why_choose_third_section {
    margin-top: 30px;
  }

  .why_choose_second_section {
    margin-top: auto;
  }

  .why_choose_third_section {
    margin-top: auto;
  }

  .why_choose_forth_section {
    margin-top: auto;
  }
}

/* .why_choose-out ul{
  list-style: none;
  margin-top: 1.25rem;
}

.why_choose-out ul li{
  font-size: 16px;
  font-weight: 600;
  line-height: 40px;
  color: var(--gray-color);
}

.why_choose-out ul li img{
  width: 6%;
  margin-right: 10px;
} */
/* whychooseUs section ends here */






/* about page ui start here */

/* main sr */
.main-sr {
  width: 100%;
  padding: 2rem 7%;
  position: relative;
}

.main-sr-img {
  height: 400px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.main-sr-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.main-sr .item:hover img {
  transform: scale(1.2);
}


.main-sr-img::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.63);
}

.main-sr .carousel-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.main-sr .item {
  position: relative;
}

.main-sr .item-content2 {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.main-sr .item-content2-in {
  color: white;
  padding: 25px 25px 0;
  transform: translateY(0);
  /* Initial position */
  transition: transform 0.5s ease-in-out;
}

.main-sr .item:hover .item-content2-in {
  transform: translateY(-20px);
  /* Adjust the value to control how far it moves up */
}

.main-sr .item-content2-in h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  padding-top: 30px;
  color: white;
}

.main-sr .item-content2-in p {
  font-size: 13px;
  font-weight: 400;
  line-height: 32px;
  color: white;
}

.main-sr .details-btn {
  text-align: end;
}

.main-sr .details-btn button {
  font-size: 16px;
  border: 0;
  border-radius: 0;
  padding: 10px 20px;
  color: #61BD69;
  background-color: white;
}

.main-sr .details-btn button:hover {
  color: #fff;
  background: linear-gradient(90deg, #249791 0%, #61bd69 100%);
}


/* 
  .services_carousel_wrapper .dtls-outr{
    margin-top: -172px;
    position: relative;
  }
  .dtls-outr .details{
    padding: 5px 15px;
  }
  .dtls-outr .details-btn{
    text-align: end;
  }
  .dtls-outr .details-btn button{
    font-size: 16px;
    border: 0;
    border-radius: 0;
    padding: 10px 20px;
    color: #61BD69;
    background-color: white;
  }
  .dtls-outr .details-btn button:hover{
    color: #fff;
    background: linear-gradient(90deg, #249791 0%, #61bd69 100%);
  }  */

/* service page start here */
.about_details_container .about_title {
  text-align: center;
}

.service_info_title {
  font-weight: 500;
  max-width: 60rem;
  font-size: 55px;
}

.service_info_sub_title {
  color: #61bd69;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 1rem;
}

.line {
  width: 100px;
  height: 1px;
  background-color: #61bd69;
}

.service_card_container {
  margin: 0 auto;
  width: 100%;
  padding: 0 3% 5rem 3%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 80rem;
  gap: 1.85rem;
  position: relative;
  z-index: 1;
}

.service_card_container .card {
  width: 100%;
}

.service_card_container .card .imge_wrapper {
  width: 100%;
  height: 20rem;
  position: relative;
  overflow: hidden;
}

.service_card_container .card .imge_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service_card_container .card .imge_wrapper:hover img {
  transform: scale(1.1);
}

.service_card_container .label_text {
  margin-top: 0.875rem;
  font-size: 25px;
  font-weight: 600;
  line-height: 30px;
  color: #353535;
  text-align: center;
}

.service_card_container .border_card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 16px solid #61bd6959;
}

@media only screen and (max-width: 1140px) {
  .service_card_container {
    gap: 1.25rem;
  }

  .service_card_container .card .imge_wrapper {
    height: 18rem;
  }
}

@media only screen and (max-width: 991px) {
  .service_card_container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .service_card_container .card .imge_wrapper {
    width: 100%;
    height: 18rem;
  }

  .service_card_container .label_text {
    font-size: 22px;
    line-height: 24px;
  }

  .service_card_container .border_card {
    border: 10px solid #61bd6959;
  }
}

@media only screen and (max-width: 600px) {
  .service_card_container {
    padding: 0 3% 4rem 3%;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }

  .service_card_container .card .imge_wrapper {
    height: auto;
    aspect-ratio: 1/1;
  }

  .about_second_section {
    display: none;
  }
}

.new-service_card_container {
  grid-template-columns: repeat(2, 1fr);
  padding: 30px 0 0 0;
}

@media only screen and (max-width: 600px) {
  .new-service_card_container {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* service page ui start here */

/* servicedetails page ui start here */
.servicedetailstab-container {
  width: 100%;
  max-width: 90rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 5rem 3%;
  margin: 0 auto;
}

/* Tab list styling */
.servicedetailstab-container .tab-list {
  width: 100%;
  max-width: 18rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

.servicedetailstab-container .tab-list button {
  padding: 8px 15px;
  min-height: 50px;
  background-color: #e9e9e9;
  border: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  color: #585858;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in;
}

.servicedetailstab-container .tab-list button svg {
  rotate: -90deg;
  stroke: var(--primary-white);
  width: 1.5rem;
}

.servicedetailstab-container .tab-list button:hover,
.servicedetailstab-container .tab-list button.active {
  background-color: #4bb077;
  color: #fff;
}

/* Content area styling */
.servicedetailstab-container .tab-content {
  flex: 1;
}

/* Hide inactive content */
.servicedetailstab-container .tab-content>div {
  display: none;
}

.servicedetailstab-container .tab-content>div.active {
  display: block;
}

.servicedetailstab-container .servicedetails_image_wrapper {
  width: 100%;
  max-width: 50rem;
  aspect-ratio: 16/6;
  object-fit: cover;
  position: relative;
  overflow: hidden;
}

.servicedetailstab-container .servicedetails_image_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.servicedetailstab-container .servicedetails_image_wrapper:hover img {
  transform: scale(1.1);
}

.servicedetailstab-container .servicedetails_image_wrapper .border_card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 16px solid #61bd6959;
}

.servicedetailstab-container .servicedetails_title_text {
  margin-top: 1.5rem;
  font-size: 30px;
  font-weight: 600;
  line-height: 32px;
  color: #353535 !important;
  max-width: 31rem;
}

.servicedetailstab-container .service_description ul {
  /*margin-top: 1rem;*/
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 1rem;
}

.service_description {
  padding-top: 10px;
}

.servicedetailstab-container .service_description ul li {
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  color: #7c7c7c;
}

.servicedetailstab-container .service_description h2 {
  margin-top: 1.5rem;
  font-size: 30px;
  font-weight: 600;
  line-height: 32px;
  color: #353535 !important;
  max-width: 31rem;
}

.servicedetailstab-container .service_description h4 {
  margin-top: 1.5rem;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: #353535;
  margin-bottom: 5px;
}

.servicedetailstab-container .servicedetails_para_text {
  margin-top: 1.5rem;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #7c7c7c;
  max-width: 50rem;
}

.servicedetailstab-container .service_description p {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #7c7c7c;
}

.envi-study h4 {
  margin-top: 1.5rem;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: #353535;
  margin-bottom: 5px;
}

.envi-study p {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #7c7c7c;
}

.servicedetailstab-container .servicedetails_list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 1rem;
}

.servicedetailstab-container .servicedetails_list li {
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  color: #7c7c7c;
}

@media only screen and (max-width: 991px) {
  .servicedetailstab-container {
    gap: 2rem;
    padding: 5rem 3%;
    flex-direction: column;
  }

  /* Tab list styling */
  .servicedetailstab-container .tab-list {
    max-width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .servicedetailstab-container .tab-list button {
    font-size: 12px;
    gap: 0.5rem;
    max-width: 49%;
  }

  .servicedetailstab-container .tab-list button svg {
    rotate: 0deg;
    width: 1rem;
  }

  .servicedetailstab-container .servicedetails_image_wrapper .border_card {
    border: 10px solid #61bd6959;
  }

  .servicedetailstab-container .servicedetails_title_text {
    margin-top: 1rem;
    font-size: 25px;
    line-height: 28px;
  }

  .servicedetailstab-container .servicedetails_para_text {
    margin-top: 0.5rem;
    font-size: 12px;
    line-height: 20px;
  }
}

@media only screen and (max-width: 600px) {
  .servicedetailstab-container {
    padding: 4rem 3%;
  }

  .about_details_container {
    padding: 4rem 3% 2rem;
    margin-bottom: 0;
}

  .why_choose_section {
    padding: 4rem 3% 2rem;
  }
}

@media only screen and (max-width: 450px) {
  .servicedetailstab-container .tab-list button {
    max-width: 100%;
  }
}

/* .future-services-detls{
  position: relative;
  overflow: hidden;
}

.services_carousel_wrapper{
  width: 80%;
  margin: 0 auto;
  overflow: hidden;
}
.services_carousel_wrapper .imgae_wrapper{
  height: 415px;
  overflow: hidden;
}
.services_carousel_wrapper .imgae_wrapper img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.services_carousel_wrapper .imgae_wrapper:hover img {
  transform: scale(1.2);
}

.services_carousel .tile{
  position: relative;
} */

/* .future-services-detls .dtls-outr .details{
  text-align: center;
} */

/* .future-services-detls .details h3{
font-size: 20px;
font-weight: 700;
line-height: 30px;
padding-top: 30px;
color: white;
}

.future-services-detls .details p{
font-size: 13px;
font-weight: 400;
line-height: 32px;
color: white;
}

.services_carousel_wrapper .imgae_wrapper::after {
content: "";
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.63);
}
.services_carousel_wrapper .dtls-outr{
  margin-top: -172px;
  position: relative;
}
.dtls-outr .details{
  padding: 5px 15px;
}
.dtls-outr .details-btn{
  text-align: end;
}
.dtls-outr .details-btn button{
  font-size: 16px;
  border: 0;
  border-radius: 0;
  padding: 10px 20px;
  color: #61BD69;
  background-color: white;
}
.dtls-outr .details-btn button:hover{
  color: #fff;
  background: linear-gradient(90deg, #249791 0%, #61bd69 100%);
} */


/* custom marque */
/* .marquee {
  overflow: hidden;
  user-select: none;
  display: flex;
  gap: var(--gap);
  margin-top: -168px;
  position: relative;
  z-index: 99;
}

.marquee ul {
  list-style: none;
  flex-shrink: 0;
  min-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap);
  animation: marquee 15s linear infinite;
}

.marquee .text {
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 400;
  font-size: 12ch;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #e1e0e0;
}

@keyframes marquee {
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

@media only screen and (max-width: 768px) {
  .marquee{
    display: none;
  }
} */


/*------ demo ------*/
.workshop-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  align-items: center;
  width: 100%;
  padding: 4rem 3%;
  color: #fff;
}

.left-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}


.left-content p {
  font-size: 1rem;
  line-height: 1.5;
}

.right-slider {
  display: flex;
  gap: 20px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.slider-item {
  flex: 0 0 300px;
  background-color: #222;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding: 10px;
}

.slider-item img {
  width: 100%;
  height: auto;
  border-radius: 10px 10px 0 0;
}

.slider-item h3 {
  font-size: 1.2rem;
  margin: 10px 0;
}

.slider-item p {
  font-size: 1rem;
  margin-bottom: 10px;
}

.slider-item button {
  padding: 10px 20px;
  background-color: #fff;
  color: #000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.slider-item button:hover {
  background-color: #ccc;
}

/*-----END Demo-------*/

/* servicedetails page ui ends here */

/* clients page ui starts here */
.clients_list_container {
  width: 100%;
  padding: 1rem 15% 5rem 15%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
}

.clients_list_container .client_card {
  background-color: #fff;
  width: 100%;
  padding: .1rem 1.5rem;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  height: 130px;
  position: relative;
  z-index: 1;
}

.clients_list_container .client_card img {
  width: 100%;
  height: 120px;
  object-fit: contain;
}

.clients_list_container .client_card:hover {
  border: 1px solid #249e91;
}


@media only screen and (max-width: 1500px) {
  .clients_list_container {
    padding: 0 3% 7rem 3%;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
  }
}

@media only screen and (max-width: 1190px) {
  .clients_list_container {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

@media only screen and (max-width: 990px) {
  .clients_list_container {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media only screen and (max-width: 700px) {
  .clients_list_container {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 3% 4rem 3%;
  }

  .clients_list_container .client_card {
    max-width: 20rem;
    margin: 0 auto;
  }

  .clients_list_container .client_card img {
    width: 110px;
  }
}

@media only screen and (max-width: 500px) {
  .clients_list_container {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* clients page ui ends here */

/* contact page ui starts here */
.contact_card {
  width: 100%;
  max-width: 62rem;
  padding: 0.5rem;
  margin: 0 auto 4rem auto;
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 380px auto;
  /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.contact_card .first_section {
  background: linear-gradient(90deg, #61bd69 0%, #249791 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 10px;
  padding: 2rem 1.65rem;
}

.contact_card .first_section .title {
  font-size: 25px;
  font-weight: 600;
  color: var(--primary-white);
}

.contact_card .first_section .sub_title {
  margin-top: 5px;
  font-size: 15px;
  font-weight: 400;
  color: #adffb9;
}

.contact_card .first_section .details_wrapper {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  gap: 1.5rem;
}

.contact_card .first_section .details_wrapper li {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-white);
}

.contact_card .first_section .details_wrapper li img {
  width: 18px;
}

.contact_card .first_section .social_medias {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact_card .first_section .social_medias img {
  width: 28px;
  user-select: none;
  cursor: pointer;
}

.contact_card .second_section {
  padding: 2rem;
}

.contact_card .second_section form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact_card .second_section .grid_wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.contact_card .second_section .input_wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.contact_card .second_section .input_wrapper .label {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
}

.contact_card .second_section .input {
  margin-top: 0.5rem;
  width: 100%;
  font-size: 12px;
  font-weight: 500;
  outline: none;
  padding: 15px;
  border-radius: 4px;
  background-color: #ffffff4f;
  border: 1px solid white;
}

.send_message_btn {
  margin: 0 auto;
  margin-top: 0px;
  margin-top: 2rem;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  background-color: transparent;
  padding: 0.75rem 1.5rem;
  border-radius: 0;
  border: 1px solid white;
}

.contact_card .second_section .message_wrapper {
  margin-top: 2rem;
}

@media only screen and (max-width: 890px) {
  .contact_card {
    padding: 0.5rem;
    margin: 0 auto 8rem auto;
    grid-template-columns: 320px auto;
  }

  .contact_card .first_section {
    padding: 2rem 1.65rem;
  }

  .contact_card .first_section .title {
    font-size: 22px;
  }

  .contact_card .first_section .sub_title {
    margin-top: 2px;
    font-size: 12px;
  }

  .contact_card .first_section .details_wrapper li {
    gap: 0.5rem;
    font-size: 13px;
  }

  .contact_card .first_section .details_wrapper li img {
    width: 14px;
  }

  .contact_card .second_section .grid_wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }

  .contact_card .second_section .message_wrapper {
    margin-top: 2rem;
  }
}

@media only screen and (max-width: 700px) {
  .contact_card {
    margin: 0 auto 3rem auto;
    grid-template-columns: auto;
  }

  .contact_card .first_section .details_wrapper {
    margin-top: 2rem;
  }

  .contact_card .first_section .social_medias {
    margin-top: 2rem !important;
  }
}

/* contact page ui ends here */

/* founders experience section starts here */
.experience_section {
  padding-bottom: 5rem;
}

.single-experience_section {
  width: 100%;
  padding: 5rem 3%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.double-experience_section {
  width: 100%;
  padding: 0rem 3%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.experience_first_section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.experience_title {
  font-size: 30px;
  font-weight: 300;
  color: var(--dark-color);
}

.experience_title span {
  font-weight: 700;
}

.experience_first_section p {
  margin-top: 1.5rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--gray-color);
}

.experience_enquiry_btn {
  margin-top: 1.65rem;
}

.experience_second_section {
  width: 100%;
  border-radius: 50px;
  overflow: hidden;
  animation: jumpto 3s ease-in-out infinite;
}

.experience_second_section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes jumpto {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

@media only screen and (max-width: 1200px) {
  .double-experience_section .experience_second_section {
    order: 2;
  }
}

@media only screen and (max-width: 1144px) {
  .single-experience_section {
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
  }

  .double-experience_section {
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
  }
}

@media only screen and (max-width: 890px) {
  .single-experience_section {
    padding: 4rem 3%;
  }

  .double-experience_section {
    padding: 0rem 3%;
  }

  .experience_section {
    padding-bottom: 4rem;
  }

  .experience_title {
    font-size: 26px;
  }

  .experience_first_section p {
    margin-top: 1rem;
    font-size: 14px;
    line-height: 25px;
  }

  .experience_enquiry_btn {
    margin-top: 1.25rem;
    font-size: 12px;
  }

  .experience_second_section {
    border-radius: 20px;
  }
}

/* about section ends here */

/* office-dtls */
.office-first {
  width: 100%;
  padding: 8rem 3%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.office-dtls-head {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}

.contact-top-head {
  padding-bottom: 0px;
}

.office-first-in {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.office-dtls .contact_card p {
  font-size: 16px;
  font-weight: 400;
  color: white;
  line-height: 25px;
  margin: 6px 0;
}


.office-dtls .contact_card {
  width: 100%;
  max-width: 52rem;
  padding: 0.5rem;
  margin: 0 auto 5rem auto;
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 380px auto;
  box-shadow: none;
  gap: 2rem;
}

.office-dtls .contact_card .first_section {
  background: linear-gradient(90deg, #61bd69 0%, #249791 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 10px;
  padding: 2rem 1.65rem;
}

.office-dtls .contact_card .first_section .title {
  font-size: 25px;
  font-weight: 600;
  color: var(--primary-white);
}

.office-dtls .contact_card .first_section .details_wrapper {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  gap: 1.5rem;
}

.contact_card .first_section .social_medias {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact_card .first_section .social_medias img {
  width: 28px;
  user-select: none;
  cursor: pointer;
}

.contact_card .second_section {
  border-radius: 10px;
  padding: 2rem;
  background: linear-gradient(90deg, #61bd69 0%, #249791 100%);
}

.office-dtls .contact_card .second_section .title {
  font-size: 25px;
  font-weight: 600;
  color: var(--primary-white);
}

.office-dtls .contact_card .second_section .details_wrapper {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  gap: 1.5rem;
}

.contact_card .second_section .details_wrapper li {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-white);
}


@media only screen and (max-width: 700px) {
  .office-dtls .contact_card {
    margin: 0 auto 3rem auto;
    grid-template-columns: auto;
  }

  .contact-top-head {
    padding-top: 4em;
    padding-bottom: 20px;
  }
}


.founders_exp_section {
  margin-top: 4rem;
  width: 100%;
  padding: 3rem 3%;
  background-color: #f4f4f4;
}

.founders_exp_title {
  font-size: 65px;
  font-weight: 500;
  color: white;
  line-height: 70px;
  margin-bottom: 25px;
}






/*---line---*/
.sec-lines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  opacity: 1;
}

.container.full-height {
  height: 100%;
}

.line-item {
  float: left;
  width: 20%;
  border-right: 1px solid rgba(153, 153, 153, 0.192);
  height: 100%;
  position: relative;
}

.line-item:nth-child(1)::before,
.line-item:nth-child(3)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  transform: translateX(-50%);
  width: 4px;
  height: 30px;
  background-color: rgba(13, 133, 63, 0.459);
  animation: moveTop 6s linear infinite;
}

.line-item:first-child {
  border-left: 1px solid rgba(153, 153, 153, 0.09);
}

@keyframes moveTop {
  0% {
    top: 0;
    opacity: 1;
  }

  50% {
    top: 50%;
    opacity: 0.8;
  }

  100% {
    top: 100%;
    opacity: 0.5;
  }
}

@media only screen and (max-width: 800px) {
  .sec-lines {
    display: none;
  }
}


.ex-out {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  margin-top: 80px;
  /* gap: 20px; */
}
 
.fs-ex {
  position: relative;
}
 
.fs-ex-in {
  height: 100vh;
  overflow: hidden;
}
 
.fs-ex-in img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
  object-fit: cover;
}
 
.fs-ex-in:hover img {
  transform: scale(1.2);
}
 
.after-shadow::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.31);
}
 
.sec-ex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
}
 
.sec-ex-cont {
  height: 50vh;
  padding: 40px 80px;
  position: relative;
  z-index: 2;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
 
.sec-ex-cont h5 {
  font-size: 18px;
  font-weight: 600;
  line-height: 35px;
  text-transform: uppercase;
  color: #61BD69;
}
 
.sec-ex-cont h2 {
  font-family: "Sora", sans-serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 35px;
}
 
.sec-ex-cont p {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  color: var(--gray-color);
  margin-top: 15px;
}
 
.sec-ex-in {
  height: 50vh;
  position: relative;
  overflow: hidden;
}
 
.sec-ex-in img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
  object-fit: cover;
}
 
.sec-ex-in:hover img {
  transform: scale(1.2);
}
 
.th-ex {
  display: flex;
  flex-direction: column;
  /* gap: 10px; */
  height: 100vh;
}
 
.th-ex .th-ex-in {
  position: relative;
  overflow: hidden;
  height: 100vh;
}
 
.th-ex .th-ex-in-one .third-cont,
.th-ex .th-ex-in-two .last-cont {
  height: 50vh; 
}
 
.th-ex .th-ex-in img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
  object-fit: cover;
}
 
.th-ex .th-ex-in:hover img {
  transform: scale(1.2);
}
 
.ex-content {
  margin-top: -85px;
  position: relative;
  text-align: center;
  width: 100%;
}
 
.ex-content h3 {
  color: white;
  font-size: 25px;
  line-height: 30px;
  text-align: center;
  padding: 15px;
}
.ex-content h3:hover{
  color: #61BD69;
}
 
.sec-ex-in-img{
  height: 100%;
}

/* END ex-section */


.innovation {
  background-image: url("../assets/ft-bg.png");
  /* background-position: center; */
  background-repeat: no-repeat;
  background-size: cover;
  height: 80vh;
  min-height: 600px;
  padding-top: 150px;
  position: relative;
}

.innovation-cont {
  width: 25%;
  text-align: center;
  margin: 0 auto;
}

.innovation-cont img {
  width: 80px;
  -webkit-animation: spin 5s linear infinite;
  -moz-animation: spin 5s linear infinite;
  animation: rotate 8s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.innovation-cont p {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  color: #404040;
  margin-top: 15px;
}


/* leaf */
.right-leaf {
  width: 220px;
  position: absolute;
  right: 0;
  margin-top: -130px;
  animation: floatUpDownto 2s ease-in-out infinite;
}

.right-leaf img {
  width: 100%;
  height: 100%;
}

@keyframes floatUpDownto {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.left-leaf {
  width: 150px;
  position: absolute;
  left: 0;
  margin-top: -180px;
  animation: floatUpDown 2s ease-in-out infinite;
}

.left-leaf img {
  width: 100%;
  height: 100%;
  transition: top 1s ease-in-out;
}

@keyframes floatUpDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.contact-box {
  display: none !important;
}


/* home responsive */
/*@media only screen and (max-width: 1500px) {*/
/*  .scroll-btm {*/
/*    transform: translateY(-77%);*/
/*  }*/
/*}*/

@media only screen and (max-width: 1400px) {
  /*.scroll-btm {*/
  /*  transform: translateY(-81%);*/
  /*}*/

  .about_title {
    font-size: 50px;
    line-height: 55px;
  }

  .empowering_card_wrapper {
    width: 80%;
  }

  .innovation-cont {
    width: 80%;
  }

  .form-logo-in {
    top: 0;
    height: 100%;
  }
}

@media only screen and (max-width: 1200px) {
  .scroll-btm {
    display: none;
  }

  .about_title {
    font-size: 40px;
  }

  .right-leaf {
    width: 150px;
  }

  .left-leaf {
    width: 100px;
  }

  .innovation {
    height: 100%;
  }

  .ex-content {
    margin-top: -110px;
  }

  .ex-content h3 {
    font-size: 20px;
  }

  .sec-ex-cont {
    padding: 25px;
  }
}

@media only screen and (max-width: 1145px) {
  .anim2 .animation-container {
    height: 70px;
  }

  .about_second_sc_img1 {
    width: 60%;
    left: 35%;
    position: relative;
    transform: translateX(-50%);
  }

  .anim_line_outr {
    width: 100%;
    justify-content: center;
    display: flex;
  }

  .anim_line {
    width: 100%;
    left: auto;
  }

  .anim1 .animation-container {
    height: 100px;
  }

  .empowering_card_wrapper {
    width: 100%;
  }

  .left-leaf {
    width: 60px;
  }

  .right-leaf {
    width: 100px;
  }

  .ex-out {
    grid-template-columns: repeat(2, 1fr);
  }

  .th-ex {
    display: none;
  }

}

@media only screen and (max-width: 992px) {

  /* .video-bg__media {
    height: 60%;
  }
  .cloud-out {
    height: 60%;
  } */
  .video-bg {
    height: 50vh;
  }

  .cloud-out {
    height: 50vh;
  }
}

@media only screen and (max-width: 890px) {
  .empowering_card_wrapper {
    width: 85%;
  }

  .form-logo-in {
    display: none;
  }
}

@media only screen and (max-width: 800px) {
  .ex-out {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 0;
  }

  .th-ex {
    display: block;
  }

  .fs-ex {
    display: none;
  }

  .sec-ex {
    justify-content: normal;
    height: auto;
  }
  
  .th-ex .th-ex-in {
    height: auto;
  }

  .sec-ex-cont {
    height: auto;
  }

  .ex-out {
    display: block;
  }
}

@media only screen and (max-width: 700px) {
  .anim1 .animation-container {
    height: 65px;
  }

  .anim2 .animation-container {
    height: 40px;
  }

  .empowering_title {
    font-size: 28px;
    line-height: 35px;
  }

  .services_section_title {
    font-size: 28px;
  }
}

@media only screen and (max-width: 500px) {
  .serv-head-otr {
    /* display: block; */
  }

  .gradient_btn {
    padding: 0.6rem .8rem;
  }

  .services_section_title {
    font-size: 22px;
  }
}

@media only screen and (max-width: 400px) {
  .anim1 .animation-container {
    height: 40px;
  }
}

.graph-img {
  margin-top: 2rem;
}

.graph-img {
  width: 100%;
  height: 100%;
}

.graph-img img {
  width: 100%;
  height: 100%;
}

.send_message_btn span {
  padding-left: 6px;
}

@media only screen and (max-width: 600px) {
  .about_title {
    font-size: 32px;
    line-height: 40px;
  }

  .empower_small {
    text-align: left;
    width: 90%;
    margin: 0 auto;
  }

  .empowering_title {
    font-size: 25px;
    line-height: 35px;
    width: 90%;
    text-align: left;
  }

  .empowering_section {
    padding: 1rem 3% 3rem 3%;
  }

  .empowering_card_wrapper {
    width: 90%;
  }

  .innovation {
    height: 50vh;
    min-height: 500px;
    padding-top: 60px;
    position: relative;
  }

  .founders_title {
    font-size: 35px;
  }

  .servicedetailstab-container .service_description h4 {
    margin-top: .5rem;
  }

}

/* aim */
.aim {
    width: 100%;
    padding: 6rem 3% 5rem 3%;
    position: relative;
    overflow: hidden;
    margin-top: -5px;
    background-color: white;
}
.aim_small {
  font-size: 28px;
  font-weight: 300;
  line-height: 24px;
  color: #343434;
  margin-bottom: 0px;
}
.aim_small span {
  font-family: "Sora", sans-serif;
  font-weight: 600;
}
.aim-cont{
  max-width: 50rem;
  text-transform: uppercase;
  margin: 0 auto;
  text-align: center;
}
.aim p {
  margin-top: 1rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 35px;
  color: var(--gray-color);
}
 
 
@media only screen and (max-width: 600px) {
  .aim{
    padding-bottom: 0;
  }
  .aim p {
    font-size: 14px;
    line-height: 30px;
  }
 
}