@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
  /* Colors: */
  --color-ef7f1a: #ef7f1a;
  --color-000000: #000000;
  --color-5f5d5f: #5f5d5f;
  --color-282728: #282728;
  --color-f3f3f3: #f3f3f3;
  --color-ffffff: #ffffff;
  --font-family-plusjakarta: "Plus Jakarta Sans", sans-serif;
  --font-style-normal: normal;
  --font-size-12: 12px;

  --font-size-14: 14px;
  --font-size-15: 15px;
  --font-size-16: 16px;
  --font-size-18: 18px;
  --font-size-20: 20px;
  --font-size-22: 22px;
  --font-size-25: 25px;
  --font-size-28: 28px;

  --font-size-30: 30px;

  --font-size-40: 40px;
  --font-size-65: 65px;
  --font-size-85: 85px;

  --character-spacing-0: 0px;
  --line-height-inherit: inherit;
  --font-weight-Thin: 100;
  --font-weight-ExtraLight: 200;
  --font-weight-Light: 300;
  --font-weight-Regular: 400;
  --font-weight-Medium: 500;
  --font-weight-SemiBold: 600;
  --font-weight-Bold: 700;
  --font-weight-ExtraBold: 800;
  --font-weight-Black: 900;
  --font-weight-normal: normal;
}


* {
  outline: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-plusjakarta);
  font-style: var(--font-style-normal);
  font-size: var(--font-size-20);
  color: var(--color-000000);
  font-weight: var(--font-weight-Regular);
  margin: 0;
  padding: 0;
}

.clr {
  width: 100%;
  float: left;
}

.img {
  width: 100%;
}

a,
.btn,
button {
  color: var(--color-000000);
  outline: none;
  cursor: pointer;
  outline: 0;
  text-decoration: none;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

a:focus,
.btn:focus,
button:focus,
.custom-select:focus,
.form-control:focus {
  outline: none;
  box-shadow: none;
}

.btn:hover,
a:hover,
button:hover {
  color: var(--color-c18d02);
  text-decoration: none;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: normal;
  margin-bottom: 15px;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none;
}

.orange {
  color: var(--color-ef7f1a);
}

header,
footer,
section {
  width: 100%;
  float: left;
}

p {
  font-size: var(--font-size-20) !important;
  line-height: normal;
  font-weight: var(--font-weight-Regular);
  margin-bottom: 20px;
}

.main-heading {
  font-size: var(--font-size-85);

}

.section-heading {
  font-size: var(--font-size-40);
  font-weight: var(--font-weight-Medium);

}

.sub-heading {
  font-size: var(--font-size-30);


}

.sub-heading-two {
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-Bold);



}

.small-heading {
  font-size: var(--font-size-16);
  color: var(--color-000000);
  text-transform: uppercase;
  transform: rotate(90deg);
  position: absolute;
  left: -120px;
  margin-bottom: 0;
  top: 81px;
  /* height: 100%; */
  /* width: 100%; */
}

.small-heading::before {
  width: 4px;
  content: '';
  height: 4px;
  border-radius: 100%;
  background-color: var(--color-ef7f1a);
  font-size: 1rem;
  position: absolute;
  left: -20px;
  top: 7px;
}

.small-heading::after {
  width: 100vh;
  content: '';
  height: 1px;
  background-color: var(--color-ef7f1a);
  position: absolute;
  left: -22px;
  top: -26px;
  /* height: 100%; */
}

.common-btn {
  padding: 0.1rem 1rem !important;
  border: 0.1rem solid var(--color-ef7f1a);
  text-transform: capitalize;
  border-radius: 0.2rem;
  background-color: var(--color-ffffff);
  color: var(--color-ef7f1a) !important;
  font-size: var(--font-size-14);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  /* justify-content: center; */
  padding-right: 0.2rem !important;
  overflow: hidden;
  border-radius: 10rem;
  width: fit-content;
}

.common-btn .text {
  margin-top: -5px;
}


.common-btn:hover {
  color: var(--color-ffffff) !important;
  background-color: var(--color-ef7f1a);
  padding: 0.5rem 0.8rem;
  border-radius: 2rem;
}

.common-btn .arrow {
  border: 0.1rem solid var(--color-ef7f1a);
  text-transform: capitalize;
  border-radius: 4.2rem;
  background-color: var(--color-ef7f1a);
  color: var(--color-ffffff);
  width: 2rem;
  height: 2rem;
  margin: 0.1rem;
  margin-left: 1rem;
}

.common-btn:hover .arrow {
  background-color: var(--color-ffffff);
  border: 0.5rem solid var(--color-ffffff);
  border-radius: 4rem;

}

.common-btn i {
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  transition: ease all 0.5s;
}

.common-btn:hover i {
  transform: rotate(0deg);

}

.common-btn:hover i {
  color: var(--color-000000);

}

.link-arrow {
  font-size: var(--font-size-14);
  font-weight: 500;
  position: relative;
  text-align: left;
  /* text-decoration: underline; */
  text-transform: capitalize;
  display: inline-flex;
  color: var(--color-ef7f1a);
  transition: ease all 0.5s;
}

.link-arrow:hover {
  color: var(--color-000000);
}

.link-arrow:hover i {
  color: var(--color-000000);
  rotate: 360deg;
}

.link-arrow i {
  rotate: 315deg;
  top: 3px;
  position: relative;
  color: var(--color-ef7f1a);
  margin-left: 1rem;
  transition: ease all 0.5s;
}

.list li {
  list-style-type: disc;
  font-size: var(--font-size-20);
  margin-left: 20px;
  margin-bottom: 0.5rem;
}


section {
  overflow: hidden;
}

.top-header {
  padding: 1rem 0;
  background-color: var(--color-282728);
  font-size: var(--font-size-12);
  color: var(--color-ffffff);
  font-weight: 200;
}

.top-header-right {
  text-align: right;
}

.top-header-left li {
  margin-right: 2rem;
}

.top-header a {
  color: var(--color-ffffff);
}

.top-header a:hover {
  color: var(--color-ef7f1a);
}






header {
  width: 100%;
}

.brand img {
  position: relative;
  width: auto;
  left: 0;
  top: 0;
  object-fit: contain;
  z-index: 9;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  padding: 1rem 0;
}


.g_header {
  top: 0%;
  left: 0;
  width: 100%;
  z-index: 99;
  background: var(--color-ffffff);
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  align-items: center;
  justify-content: center;
  display: flex;
}

.main-header.g_shrink {
  top: 0%;
  position: fixed;
  background: var(--color-f68e1f);
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  z-index: 999;
}


.main-header.g_shrink .nav-link {
  padding: 2rem 0 !important;
}


.main-header.g_shrink .main-nav .logo-bg {
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.main-header.g_shrink .navbar-brand img {
  width: 150px;
}

ul.top-social li {
  float: left;
}

ul.top-social li i {
  /* color: var(--color-ffffff); */
  font-size: var(--font-size-16);
  margin-left: 20px;
  transition: 0.5s;
}

ul.top-social li i:hover {
  color: var(--color-ef7f1a);
}

ul.info-header {
  margin-left: 12%;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

ul.info-header li a:hover {
  color: var(--color-ef7f1a);
}

.top-social {
  padding-bottom: 0.5rem;
  display: flex;
  justify-content: flex-end;
}

.main-header.g_shrink .top-social {
  top: 0;
  display: none;
}

.info-header a {
  color: var(--color-ffffff);
  font-size: var(--font-size-14);
}

.info-header li i {
  margin-right: 15px;
}


@media screen and (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeInDown 0.5s;
    border: transparent;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }

  .dropdown .dropdown-menu {
    display: none;
  }

  .dropdown:hover .dropdown-toggle::after {
    border-top: 0;
    border-bottom: 0.3em solid;
  }
}

@media screen and (max-width: 991px) {
  .dropdown-toggle.show::after {
    border-top: 0;
    border-bottom: 0.3em solid;
  }

  .inner-banner::before {
    opacity: 0.8;
  }
}

.main-header.g_shrink .menu-btn {

  right: 30px;
  top: 14px;
  /* padding-left: 3rem; */
}

.main-header.g_shrink.g_header {
  background-color: var(--color-ffffff);
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.main-header.g_shrink.g_header .brand img {
  width: 100px;
  padding: 0;
}

.main-header.g_shrink.g_header .top-social {
  padding-bottom: 0;

}


.main-header.g_shrink.g_header .navbar {
  padding: 0;
}

.main-header.g_shrink.g_header .brand img {
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.main-header.g_shrink .navbar-expand-lg .navbar-nav {
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  border: none;
}

.main-header.g_shrink .line {
  opacity: 0;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.mobile {
  display: none;
}

/* .main-header.g_shrink .navbar-expand-lg .navbar-nav {
    position: absolute;
    top: 15px;
    right: 0;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
} */



.offcanvas-active {
  overflow: hidden;
}


.screen-darken {
  height: 100%;
  width: 0%;
  z-index: 30;
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.6);
  transition: opacity .2s linear, visibility 0.2s, width 2s ease-in;
}


.navbar-expand-lg {
  padding: 0;
}

.navbar-expand-lg .navbar-nav {
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  position: relative;
  width: fit-content;

  right: 0;
  align-items: flex-start;
  width: 100%;
}

.navbar-dark .navbar-nav .nav-link {
  color: var(--color-000000);
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-Medium);
  padding-bottom: 0.5rem;
  position: relative;
  transition: color 0.5s ease;
  padding: 0;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 2rem 0;
}

.navbar-dark .navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  /* Adjust the thickness of the border */
  background-color: var(--color-ef7f1a);
  transition: width 0.5s ease;
  /* Animate the width from left to right */
}

.navbar-dark .navbar-nav .nav-link:hover::before,
.navbar-dark .navbar-nav .nav-link:focus::before,
.navbar-dark .navbar-nav .nav-link.active::before {
  width: 100%;
  /* Expand the border from left to right */
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
  color: var(--color-000000);
  /* Keep the color the same on hover */
  border-bottom: none;
  /* Remove default border-bottom */
}

.screen-darken.active {
  z-index: 10;
  transition: opacity .3s ease, width 0s;
  opacity: 1;
  width: 100%;
  visibility: visible;
  z-index: 9;
}

.menu-btn {
  width: 50px;
  height: 50px;
  position: absolute;
  /* border: 1px solid #686868; */
  right: 30px;
  top: 39px;
}

.offcanvas-header .btn-close {
  position: absolute;
  right: 20px;
  top: 20px;
}

.menu-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Custom styles */
.mobile-offcanvas {
  visibility: hidden;
  transform: translateX(100%);
  transition: visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
  background-color: var(--color-282728);
  color: #fff;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 80%;
  max-width: 320px;
  z-index: 1200;
  padding: 1rem;
  overflow-y: auto;
}

.mobile-offcanvas.show {
  visibility: visible;
  transform: translateX(0);
}

.screen-darken {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1100;
  display: none;
}

.screen-darken.active {
  display: block;
}

body.offcanvas-active {
  overflow: hidden;
}

.navbar-nav .nav-link {
  padding: 8px 12px;
}

.navbar .social-links a {
  color: white;
  margin-left: 1rem;
}

@media (min-width: 992px) {
  .navbar .navbar-left {
    justify-content: flex-start;
  }

  .navbar .navbar-center {
    justify-content: center;
  }

  .navbar .navbar-right {
    justify-content: flex-end;
  }
}



.main-nav {
  background: transparent;
  padding: 30px 0px;
  width: 100%;
  float: left;
}

.main-nav .navbar {
  padding: 0;
  width: 100%;
  float: left;
}

.navbar-brand {
  margin: 0;
}

.main-nav .navbar-expand-lg .navbar-brand {
  position: absolute;
  top: -20px;
  margin-right: 0;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;

}

.main-nav .navbar-expand-lg .navbar-brand img {
  width: 160px;
  object-fit: contain;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.main-nav .navbar-nav .nav-item .nav-link {
  position: relative;
  display: block;
  font-size: var(--font-size-19);
  color: var(--color-ffffff);
  font-weight: var(--font-weight-SemiBold);
  line-height: var(--line-height-inherit);
  padding: 8px 10px;
  text-transform: uppercase;
}

.main-nav .navbar-nav .nav-item {
  padding-left: 40px;
}

.main-nav .navbar-nav .nav-item .nav-link:focus,
.main-nav .navbar-nav .nav-item.active .nav-link,
.main-nav .navbar-nav .nav-item .nav-link:hover {
  color: var(--color-0e1f45);
}

.main-nav .navbar-nav .nav-item .nav-link.show,
.main-nav .navbar-nav .nav-item .show>.nav-link {
  color: var(--color-f68e1f);
}

/* dropdown-menu */
.main-nav .navbar-nav .nav-item.dropdown .dropdown-item:focus,
.main-nav .navbar-nav .nav-item.dropdown .dropdown-item:hover {
  background-color: transparent;
}

.main-nav .navbar-nav .dropdown .dropdown-menu {
  min-width: 200px;
  width: 200px;
  margin: 0;
  top: 100%;
  padding: 0px;
  background-color: var(--color-ffffff);
  border: none;
  box-shadow: 0px 0px 10px -4px #0000009d;
  z-index: 9;
}

.main-nav .navbar-nav .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  float: left;
  font-size: var(--font-size-16);
  color: var(--color-000000);
  background-color: var(--color-ffffff);
  padding: 10px 10px;
  text-transform: uppercase !important;
}

.section-space {
  padding-top: 5rem;
  padding-bottom: 5rem;

}



.swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

/* dropdown-menu */

.about-section {
  position: relative;
  background-image: url(../images/about-home-bg.jpg);
}

.about-section .container {
  position: relative;
}

.about-page-left {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-banner {
  background-position: center;
  background-size: cover;
  height: 100%;
  background-image: url(../images/banner/about-banner.jpg);


}

.about-page-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.about-section .arrow-up {
  position: absolute;
  top: 0;
  z-index: -1;
}

.about-left {
  position: relative;
  padding-right: 3rem;
}

.about-left h4 {
  text-transform: capitalize;
}

.about-right {
  position: relative;
}

.about-right::after {
  position: absolute;
  content: '';
  width: 120%;
  height: 400px;
  background-color: var(--color-c18d02);
  left: -40px;
  z-index: -1;
}



.nav-pills .nav-link {
  color: #888888;
  font-weight: 600;
  position: relative;
  border-radius: 0;
  padding: 0.5rem 1rem;
  background: none;
  transition: color 0.3s ease;
}

.nav-pills .nav-link.active {
  color: #c28a0f;
  background-color: transparent;
}

.nav-pills .nav-link::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 4px;
  background-color: #c28a0f;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-pills .nav-link.active::after {
  width: 100%;
}

.residential-project-section .nav {
  justify-content: center;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.19);
  margin-bottom: 50px;
  padding-top: 0;
  z-index: 99;
}

/* main-banner */
.banner {
  position: relative;

}

.banner img {
  width: 100%;
  height: 800px;
  object-fit: cover;
}

.banner .swiper-slide::before {
  content: '';
  position: absolute;
  background: #000000;
  background: linear-gradient(90deg, rgb(0 0 0 / 91%) 0%, rgba(0, 0, 0, 0) 100%);
  width: 100%;
  top: 0;
  z-index: 1;
  height: 100%;
}

.banner-slider {
  position: relative;
  /* z-index: -9; */
}

/* .banner .swiper-slide::before {
  width: 50%;
  position: absolute;
  content: '';
  background-color: #000000cc;
  height: 100%;
  top: 0;
  z-index: 9;
} */


.banner {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-caption {
  color: var(--color-ffffff);
  text-align: left;
  width: 35%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  z-index: 99;
  align-items: flex-start;
  left: 0;
  position: absolute;
  left: 10%;
}

.carousel-caption h1 {
  font-weight: var(--font-weight-ExtraBold);
  font-size: var(--font-size-65);
}



/* .about-us */
.contact-section {
  overflow: visible;
  font-size: var(--font-size-16) !important;
  background-color: #f2f2f2;
}

.contact-section .social-links a {

  margin-right: 1rem;
}

.contact-section.section-space.footer-inside {
  padding: 1.5rem 0;
}

.contact-banner {
  background-position: center;
  background-size: cover;
  height: 100%;
  background-image: url(../images/banner/contact-banner.jpg);


}

.contact-section .container {
  background-color: var(--color-c18d02);
  overflow: hidden;
  position: relative;
  z-index: 99;
  transform: none;
}

.contact-right {
  padding: 3rem;
  text-align: center;
  background-color: var(--color-ffffff);
  border-radius: 2rem;
  text-align: left;
}

.contact-left {
  width: 100%;
}

.contact-left p {
  color: var(--color-000000);
  font-size: var(--font-size-16) !important;

}

.contact-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-section hr {
  color: #ffffff;
  margin: 5rem 0;

}

.contact-left .small-heading {
  font-size: var(--font-size-18);
}

.contact-box {
  margin-bottom: 3rem;
}

.contact-box a {
  color: var(--color-000000);

}

.contact-box a:hover {
  color: var(--color-ef7f1a);

}

label {
  color: var(--color-272625);
  font-size: var(--font-size-16);
  margin-bottom: 0.3rem;
}

.form-control {
  background-color: #e9ebec;
  padding: 0.7rem;
  border: transparent;
  margin-bottom: 1rem;
}


.form-control:focus {
  border: 1px solid var(--color-ef7f1a);
}

.inner-banner {
  display: flex;
  position: relative;
  /* object-fit: cover; */
  width: 100%;
  height: 400px;
  justify-content: center;
  align-items: center;
}

.inner-banner::after {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #000000ab;
  content: '';
  top: 0;
}

.inner-banner img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.inner-banner-text {
  position: absolute;
  z-index: 9;
  bottom: 0;
  padding: 3rem;
  text-align: center;
  width: 100%;
  height: 100%;
  left: 0;
}

.inner-banner .banner-img {
  object-position: center;
  object-fit: cover;
  height: 100%;
}

.inner-banner .banner-img img {
  object-position: center;
  object-fit: cover;
  height: 100%;

}

.inner-banner-content {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  text-align: center;
  color: var(--color-ffffff);
  /* left: 0; */
  margin: 0 auto;
  align-items: center;
  z-index: 9;
}


.inner-banner-content h1 {
  color: var(--color-ffffff);

}

.inner-banner-content p {
  color: var(--color-ffffff);
}

.breadcrumb-inner {
  position: relative;
  height: 800px;
  background-size: cover;
  padding-bottom: 50px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: flex-start;
}

/* 
.inner-banner::before {
  position: absolute;
  background: #0f2851;
  height: 800px;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0.5;
  content: "";
} */

.breadcrumb-inner .title {
  color: var(--color-ffffff);
  /* margin: 0; */
  font-size: 50px;
  font-weight: lighter;
}

.inner-banner .breadcrumb {
  padding: 0;
  margin: 0;
  background-color: #0000;
  border-radius: 0;
  justify-content: center;
}

.breadcrumb-item.active {
  color: var(--color-ffffff);
}

.inner-banner .breadcrumb .breadcrumb-item a,
.inner-banner .breadcrumb .breadcrumb-item {
  color: var(--color-ffffff);
  font-size: 15px;
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--color-ffffff);
}



/* testinomal */
.testimonial-section {
  background-color: var(--color-f3f3f3);
}

.testimonial-section .container {
  position: relative;
}

.testinomal {
  width: 100%;
  float: left;
  background: url(../images/testimonial-bg.jpg) center no-repeat;
  overflow: hidden;
}

.testimonial-items {
  margin-top: 3rem;
}

.testimonial-left img {
  width: 100%;
  height: 400px;
  border-radius: 1rem;
  object-fit: cover;
}

.testimonial-img img {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  margin-right: 2rem;
}

.testimonial-wrapper .sub-heading-two {
  font-size: var(--font-size-22);
  font-weight: var(--font-weight-regular);
  line-height: 30px;
}

.testimonial-person-details {
  display: flex;
  align-items: center;
}

.testimonial-person-details .sub-heading-two {
  margin-bottom: 0;

}

/* footer */


footer .social-links i {
  color: var(--color-000000) !important;
}

footer .social-links i:hover {
  color: var(--color-ef7f1a) !important;

}

.contact-top-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.footer-links {
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--color-000000);
  margin-right: 2rem;
}

.footer-inside .copy-right {
  position: relative;
}

.footer-links a:hover {
  color: var(--color-ef7f1a);
  margin-right: 2rem;
}


.footer-logo img {
  width: 250px;
}

.footer-arrow {
  position: absolute;
  right: 0;
  bottom: 80px;
  width: 20%;
}

.footer-box {
  width: 15%;
  margin-bottom: 50px;
}

.heading-footer i {
  font-size: 20px;
  border-radius: 50%;
  color: var(--color-c18d02);
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
}

.heading-footer h3 {
  margin-bottom: 0;
  color: var(--color-c18d02);
  font-size: var(--font-size-19);
  font-family: var(--font-family-plusjakarta);

}

.heading-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ffffff63;
  margin-bottom: 20px;
}

.footer-contact p span {
  display: block;
}

.footer-contact p {
  padding-right: 100px;
  font-size: var(--font-size-14);
}

.footer-contact a {
  color: var(--color-ffffff);
  display: block;
}

.footer-contact a:hover {
  color: var(--color-c18d02);
}

.footer-social ul {
  display: flex;
  margin-top: 80px;
}

.footer-social ul li {
  float: left;
  margin-right: 30px;
}

.footer-social ul li i {
  font-size: 24px;
  border-radius: 50%;
  color: var(--color-c18d02);
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
}

.footer-social ul li i:hover {
  color: var(--color-c18d02);
}

.footer-menu ul li {
  margin: 10px 0;
}

.footer-menu ul li a:hover i {
  color: var(--color-c18d02);
}

.footer-menu ul li a:hover {
  color: var(--color-c18d02);
}

.footer-menu ul li i {
  font-size: 14px;
  margin-right: 10px;
  color: var(--color-ffffff);
  transition: 0.5s;
}

.footer-menu ul li a {
  color: var(--color-014b7e);
  display: flex;
  font-weight: var(--font-weight-SemiBold);
  align-items: center;
  font-size: 16px;
}

.footer-contact ul li i {
  font-size: 25px;
  color: var(--color-c18d02);
  margin-right: 20px;
}

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.footer-contact ul li a,
.footer-contact ul li p {
  color: var(--color-ffffff);
  font-weight: var(--font-weight-Regular);
  font-size: var(--font-size-16);
  display: block;
  margin-bottom: 0;
}

.footer-contact ul li a:hover {
  color: var(--color-c18d02);
}

.social-links ul {
  display: flex;

}

.social-links i {
  font-size: var(--font-size-20);
  color: var(--color-ef7f1a);

}

.social-links i:hover {
  color: var(--color-000000);

}

/* copy-right  */

.copy-right {
  width: 85%;
  display: flex;
  justify-content: space-between;
}

.copy-right p, .copy-right p a {
  color: var(--color-282728);
  margin-bottom: 0;
  font-size: 1rem !important;
}

.copy-right p a {
  font-weight: var(--font-weight-Bold);

}

.copy-right a:hover {
  color: var(--color-ef7f1a);
}

.copy-right ul {
  display: flex;
  flex-direction: row;
  gap: 15px;
  font-size: 16px;
}

.copy-right ul li a {
  color: var(--color-ffffff);
}



.nav-tabs {
  border-bottom: none;
}

.sidenav,
.mobile-toggle {
  display: none;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  max-width: 1560px;
}

/* calculator */





button.calculator-btn {
  background-color: var(--color-c18d02);
  margin-bottom: 30px !important;
}

.cursor {
  cursor: pointer;
}

.calculator {
  position: relative;
  overflow: hidden;
}

.calculator-ans {
  background-color: var(--color-014b7e) !important;
  padding: 30px !important;
  color: var(--color-ffffff) !important;
  margin: 10px 0;
  height: 60px !important;
  font-weight: var(--font-weight-SemiBold);


}


.calculator input,
.calculator select {
  height: 60px;
  padding: 15px !important;
  color: var(--color-000000);
  border: 1px solid #efefef;
}

.calculator-img img {
  width: 80%;
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

}

.calculator-flex {
  align-items: center;
}

.calculator-img {
  box-shadow: rgba(99, 99, 99, 0.455) 0px;

  position: absolute;
  right: -22%;
  top: 30%;
}

/* calculator */







/* back to top */

#button {
  display: inline-block;
  background-color: var(--color-ef7f1a);
  width: 55px;
  height: 55px;
  text-align: center;
  border-radius: 0;
  position: fixed;
  bottom: 23px;
  right: 35px;
  border-radius: 50%;
  transition: background-color .3s, opacity .5s, visibility .5s;
  visibility: hidden;
  z-index: 1000;
  border: 2px solid var(--color-ef7f1a);
  text-decoration: none;
  opacity: 0;
}

#button i {
  font-style: normal;
  font-size: var(--font-size-20);
  line-height: 50px;
  color: var(--color-ffffff);
  text-decoration: none;
  border: 0;
}

#button:hover {
  cursor: pointer;
  border: 2px solid var(--color-c18d02);
  background-color: var(--color-ef7f1a);
}

#button:hover:after {
  color: var(--color-f26b28);
}

#button:active {
  border: 2px solid var(--color-f26b28);
  background-color: var(--color-ffffff);
}

#button.show {
  opacity: 1;
  visibility: visible;
  text-decoration: none;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;

}


.whatsapp-btn {
  position: fixed;
  bottom: 90px;
  right: 35px;
  z-index: 999;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #25D366;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  animation: breathe 2s ease-in-out infinite;
}

/*Estilos solo al icono whatsapp*/
.whatsapp-btn i {
  color: var(--color-ffffff);
  font-size: 24px;
  animation: beat 2s ease-in-out infinite;
  text-decoration: none;
  line-height: 0px;
}

/*Estilos con animation contorno respirando*/
@keyframes breathe {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

/*Estilos de animacion del icono latiendo*/
@keyframes beat {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}



.emblem {
  margin: 0 auto;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  /* font-weight: bold; */
  color: var(--color-f5f5f5);
  animation: spinZ 20s linear infinite;
  text-align: center;
  z-index: 2;
  background-color: var(--color-ef7f1a);
  text-transform: uppercase;
}

.emblem span {
  position: absolute;
  display: inline-block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 1rem;
  font-weight: var(--font-weight-SemiBold);
  font-size: var(--font-size-16);
  transition: all 0.5s cubic-bezier(0, 0, 0, 1);
  color: var(--color-ffffff);

}

@keyframes spinZ {
  0% {
    transform: rotateZ(360deg);
  }

  100% {
    transform: rotateZ(0deg);
  }
}


.project-left {
  padding: 5rem;
}

.project-left .sub-heading {
  text-transform: uppercase;
}

.project-left .icon {
  width: 3rem;
}

.project-box {
  overflow: hidden;
  position: relative;
  /* height: 400px; */
  border: 1px solid #5f5d5f59;
}


.project-box i {
  margin-right: 10px;
}

.project-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.project-right.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-content {
  background-color: #000000a3;
  padding: 2rem;
  position: absolute;
  bottom: 0;
  color: var(--color-ffffff);
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.project-content h3 {
  color: var(--color-ffffff);
}

.project-content p {
  color: var(--color-ffffff);
}

.commercial {
  position: relative;
}

.commercial:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/commercial-bg.jpg);
  top: 0;
}

.commercial .nav-pills .nav-link.active {
  color: var(--color-ffffff);
}

.commercial .nav-pills .nav-link.active::after {
  background: var(--color-ffffff);
}

.commercial .nav-pills .nav-link,
.commercial .project-content h3,
.commercial .project-content p {
  color: var(--color-ffffff);
}

.commercial .project-content {
  background: #000000cc;
}

/* lets-connect */
.lets-connect {
  position: relative;
  background: var(--color-000000);
}

/* 
.lets-connect:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 200px;
  background: var(--color-d2a800);
  bottom: 0;
  left: 0%;
  z-index: -9;
} */
.contact-page-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

.contact-page-left .social-links li {
  margin-right: 1rem;
}


.contact-flex {
  display: flex;
  align-items: flex-end;
  gap: 30px;
  margin-top: 50px;
}


.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.form-row {
  display: flex;
}

input,
textarea {
  background-color: transparent;
  border: 1px solid #27262533;
  padding: 20px;
  font-weight: var(--font-weight-SemiBold);
  color: var(--color-272625);
  width: 100%;
  font-size: var(--font-size-16);
  font-style: italic;

}

textarea {
  min-height: 120px;
  resize: none;
}

.submit-box {
  text-align: right;
}

.submit-box button {
  background: transparent;
  border: 1px solid var(--color-d2a800);
  color: var(--color-d2a800);
  padding: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: var(--font-size-20);
  width: 100%;
  margin-top: 1.3rem;
}

.submit-box button:hover {
  /* box-shadow: inset 10em 0 0 0 var(--color-d2a800), inset -10em 0 0 0 var(--color-d2a800); */
  border-color: var(--color-d2a800);
  color: black;
  background-color: var(--color-d2a800);

}



.dropdown-menu.show {
  -webkit-animation: fadeIn 0.3s alternate;
  /* Safari 4.0 - 8.0 */
  animation: fadeIn 0.3s alternate;
}

.nav-item.dropdown.dropdown-mega {
  position: static;
}

.nav-item.dropdown.dropdown-mega .dropdown-menu {
  width: 90%;
  top: auto;
  left: 5%;
}

.navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
}

.navbar-left .nav-item {
  margin-right: 3rem;
  border-bottom: 1px solid #ffff;
}

.navbar-right .nav-item {
  margin-left: 3rem;
}

.navbar-right .nav-item .social-links {
  margin-top: -0.8rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler .hamburger-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  z-index: 11;
  float: right;
}

.navbar-toggler .hamburger-toggle .hamburger {
  position: absolute;
  transform: translate(-50%, -50%) rotate(0deg);
  left: 50%;
  top: 50%;
  width: 50%;
  height: 50%;
  pointer-events: none;
}

.navbar-toggler .hamburger-toggle .hamburger span {
  width: 100%;
  height: 4px;
  position: absolute;
  background: #333;
  border-radius: 2px;
  z-index: 1;
  transition: transform 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), all 0.2s ease-in-out;
  left: 0px;
}

.navbar-toggler .hamburger-toggle .hamburger span:first-child {
  top: 10%;
  transform-origin: 50% 50%;
  transform: translate(0% -50%) !important;
}

.navbar-toggler .hamburger-toggle .hamburger span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%);
}

.navbar-toggler .hamburger-toggle .hamburger span:last-child {
  left: 0px;
  top: auto;
  bottom: 10%;
  transform-origin: 50% 50%;
}

.navbar-toggler .hamburger-toggle .hamburger.active span {
  position: absolute;
  margin: 0;
}

.navbar-toggler .hamburger-toggle .hamburger.active span:first-child {
  top: 45%;
  transform: rotate(45deg);
}

.navbar-toggler .hamburger-toggle .hamburger.active span:nth-child(2) {
  left: 50%;
  width: 0px;
}

.navbar-toggler .hamburger-toggle .hamburger.active span:last-child {
  top: 45%;
  transform: rotate(-45deg);
}

/* Basic dropdown hover behavior */
.navbar-nav .dropdown:hover>.dropdown-menu {
  display: block;
  overflow: hidden;
}

.dropdown-menu {
  margin-top: 0;
}

/* Multilevel (submenu) positioning */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu>.dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 0;
  display: none;
  position: absolute;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.dropdown-submenu:hover>.dropdown-menu {
  display: block;
  background-color: var(--color-ffffff);
  -webkit-transition: all .5s, 2s .5s linear;
  transition: all .5s, 2s .5s linear;



}

.dropdown-menu {
  transition: all 0.2s ease-in-out;
  background-color: var(--color-ffffff);
  padding: 0;


}

.dropdown-item {
  padding: 0.5rem;
  overflow: hidden;
}

.dropdown-item:hover {
  padding: 0.5rem;
  color: var(--color-000000);
  background-color: var(--color-ef7f1a);

}

.navbar-expand-lg .navbar-nav .dropdown-menu {
  position: absolute;
  width: 12rem;
}


.service-strip {
  padding: 2rem 0;
  background-color: var(--color-ef7f1a);
}

.about-img {
  border-radius: 1rem;

  object-fit: cover;
  /* min-height: 800px; */
  overflow: hidden;
}

.about-img.about-img-one {
  margin-right: 1rem;
  width: 60%;
  height: 400px;
}

.about-img.about-img-two {
  width: 40%;
  height: 300px;
}



.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

.feature-box {
  padding: 2rem;
  background-color: var(--color-ffffff);
  border-radius: 1rem;
}

.feature-box .sub-heading-two {
  display: flex;
  text-transform: uppercase;
  font-weight: var(--font-weight-Bold);
  color: var(--color-282728);
  justify-content: space-between;
}

.feature-box .sub-heading-two img {
  width: auto;
  height: auto;
  object-fit: contain;
}

.feature-box p {
  border-top: 1px solid var(--color-f4f4f4);
  padding-top: 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  /* Optional: adds an ellipsis (...) at the end */
  display: -webkit-box;
  /* Required for -webkit-line-clamp */
  -webkit-line-clamp: 3;
  /* Specifies the maximum number of lines */
  -webkit-box-orient: vertical;
  /* Required for -webkit-line-clamp */
  line-clamp: 3;
  /* Standard property for future compatibility */
}

.feature-box ul {
  border-top: 1px solid var(--color-f4f4f4);
  padding-top: 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  margin-bottom: 1.2rem;
}

.counter-section {
  background-color: var(--color-f3f3f3);
  position: relative;
  top: 46px;
  overflow: visible;
  margin-bottom: 11rem;
}

.counter-right {
  position: relative;
}

.counter-right img {
  position: absolute;
  right: 21px;
  top: -228px;
  z-index: 6;
}

/* counter */
.counter {
  width: 100%;
  height: auto;
  float: left;
  background: var(--color-f2f7fa);
}


.count-digit {
  font-size: var(--font-size-65);
  font-weight: var(--font-weight-Bold);

}

.digit-box {
  position: absolute;
  z-index: 9;
  display: flex;
  align-items: center;
  color: var(--color-ef7f1a);
}

.quality-circle {
  position: absolute;
  width: 250px;
  height: 250px;
  top: -91%;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quality-circle .round {
  position: absolute;
  display: flex;
  z-index: 5;
  background-color: #ffffff;
  border-radius: 5rem;
  content: '';
  width: 150px;
  height: 150px;
  content: '';
  /* left: -21%; */
  /* top: 0; */
  /* left: -1px; */
}

.count-name {
  font-size: var(--font-size-65);
  font-weight: var(--font-weight-Bold);

}

.count-area-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--color-5f5d5f);
}

.count-area-content .icon img {
  width: auto;
}

.count-area-content p {
  color: var(--color-8c8c8c);
  text-transform: uppercase;
  font-weight: var(--font-weight-Bold);
}

.service-section {
  background-color: var(--color-ffffff);
  position: relative;
}

.service-section .container {
  position: relative;

}

.service-section .swiper-container {
  width: 100%;
  height: auto;
}

.cloud-section {
  background-color: var(--color-ffffff);
  position: relative;
}

.cloud-section .small-heading {
  margin-left: -4px;
  position: absolute;
}

.cloud-section .container {
  position: relative;
}

.cloud-right {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.service-section .small-heading {
  margin-left: 5px;
  position: absolute;
}

.service-section .swiper-slide {
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* override swipers transition */
.service-section .swiper-container-free-mode>.swiper-wrapper {
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
  margin: 0 auto;
}

.service-section .service-content {
  bottom: 0;
  height: 150px;
  position: absolute;
  bottom: 0;
  padding: 2rem;
  width: 100%;
  z-index: 9;
  word-break: break-word;
}

.service-section .service-content .sub-heading {
  font-weight: var(--font-weight-Bold) !important;
  line-height: normal;
  color: var(--color-ffffff);
  text-transform: uppercase;
}

.service-section .service-box {
  position: relative;
  transition: ease all 0.5s;

}

.service-section .service-box:hover {
  transform: scale(1.01);
}

.service-section .service-box:hover i {

  rotate: 360deg;
}

.service-section .service-box:hover .link-arrow {
  color: var(--color-ffffff);
}

.service-section .service-box:hover .arrow {
  color: var(--color-ffffff);
}

.service-section .service-box .link-arrow:hover {
  color: var(--color-ffffff);
}

.service-section .service-box .link-arrow:hover .arrow {
  color: var(--color-ffffff);
}

.service-section .service-box::after {
  position: absolute;
  content: '';
  background-color: #0000004d;
  top: 0;
  left: 0;
  width: 100%;
  height: 1900%;
}

.service-section .service-img {
  height: 500px;
}

.service-section .service-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}


.process-section {
  background-color: var(--color-f3f3f3);
}

.process-section .container {
  position: relative;
}

.inside-banner-space {
  background-color: var(--color-d4d7d7);
  justify-content: center;
  align-items: center;
  text-align: center;
  display: flex;
  overflow: hidden;
  position: relative;
  height: 90vh;
}

.inside-banner-space img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.inside-banner-space h3 {
  font-size: var(--font-size-150);
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: auto;
  color: aliceblue;
  justify-items: center;
  width: 100%;
}

.inside-banner-space .container {
  z-index: 9;
}



.about-first-section {
  background-color: var(--color-f5f5f5);
}


.about-right-page {
  padding: 3rem;
}

.about-right-page p {
  color: var(--color-272625);
}

.about-left-page {
  object-fit: cover;
  width: 50%;
  height: 100%;
  position: absolute;
}

.about-left-page img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.about-right-page .section-heading {
  display: flex;
  align-items: center;
}


.contact-page-form {
  padding: 3rem;
  border-radius: 1rem;
  background-color: var(--color-ffffff);
  text-align: left;
}

.map-section {
  padding-right: 4rem;
}

.map-section iframe {
  border-radius: 1rem;
}

.contact-form-section {
  background-color: var(--color-ffffff);
}

.contact-form-left {
  width: 100%;
  height: 100%;
}

.contact-form-left img {
  width: 100%;
  border-radius: 1rem;
  height: 100%;
  object-fit: cover;
}

.contact-page-left .contact-box a:hover {
  color: var(--color-ef7f1a);

}
.service-page .service-mb{
  margin-bottom: 1.5rem;
}
.service-page .service-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding-left: 1rem;
}

.service-page .service-content strong {
  font-size: 25px;
  font-weight: 200;
  margin-bottom: 1rem;
}


.service-page.bg-dark .service-content {
  color: var(--color-ffffff);
}

.service-page1 {
  position: relative;
}

.service-page1::after {
  position: absolute;
  width: 30%;
  height: 100%;
  content: '';
  top: 0;
  background-color: var(--color-f5f5f5);
  z-index: -1;
}

.service-page2 {
  position: relative;
}

.service-page2::after {
  position: absolute;
  width: 30%;
  height: 100%;
  content: '';
  top: 0;
  right: 0;
  background-color: var(--color-ef7f1a);
  z-index: 0;
}

.service-left {
  position: relative;
  z-index: 9;
}

.sectors-section {
  background-color: var(--color-ef7f1a);
}




.process-right {
  margin-left: 2rem;
  color: var(--color-ffffff);

}

.process-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  overflow: hidden;
}

.process-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.process-right img {
  width: 2rem;
}

.process-right .accordion {
  color: var(--color-ef7f1a);
}

.process-right .accordion-item {
  margin-bottom: 1rem;
  background-color: transparent;
  border: transparent;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1rem;
  margin-top: 1rem;
}

.process-right .accordion-item img {
  width: 3rem;
  margin-right: 3rem;
}

.process-right .accordion-button {
  background-color: transparent !important;
  padding: 0;
  border-bottom: none;
  color: var(--color-ffffff) !important;
  box-shadow: transparent !important;

}

.accordion-button:not(.collapsed) {
  color: var(--color-ffffff) !important;

}

.process-right .accordion-header .sub-heading-two:hover {
  color: var(--color-ef7f1a) !important;
}

.process-right .accordion-header .accordion-button {
  box-shadow: none !important;
}

.process-right .accordion-body {
  color: var(--color-ffffff) !important;

}

.process-right .accordion-body p {
  color: var(--color-ffffff) !important;
  padding-left: 5rem;
  margin-bottom: 0;
}




.sub-heading.content img {
  margin-right: 1rem;

}


.map-container {
  padding: 3.2rem 0.8rem;
  position: relative;
  display: inline-block;
}

.map-container img {
  width: 100%;
  filter: grayscale(1);
}

.map-container .point {
  cursor: pointer;
  position: absolute;
  width: 1.6rem;
  height: 1.6rem;
  background-color: var(--color-ef7f1a);
  border-radius: 50%;
  transition: all 0.3s ease;
  will-change: transform, box-shadow;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 rgba(121, 48, 0, 0.4);
  animation: pulse 3s infinite;
}

.map-container .point:hover {
  animation: none;
  transform: translate(-50%, -50%) scale3D(1.35, 1.35, 1);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.map-container .india {
  top: 45%;
  left: 69%;
}

.map-container .maldives {
  top: 55%;
  left: 70%;
}

.map-container .singapore {
  top: 55%;
  left: 78%;
}

.map-container .saudiarabia {
  top: 47%;
  left: 60%;
}

.map-container .uae {
  top: 43%;
  left: 57%;
}

.map-container .qatar {
  top: 42%;
  left: 60%;
}

.map-container .uk {
  top: 27%;
  left: 44%;
}

.map-container .portugal {
  top: 34%;
  left: 42%;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 72, 0, 0.5);
  }

  70% {
    box-shadow: 0 0 0 25px rgba(0, 172, 193, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 172, 193, 0);
  }
}

.dogras-world-map span {
  padding: 0.8rem;
  margin: 0.8rem;
  border-radius: 0.5rem;
  background-color: var(--color-ef7f1a);
  color: var(--color-ffffff);
  line-height: 4rem;
}

.map-container {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.point {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: red;
  border-radius: 50%;
  cursor: pointer;
}

/* Tooltip style */
.point::after {
  content: attr(title);
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 5px 8px;
  border-radius: 4px;
  white-space: nowrap;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
  z-index: 10;
}

.point:hover::after {
  opacity: 1;
}


.vision-mission-section .row {
  display: flex;
}
.vision-mission-section .service-mb{
  margin-bottom: 1.5rem;
}
.vision-mission-section .col-12 .service-page-box {
  margin-bottom: 1.5rem;
}


.marquee {
  position: relative;
  width: 100vw;
  max-width: 100%;
  /* height: 70px; */
  overflow-x: hidden;
  display: flex;
  align-items: center;
  background-color: var(--color-ef7f1a);
  color: var(--color-ffffff);
  font-size: var(--font-size-30);
  padding: 3rem 0;
  font-weight: var(--font-weight-Regular);
  overflow: hidden;
}

.track {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 32s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-10%);
  }
}

.marquee__seperator {
  margin-right: 2rem;
  position: relative;
  font-style: italic;
}

.marquee__seperator::after {
  margin-right: 2rem;
  position: absolute;
  content: '';
  top: 18px;
  left: -21px;
  border-radius: 3rem;
  width: 10px;
  height: 10px;
  background-color: #ffffff96;
}

.client-heading {
  font-weight: var(--font-weight-Bold);
  position: relative;
  z-index: 1;
}



.client-heading .head {
  text-transform: uppercase;
}

.client-heading .head::after {
  width: 40%;
  height: 2px;
  background-color: #5f5d5f66;
  position: absolute;
  content: '';
  left: 0;
  top: 19%;
  z-index: 0;
}

.client-heading .head::before {
  width: 40%;
  height: 2px;
  background-color: #5f5d5f66;
  position: absolute;
  content: '';
  right: 0;
  top: 19%;
  z-index: 0;
}

.review-box {
  display: flex;
}

.review-stars {
  /* width: 85px; */
  background-color: var(--color-ef7f1a);
  padding: 0rem 1rem;
  border-radius: 7rem;
  height: 100%;
}

.star-box {
  margin-right: 4rem;
}

.star-box svg {
  width: 65px;
}

.star-box .section-heading {
  font-weight: var(--font-weight-ExtraBold);
  line-height: 30px;
}

.testimonial-right {
  margin-left: 2rem;

}

.testimonial-wrapper {
  width: 80%;
  margin: revert;
  display: flex;
  flex-direction: column-reverse;
}

.gallery-box:hover .sub-heading-two {
  color: var(--color-ef7f1a);
}

.gallery-slider .swiper-slide {
  opacity: 0.3;
  transition: opacity 0.3s ease-in-out;
}

.gallery-slider .swiper-slide.active-slide,
.gallery-slider .swiper-slide.adjacent-slide {
  opacity: 1;
}

.gallery-slider .slide-content {
  position: relative;
  overflow: hidden;
}

.gallery-slider .slide-content img {
  display: block;
  width: 100%;
  height: auto;
}

.gallery-img {
  position: relative;
  overflow: hidden;
}

.gallery-img img {
  display: block;
  width: 100%;
  height: auto;
}

.view-btn {
  position: absolute;
  transform: translate(-50%, -50%);
  background-color: var(--color-ef7f1a);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.2s ease;
  white-space: nowrap;
  border-radius: 100%;
  width: 100px;
  height: 100px;
  font-size: 12px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}


.gallery-box .gallery-img img {
  height: 350px;
  width: 100%;
  object-fit: cover;
  position: relative;
  overflow: hidden;
  transform: scale(1);
  transition: ease all 0.5s;
}

.gallery-box .gallery-img {
  overflow: hidden;
  border-radius: 1rem;

}

.gallery-box .gallery-img img:hover {
  transform: scale(1.1);
  filter: grayscale(1);
}

.gallery-box .gallery-img img:hover::after {
  border-radius: 100%;
  padding: 1rem;
  position: absolute;
  color: var(--color-ffffff);
  background-color: var(--color-ef7f1a);
  content: 'view more';
  width: 50px;
  height: 50px;
}

.gallery-img .tag {
  font-size: var(--font-size-12);
  background-color: #0000004d;
  padding: 0.2rem 1.3rem;
  border-radius: 50px;
  margin: 1rem;
  position: absolute;
  border: 1px solid #fff;
  color: var(--color-ffffff);
  line-height: 18px;
  z-index: 9;
}

.gallery-content {
  margin-top: 1rem;
}

.gallery-location {
  font-size: var(--font-size-14);
  color: var(--color-5f5d5f);
}

.banner-content h3 {
  font-size: var(--font-size-60);
  font-weight: var(--font-weight-Light);
}

.banner-content .title {
  background: var(--color-ba8b1d);
  background: var(--linear-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}

.banner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin-top: 6rem;
}



.services-section {
  position: relative;
}



.services-section .content-column {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 5rem;
}

.inner-column h3 {
  font-size: var(--font-size-50);
}

.inner-column li {
  font-size: var(--font-size-22);
  display: flex;
}

.inner-column li img {
  width: 30px;
  height: 30px;
  /* border: 1px solid #ccc; */
  border-radius: 100%;
  margin-right: 10px;
}

.services-section .image-column {
  position: relative;
}

.services-section .image-column .text-layer {
  position: absolute;
  right: -110px;
  top: 50%;
  font-size: 325px;
  line-height: 1em;
  margin-top: -175px;
  font-weight: 500;
}

.services-section .image-column .inner-column {
  position: relative;
  padding-left: 50px;
  padding-bottom: 0px;
}

.services-section .image-column .inner-column::before {
  content: '';
  position: absolute;
  width: calc(50% + 160px);
  height: calc(100% + 80px);
  top: -40px;
  left: 0px;
  background: var(--color-yellow);
  z-index: 0;
}

.services-section .image-column .inner-column-right {
  position: relative;
  padding-right: 50px !important;
  padding-bottom: 0px;
}

.services-section .image-column .inner-column-right::before {
  content: '';
  position: absolute;
  width: calc(50% + 160px);
  height: calc(100% + 80px);
  top: -40px;
  right: 0px;
  background: var(--color-yellow);
  z-index: 0;
}

.services-section .image-column .image-1 {
  position: relative;
}

.services-section .image-column .image-2 {
  position: absolute;
  left: 0;
  bottom: 0;
}

.services-section .image-column .image-2 img,
.services-section .image-column .image-1 img {
  box-shadow: 0 30px 50px rgba(8, 13, 62, .15);
  border-radius: 46px;
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* who-we-are-section */

.who-we-are-section {
  position: relative;
}

.who-we-are-box {
  width: 100%;
  /* background: var(--color-ffffff); */
  border-radius: 10px;
  /* box-shadow: 0px 15px 30px #121130; */
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  flex-flow: column;
  padding-bottom: 0;
  padding: 1rem;
  text-align: center;
}

.who-we-are-img i {
  font-size: var(--font-size-50);
  position: relative;
  border-radius: 50%;
  color: var(--color-yellow);
  margin-bottom: 2rem;
}

.who-we-are-box-mt {
  margin-top: 110px;
}

.who-we-are-box p {
  color: var(--color-f1da70);
  text-align: center;
}

.cta-box {
  position: absolute;
  width: 54%;
  padding: 5rem;
  z-index: 10;
}

.why-box {
  background-color: var(--color-161616);
  padding: 5rem !important;
  margin-top: -14rem;
  z-index: 9;
  position: relative;
  bottom: 0;
  width: 90%;
}

.why-bg {
  width: 100%;
  height: 70vh;
}

.why-bg img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
}

.cta-box .common-btn {
  border-radius: 3rem;
  background-color: var(--color-yellow);
  color: var(--color-black);
  padding: 1rem 1.5rem !important;
  text-align: center;
  display: inline-block;
  margin-top: 2rem;
  line-height: 0;
}

.inner-section-inside {
  position: relative;

}

.inner-section-inside img {
  overflow: hidden;
  height: 400px;
  width: 100%;
}

.inner-section-inside .row img::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgb(0 0 0 / 55%) 0%, rgba(237, 221, 83, 0) 100%);
  top: 0;
  z-index: 9;
}


.service-page-box {
  background-color: #ffffff;
  border-radius: 2rem;
  margin-bottom: 3rem;
  color: var(--color-000000);
  padding: 1rem;
  height: 100%;
  margin-bottom: 0rem;
  display: flex;
}

.service-content p {
  color: var(--color-000000);


}


.sub-heading.content img {
  margin-right: 1rem;

}

.service-page-box .row {

  display: flex;
  align-items: center;
  height: 100%;
}



.service-page-box p {
  color: var(--color-000000);
}



.service-page-box .service-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.service-page-box .service-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: 1rem;
}

.service-page-box .height {
  margin-bottom: 1rem;
}

/* about page */


.about-first-section {
  background-color: var(--color-f5f5f5);
}



.what-about-section {
  background-image: url(../images/achieve-bg.jpg);
  background-size: cover;
  background-blend-mode: color;
  background-color: #000000ba;
}

.what-about-section .row {
  display: flex;
  align-items: center;
}

.about-left-page {
  object-fit: cover;
  width: 50%;
  height: 100%;
  position: absolute;
}

.about-left-page img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.about-right-page .section-heading {
  display: flex;
  align-items: center;
}


.value-section {
  background-color: var(--color-ef7d18);
  color: var(--color-ffffff);

}

.value-section .small-heading {
  color: var(--color-ffffff);

}

.value-img {
  border-radius: 2rem;
  overflow: hidden;
}

.value-content {
  padding: 1.5rem;
  color: var(--color-ffffff) !important;

}

.value-box {
  padding: 1rem;
}

.value-content p {
  color: var(--color-ffffff);
  margin-bottom: 0;
}

.why-section {
  background-image: url(../images/why-bg.jpg);
  background-size: cover;
}

.why-box {
  padding: 2rem;
  border-radius: 1rem;
  border: 0.1rem solid var(--color-ef7d18);
  margin-top: 2rem;
  background-color: var(--color-ffffff);
  color: var(--color-272625);
  line-height: normal;
  min-height: 8rem;
}

.why-box.orange {
  background-color: var(--color-ef7d18) !important;
  color: var(--color-ffffff);

}

.why-left-img {
  border-radius: 1rem;
  width: 100%;
  object-fit: cover;
  height: 100%;
  overflow: hidden;

}

.why-left-img img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.why-right-content {
  color: var(--color-ffffff);
}

.why-right-content p {
  color: var(--color-ffffff);
  margin-bottom: 0;
}

.ag-photo-gallery_list {
  column-count: 4;
  column-gap: 16px;
}

.ag-photo-gallery_item {
  margin-bottom: 16px;
  break-inside: avoid;
  position: relative;
}

.ag-photo-gallery_img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5rem;
}

.plus-sign {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: .3s;
  font-size: 3rem;
  pointer-events: none;
  border-radius: 0.5rem;
}

.plus-sign .arrow-icon {
  color: var(--color-ffffff) !important;
}

.ag-photo-gallery_item:hover .plus-sign {
  opacity: 1;
}

.ag-photo-gallery_item figure {
  margin-bottom: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .ag-photo-gallery_list {
    column-count: 3;
  }
}

@media (max-width: 768px) {
  .ag-photo-gallery_list {
    column-count: 2;
  }
}

@media (max-width: 480px) {
  .ag-photo-gallery_list {
    column-count: 1;
  }
}


.residential-banner {
  /* background-position: center; */
  background-size: cover;
  background-image: url(../images/banner/residential-banner.jpg);
  width: 100%;
}

.service-banner {
  /* background-position: center; */
  background-size: cover;
  background-image: url(../images/achieve-bg.jpg);
  width: 100%;
}

.commercial-banner {
  background-position: center;
  background-size: cover;
  background-image: url(../images/banner/commercial-banner.jpg);


}

.building-banner {
  background-position: center;
  background-size: cover;
  background-image: url(../images/banner/industrial-banner.jpg);


}



.achieve-img {
  width: 20%;
}

.achieve-list .text {
  width: 70%;
  font-size: var(--font-size-25);
}

.achieve-list img {
  padding: 1rem;
  background-color: var(--color-ef7f1a);
  width: 5rem;
  border-radius: 100%;
  margin-right: 1rem;
}

.achieve-list .content {
  display: flex;
}

.service-page {
  background-color: var(--color-f3f3f3);
}



.service-page .col-12:nth-child(9) {
  margin-bottom: 0;
}

.service-page .col-12:nth-child(10) {
  margin-bottom: 0;
}

.service-left {
  width: 50%;
}

.service-right {
  width: 50%;
}

.team-page {
  position: relative;
}

.team-page .card {
  border: transparent;
  margin-bottom: 2rem;
  overflow: hidden;
}

.team-page .card:hover img {
  transform: scale(1.05)
}

.team-page .left-box {
  padding: 20px;
  background-color: #cc1a29;
  width: 38%;
  position: absolute;
  left: -24%;
  top: 6%;
  padding: 2rem;
  border-radius: 1rem;
  z-index: 1;
}

.team-page .left-box h4 {
  margin-bottom: 0;
}

.team-page .left-box h4 {
  color: var(--color-ffffff);
}

.team-page .left-box h3 {
  color: var(--color-ffffff);
}

.team-page .right-box {
  padding: 3rem;
  background-color: var(--color-ffffff);
  width: 60%;
  position: absolute;
  right: -21%;
  bottom: -19%;
  text-align: justify;
  z-index: 1;
}

.director-page {
  position: relative;
}

.director-page .card-img-wrapper {

  margin: 0;
}

.director-box {
  position: relative;
  /* padding: 4rem; */
  padding-bottom: 0;
}

.director-box p {
  font-size: var(--font-size-20) !important;
}

.director-box img {
  z-index: 0;
  position: relative;
}

.story-box {
  padding: 2rem;
  background-color: #ffffff;
  font-size: 36px !important;
  color: var(--color-ef7f1a);
  font-weight: 300;
  font-style: italic;
  font-family: sans-serif;
  width: 100%;
}

.director-banner {
  background-position: center;
  background-size: cover;
  background-image: url(../images/banner/director.jpg);


}

.pen-img {
  width: 267px;
  position: absolute;
  height: auto;
  z-index: 9;
  transform: rotate(344deg);
  right: 0;
  bottom: 14%;
}

.director-img {
  position: relative;
  text-align: center;
  /* margin: 0px auto; */
  height: 100%;
  left: 0;
  z-index: 9;
}

.director-img img {
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: block;
  object-fit: cover;
}

.director-content {
  padding: 1rem;
  margin: 1rem;
  background-color: var(--color-ef7f1a);
  position: relative;
  top: -11%;
  color: var(--color-ffffff)
}

/* TEAM BANNER */
.team-banner {
  background-position: center;
  background-size: cover;
  background-image: url(../images/banner/team-banner.jpg);
}

.team-cards {
  gap: 2rem;
}

/* Card */
.team-cards .card {
  border: none;
  border-radius: 1rem;
  overflow: hidden;
  background-color: transparent;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.team-cards .card:hover {
  transform: scale(1.03);
}

/* Image wrapper */
.card-img-wrapper {
  position: relative;
  width: 100%;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}



/* Overlay */
.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(255, 103, 0, 0.9), rgba(232, 105, 20, 0.5));
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  border-radius: 0 0 1rem 1rem;
}

.card:hover .card-overlay {
  opacity: 1;
  transform: translateY(-10px);
}

/* Text */
.card-overlay h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.3rem;
  font-weight: 600;
}

.card-overlay p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}

.card-content {
  margin-top: 1rem;
}

/* Wrapper for card content (clickable) */
.card-content-wrapper {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  cursor: pointer;
  text-align: center;
}

/* Content box inside wrapper */
.card-content {
  background: rgba(0, 0, 0, 0.6);
  /* semi-transparent overlay */
  color: #fff;
  padding: 1rem 1.2rem;
  transform: translateY(100%);
  transition: transform 0.4s ease, background 0.4s ease;
}

/* Slide up the content on hover of parent card */
.card .card-content {
  transform: translateY(0);
  background: linear-gradient(to top, rgba(255, 103, 0, 0.9), rgba(232, 105, 20, 0.7));
}

/* Text styling */
.card-content h4 {
  margin: 0 0 0.3rem 0;
  font-size: 1.5rem;
  font-weight: 4000;
}

.card-content p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}

#tagcloud {
  width: 600px;
  height: 600px;
  position: relative;
  margin: auto;
}

#tagcloud canvas {
  width: 100% !important;
  height: 100% !important;
}

#tagcloud span {
  color: #FF5733;
  /* Replace with your desired color */
  font-family: var(--font-family-plusjakarta);
  font-weight: var(--font-weight-Medium);
}

.acc-box img {
  width: 100px;
}

.view-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 153, 0, 0.75);
  color: #fff;
  padding: 10px 22px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  border-radius: 100%;
}

/* Show button on hover */
.ag-photo-gallery_img:hover .view-btn {
  opacity: 1;
  pointer-events: auto;
}

/* 🔥 FIX DARK / BLUR FANCYBOX IMAGE */
.fancybox__content img {
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  max-width: 100%;
  height: auto;
}

.gallery-img {
  position: relative;
}



/* Show button on hover */
.gallery-img:hover .view-btn {
  opacity: 1;
  visibility: visible;
}

.gallary-home-section img {
  display: block;
  width: 100%;
  height: 350px;
  border-radius: 1rem;
  object-fit: cover;
}