@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /* overflow-x: hidden; */
}

:root {
  --high-text: #02211f;
  --sub-text: #cccccc;
  --font-style: "Outfit", sans-serif;
  --high-color: #44ff00;
}

html,
body {
  overflow-x: hidden;
}

body {
  background-color: #080c0c;
}

/* hero section */
header {
  position: relative;
  width: 100%;
  height: auto; /* Let height grow */
  min-height: 100vh; /* Minimum viewport height */
  overflow: hidden;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(/assets/images/heri-img.png) no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  min-height: 100%; /* Make sure it grows */
  z-index: -1;
}

.nav-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-100%);
  animation: slideDown 1s ease-out forwards;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 35px;
  background-color: #0000004d;
  backdrop-filter: blur(20px);
  z-index: 1000;
}
@keyframes slideDown {
  to {
    transform: translateY(0);
  }
}

.nav-item ul {
  display: flex;
  gap: 7rem;
  align-items: center;
  margin: 0;
  background-color: var(--high-text);
  padding: 14px 38px;
  border-radius: 50px;
}
.nav-item ul li {
  list-style: none;
}


.nav-item ul li a {
  color: #cccccc; /* Default color */
  text-decoration: none;
  transition: color 0.3s;
}

.nav-item a.active {
  color: #44ff00;
}

.nav-item a {
  color: #cccccc;
  text-decoration: none;
}

/* .nav-item ul li a.active {
  color: var(--high-color);
} */

.nav-btn button {
  border: 1px solid #69ff33;
  background: #080c0c;
  padding: 7px 19px;
  border-radius: 8px;
}

.nav-btn button a {
  text-decoration: none;
  color: #ffff;
  font-style: var(--font-style);
}

/* resp nav*/
.nav-res-item ul {
  display: flex;
  gap: 2rem;
  flex-direction: column;

  list-style: none;
  text-align: center;
}

.nav-res-item ul li a {
  text-decoration: none;
  font-family: var(--font-style);
  color: #fff;
}
.nav-res-item ul li button {
  border: 1px solid #69ff33;
  padding: 7px 19px;
  border-radius: 8px;
}
.nav-res-item ul li button a {
  font-family: var(--font-style);
  color: #333;
}

/* resp nav*/

.text-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* REMOVE position absolute */
  /* REMOVE inset */
  gap: 1.5rem;
  padding-top: 120px;
  padding-bottom: 100px;
}

.text-container h1 {
  color: #ffff;
  font-family: var(--font-style);
  font-weight: 200;
  font-size: 56px;
  text-align: center;
}

.text-container .high-text {
  color: var(--high-color);
  font-weight: 500;
}

.text-container p {
  color: #ffff;
  font-family: var(--font-style);
  font-size: 15px;
  text-align: center;
}

.text-container button {
  background-color: #69ff33;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
}

.text-container button a {
  text-decoration: none;
  color: var(--high-text);
  font-weight: 600;
  font-family: var(--font-style);
}

.client-content {
  display: inline-block;
  padding: 20px 60px;
  margin: 0 auto;

  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
}

.text-container .client-fed-container .client-content .counter {
  font-size: 3.5rem;
  font-family: var(--font-style);
  font-weight: 300;
}

/* Container */
.marquee-box {
  background-color: transparent;
  padding: 10px;
  overflow: hidden;
  width: 100%; /* Full width */
}

/* Items inside marquee */
.marquee-item {
  margin-right: 30px; /* Space between items */
  display: inline-block;
  font-size: 1rem;
  background-color: #ffff;
  padding: 7px 15px;
  border-radius: 20px;
  font-style: var(--font-style);
  font-weight: 500;
}

/* Make items loop seamlessly */
.marquee-box marquee {
  white-space: nowrap; /* Prevent text from wrapping */
  overflow: hidden; /* Hide any overflowing text */
  box-sizing: border-box;
}

/* Responsiveness */
@media only screen and (max-width: 768px) {
  .marquee-item {
    font-size: 0.9rem; /* Smaller text on tablets */
    margin-right: 20px; /* Adjust space between items */
  }

  .text-container h1 {
    font-size: 2.5rem;
  }

 header {
    height: auto; /* Let it grow */
  }
}

@media only screen and (max-width: 576px) {
  .text-container h1 {
    font-size: 2rem;
  }

  .marquee-item {
    font-size: 0.8rem; /* Even smaller text on mobile */
    margin-right: 15px; /* Adjust space between items */
  }

  header {
    height: auto;
  }
}



/* hero section */

/* Service section */
.services-section .service-sub-title {
  color: var(--high-color);
  font-family: var(--font-style);
}
.services-section .service-main-title {
  color: #ffff;
  font-family: var(--font-style);
  font-size: 55px;
  font-weight: 600;
}

.services-content {
  display: inline-block;
  padding: 10PX 0px;
  margin: 0 auto;
  background-color: #181A1C;

  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
}

.services-content .service-text .service-pro-title {
  color: #ffff;
  font-family: var(--font-style);
  font-size: 21px;
  font-weight: 600;
}
.services-content .service-text .service-pro-para {
  color: #adadad;
  font-family: var(--font-style);
  font-size: 14px;
}

.services-content .service-text {
  padding: 13px 34px;
}
/* Service section */

/* Choose Us Section */
.choose-title .choose-head {
  color: #ffff;
  font-family: var(--font-style);
  font-size: 55px;
  font-weight: 600;
}

.choose-service-content {
  border: 1px solid #ffffff80;
  padding: 23px 10px;
  border-radius: 12px;
}

.choose-1{
  background-color: #201404;
}

.choose-2{
  background-color: #1F0420;
}

.choose-3{
   background-color: #042012;
}

.choose-4{
  background-color: #041320;
}

.choose-5{
  background-color: #0B0420;
}

.choose-6{
  background-color: #200404;
}

.choose-7{
 background-color: #201E04;
}

.choose-8{
  background-color: #0D2004;
}



.choose-service-content .choose-para p {
  color: #ffff;
  font-size: 18px;
} /* Choose Us Section */
/* Testomonial */
.testimonial-container {
  max-width: 56rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* background-color: #f9fafb; */
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-grid {
  display: grid;
  gap: 2rem;
  width: 100%;
}

.image-container {
  position: relative;
  width: 100%;
  height: 18rem;
  perspective: 1000px;
}

.testimonial-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.name {
  font-weight: 500;
  font-size: 18px;
  font-family: var(--font-style);
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.designation {
  font-family: var(--font-style);
  font-size: 0.875rem;
  color: #b3b3b3;
  margin-bottom: 2rem;
}

.quote {
  font-family: var(--font-style);
  font-size: 1.125rem;
  color: #ffffff;
  line-height: 1.75;
}

.arrow-buttons {
  display: flex;
  gap: 1rem;
  padding-top: 2rem;
}

.arrow-button {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background-color: #141414;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.arrow-button:hover {
  background-color: #00a6fb;
}

.arrow-button svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: #f1f1f7;
  transition: transform 0.3s;
}

.arrow-button:hover svg {
  fill: #ffffff;
}

.prev-button:hover svg {
  transform: rotate(-12deg);
}

.next-button:hover svg {
  transform: rotate(12deg);
}

/* Responsive Layout */
@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .image-container {
    height: 24rem;
  }

  .arrow-buttons {
    padding-top: 0;
  }
}

@media (max-width: 480px) {
  .name {
    font-size: 1.25rem;
  }

  .quote {
    font-size: 1rem;
  }

  .arrow-button {
    width: 1.5rem;
    height: 1.5rem;
  }

  .arrow-button svg {
    width: 1rem;
    height: 1rem;
  }
}

.testo-sub {
  font-family: var(--font-style);
  color: var(--high-color);
  font-weight: 600;
  font-size: 20px;
}

.testo-main {
  font-family: var(--font-style);
  color: #fff;
  font-weight: 600;
  font-size: 50px;
}

.testomonial {
  background-color: #091b19;
  border-radius: 56px;
}

#rating-stars {
  margin-bottom: 6px;
  font-size: 1.3em;
  color: #1f93ff;
}

#rating-stars .star {
  margin-right: 2px;
}

/* Testomonial */

/* FAq */
/* .accordion-button,
.accordion-body,
.accordion-item {
  background: none !important;
  /* box-shadow: none !important; */
/* border-bottom: 1px solid white !important; */
/* } */

.accordion-button,
.accordion-body,
.accordion-item {
  background: none !important;
  /* box-shadow: none !important; */
}

.collapsed {
  border-bottom: 1px solid #ffffff80 !important;
}

.accordion {
  --bs-accordion-border-width: 0;
  --bs-accordion-border-radius: 0;
}
.accordion-button::after {
  background-image: url("/assets/images/plus.png");
  background-size: cover;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("/assets/images/plus_resized_60x60.png"); /* Escaped space */
}

.text-light {
  font-family: var(--font-style);
}

.faq-content .faq-sub {
  color: var(--high-color);
  font-family: var(--font-style);
  font-size: 20px;
  font-weight: 600;
}

.faq-content .faq-main {
  color: #ffffff;
  font-weight: 600;
  font-family: var(--font-style);
  font-size: 62px;
}

/* contact us */
.contact-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-touch {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-title {
  color: var(--high-color);
  font-family: var(--font-style);
  font-weight: 600;
  font-size: 20px;
}

.contact-title-par {
  color: #ffffff;
  font-family: var(--font-style);
  font-weight: 600;
  font-size: 50px;
}
.contact-title-para {
  color: var(--high-color);
  font-family: var(--font-style);
  font-weight: 600;
  font-size: 50px;
}
.contact-touch-text {
  color: #ffff;
  font-family: var(--font-style);
  font-weight: 600;
  font-size: 24px;
}
.contact {
  color: #ffffffd9;
}
.contact-form-text {
  color: #ffffffd9;
  font-family: var(--font-style);
  font-weight: 400;
  font-size: 19px;
}

.contact-form-conatiner {
  padding: 4rem 3rem;
  border-radius: 8px;
  border: 1px solid #738c7780;
  background-color: #021210;
}

.contact-container {
  position: relative; /* Needed so ::before can position absolutely inside */
  overflow: hidden;   /* Optional: prevents overflow from absolute child */
}

.contact-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background: url('/assets/images/contact-vec.png') no-repeat center center;
  background-size: contain; /* Ensures full image is visible */
  opacity: 1; /* Adjust this as needed */
  z-index: -1; /* Keeps the image behind your content */
  pointer-events: none;
}



.in-form {
  background-color: #080c0c;
  padding: 12px;
  color: #ffff;
  outline: none;
  border: 1px solid #738c7780;
  border-radius: 8px;
}
.sub-btn button {
  font-weight: 600;
  font-size: 17px;
  padding: 13px 20px;
  outline: none;
  border: none;
  border-radius: 8px;
}
/* From Uiverse.io by adamgiebl */
.sub-btn button {
  font-family: var(--font-style);
  font-size: 20px;
  background-color: var(--high-color);
  color: #092a29;
  padding: 0.7em 1em;
  padding-left: 0.9em;
  display: flex;
  align-items: center;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
}

.sub-btn button span {
  display: block;
  margin-left: 0.3em;
  transition: all 0.3s ease-in-out;
}

.sub-btn button svg {
  display: block;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
}

.sub-btn button:hover .svg-wrapper {
  animation: fly-1 0.6s ease-in-out infinite alternate;
}

.sub-btn button:hover svg {
  transform: translateX(1.2em) rotate(45deg) scale(1.1);
}

.sub-btn button:hover span {
  transform: translateX(5em);
}

.sub-btn button:active {
  transform: scale(0.95);
}

@keyframes fly-1 {
  from {
    transform: translateY(0.1em);
  }

  to {
    transform: translateY(-0.1em);
  }
}

form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
/* Footer */

footer {
  background-color: #091b19;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  padding: 45px 20px;
}

.soc-icon ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin-bottom: 0;
}
.soc-icon ul lu {
  text-decoration: none;
}

.footer-text {
  color: #d9e2f2;
  font-family: var(--font-style);
  font-weight: 500;
  font-size: 16px;
}

.footer-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-list-item ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-decoration: dashed;
  list-style: none;
  color: #d9e2f2;
}
.footer-list-item .footer-title {
  font-family: var(--font-style);
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
}
.footer-list-item ul li a {
  color: #d9e2f2;
}

hr {
  color: #b2c4e6;
}

.footer-year {
  display: flex;
  justify-content: space-between;
}
.year-title {
  color: #d9e2f2;
  font-family: var(--font-style);
}

.year-pri ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.year-pri ul li a {
  color: #d9e2f2;
  font-family: var(--font-style);
}

.footer-list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
/* Navbar Responsive */
.nav-respo {
  display: none;
}

.offcanvas {
  height: 100vh !important;
}
@media only screen and (max-width: 999px) {
  nav {
    display: none;
  }
  .nav-respo {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-100%);
    animation: slideDown 1s ease-out forwards;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0000004d;
    backdrop-filter: blur(20px);
    z-index: 1100;
    padding: 9px 27px;
  }
  .hero-container {
    height: 150vh;
  }
}
@media only screen and (max-width: 500px) {
  .hero-container {
    height: 150vh;
  }
}
