/* Imports */
/* Icons */
@import url("https://site-assets.fontawesome.com/releases/v6.0.0/css/all.css");
/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

:root {
  --white: #ffffff;
  --black: #000000;
  --primary: #2b2b2b;
  --secondary: #cd2228;
  --font-roboto: "Roboto", sans-serif;
  --font-rajdhani: "Rajdhani", sans-serif;
  overflow-x: hidden;
}

::selection {
  background-color: var(--secondary);
  color: var(--white);
}

/* General Styling */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none !important;
  list-style-type: none;
  font-family: var(--font-roboto);
  overflow-wrap: break-word;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  /* overflow-x: clip; */
}

a,
button {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: inline-block;
  font-family: var(--font-rajdhani);
}

ul,
ol,
dl,
address,
label,
figure {
  margin-bottom: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-rajdhani);
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
}

section {
  position: relative;
}

.padd-y {
  padding: 5rem 0;
}



/* PRELOADER */
.preloader {
  position: fixed;
  width: 100vw;
  height: 100dvh;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: end;
}

.preloader figure {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.preloader figure img {
  width: 250px;
}

.preloader .bar {
  width: 20vw;
  height: 100dvh;
  background: #7E8274;
  background: var(--secondary);
}

.preloader .line {
  position: absolute;
  top: 78%;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--white);
  opacity: 0.75;
}

.preloader .counter {
  position: absolute;
  bottom: 0;
  right: 2rem;
  font-size: 8rem;
  font-family: var(--font-rajdhani);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.preloader .counter span:last-child {
  font-size: 4rem;
  margin-left: 1rem;
}

/* THEMEBTN */
.themeBtn {
  width: fit-content;
  display: block;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.75em 2.75em;
  overflow: hidden;
}

.themeBtn--secondary {
  color: var(--black);
  border-color: var(--black);
}

.themeBtn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}

/* HEADINGS */
.subheading {
  font-size: 1.125rem;
  color: var(--secondary);
  text-transform: uppercase;
  font-weight: bold;
  overflow: hidden;
}

.subheading .line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--white);
}

.mainheading {
  font-size: 3.75rem;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--black);
  margin: 0;
}

:is(.subheading, .mainheading) .char {
  font-family: inherit;
}

.mainheading .char {
  display: inline !important;
}

/* HEADER */
.header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 1rem 0;
  transition: 0.3s ease-in-out;
}

.header-main__logo {
  width: 120px;
  margin: 0;
  padding: 0;
}

.header-main__logo>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-main__nav {
  width: 100%;
  justify-content: center;
  gap: 2.5rem;
}

.header-main__nav .nav-item .nav-link {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0.35rem 0;
  text-transform: uppercase;
  position: relative;
}

.header-main__nav .nav-item .nav-link::after {
  content: "";
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  position: absolute;
  right: 0;
  bottom: 0;
  transition: all 300ms ease-in-out;
}

.header-main__nav .nav-item .nav-link:hover::after,
.header-main__nav .nav-item .nav-link.active::after {
  width: 100%;
  right: auto;
  left: 0;
}

.header-main__contact li a {
  display: flex;
  align-items: center;
  color: var(--white);
  white-space: nowrap;
  gap: 0.625rem;
}

.header-main__contact li a:hover {
  color: var(--secondary);
}

.header-main__contact li a figure {
  width: 38px;

  aspect-ratio: 1;
}

.header-main__contact li a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s ease-in-out;
}

.header-main__contact li a:hover figure img {
  transform: scale(1.1);
}

.header-main__contact li a div p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  font-family: var(--font-rajdhani);
  text-transform: uppercase;
  margin: 0;
}

.header-main__contact li a div h4 {
  font-size: 2.125rem;
  font-weight: bold;
  font-family: var(--font-rajdhani);
  margin: 0;
}

/* BANNER */
.mainbanner {
  height: 1144px;
}

.mainbanner .mainbanner__bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.mainbanner .mainbanner__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 1) 100%);
}

.mainbanner .row {
  margin-top: -8rem;
}

.mainbanner__content h3 {
  font-size: 2.375rem;
  font-weight: bold;
  color: var(--white);
  text-transform: uppercase;
}

.mainbanner__content h1 {
  font-size: 6.2rem;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 0.85;
  color: var(--white);
  margin: 0;
}

.mainbanner__content p {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--white);
  margin: 1rem 0 2rem;
}

.mainbanner__content .themeBtn {
  background: var(--white);
  color: var(--black);
  outline: 1px solid var(--white);
  outline-offset: 6px;
  margin: 6px 0 0 6px;
  padding: 0.5em 2.5em;
}

.mainbanner__content .themeBtn:hover {
  background: var(--secondary);
  outline-color: var(--secondary);
  outline-offset: 0;
  color: var(--white);
}

.mainbanner .swiper-pagination {
  width: fit-content;
  bottom: 8rem;
  left: 18rem;
}

.mainbanner .swiper-button-prev,
.mainbanner .swiper-button-next {
  width: 4.35rem;
  height: 4.35rem;
  font-size: 1rem;
  color: var(--white);
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.28);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.mainbanner .swiper-button-next {
  right: 1rem;
}

.mainbanner .swiper-button-prev {
  left: 1rem;
}

.mainbanner .swiper-button-next:hover,
.mainbanner .swiper-button-prev:hover {
  background: var(--white);
  color: var(--black);
}

.mainbanner .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  display: inline-block;
  margin: 0 0.5rem !important;
  opacity: 1;
  border: 1px solid var(--white);
  background: transparent;
}

.mainbanner .swiper-pagination-bullet-active {
  background: var(--white);
  position: relative;
}

.mainbanner__bottom {
  position: absolute;
  bottom: -1rem;
  user-select: none;
  pointer-events: none;
  z-index: 2;
}

/* about-section */
.about__img,
.service-inner__img,
.choose-inner__img {
  height: 100%;
  overflow: hidden;
}

.about__img img,
.service-inner__img img,
.choose-inner__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__content {
  background: var(--primary);
  height: 100%;
  padding: 4em;
}

.about__content * {
  color: var(--white);
}

.about__content .subheading {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.about__content h6 {
  font-size: 1.125rem;
  font-weight: 500;
  margin: 1rem 0 2rem;
}

.about__content p {
  margin-bottom: 2.5rem;
}

/* choose-section */
.choose-section {
  background: #f4f6f4;
}

.choose__content {
  margin-bottom: 1.5rem;
}

.choose__item {
  padding: 2em 2.125em;
  background: var(--white);
  margin-bottom: 2rem;
  min-height: 288px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.choose__item--img {
  margin-bottom: 1.25rem;
}

.choose__item--content h4 {
  font-size: 1.5rem;
  color: var(--black);
}

.choose__item--content p {
  font-size: 0.9375rem;
  color: #696767;
  margin: 0;
}

.choose__top,
.choose__bottom--img {
  position: absolute;
}

.choose__top {
  left: 12rem;
}

.choose__bottom--img {
  bottom: 20rem;
  filter: drop-shadow(0 10px 20px var(--black));
}

/* service-section */
.service-section {
  padding-bottom: 10rem;
}

.service__title {
  margin-bottom: 2.75rem;
}

.service__card {
  position: relative;
}

.service__card--img {
  overflow: hidden;
}

.service__card--content {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
}

.service__card--content h4 {
  font-size: 1.5rem;
  color: var(--white);
  text-transform: capitalize;
  margin-bottom: 1.5rem;
}

.service__card--content .themeBtn {
  margin: 0 auto;
}

/* faq-section */
.faq-section {
  background: #f3f5f6;
  overflow: unset;
}

.title__img {
  margin: -10rem 0 2rem 0;
}

.faq-section #accordion .card {
  margin: 0;
  border-width: 0 0 2px 0;
  border-style: solid;
  border-color: #a3a3a3;
  border-radius: 0;
}

.faq-section #accordion .card:last-child {
  border-width: 0;
}

.faq-section #accordion .card .btn-link {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 1.125em;
  color: var(--black);
  font-size: 1.75rem;
  font-family: var(--font-roboto);
  font-weight: 600;
  text-transform: capitalize;
}

.faq-section #accordion .card .btn-link span {
  font-size: 3rem;
  color: rgb(60 60 67 / 50%);
  margin-right: 2rem;
}

.faq-section #accordion .card .btn-link i {
  margin-left: auto;
  color: var(--white);
  font-size: 1rem;
  width: 48px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--black);
  display: grid;
  place-items: center;
  transition: all .3s ease-in-out;
}

.faq-section #accordion .card .btn-link:hover i {
  background: var(--secondary);
}

.faq-section #accordion .card .btn-link i::before {
  content: "\f00d";
}

.faq-section #accordion .card .btn-link.collapsed i::before {
  content: "\f067";
}

.faq-section #accordion .card+.card {
  margin-top: 0;
}

.faq-section #accordion .card .card-body {
  padding: 0 7rem 1rem;
  font-size: 1.125rem;
}

.faq-section #accordion .card .card-body p {
  color: #626262;
  font-size: 1.125rem;
  margin: -0.75rem 0 0;
  line-height: 2;
}

/* gallery-section */
.gallery__title {
  margin-bottom: 2.75rem;
}

.gallery__img {
  margin-bottom: 2.25rem;
}

.gallery__img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

/* abilitie-section */
.abilitie__title {
  margin-bottom: 2.5rem;
}

.abilitie__card {
  position: relative;
}

.abilitie__card--img {
  overflow: hidden;
}

.abilitie__card--img img {
  width: 100%;
  height: 432px;
  object-fit: cover;
}

.abilitie__card--icon {
  position: absolute;
  right: 1rem;
  margin-top: -2.5rem;
}

.abilitie__card--content {
  margin-top: 1.875rem;
}

.abilitie__card--content h4 {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--black);
}

.abilitie__card--content p {
  font-size: 0.9375rem;
  color: #696767;
  margin: 0;
}

/* video-section */
.video__img {
  position: relative;
  overflow: hidden;
}

.video__img a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 128px;
  aspect-ratio: 1;
  border: 5px solid var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2.25rem;
  color: var(--white);
}

.video__img a:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

/* testimonial-section */
.testimonial__title {
  margin-bottom: 2.75rem;
}

.testimonial__slider {
  margin-left: 20rem;
  padding-bottom: 5rem;
}

.testimonial__card {
  background: #f8f8f8;
  border: 1.34px solid #e7eaec;
  border-radius: 0.375rem;
  padding: 2em;
}

.testimonial__card--top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.testimonial__card--star {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.testimonial__card--star li a {
  color: #f8a401;
}

.testimonial__card--content h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #133240;
  margin-bottom: 0.75rem;
}

.testimonial__card--content p {
  color: #133240;
  margin: 0;
}

.testimonial__slider .swiper-pagination {
  left: 33.7%;
  margin: auto;
  text-align: center;
  bottom: 0;
  width: auto;
}

.testimonial__slider .swiper-pagination .swiper-pagination-bullet {
  width: 25px;
  height: 25px;
  background: transparent;
  border: 2px solid transparent;
  opacity: 1;
  position: relative;
}

.testimonial__slider .swiper-pagination .swiper-pagination-bullet:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgb(0 0 0 / 50%);
  border-radius: 50%;
  inset: 0;
  margin: auto;
}

.testimonial__slider .swiper-pagination .swiper-pagination-bullet-active {
  border-color: var(--black);
}

.testimonial__slider .swiper-pagination .swiper-pagination-bullet-active:before {
  width: 11px;
  height: 11px;
  background: var(--black);
}

/* process-section */
.process-section {
  background: url("../images/process-bg.png") no-repeat center/cover;
  position: relative;
}

.process-card {
  background: var(--white);
  height: 100%;
}

.process-card h2 {
  font-size: 3rem;
  color: var(--black);
  text-transform: uppercase;
  font-weight: bold;
  margin: 0;
  border-bottom: 1px solid #e3e3e3;
  padding: 1.46rem 2rem;
}

.process-card .process-content {
  padding: 1.5rem 2rem;
}

.process-card .process-content h3 {
  font-size: 1.5rem;
  color: var(--black);
  font-weight: bold;
  margin: 0 0 1.5rem;
}

.process-card .process-content ul li {
  font-size: 15px;
  color: #696767;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  line-height: 1.25rem;
}

.process-card .process-content ul li i {
  color: var(--black);
  font-size: 1.2rem;
}

.process-card .process-content ul li+li {
  margin: 1.6rem 0 0;
}

.process-card.step2 .process-content ul li i {
  display: none;
}

.process-card .process-content ul {
  margin: 0 0 1.2rem;
}

.droneimg {
  position: absolute;
  bottom: -10rem;
  left: -70px;
  z-index: 1;
}

.get-main {
  background: url(../images/getbg.jpg) no-repeat top center/ cover;
  padding-bottom: 7rem;
}

.get-form {
  background: #2b2b2b;
  border-radius: 7px;
  border: 10px solid var(--secondary);
  padding: 2.5rem 2.5rem;
}

.get-form .mainheading {
  color: var(--white);
  margin: 0 0 1rem;
}

.get-form form input,
.get-form form select {
  width: 100%;
  height: 58px;
  border: 0;
  border-radius: 5px;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 500;
  padding: 0 1rem;
  margin-bottom: 1.2rem;
  color: #8d8d8d;
}

.get-form form input::placeholder {
  color: #8d8d8d;
}

.get-form form textarea {
  width: 100%;
  height: 182px;
  border: 0;
  border-radius: 5px;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 500;
  padding: 1rem 1rem;
  margin-bottom: 1.2rem;
  color: #8d8d8d;
}

.get-form form .themeBtn {
  border: 2px solid var(--white);
}

.get-list {
  margin-left: 4rem;
}

.get-list ul li a {
  width: 100%;
  height: 75px;
  background: var(--white);
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.get-list ul li a figure {
  width: 80px;
  height: 80px;
  aspect-ratio: 1;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 5px solid var(--white);
  box-shadow: 0 4px 4px 0 rgb(0 0 0 / 25%);
  font-size: 1.3rem;
}

.get-list ul li a span {
  font-size: 1.325rem;
  color: var(--black);
  font-weight: 600;
  font-family: var(--font-rajdhani);
}

.get-list ul li+li {
  margin-top: 3rem;
}

/* footer css start */

footer {
  background: var(--black);
  padding: 5rem 0 1.3rem;
}

.quick-links h2 {
  font-size: 1.5625rem;
  color: var(--white);
  font-weight: 600;
  margin: 0 0 1.3rem;
}

.quick-links ul li a {
  font-size: 1rem;
  color: #8e8e8e;
  font-weight: 600;
}

.quick-links ul li+li {
  margin: 8px 0 0;
}

form.newsletter input {
  width: 100%;
  height: 58px;
  color: var(--white);
  background: transparent;
  border: 1px solid #585858;
  font-size: 14px;
  font-weight: 400;
  padding: 0 1.2rem;
}

form.newsletter .themeBtn {
  display: table;
  margin-left: auto;
  margin-top: 1.2rem;
}

.signup {
  position: relative;
}

.signup .footer-social {
  position: absolute;
  bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.signup .footer-social li a {
  width: 39px;
  height: 39px;
  border: 1px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 15px;
}

.copyright {
  margin: 3.5rem 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.copyright p {
  font-size: 15px;
  color: var(--white);
  margin: 0 0 1.5rem;
}

/* footer css end */


/* inner-banner */
.inner-banner {
  height: 632px;
}

.inner-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 1) 100%);
}

.inner-banner>img {
  object-fit: cover;
}

.inner-banner__content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.inner-banner__content h1 {
  position: relative;
  font-size: 3.125rem;
  font-weight: bold;
  color: var(--white);
  text-transform: uppercase;
  margin: 0;
}

.service-inner .row:not(:last-child) {
  margin-bottom: 3.5em;
}

.service-inner__content {
  background: #F4F4F4;
  padding: 3.5em;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-inner__content h4 {
  font-size: 2.5rem;
  font-weight: bold;
  font-family: var(--font-rajdhani);
  text-transform: capitalize;
  color: var(--black);
}

.service-inner__content h5 {
  font-size: 1.125rem;
}


.mission__content h4 {
  font-size: 1.375rem;
}

.gallery-inner .gallery__img img{
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.testimonial-inner .testimonial__card {
  margin-bottom: 2.25rem;
}