@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Rajdhani:wght@400;500;600;700&display=swap');

html {
  font-size: 62.5%;
}

body {
  color: #fff;
  background: #000;
  font-family: "Lato", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.7;
}

body.noscroll {
  overflow-y: hidden;
  height: calc(100vh - 108px);
}

main {
  background: url('../images/circles-red.svg') no-repeat;
  background-size: cover;
}

section {
  padding: 80px;
  position: relative;
  overflow: hidden;
}

.container {
  width: 100%;
  /*max-width: 1120px;*/
  margin: auto;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

ul li {
  list-style-type: none;
}

a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.dnone {
  display: none;
}

.desktop {
  display: block;
}

.mobile {
  display: none;
}

.hidden {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
}

h2 {
  font-size: 4.4rem;
  line-height: 1.9;
  font-family: "Rajdhani", serif;
  font-weight: 700;
  font-style: normal;
}

h3 {
  font-size: 2.4rem;
  line-height: 1.3;
  font-weight: 700;
  font-family: "Rajdhani", serif;
}

p {
  padding-top: 12px;
}

.button {
  cursor: pointer;
  border-radius: 8px;
  padding: 16px 20px;
  font-weight: 700;
  line-height: 1.2;
  background: #8A041F;
  color: #fff;
}

header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 27px 20px 60px;
  background: #1B1B1B4D;
  border: 2px solid;
  border-image-source: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.05) 50%);
  border-radius: 0 0 50px 50px;
  box-shadow: 0px 2px 7.1px 0px #00000024;
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  z-index: 10;
  position: relative;
}

header.fixed-header {
  position: sticky;
  top: 0;
  left: 0px;
  z-index: 100;
}

header .logo img {
  width: 98px;
}

.hamburger {
  display: none;
  cursor: pointer;
}

header .nav a {
  padding: 20px 0;
  margin: 0 14px;
  font-size: 1.6rem;
  line-height: 1.2;
  position: relative;
}

header .nav .button {
  padding: 16px 20px;
  margin-right: 0;
  border: none;
}

#home {
  margin-top: -108px;
  padding: 0;
  max-width: unset;
}

#home .hero {
  position: relative;
  background: #000;
}

#home video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
  opacity: 0.45;
}

#home .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 1;
  pointer-events: none;
}

.home-content {
  position: relative;
  z-index: 2;
  padding: 228px 160px 195px 80px;
  max-width: 1009px;
}

.home-content h2 {
  font-size: 7.2rem;
  font-weight: 400;
  line-height: 1.2;
}

.home-content p {
  padding-top: 48px;
  font-size: 2.4rem;
  line-height: 1.7;
}

.home-content .button {
  display: inline-block;
  margin-top: 60px;
}

.custom-pagination {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 50%;
  right: 80px;
  transform: translateY(-50%); 
  z-index: 10;
  gap: 20px;
}

.progress-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Small inner dot (for all circles) */
.progress-circle::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
}

/* SVG Progress Ring */
.progress-circle svg {
  width: 100%;
  height: 100%;
  position: absolute;
  transform: rotate(-90deg);
}

/* Background Ring (Thinner Stroke - Always visible) */
.progress-circle svg .bg-ring {
  stroke: none;
  stroke-width: 1px;
  fill: none;
  stroke-dasharray: 62.8;
  stroke-dashoffset: 0;
}

.progress-circle.active svg .bg-ring {
  stroke: #FFFFFF66;
}

/* Foreground Ring (Thicker & Animates) */
.progress-circle svg .fg-ring {
  stroke: #fff;
  stroke-width: 2px;
  fill: none;
  stroke-dasharray: 62.8;
  stroke-dashoffset: 62.8;
  transition: stroke-dashoffset 0.1s linear;
  transform-origin: center;
}

/* Only animate the active progress circle */
.progress-circle.active .fg-ring {
  stroke-dashoffset: 0;
}

.clientSwiper {
  margin-left: -80px;
  margin-right: -80px;
  padding-top: 40px;
}

.clientSwiper .swiper-wrapper {
  align-items: center;
  justify-content: space-evenly;
  -webkit-transition-timing-function:linear!important; 
  -o-transition-timing-function:linear!important;
  transition-timing-function:linear!important; 
}

.clientSwiper .swiper-slide {
  width: auto !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.clientSwiper .swiper-slide img {
  max-width: 100px;
  transition: filter 0.3s ease-in-out;
}

.features-container {
  padding-top: 40px;
  display: flex;
  justify-content: space-around;
  gap: 24px;
  max-width: 1110px;
  margin: auto;
}

.feature {
  width: 330px;
  text-align: center;
  background: #FFFFFF1A;
  border: 1px solid #FFFFFF1A;
  border-radius: 8px;
  box-shadow: 0px 4px 4px 0px #00000040;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 24px;
}

.feature img {
  margin: auto;
}

.feature h3 {
  padding-top: 24px;
  font-weight: 400;
}

.productSwiper {
  padding-top: 40px;
  margin-left: -80px;
  margin-right: -80px;
}

.productSwiper .swiper-slide {
  width: 874px;
  opacity: 0.4;
}

.productSwiper .swiper-slide.swiper-slide-active {
  opacity: 1;
}

.product {
  width: 874px;
  padding: 0 24px;
  text-align: center;
}

.product img {
  width: 508px;
  margin: auto;
}

.product-head {
  display: none;
  justify-content: space-between;
  max-width: 508px;
  margin: auto;
}

.productSwiper .swiper-slide.swiper-slide-active .product-head {
  display: flex;
}

.product-detail {
  display: none;
  justify-content: space-around;
  padding-top: 36px;
  color: #ffffff80;
}

.productSwiper .swiper-slide.swiper-slide-active .product-detail {
  display: flex;
}

.detail-head {
  font-weight: 700;
}

.product > p {
  color: #FFFFFF80;
  padding-top: 40px;
  max-width: 636px;
  margin: auto;
  display: none;
}

.productSwiper .swiper-slide.swiper-slide-active .product > p {
  display: block;
}

.swiper-button-prev, .swiper-button-next {
  position: static;
  margin-top: 0;
  height: 28px;
  width: 28px;
  color: #fff;
  font-size: 1.6rem;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 1.6rem;
}

.solutions {
  display: flex;
  justify-content: space-around;
  padding-top: 40px;
}

.solution-content {
  width: 48%;
}

.solution {
  background: #8A041F33;
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 8px;
  cursor: pointer;
}

.solution:last-of-type {
  margin-bottom: 0;
}

.solution.active {
  background: #8A041F;
  cursor: initial;
}

.solution h3 {
  font-size: 2rem;
}

.solution p {
  font-size: 1.4rem;
  display: none;
}

.solution.active p {
  display: block;
}

.solution-video {
  width: 40%;
}

.solution-video video {
  width: 100%;
  height: auto;
  display: none;
}

.solution-video video.active {
  display: block;
}

.numbers {
  display: flex;
  justify-content: space-around;
  padding-top: 40px;
}

.number h3 span {
  font-size: 10rem;
}

.number p {
  padding-top: 0;
  font-size: 1.4rem;
}

#industries {
  padding: 80px 0;
}

#industries-tabs {
  padding-top: 40px;
}

#industries-tabs .tabs {
  max-width: 511px;
  display: flex;
  margin: auto;
  padding-bottom: 80px;
}

#industries-tabs .tabs li {
  width: 25%;
  text-align: center;
  padding-bottom: 12px;
  border-bottom: solid 4px #D9D9D933;
  cursor: pointer;
  font-family: "Rajdhani", serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
}

#industries-tabs .tabs li.active {
  border-bottom: solid 4px #8A041F;
  cursor: pointer;
  font-family: "Rajdhani", serif;
  font-weight: 700;
}

#industries-tabs .tab-content {
  display: none;
  padding: 0 80px;
  position: relative;
}

#industries-tabs .tab-content.active {
  display: block;
}

#industries-tabs .tab-contents ul {
  padding-top: 16px;
  padding-left: 12px;
}

#industries-tabs .tab-contents ul li {
  list-style: disc;
  padding-top: 8px;
  list-style-position: inside;
}

#industries-tabs .tab-contents img {
  margin-left: -80px;
  margin-right: -80px;
  width: 100vw;
  max-width: unset;
}

#tab-agriculture::before {
  content: "";
  width: 435px;
  height: 228px;
  display: block;
  background: url('../images/agriculture-drone.png') no-repeat;
  background-position: top right;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 70px;
  animation: moveUpDown 3s infinite ease-in-out;
}

#tab-defense::before {
  content: "";
  width: 354px;
  height: 221px;
  display: block;
  background: url('../images/defense-drone.png') no-repeat;
  background-position: top right;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 70px;
  animation: moveUpDown 3s infinite ease-in-out;
}

#tab-security::before {
  content: "";
  width: 410px;
  height: 234px;
  display: block;
  background: url('../images/security-drone.png') no-repeat;
  background-position: top right;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 70px;
  animation: moveUpDown 3s infinite ease-in-out;
}

#tab-enterprise::before {
  content: "";
  width: 435px;
  height: 212px;
  display: block;
  background: url('../images/enterprise-drone.png') no-repeat;
  background-position: top right;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 70px;
  animation: moveUpDown 3s infinite ease-in-out;
}

@keyframes moveUpDown {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(40px);
  }
}

.awards-container {
  display: flex;
  justify-content: space-around;
  padding-top: 40px;
}

.award {
  width: 330px;
  text-align: center;
}

.award img {
  height: 110px;
  width: auto;
  margin: auto;
}

.award h3 {
  padding-top: 8px;
  font-size: 1.6rem;
  font-weight: 500;
}

.award p {
  color: #8C8C8C;
  font-weight: 500;
  max-width: 270px;
  margin: auto;
}

#about .container {
  max-width: 1020px;
}

#about-tabs {
  padding-top: 40px;
}

#about-tabs .tabs {
  max-width: 315px;
  display: flex;
  margin: auto;
  padding-bottom: 60px;
}

#about-tabs li {
  width: 50%;
  text-align: center;
  padding-bottom: 12px;
  border-bottom: solid 4px #D9D9D933;
  cursor: pointer;
  font-family: "Rajdhani", serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
}

#about-tabs li.active {
  border-bottom: solid 4px #8A041F;
  cursor: pointer;
  font-family: "Rajdhani", serif;
  font-weight: 700;
}

#about-tabs .tab-content {
  display: none;
}

#about-tabs .tab-content.active {
  display: block;
}

.members {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.member {
  width: calc(25% - 30px);
  border: 8px;
}

.member img {
  border-radius: 8px 8px 0 0;
  filter: grayscale(1);
}

.member-detail {
  background: #FFFFFF33;
  border: 1px solid #FFFFFF1A;
  box-shadow: 0px 4px 4px 0px #00000040;
  backdrop-filter: blur(11px);
  -webkit-backdrop-filter: blur(11px);
  padding: 16px;
  border-radius: 0 0 8px 8px;
}

.member-name {
  font-weight: 500;
}

.member-designation {
  font-weight: 500;
  color: #8C8C8C;
}

.missions {
  display: flex;
  gap: 60px;
}

.mission {
  width: calc(50% - 30px);
  background: #FFFFFF1A;
  border: 1px solid #383232;
  border-radius: 8px;
  padding: 40px;
  text-align: center;
}

.mission img {
  margin: auto;
}

.mission h3 {
  padding-top: 30px;
}

.mission p {
  padding-top: 24px;
}

.about {
  padding-top: 80px;
}

.about p {
  padding-top: 16px;
}

.testimonialSwiper {
  padding-top: 40px;
  margin-left: -80px;
  margin-right: -80px;
}

.testimonialSwiper .swiper-slide {
  width: 600px;
  opacity: 0.4;
}

.testimonialSwiper .swiper-slide.swiper-slide-active {
  opacity: 1;
}

.testimonial {
  width: 600px;
  background: #FFFFFF1A;
  border: 1px solid #FFFFFF1A;
  border-radius: 8px;
  box-shadow: 0px 4px 4px 0px #00000040;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 24px;
}

.quote {
  padding-top: 40px;
  position: relative;
}

.quote::before {
  content: '';
  height: 32px;
  width: 32px;
  background: url('../images/quote.svg');
  position: absolute;
  top: 0;
  left: 0;
}

.testimonial img {
  padding-top: 24px;
}

.quote-speaker {
  padding-top: 12px;
  font-family: "Rajdhani", serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
}

.speaker-company {
  padding-top: 8px;
  line-height: 1.2;
}

.swiper-pagination {
  position: relative;
  margin-top: 24px;
}

.swiper-pagination-bullet {
  height: 8px;
  width: 8px;
  background: #D9D9D9;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
}

.news {
  padding-top: 60px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.news a {
  width: calc((100%/3) - 27px);
}

.news-item {
  border-radius: 8px;
  border: 1px solid #FFFFFF1A;
}

.news-content {
  background: #FFFFFF1A;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 250px;
}

.news-source {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}

#contact .container {
  background: #FFFFFF1A;
  border: 1px solid;
  border-image-source: linear-gradient(90deg, #520615 0%, #666666 100%);
  border-radius: 8px;
  padding: 40px; 
}

#contact .button {
  display: inline-block;
  margin-top: 8px;
  padding: 22.5px 97px;
}

footer {
  background: url(../images/footer.svg) no-repeat top left;
  background-color: #FFFFFF1A;
  font-size: 1.4rem;
  line-height: 1.4;
  border: 1px solid #FFFFFF1A;
  box-shadow: 0px 4px 4px 0px #00000040;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  margin-top: 40px;
}

footer::after {
  content: "";
  clear: both;
  display: table;
}

.footer-content {
  width: 600px;
  float: right;
  padding: 25px 80px 25px 0;
}

.footer-links ul {
  display: flex;
  gap: 40px;
  font-family: "Rajdhani", serif;
  font-weight: 700;
}

footer h3 {
  font-size: 1.4rem;
  line-height: 1.4;
  font-family: "Rajdhani", serif;
  font-weight: 700;
}

.footer-contact {
  padding-top: 55px;
}

.footer-contact ul li {
  padding-top: 12px;
  max-width: 355px;
  color: #FFFFFF80;
}

.footer-contact a {
  color: #FFFFFF80;
}

.footer-social {
  padding-top: 35px;
}

.footer-social ul {
  display: flex;
  gap: 24px;
  padding-top: 12px;
}

.footer-copyright {
  padding-top: 100px;
}

.footer-copyright ul {
  color: #FFFFFF80;
  display: flex;
  justify-content: space-between;
  width: 375px;
}

.contact-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #4D4D4D1A;
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  align-items: center;
  justify-content: center;
}

.contact-modal.active {
  display: flex;
}

.modal-content {
  background: #FFFFFF1A;
  border: 1px solid #FFFFFF26;
  box-shadow: 0px 4px 4px 0px #00000040;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 8px;
  padding: 40px;
  width: 495px;
  position: relative;
  color: #fff;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.modal-content h2 {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 600;
}

.modal-content p {
  font-size: 1.4rem;
}

.form-wrapper {
  padding-top: 24px;
}

.form-group{
  position: relative;
  margin-bottom: 32px;
}

.form-group label{
  font-size: 1.2rem;
}

.form-group .form-control{
  display: block;
  width: 100%;
  background: #B9B9B933;
  border: 1px solid #FFFFFF26;
  border-radius: 8px;
  font-family: "Lato", serif;
  line-height: 1;
  font-size: 1.6rem;
  padding: 12px;
  color: #fff;
}

.form-group .info{
  font-size: 1rem;
  display: block;
  padding-top: 2px;
  color: #ff0000;
}

input:focus, textarea:focus{
  border: none;
  outline: none;
}

.modal-content .button-wrap {
  position: relative;
}

.modal-content .button {
  width: 100%;
  border: none;
  opacity: 1;
  cursor: pointer;
}

.modal-content .button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#LoaderImg {
  width: 32px;
  position: absolute;
  top: 8px;
  right:8px;
  display: none;
}

.success-screen {
  display: none;
}

.success-screen img {
  height: 259px;
  width: 259px;
  margin: 24px 77px 0;
}