@import "./variables.css";

/* Loader */
.page-loader {
  width: 100%;
  height: 100vh;
  position: absolute;
  background: var(--background-clr);
  z-index: 1000;
}

.page-loader .txt {
  color: var(--primary);
  text-align: center;
  top: 40%;
  position: relative;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}

.spinner {
  position: relative;
  top: 35%;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background-color: var(--heading-clr);
  border-radius: 100%;
  -webkit-animation: sk-scaleout 1s infinite ease-in-out;
  animation: sk-scaleout 1s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
  }

  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}

@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: linear-gradient(to bottom, #0000008c, transparent);
  transition: 0.5s ease all;
}

.header.sticky {
  background: #ffffffa1;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e8781742;
}

[data-theme="dark"] .header.sticky {
  background: #000000ad;
}

.header .logo {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 200px;
  /* background: var(--background-clr); */
  padding: 20px;
  /* backdrop-filter: blur(5px); */
  transition: 0.5s ease all;
}

.header.sticky .logo {
  width: 150px;
  background: var(--background-clr);
}

.header ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  padding: 15px 30px;
}

.header ul li #toggle-menu {
  padding: 13px 20px;
  border: 0;
  outline: 0;
  background: var(--background-clr);
  color: var(--text-clr);
  border-radius: 2px;
}

.header ul li #toggle-menu i {
  margin-left: 10px;
  color: var(--primary);
}

.header ul li #toggle-scheme {
  width: 50px;
  height: 50px;
  background: var(--heading-clr);
  color: var(--background-clr);
  border: 0;
  outline: 0;
  cursor: pointer;
  border-radius: 2px;
}

/* Menu */
.menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/menu.jpg");
  background-position: center;
  background-size: cover;
  pointer-events: none;
  transition: 0.5s ease all;
}

.menu.show {
  top: 0;
  z-index: 9;
  pointer-events: all;
}

.menu button {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 13px 20px;
  border: 0;
  outline: 0;
  background: #ffffff;
  color: #0c0d0d;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
}

.menu button i {
  margin-left: 10px;
  color: var(--primary);
}

.menu ul {
  position: absolute;
  top: 50%;
  left: 7%;
  min-height: 80%;
  transform: translateY(-50%);
  border-left: 2px dashed var(--primary);
  padding: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  flex-direction: column;
  gap: 20px;
}

.menu ul li a {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  transition: 0.5s ease all;
}

.menu ul li a:hover {
  color: var(--primary);
  margin-left: 15px;
}

/* Footer */
.footer {
  border-top: 1px solid #e8781742;
}

.footer .logo {
  width: 150px;
  margin-bottom: 40px;
}

.footer .social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}

.footer .social a {
  font-size: 20px;
  color: var(--heading-clr);
  transition: 0.5s ease all;
}

.footer .social a:hover {
  color: var(--primary);
}

.footer h6 {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary);
  margin: 15px 0 20px;
}

.footer ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.footer ul li i {
  color: var(--primary);
}

.footer ul li a {
  color: var(--text-clr);
  transition: 0.5s ease all;
}

.footer ul li a:hover {
  color: var(--primary);
  margin-left: 10px;
}

.footer .item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  padding: 10px;
  background: var(--foreground-clr);
}

.footer .item .icon {
  width: 50px;
  height: 50px;
  border: 1px solid var(--primary);
  background: transparent;
  color: var(--heading-clr);
  text-align: center;
  line-height: 50px;
  border-radius: 2px;
}

.footer .item .text {
  width: calc(100% - 60px);
}

.footer .item .text p {
  font-size: 14px;
  font-weight: 500;
}

.footer .item .text p b {
  display: block;
  color: var(--primary);
}

.footer hr {
  display: block;
  height: 1px;
  background: var(--heading-clr);
  opacity: 0.2;
}

.footer p a {
  color: var(--primary);
  font-weight: 600;
}

/* Banner */
.banner {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #00000066, #e6e6e65e);
  z-index: 1;
}

[data-theme="dark"] .banner::after {
  background: linear-gradient(45deg, #000000cc, #e8781700);
}

.banner img {
  height: 100%;
  position: relative;
  z-index: 1;
}

.banner h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 35px;
  font-weight: 800;
  color: var(--heading-clr);
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #ffffffab;
  padding: 15px 30px;
  border-radius: 2px;
}

[data-theme="dark"] .banner h1 {
  background: #000000c4;
}

/* About Page */
.about .image {
  position: sticky;
  top: 100px;
}

/* Team Page */
.team .card {
  border: 1px solid #e8781742;
  border-radius: 0;
  background: var(--background-clr);
  height: 100%;
}

.team .card .image {
  width: 100%;
  overflow: hidden;
  display: none;
}

.team .card .image img {
  transition: 0.5s ease all;
  filter: grayscale(1);
}

.team .card:hover .image img {
  transform: scale(1.1);
  filter: grayscale(0);
}

.team .card .text {
  padding: 20px;
}

.team .card .text h5 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
}

.team .card .text h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-clr);
  margin-top: 10px;
  line-height: 150%;
}

.team .card .text hr {
  width: 100px;
  height: 2px;
  opacity: 1;
  display: block;
  background: #e8781742;
  margin: 20px 0;
}

.team .card .text a {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin-top: 10px;
}

.team-detail .image {
  position: sticky;
  top: 100px;
}

.team-detail hr {
  display: block;
  opacity: 0.1;
  width: 100%;
  height: 2px;
  background: var(--heading-clr);
}

/* Contact Page */
.contact .form {
  position: sticky;
  top: 100px;
}

.contact form .form-control {
  background: var(--foreground-clr);
  border: 1px solid var(--foreground-clr);
  color: var(--heading-clr);
  outline: 0;
  box-shadow: none;
  border-radius: 2px;
  transition: 0.5s ease all;
}

.contact form .form-control:focus {
  background: var(--background-clr);
  border: 1px solid #e8781742;
}

.contact form .form-control::-webkit-outer-spin-button,
.contact form .form-control::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

.contact form .form-control[type="number"] {
  --moz-appearance: textfield;
}

.contact form label {
  color: var(--heading-clr);
}

.contact form label span {
  font-weight: 600;
  color: var(--primary);
}

.contact .map {
  width: 100%;
  height: 500px;
}

.contact .map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  margin: 0;
  padding: 0;
}

.contact .item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  padding: 15px;
  border-radius: 2px;
  border: 1px solid #e8781742;
  background: var(--background-clr);
}

.contact .item:last-child {
  margin-bottom: 0;
}

.contact .item .icon {
  width: 50px;
  height: 50px;
  background: var(--heading-clr);
  color: var(--background-clr);
  text-align: center;
  line-height: 50px;
  border-radius: 2px;
}

.contact .item .text {
  width: calc(100% - 60px);
}

.contact .item .text p {
  font-size: 14px;
  font-weight: 500;
}

.contact .item .text p b {
  display: block;
  color: var(--primary);
}

/* Projects Page */
.project .card {
  border: 0;
  border-radius: 0;
  background: var(--background-clr);
  height: 100%;
  position: relative;
}

.project .card .image {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.project .card .image img {
  transition: 0.5s ease all;
}

.project .card:hover .image img {
  transform: scale(1.1);
}

.project .card .text {
  padding: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(
    to top,
    var(--background-clr),
    #ffffff8a,
    transparent
  );
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
}

[data-theme="dark"] .project .card .text {
  background: linear-gradient(
    to top,
    var(--background-clr),
    #0000008a,
    transparent
  );
}

.project .card .text h5 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
}

.project .card .text h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-clr);
  margin-top: 10px;
}

.project .card .text a {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin-top: 10px;
}

/* Project Detail */
.project-detail .image {
  position: sticky;
  top: 100px;
  border-radius: 2px;
  overflow: hidden;
}

.project-detail hr {
  display: block;
  opacity: 0.1;
  width: 100%;
  height: 2px;
  background: var(--heading-clr);
}

.project-detail .item {
  padding: 15px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  background: var(--foreground-clr);
}

.project-detail .item .icon {
  width: 80px;
  height: 80px;
  background: var(--background-clr);
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-detail .item .icon img {
  width: 60%;
}

.project-detail .item .text {
  width: calc(100% - 100px);
}

.project-detail .item .text h6 {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-clr);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.project-detail .text img {
  border-radius: 2px;
}

.khandala-image {
  height: 250px;
}

.khandala-image img {
  height: 100% !important;
  object-position: center !important;
  object-fit: cover !important;
}

/* Services Section */
.services .card {
  background: transparent;
  border: 0;
  border-radius: 0;
  position: relative;
}

.services .card .image {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.services .card .image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #00000066, #e6e6e65e);
  z-index: 1;
}

[data-theme="dark"] .services .card .image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #000000cc, #e8781700);
  z-index: 1;
}

.services .card .image .icon {
  width: 100px;
  height: 100px;
  background: var(--background-clr);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.services .card .image .icon img {
  width: 50px;
}

.services .card .text {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  height: 100px;
  text-align: center;
  padding: 15px;
  background: var(--background-clr);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.services .card .text h5 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  line-height: 150%;
}

/* Hero Slider */
.hero {
  position: relative;
}

.hero .text {
  position: absolute;
  /* top: 50%; */
  bottom: 10%;
  right: 10%;
  /* transform: translateY(-50%); */
  z-index: 2;
  background: #ffffffab;
  backdrop-filter: blur(5px);
  padding: 30px;
  border-radius: 5px;
}

[data-theme="dark"] .hero .text {
  background: #000000c4;
}

.hero .text h5 {
  font-size: 20px;
  /* font-size: 23px; */
  font-weight: 600;
  color: var(--text-clr);
  text-transform: capitalize;
}

.hero .text h4 {
  font-size: 30px;
  /* font-size: 35px; */
  font-weight: 800;
  color: var(--heading-clr);
  text-transform: uppercase;
}

.hero .text h4 span {
  display: block;
  color: var(--primary);
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero #slider .navigation ul li .li__hoverLine,
.hero #slider .navigation ul li .li__info,
.hero #slider .navigation ul li .li__info-mask .mask__infoContainer,
.hero #slider .navigation {
  width: 100%;
  display: none;
}

.hero #slider {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero #slider .navigation ul li a,
.hero #slider .backgroundImages .bi__imgCont .bi__imgCont-img,
.hero #slider .backgroundImages .bi__imgCont,
.hero #slider .backgroundImages,
.hero #slider .mainImages .mi__img,
.hero #slider .mainImages,
.hero {
  width: 100%;
  height: 100%;
}

.hero #slider .navigation ul li,
.hero #slider .navigation ul {
  width: auto;
  display: table;
}

.hero #slider .navigation ul li .li__info,
.hero #slider .navigation ul li .li__info-mask .mask__infoContainer,
.hero #slider .navigation ul li a,
a {
  -webkit-transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
  /* easeOutExpo */
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  /* easeOutExpo */
}

.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero #slider img {
  display: none;
}

.hero #slider .mainImages {
  position: relative;
  z-index: 1;
}

.hero #slider .mainImages .mi__img {
  position: absolute;
  top: 0;
  left: 0;
  /* -webkit-transform: scale(0.7);
  transform: scale(0.7); */
}

.hero #slider .backgroundImages {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.hero #slider .backgroundImages .bi__imgCont {
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

.hero #slider .backgroundImages .bi__imgCont .bi__imgCont-img {
  position: relative;
}

.hero #slider .navigation {
  position: absolute;
  bottom: 0;
  left: 0;
  color: white;
  z-index: 2;
}

.hero #slider .navigation ul {
  margin: 90px auto;
}

.hero #slider .navigation ul li {
  float: left;
  margin-right: 30px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.hero #slider .navigation ul li:last-child {
  margin-right: 0;
}

.hero #slider .navigation ul li:hover .li__info {
  opacity: 0.9 !important;
}

.hero #slider .navigation ul li.active .li__hoverLine .l {
  width: 100%;
}

.hero #slider .navigation ul li a {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero #slider .navigation ul li .li__info,
.hero #slider .navigation ul li .li__info-mask .mask__infoContainer {
  overflow: hidden;
  opacity: 0.7;
}

.hero #slider .navigation ul li .li__info h5,
.hero #slider .navigation ul li .li__info-mask .mask__infoContainer h5 {
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0px;
  color: white;
  float: left;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  padding: 4px 0px 5px 0px;
}

.hero #slider .navigation ul li .li__info h4,
.hero #slider .navigation ul li .li__info-mask .mask__infoContainer h4 {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0px;
  color: white;
  float: left;
  padding-left: 6px;
  text-transform: uppercase;
}

.hero #slider .navigation ul li .li__info-mask {
  width: 0%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  overflow: hidden;
}

.hero #slider .navigation ul li .li__info-mask .mask__infoContainer {
  opacity: 1;
}

.hero #slider .navigation ul li .li__hoverLine {
  height: 1px;
  float: left;
  margin-top: 8px;
}

.hero #slider .navigation ul li .li__hoverLine .l {
  width: 0%;
  height: 1px;
  background: #cccccc;
  margin: 0 auto;
  transition-duration: 1s;
  -webkit-transition-duration: 1s;
}

/* Hero Slider */

/* SVG */
.svg-pattern {
  position: absolute;
  top: -25%;
  left: 0;
  width: 100%;
  opacity: 0.2;
  pointer-events: none;
  display: flex;
}

.svg-pattern .path {
  stroke-dasharray: 1300;
  stroke-dashoffset: 1300;
  animation: dash 5s linear alternate infinite;
}

@keyframes dash {
  from {
    stroke-dashoffset: 1300;
  }

  to {
    stroke-dashoffset: 0;
  }
}
/* SVG */

/* Success Page */
.success-card {
  border: 1px solid var(--primary);
  background: var(--primary);
  background: var(--background-clr);
}
.success-card .card-body {
  padding: 30px !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
}
.success-card .icon {
  width: 50px;
}
.success-card .icon i {
  font-size: 50px;
}
.success-card .text {
  width: calc(100% - 80px);
}
/* Success Page */

/* Coming Soon */
.coming-soon {
  position: relative;
  background: #ffffff;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.coming-soon .logo {
  width: 180px;
  margin: 0 0 30px;
}
.coming-soon .heading {
  color: var(--primary) !important;
}
/* Coming Soon */

/* Responsive */
@media (max-width: 1280px) {
}

@media (max-width: 1200px) {
}

@media (max-width: 1199px) {
}

@media (max-width: 992px) {
}

@media (max-width: 767px) {
  .g-5,
  .gx-5 {
    --bs-gutter-x: 0 !important;
  }

  .footer .foot {
    text-align: left !important;
  }

  .footer .text-end {
    text-align: left !important;
  }

  .banner img {
    height: 100%;
  }
}

@media (max-width: 576px) {
  .banner {
    height: 320px;
  }

  .banner h1 {
    padding: 7px 13px;
    font-size: 20px;
  }

  .banner img {
    height: 330px;
  }

  .header ul {
    padding: 10px 10px;
  }

  .header .logo {
    width: 145px;
  }

  .header.sticky .logo {
    width: 130px;
  }

  .banner h1 {
    top: 55%;
  }

  .heading {
    font-size: 25px;
  }

  .about .container .image {
    text-align: center;
  }
}

.footer .contact-detail {
  color: rgb(169, 169, 169);
}
