*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Nunito", sans-serif;
  margin: 0;
  padding: 0;
  color: black;
  background-color: #ffffff;
}

img.responsive-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1rem auto;
}

h1,
h2,
h3,
h4 {
  text-align: center;
  margin: 1rem 0;
}


/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1c1a32;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 6px solid rgba(255, 255, 255, 0.2);
  border-top: 6px solid #6852e1;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}



/* custom text section */

.custom-content-section {
  background-color: #f6f8fc;
  color: #1c1a32;
  width: 100%;
  padding: 2rem 1rem;
}

.custom-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.custom-header {
  background-color: #6852e1;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 1rem;
  text-align: center;
}

.custom-header h2 {
  color: white;
  margin: 0;
}

.custom-content-box {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  margin-top: 2rem;
  color: #1c1a32;
  text-align: left;
}

.custom-content-box p {
  font-size: 1rem;
  line-height: 1.6;
}

.custom-image {
  display: block;
  margin: 1.5rem auto;
  max-width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}


.custom-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
  text-align: left;
}

.custom-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

.custom-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #6852e1;
  font-weight: bold;
}




/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #1c1a32;
  padding: 1rem;
  border-bottom: 1px solid #1c1a32;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.25rem;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  position: relative;
}

.logo-primary {
  color: #6852e1;
  /* Purple for 'ARGON' */
}

.logo-secondary {
  color: white;
  /* White for 'DATA' */
}


.logo::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -3px;
  left: 0;
  background-color: #6852e1;
  transition: width 0.3s ease;
}

.logo:hover::after {
  width: 100%;
}

/* Navigation */
.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  z-index: 1001;
}

.hamburger {
  width: 25px;
  height: 2px;
  background-color: white;
  display: block;
  position: relative;
  transition: background 0.3s ease-in-out;
}

.hamburger::before,
.hamburger::after {
  content: '';
  width: 25px;
  height: 2px;
  background-color: white;
  position: absolute;
  left: 0;
  transition: all 0.3s ease-in-out;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

/* Animated "X" */
.nav-toggle.active .hamburger {
  background-color: transparent;
}

.nav-toggle.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.nav-toggle.active .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}




.nav {
  display: flex;
  gap: 1rem;
}

.nav-list {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
  gap: 1rem;
}

.nav-list li a {
  background: none;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: normal;
  font-size: 0.875rem;
  padding: 0.5rem;
  border-radius: 0;
  display: inline-block;
  text-align: center;
  position: relative;
  transition: color 0.3s ease;
}

.nav-list li a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #6852e1;
  transition: width 0.3s ease;
}

.nav-list li a:hover::after {
  width: 100%;
}

.nav-list li a:hover {
  background: none;
  color: #ffffff;
}



/* Hero with Video */
.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-right {
  align-items: flex-start;
  text-align: left;
}

.hero-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      #1c1a32 0%,
      /* fully opaque at top */
      rgba(28, 26, 50, 0.7) 50%,
      /* mid-opacity */
      rgba(28, 26, 50, 0.4) 100%
      /* very light at bottom */
    );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 400;
  /* Normal weight */
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #F7F7F7;
  font-weight: 400;
  /* Normal weight */
}


.hero-split {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  gap: 2rem;
}

.hero-left,
.hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #F7F7F7;
  font-size: 1rem;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  /* adds vertical space between items */
}

.benefits-list li {
  display: flex;
  align-items: center;
  /* vertical alignment */
  gap: 1rem;
  /* space between circle and text */
}

.benefits-list li:hover::before {
  transform: scale(1.5);
}

.benefits-list li::before {
  content: '+';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  min-width: 1.5rem;
  /* prevents squish */
  background-color: #6852e1;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 50%;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}



/* Buttons */
.btn-primary,
.button {
  background-color: #6852e1;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: normal;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: background 0.3s ease;
}

.btn-primary:hover,
.button:hover {
  background-color: #1c1a32;
}

.button.dark {
  background: black;
  color: white;
}

/* First text */

.info-split {
  display: flex;
  flex-wrap: wrap;
  background: #ffffff;
  ;
  justify-content: space-between;
  align-items: stretch;
  max-width: 1200px;
  margin: 3rem auto;
  gap: 2rem;
  padding: 0 1rem;
}

.info-block-left,
.info-block-right {
  width: 48%;
  background: #1c1a32;
  color: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.info-block-left:hover,
.info-block-right:hover {
  transform: translateY(-5px);
}

.info-block-left h3,
.info-block-right h3 {
  margin-top: 0;
  color: #ffffff;
}


.custom-quote {
  border-left: 5px solid #6852e1;
  padding-left: 1.25rem;
  margin: 2rem 0;
  color: #F6F8FC;
  /* same as the line */
  font-weight: 700;
  /* bolder text */
  font-size: 1.5rem;
  /* bigger text */
  line-height: 1.6;
}


.advantages-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.advantages-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  margin: 0;
  padding: 0;
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}


/* CTA */

.cta-section {
  background-color: #ffffff;
  /* or #f6f8fc if you want a subtle background */
  padding: 3rem 1rem;
  text-align: center;
}

.cta-wrapper {
  display: flex;
  justify-content: center;
}


/* Trusted by */


.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slide-track {
  display: flex;
  gap: 2rem;
  width: calc(12 * 200px + 11 * 2rem);
  /* 12 logos, 200px wide, 2rem gap */
  animation: scroll 40s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.slide {
  flex: 0 0 auto;
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.slide img {
  max-height: 100px;
  width: auto;
  max-width: 100%;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.slide img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Manual slider reports */


.manual-slider-section {
  background-color: #F6F8FC;
  /* same as header */
  padding: 4rem 1rem;
  overflow-x: hidden;

}

.manual-slider-container {
  max-width: 1300px;
  margin: 0 auto;
}

.slider-wrapper {
  overflow: hidden;
}

.slider-images {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.slide-card {
  width: 300px;
  height: 350px;
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.slide-img {
  height: 50%;
  max-width: 70%;
  margin: 0 auto;
  object-fit: contain;
  display: block;
  background: white;
}

.slide-text-box {
  height: 50%;
  padding: 1rem;
  background-color: white;
  color: #1c1a32;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
}

.slide-text-box p {
  color: #000000;
}

.slide-text-box h3 {
  color: #6852e1;
  font-size: 1.25rem;
  margin: 0;
  text-align: center;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}



/* services */

.a-main {
  color: white;
}

.services-grid-section {
  background-color: #F6F8FC;
  color: black;
  width: 100%;
  padding: 4rem 1rem;
}

.services-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.services-header {
  background-color: #6852e1;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 1rem 1rem;
}

.services-header h2,
.services-header p {
  text-align: center;
  color: white;
}

.services-header a {
  color: gold;
  text-decoration: underline;
}

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
}

/* Link wrapper makes the whole card clickable */
.service-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

/* Card Styling */
.service-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  position: relative;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Hover Effect */
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Icon */
.service-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
}

/* Headings */
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #1c1a32;
}

/* Description Text */
.service-card p {
  font-size: 0.95rem;
  color: #1c1a32;
  flex-grow: 1;
}

/* Arrow */
.service-arrow-link {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 1.25rem;
  color: #6852e1;
  transition: transform 0.2s ease, color 0.2s ease;
}

.service-card:hover .service-arrow-link {
  transform: translateX(3px);
  color: #1c1a32;
}



/* footer */

.site-footer {
  background-color: #1c1a32;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.9rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
}

.footer-brand .logo-primary {
  color: #6852e1;
}

.footer-brand .logo-secondary {
  color: white;
}

.footer-links {
  margin: 1rem 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #6852e1;
}

.footer-copy {
  margin-top: 1rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    flex-direction: column;
    background-color: #1c1a32;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
  }



  .nav.open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list li a {
    width: 100%;
    padding: 1rem;
  }



  .services-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .service-card-link {
    width: 80%;
  }


  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-split {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .hero-left,
  .hero-right {
    width: 100%;
    align-items: center;
  }

  .benefits-list {
    padding-left: 0;
  }

  .benefits-list li {
    margin-bottom: 0.5rem;
  }

  .info-block-left,
  .info-block-right {
    width: 100%;
  }

  .slider-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
  }

  .slider-wrapper::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
  }

  .slider-images {
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 1rem;
  }

  .slide-card {
    flex-shrink: 0;
    width: 250px;
    height: 320px;
  }
}


@media (max-width: 480px) {}