* {
  padding: 0;
  margin: 0;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
.row {
  margin: 0 !important;
  padding: 0 !important;
}
:root {
  --textcolor1: #fdbe34;
  --backgroundcolor:#ffc03d;
  --titlePadding: 20px;
  --aboutHeadingText: #212d45;
  --aboutDiscriptionBottomMargin: 24px;
  --aboutDiscriptionColor: #4b4f58;
  --socialPadding: 1em;
  --icon-size:15px;
}
.container-fluid,
.hero-div {
  padding: 0;
  margin: 0;
  width: 100%; /* Makes sure it doesn’t exceed the viewport width */
  box-sizing: border-box; /* Includes padding in width calculation */
}
.hero-div {
  height: 100vh;
}
.hero-div-other {
  padding: 0;
  margin: 0;
  width: 100%; /* Makes sure it doesn’t exceed the viewport width */
  box-sizing: border-box; /* Includes padding in width calculation */
  height: 80vh;
  position: relative;
}
.hero-div-other::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
/* .hero-div-other-body{
    position: relative;
    z-index: 1;
  } */
.btn1 {
  border: none;
  background-color: transparent;
  outline: none;
  top: 50px;
  right: 10px;
  /* transition: transform 1s ease, opacity 1s; */
}
.btn2 {
  position: relative;
  right: 30px;
  top: 0px;
}
.logo {
  position: relative;
}
.logo a .logo-img {
  width: 300px;
}

.ac-btn {
  transition: transform 1s ease, opacity 1s;
  width: 118px !important;
  display: flex;
  justify-content: space-between;
  position: relative;
  top: 55px;
  right: 5px;
}
.ac-btn .btn1 :hover .n-icon {
  cursor: pointer;
}
/* Default image styling */
.n-icon {
  transition: filter 0s ease; /* Smooth transition for the hover effect */
}

/* Hover effect to deepen color */
.btn1:hover .n-icon {
  filter: brightness(
    0.7
  ); /* Adjust to make it look deeper, or increase saturation */
}

.ac-btn.active {
  transform: translate(-50px, 0px) scale(0.7);
  /* Moves left and up */
  position: absolute;
  /* Moves left and up */
  visibility: visible;
}

.ac-btn.hidden {
  /* opacity: 0; */
  visibility: hidden;
  transform: translate(-20px, -30px) scale(0.3);
  /* Moves right and down */
  /* Moves right and down */
}

.btn1 i {
  font-size: 40px;
  color: white;
}
.ac-btn .rightt {
  position: relative;
  right: -20px;
  top: -10px;
  font-size: 30px;
  font-size: 20px;
  color: white;
}
.ac-btn .rightt:hover {
  color: #c2c2c2;
  transition: 0.2s;
  cursor: pointer;
}
.back-video {
  position: absolute; /* Ensures it stays fixed within the viewport */
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%; /* Ensures it spans the full width of its parent container */
  height: 100vh; /* Full viewport height */
  object-fit: cover; /* Covers the entire area while maintaining aspect ratio */
  object-position: center; /* Centers the video */
}

.hero-nav {
  z-index: 3;
  padding: 0px 40px;
}

.logo a {
  text-decoration: none;
  font-size: 25px;
  font-family: "Albert Sans", sans-serif;
  font-weight: 800;
  color: #fff;
  line-height: 23px;
}

.hero-nav {
  position: relative;
  z-index: 10;
  /* padding: 40px 0px 0px 40px; */
}

.hidden-box-div,
.hidden-box-div2 {
  height: 100vh;
  background-color: rgb(0, 0, 0);
  position: absolute;
  z-index: 5;
  top: -120%;
  transition: top 0.9s ease; /* Add transition for smoothness */
  overflow: hidden;
}

.nav-dw {
  top: 0; /* Moves the element down */
}

.ac-btn {
  transition: transform 1s ease, opacity 1s;
  width: 118px !important;
  display: flex;
  justify-content: space-between;
}

.ac-btn.hidden {
  opacity: 0;
  transform: translate(-20px, -30px) scale(0.3);
}
.nav-dw {
  animation-name: nav-down;
  animation-duration: 0.9s;
  /* animation-fill-mode: forwards; */
}
@keyframes nav-down {
  0% {
    top: -120%;
  }
  100% {
    top: 0%;
  }
}
.scroll-down a {
  position: absolute;
  bottom: 50px;
  left: 50%;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  transform: translate(-50%);
  letter-spacing: 2px;
  font-family: "Albert Sans", sans-serif;
}
.scroll-down a:hover {
  color: #f84848;
}
.btnn {
  text-decoration: none;
  border-radius: 0px !important;
  outline: none !important;
  transition: 0s !important;
  cursor: pointer;
  text-transform: uppercase;
  padding: 11px 18px;
}
.scroll-up a {
  background-color: crimson;
  position: fixed;
  bottom: 3px;
  right: -19px;
  transform: translate(-50%);
  z-index: 999;
}
.scroll-up a:hover {
  background-color: #97161a;
}
.scroll-up .btnn i {
  color: #fff;
}
.custom-carousel {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  overflow: hidden;
}

.custom-carousel-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* Full viewport height */
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* Child div inside each slide */
.custom-carousel-slide .custom-content {
  color: white;
  font-size: 24px;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 5px;
}

/* Active class to make the slide visible */
.custom-active {
  opacity: 1;
  z-index: 1;
}
.custom-carousel-slide .custom-content h5 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--textcolor1);
  margin-bottom: 8px;
}
.custom-carousel-slide .custom-content h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 80px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #ffffff;
  margin-bottom: 8px;
}
.m2{
  display: none;
}
@media (max-width: 495px) {
  .hero-nav {
    /* padding: 20px 0px 0px 8px; */
  }
  .ac-btn.active {
    transform: translate(0px, 0px) scale(0.7);
  }
  .btn1 i {
    font-size: 36px;

  }
  .m1{
    display: none;
  }
  .m2{
    display: block;
  }
}

.heading-text {
  background: linear-gradient(to right, transparent 50%, var(--textcolor1) 50%);
  background-size: 100% 100%;
  height: 130px;
  width: 100%;
}

.h-text h1 {
  color: #444;
  letter-spacing: 4px;
  font-family: "Albert Sans", sans-serif;
  font-weight: 300;
}
.project-box {
  height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}
.project-box:hover ::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
}
.project-content {
  position: relative;
  z-index: 2;
  padding: 0px 15px;
}
.project-content .project-name h4 {
  color: white;
}
.project-content .project-name h3 {
  color: rgba(255, 255, 255, 0.5);
}

.project-content a {
  position: absolute;
  left: 50%;
  top: 50%;
  visibility: hidden;
  transform: translate(-50%, -50%);
  padding: 10px 12px;
  background-color: var(--textcolor1);
  border-radius: 50%;
}
.project-content a .fa-solid {
  font-size: 40px;
  color: white;
}
.project-box:hover .project-content a {
  visibility: visible;
  animation-name: toTop;
  animation-duration: 0.9s;
}
@keyframes toTop {
  0% {
    top: 90%;
  }
  100% {
    top: 50%;
  }
}

.service-head {
  font-size: 2.5rem;
  /* font-family: 'Montserrat'; */
  font-family: "Albert Sans", sans-serif;
  font-weight: normal;
  color: #444;
  text-align: center;
  margin: 2rem 0;
}
.services-div {
  background-image: url("../images/White-elegant-texture-background.jpg");
  background-size: cover;
  padding: 30px 0px 100px;
}
.container-new {
  width: 90%;
  margin: 0 auto;
  max-width: 80rem;
}

.card-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.card-item {
  width: calc(25% - 2rem);
  margin: 1rem;
  cursor: pointer;
}

.card-inner {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
.bttn {
  font-family: "Albert Sans", sans-serif !important;
  font-size: 25px !important;
  font-weight: 300 !important;
}
.card-front,
.card-back {
  background-size: cover;
  background-position: center;
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -o-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1),
    -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  text-align: center;
  min-height: 280px;
  height: auto;
  border-radius: 10px;
  color: #fff;
  font-size: 1.5rem;
}

.card-back {
  background: #cedce7;
  background: -webkit-linear-gradient(45deg, #cedce7 0%, #596a72 100%);
  background: -o-linear-gradient(45deg, #cedce7 0%, #596a72 100%);
  background: linear-gradient(45deg, #cedce7 0%, #596a72 100%);
}

.card-front::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  opacity: 0.6;
  background-color: #000;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 10px;
}

.card-inner:hover .card-front,
.card-inner:hover .card-back {
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -o-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1),
    -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.card-content {
  -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
  transform: translateY(-50%) translateZ(60px) scale(0.94);
  top: 50%;
  position: absolute;
  left: 0;
  width: 100%;
  padding: 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: 1px solid transparent;
  -webkit-perspective: inherit;
  perspective: inherit;
  z-index: 2;
}

.card-inner .card-back {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.card-inner .card-front {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.card-inner:hover .card-back {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.card-inner:hover .card-front {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.card-front .card-content p {
  font-size: 25px;
  margin-bottom: 2rem;
  position: relative;
  letter-spacing: 2px;
}

.card-front .card-content p::after {
  content: "";
  width: 4rem;
  height: 2px;
  position: absolute;
  background: #c6d4df;
  display: block;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -0.75rem;
}

.card-front .card-content span {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Montserrat";
  font-weight: 300;
}

@media screen and (max-width: 64rem) {
  .card-item {
    width: calc(33.333333% - 2rem);
  }
}

@media screen and (max-width: 48rem) {
  .card-item {
    width: calc(50% - 2rem);
  }
}

@media screen and (max-width: 32rem) {
  .card-item {
    width: 100%;
    margin: 0 0 2rem 0;
  }
}
.services-text ul li {
  font-size: 20px;
  color: #5a5a5a;
  text-transform: capitalize;
}
.video-size {
  height: 280px !important;
  border-radius: 10px;
}
/* .card-back{
    position: relative;
} */
.footer-div {
  background-color: #111111;
  padding: 50px;
}
.footer-sub-head {
  color: var(--textcolor1) !important;
  font-size: 18px !important;
}
.footer-subscribe-head {
  color: #ffffff !important;
  font-size: 18px !important;
}
.footer-box p {
  color: #fff;
  font-size: 15px;
}
.footer-box ul li span i {
  color: var(--textcolor1) !important;
  padding-right: 5px;
}
.footer-box ul li span {
  color: #ffffff;
  width: fit-content;
}
.footer-box ul li a {
  color: #ffffff;
  text-decoration: none;
}
.footer-box ul li {
  list-style: none;
  padding-bottom: 3px;
}
.email {
  /* width: fit-content; */
  height: 50px;
  background-color: white;
  border-radius: 15px;
  margin-bottom: 15px;
}
.email i {
  color: #000;
  background-color: transparent;
  outline: none;
  width: 20px;
  margin: auto 5px;
}
.email input {
  width: 100%;
  color: #000;
  background-color: transparent;
  outline: none;
  border: none;
  margin: auto 5px;
}
.btn-warning {
  background-color: var(--textcolor1) !important;
  color: white;
  outline: none;
  border: none;
  cursor: pointer;
}
.btn-warning :hover {
  color: rgb(255, 255, 255) !important;
}
.footer-container {
  border-bottom: 2px solid rgb(204, 204, 204);
  margin-bottom: 60px;
}
.social-icon {
  margin-top: 50px;
}
.social-icon ul {
  display: flex;
  /* transform: translate(-50%,-50%); */
}
.social-icon ul li {
  list-style: none;
  margin: 0px 10px;
}

.social-icon ul li a {
  text-decoration: none;
  /* border-radius: 50%; */
  background-color: var(--textcolor1);
  display: flex;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  transition: 0.4s;
}
.social-icon ul :nth-child(1) a:hover {
  background-color: #0866ff;
}
.social-icon ul :nth-child(2) a:hover {
  background-color: #d54c3f;
}
.social-icon ul :nth-child(3) a:hover {
  background-color: #000;
}
.social-icon ul :nth-child(4) a:hover {
  background: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045);
}
.social-icon ul li a i {
  margin: auto;
  color: white;
  font-size: 17px;
}
.copyright p {
  font-size: 14px;
  color: white;
}
.contact-div {
  background-image: url("/assets/images/contact-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  height: 100vh;
}
.contact-wrap {
  padding: 50px 0px;
  margin-bottom: 0px;
  width: 100%;
  height: 80vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  align-items: center;
}

.contact-wrap .newsletter {
  display: grid;
  place-items: center;
}

.text-white {
  --bs-text-opacity: 1;
  color: white !important;
  font-size: 45px;
  /* line-height: -1px; */
}

.contact-wrap .contact-card {
  display: grid;
  place-items: center;
}

.contact-wrap .form-start {
  border-radius: 0.5rem;
  -webkit-box-shadow: 6px 13px 6px 3px rgb(0 4 46 / 82%);
  box-shadow: 6px 13px 6px 3px rgb(0 4 46 / 82%);
  background-color: rgba(0, 0, 0, 0.245);
  color: white;
  font-weight: bold;
  text-align: center;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  padding: 20px;
}

.contact-wrap .formc input {
  background: transparent;
  line-height: 1rem;
  border: none;
  border-bottom: 1px solid var(--textcolor1);
  color: white;
  transition: all 0.3s ease;
}

.bn54 {
  color: #1f1f1f;
  position: relative;
  text-decoration: none;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  text-transform: uppercase;
  height: 45px;
  opacity: 1;
  background-color: #ffffff;
  outline: none !important;
  transition: 0.3s;
  font-family: "Albert Sans", sans-serif;
  font-weight: 500;
}
.bn54:hover {
  background-color: var(--textcolor1);
}
.btn {
  outline: none !important;
}
.contact-wrap .formc input::placeholder {
  color: #c2c2c2;
}
.nav-tab-btn ul li {
  list-style: none;
}
.nav-tab-btn ul li .n-number {
  position: relative;
  color: white;
  top: -25px;
}
.nav-tab-btn ul li span a {
  text-decoration: none;
  font-size: 50px;
  color: white;
  font-family: "Albert Sans", sans-serif;
}

.nav-tab-btn ul li:hover span,
.nav-tab-btn ul li:hover span a {
  color: red;
}
.nav-tab-btn {
  height: fit-content;
  width: fit-content;
}
.hero-bg-size {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.bg-size {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.ourClient-index {
  background-image: url("../images/White-elegant-texture-background.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.ourClient-divIndex {
  padding: 40px 0px;
}
.ourClientIndex {
  background-color: white;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid black;
}

/* WhatsApp Floating Button */
#whatsapp-chat {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
}

#whatsapp-button img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}

#whatsapp-button img:hover {
  transform: scale(1.1);
}

/* ----------------------------------------ABOUT START------------------------------------------------------- */
.about-body-div {
  height: 50vh;
  display: flex;
  /* flex-direction: column; */
  align-items: end;
}
.about-body-div .abd-content .abd-text {
  /* font-size: 70px; */
  font-weight: 900;
  text-transform: uppercase;
  font-family: "Barlow", sans-serif;
  /* margin-top: 0px; */
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  -webkit-text-fill-color: transparent;
  font-size: 140px;
  font-weight: 800;
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
}
.about-body-div .abd-content .abd-text2 {
  /* font-size: 70px; */
  font-weight: 900;
  text-transform: uppercase;
  font-family: "Barlow", sans-serif;
  /* margin-top: 0px; */
  font-style: normal;
  font-size: 140px;
  font-weight: 800;
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
  color: var(--textcolor1);
  animation: animate 4s ease-in-out infinite;
}
@keyframes animate {
  0%,
  100% {
    clip-path: polygon(
      0% 45%,
      15% 44%,
      32% 50%,
      54% 60%,
      70% 61%,
      84% 69%,
      100% 52%,
      100% 100%,
      0% 100%
    );
  }
  50% {
    clip-path: polygon(
      0% 60%,
      16% 65%,
      34% 66%,
      51% 62%,
      67% 50%,
      84% 45%,
      100% 46%,
      100% 100%,
      0% 100%
    );
  }
}
.breadcrumb-item,
.breadcrumb-item a {
  text-decoration: none;
  color: #fff !important;
  font-size: 20px;
  font-family: "Albert Sans", sans-serif;
}
.breadcrumb-item a:hover {
  text-decoration: underline;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: white !important;
}
.breadcrumb-before {
  position: relative;
  left: 250px;
}
.breadcrumb-before::before {
  content: "";
  height: 5px;
  width: 200px;
  background-color: white;
  position: absolute;
  top: 18px;
  right: 160px;
}
.c-hide {
  visibility: hidden;
  transition: 0.2s;
}
.about-us-div {
  padding: 75px 0px;
}
.about-us-content {
  width: 90%;
  height: 100%;
}

/* .serviceButtonElementor .serviceButton{
      padding: 12px 45px;
    font-size: 15px;
    text-decoration: none;
    color: var(--aboutHeadingText);
    background-color: #ffc03d;
    border-radius: 2px;
    transition: .3s;
} */
.aboutTitle {
  color: var(--backgroundcolor);
  padding-bottom: var(--titlePadding);
  font-size: 25px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.elementorDiv .elementorButton {
  padding: 12px 45px !important;
  border: none !important;
  font-size: 15px !important;
  text-decoration: none !important;
  color: var(--aboutHeadingText) !important;
  background-color: var(--backgroundcolor) !important;
  border-radius: 2px !important;
  transition: 0.3s !important;
}
.elementorDiv .elementorButton:hover {
  background-color: #eba714;
}
.container-width-set {
  width: 70%;
  height: 400px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.sustainability-elementor {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: #0866ff; */
  background-image: url("../images/image-1-min.jpg");
  position: relative;
}
.sustainability-elementor2 {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../images/image-2-min.jpg");
  position: relative;
}
.sustainability-elementor::after {
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  background-color: rgba(33, 45, 69, 0.8);
}
.sustainability-elementor2::after {
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  background-color: rgba(255, 192, 61, 0.8);
}
.elementor-icon-list-items {
  padding: 0 !important;
  margin: 0 !important;
}
.elementor-icon-list-items .elementor-icon-list-item {
  height: auto;
  list-style: none;
  padding: 5px 0px;
}
.elementor-icon-list-items .elementor-icon-list-item .elementor-icon-list-icon,
.elementor-icon-list-text {
  font-size: 20px;
  font-weight: bold;
  color: #212d45;
}
.elementor-icon-list-items .elementor-icon-list-item .elementor-icon-list-text {
  padding-left: 10px;
  margin: auto 0px;
}
.ourClient-div {
  padding: 80px 0px;
}
#ourclients {
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 30px;
  height: 150px;
}
#ourclients .clients-wrap {
  display: block;
  width: 95%;
  margin: 0 auto;
  overflow: hidden;
}
#ourclients .clients-wrap ul {
  display: block;
  list-style: none;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  height: 103px;
  overflow: hidden;
}
#ourclients .clients-wrap ul li {
  display: block;
  float: left;
  position: relative;
  width: 220px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  margin-bottom: 10px;
}
#ourclients .clients-wrap ul li img {
  vertical-align: middle;
  max-width: 100%;
  width: 150px;
  max-height: 100%;
  -webkit-transition: 0 linear left;
  -moz-transition: 0 linear left;
  transition: 0 linear left;
}
#ourclients h3 {
  border-bottom: 2px solid #3399ff;
  width: 150px;
  padding: 10px;
}
/* ----------------------------------------ABOUT END------------------------------------------------------- */

/* --------------------------------------SERVICES START---------------------------------------------------- */

/* ---------------------------------------SERVICES END------------------------------------------------------- */

/* --------------------------------------PROJECTS START---------------------------------------------------- */

.projectGalleryContainer {
  height: 450px;
  width: 100%;
  display: flex;
  align-items: end;
}
.projectDetailsContainer {
  background-color: transparent;
  width: 100% !important;
  padding: 30px 25px;
}
.projectDetailsContainer .projectEntryText .projectEntryTextHeading {
  font-size: 24px;
  font-size: 1.6rem;
  line-height: 1.2em;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #fff;
}
.projectEntryTextLocation {
  color: #fff;
}

/* ---------------------------------------PROJECTS END------------------------------------------------------- */

/* ------------------------------------CONTACT US START---------------------------------------------------------- */
.contactForm {
  margin-bottom: 15px;
  position: relative;
  overflow: hidden; /* make sure overlay stays inside */
}

.contactForm::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("/assets/images/work/KATENI/img71.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;

  /* only background image gets opacity + filters */
  opacity: 0.1;
  filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
  z-index: 1;
}

.contactForm > * {
  position: relative;
  z-index: 2; /* keep form fields above the background */
}

.contactFormDiv {
  max-width: 1500px;
}
.socialElementorBox{
  padding: 0px 30px;
}
.socialElementor{
  margin-bottom: 20px;
}
.contactsection h3 {
  font-size: 35px;
  font-family: "Albert Sans", sans-serif;
}
.contactsection h4 {
  font-family: "Albert Sans", sans-serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.2em;
}
.contactsection p {
  line-height: 2;
  text-align: justify;
  font-family: "Lato", Sans-serif;
  font-size: 13px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: #414141;
  margin-bottom: 20px;
}
.contactsection ul {
  padding: 0;
  margin: 0;
  display: flex;
}

.contactsection ul li {
  list-style: none;
  margin-right: 15px;
}

.contactsection ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 17px;              /* smaller icon size */
  line-height: 1;
  height: 40px;                 /* smaller square */
  width: 40px;                  /* smaller square */
  background-color: var(--backgroundcolor);
  color: #000;
  border-radius: 5px;           /* keep corners */
  transition: transform 0.2s;   /* smooth scaling */
}

.contactsection ul li a:hover {
  animation: blinkScale 0.3s ease-in-out;
  background-color: #000;
  color: #fff;
  
}

@keyframes blinkScale {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.15); } /* grow a little */
  100% { transform: scale(1); }
}



.custom-contact-form {
      max-width: 700px;
      margin: 50px auto;
      background: #fff;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      font-family: Arial, sans-serif;
    }

    .custom-contact-form h2 {
      text-align: center;
      margin-bottom: 20px;
    }

    .custom-form-group {
      display: flex;
      gap: 20px;
      margin-bottom: 15px;
    }

    .custom-form-group .custom-input,
    .custom-form-group .custom-textarea {
      width: 100%;
      padding: 12px;
      border: 1px solid #ddd;
      border-radius: 6px;
      font-size: 14px;
    }

    .custom-label {
      font-size: 14px;
      font-family: "Albert Sans", sans-serif;
      font-weight: 600;
      margin-bottom: 5px;
      display: block;
    }

    .custom-textarea {
      min-height: 90px;
      resize: vertical;
    }

    .custom-recaptcha {
      margin: 15px 0;
    }

    .custom-btn-submit {
      display: block;
      width: 100%;
      background-color:var(--backgroundcolor) ;
      color: #000;
      font-size: 15px;
      font-weight: 500;
      text-transform: uppercase;
      padding: 14px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .custom-btn-submit:hover {
      background-color: #000;
      color: white;
    }
.locationelementordiv{
  height: max-content;
}



    .email-link {
  display: inline-flex;
  align-items: center;       /* vertical center */
  gap: 8px;                  /* space between icon and text */
  text-decoration: none;     /* remove underline */
  color: #000;               /* default color */
  font-size: 16px;           /* text size */
}

.email-link i {
  font-size: 16px;           /* make icon same size as text */
  line-height: 1;            /* remove extra space */
  display: flex;             /* fix misalignment */
  align-items: center;
    position: relative;
  top: 2px;   /* adjust up/down until perfect */
}

.email-link span {
  line-height: 1.4;          /* matches text line height */
}
.email-link i {

}

.cardcolor{
  background-image: linear-gradient(325deg, var(--backgroundcolor) 0%, #FFFFFF 69%);
}


/* ------------------------------------CONTACT US END---------------------------------------------------------- */
