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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}



/* Flex the navhead and justify content */
.navhead {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center; 
  padding: 0.1em 5em; 
  background-color: white;
  transition: transform 0.3s ease, opacity 0.3s ease;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.logo img {
  max-height: 32px; /* or 32px */
  height: auto;
  display: block;
}


.nav-btns {
  display: flex;
  padding: 1em 3em;
  gap: 0.5rem;
  align-items: center;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem; 
}

.nav-links a{
  text-decoration: none;
  color: #000000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.nav-links a:hover {
  color: #385ff6
}

.nav-btns .nav-call{
  display: flex;
  align-items: center;
  gap:0.5rem;
  border: 1px;
  border-color: #E1E4EA;
  border-style: solid;
  padding: 6px;
}



/* Style the 'contact sales button */
.nav-btns .sales-btn {
  background-color: #005DFD;
  padding: 8px 24px;
  border-radius: 2px;
  color: white; /* Text color */
  text-decoration: none; /* Remove underline */
}


/* hide by default */
/* Hamburger base */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  z-index: 1100; /* stays above the menu */
}

/* Hamburger bars */
.nav-toggle .bar {
  width: 24px;
  height: 2px;
  background-color: #000;
  transition: all 0.3s ease;
}

/* "X" effect when nav is open */
.navhead.open .nav-toggle .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navhead.open .nav-toggle .bar:nth-child(2) {
  opacity: 0;
}
.navhead.open .nav-toggle .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero section styles */

.hero {
  background-color: #edf4ff; 
  padding: 9rem 1rem 3rem;
  text-align: center;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  color: #1a1a1a;
  font-family: "Archivo", sans-serif;
}

.hero-text .highlight {
  color: #3366ff; /* blue "Identity" */
}

.hero-cta-btn {
  background-color: #3366ff;
  color: white;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  margin-top: 1rem;
  cursor: pointer;
  font-family: "plus Jakar", sans-serif;
  font-weight: 500;
  font-size: 1rem;
}

.hero-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 3rem auto 0;
  align-items: end;
}

.hero-gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* Partners section styles */

.partners-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 3rem;
  background-color: #ffffff; /* white background */
}

.partners-gallery img {
  max-width: 10rem;
  width: 100%;
  height: 5rem;
  object-fit: contain;
  transition: transform 0.3s ease;

}



/* About us section styles  */

.about-us {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 4rem 1.5rem;
  max-width: 90%;
  margin: 0 auto;
}

.about-content {
  flex: 1 1 45%;
}

.about-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.section-label {
  color: #3366ff;
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.section-description{
  color: #000000;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  font-family: "Archivo", sans-serif;
}

.about-content h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.4;
  color: #1a1a1a;
}

.about-content .description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: gray;
  max-width: 90%;
  font-family: "plus Jakarta Sans", sans-serif;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat-item h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #000;
  font-family: "Archivo", sans-serif;
}

.stat-item p {
  font-size: 1rem;
  color: #666;
  font-family: "Plus Jakarta Sans", sans-serif;
}


/* Products styles */

.products {
  padding: 4rem 6rem;
  max-width: 100%;
  margin: 0 auto;
  background-color: #f9faff;
}

.products-header {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-section-label {
  color: #3366ff;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: "plus Jakarta Sans", sans-serif;
}

.products-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #000;
  font-family: "Archivo", sans-serif;
  max-width: 30rem;
}

.products-header .description {
  font-size: 1rem;
  color: gray;
  max-width: 30rem;
  line-height: 1.6;
  font-family: "plus Jakarta Sans", sans-serif;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Force 2 items per row */
  gap: 2rem;
}


.product-card {
  background: white;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-icon {
  width: 2.5rem;
  height: auto;
  margin-bottom: 1rem;
}

.product-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #000;  
  font-family: "Archivo", sans-serif;

}

.product-card p {
  font-size: 0.9rem;
  color: gray;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-family: "plus Jakarta Sans", sans-serif;
}

.product-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.product-card ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-family: "plus Jakarta Sans", sans-serif;
}

.product-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #3366ff;
  font-weight: bold;
}

.product-btn {
  align-self: start;
  padding: 0.75rem 1.5rem;
  background-color: #3366ff;
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.product-btn:hover {
  background-color: #254eda;
}

/* Industries section style */


.industries {
  padding: 4rem 1.5rem;
  max-width: 90%;
  margin: 0 auto;
}

.industry-head h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.5;
  color: #111;
  max-width: 60rem;
  margin-bottom: 2rem;
  font-family: "Archivo", sans-serif;
}

.industry-head .highlight {
  color: #3366ff;
}

.industry-images {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-bottom: 3rem;
  align-items: stretch; /* ensures equal height alignment */
}

.image-stack {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex: 1 1 40%;
}

.image-stack img {
  flex: 1;
  object-fit: cover;
  height: 100%;
  border-radius: 0.25rem;
}

.main-image {
  flex: 1 1 60%;
  display: flex;
}

.main-image img {
  width: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
  height: 100%;
}


/* Accordion */

.accordion {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* aligns accordion to the right */
  gap: 1.5rem;
  max-width: 50rem;
  margin-left: auto;
}

.accordion .label {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #555;
  align-self: flex-start; /* label stays on the left */
  font-family: "Plus Jakarta Sans", sans-serif;
}

.accordion-item {
  width: 100%;
  border-top: 1px solid #ddd;
  padding: 1.25rem 0;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.accordion-header .number {
  font-size: 1.25rem;
  font-weight: 600;
  margin-right: 1rem;
  color: #000;
  width: 3rem;
  font-family: "Archivo", sans-serif;
}


.accordion-header h3 {
  flex: 1;
  font-size: 1.25rem;
  font-weight: 600;
  color: #111;
  font-family: "Archivo", sans-serif;
}

.accordion-header .icon {
  font-size: 1.25rem;
  font-weight: bold;
  color: #333;
  transition: transform 0.3s ease;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  transition: max-height 0.4s ease;
  margin-top: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
}



/* When open */
.accordion-item.open .accordion-body {
  max-height: 20rem;
  margin-top: 1rem;
}

/* Flip the + icon when open */
.accordion-item.open .accordion-header .icon {
  transform: rotate(90deg); /* turns + into × */
}

/* Background color when accordion is open */
.accordion-item.open {
  background-color: #edf4ff; /* or any blue tone you like */             /* makes sure text is readable */
  border-radius: 0.5rem;
  padding: 1rem;
  transition: background-color 0.3s ease;
}

/* Make sure nested text stays visible */
.accordion-item.open h3,
.accordion-item.open .number,
.accordion-item.open .accordion-body,
.accordion-item.open .icon {
  color: #1a1a1a;
}



/* Testimonial section styles  */

.testimonials {
  padding: 4rem 1.5rem;
  max-width: 90%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.testimonial-header {
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonial-section-label {
  color: #3366ff;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.testimonial-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #000;
  font-family: "Archivo", sans-serif;
  max-width: 30rem;
}


.testimonial-header .description {
  font-size: 1rem;
  color: gray;
  line-height: 1.5;
  font-family: "Plus Jakarta Sans", sans-serif;
  max-width: 30rem;
}

.carousel-wrapper {
  position: relative;
}

.carousel-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: white;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.5rem;
  cursor: pointer;
}

.testimonial-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 3rem;
}

.testimonial-card {
  min-width: 28rem;
  max-height: 28rem;
  height: 18rem;
  overflow: hidden;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #f3f4f7;
}



.testimonial-card.dark {
  background-color: #0e1a51;
  color: #fff;
}

.testimonial-card .quote {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-family: 400;
}

.testimonial-card .author {
  font-weight: 600;
  font-size: 1rem;
  font-family: "plus Jakarta Sans", sans-serif;
}

.testimonial-card .author span {
  display: block;
  font-weight: 400;
  font-size: 0.875rem;
  color: inherit;
}

.testimonial-carousel::-webkit-scrollbar {
  height: 0.15rem; /* thin scrollbar */
}

.testimonial-carousel::-webkit-scrollbar-track {
  background: #e0e4eb; /* light gray track */
  border-radius: 1rem;
}

.testimonial-carousel::-webkit-scrollbar-thumb {
  background-color: #3366ff; /* scrollbar thumb color */
  border-radius: 1rem;
}

/* Let's work together styles */

.cta {
  background-color: #111; /* deep black */
  color: #fff;
  padding: 6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 77rem;
  margin: auto;
}

/* Optional: geometric overlay with pseudo elements */
.cta::before,
.cta::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.04); /* faint white shapes */
  z-index: 0;
}

.cta::before {
  width: 20%;
  height: 60%;
  top: 0;
  left: 0;
}

.cta::after {
  width: 20%;
  height: 60%;
  bottom: 0;
  right: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 48rem;
}

.cta-content h2 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: "Archivo", sans-serif;
  font-family: 700;
}

.cta-content p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 36rem;
  margin: 0 auto 2rem;
  color: #ccc;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
}

.cta-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  color: #000;
  background-color: #fff;
  border-radius: 0.25rem;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
  font-family: 'plus Jakarta Sans', sans-serif;
  font-family: 500;
}

.cta-btn:hover {
  background-color: #f0f0f0;
}


/* Footer styles */

.footer {
  display: flex;
  justify-content: space-around;
  gap: 15rem;
  padding: 6rem;
  background-color: #fff;
}

.footer-left {
  flex: 1 1 100%;
  max-width: 22rem;
  color: #333;
}

.footer-left p {
  margin-bottom: 1rem;
  line-height: 1.6;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
}

.social-icons a {
  color: #000;
  font-size: 1.25rem;
  margin-right: 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #3366ff;
}

.footer-links {
  display: flex;
  flex: 1 1 60%;
  gap: 10rem;
  flex-wrap: wrap;
  min-width: 18rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
}

.footer-links a {
  text-decoration: none;
  color: #000;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #3366ff;
}



/* Mobile menu dropdown */
@media (max-width: 768px) {
  .navhead {
    flex-wrap: wrap;
    padding: 1em 1.5em;
    width: 100vw;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links,
  .nav-btns {
    display: none;
    width: 100%;
    background: white;
  }

  .navhead.open .nav-links,
  .navhead.open .nav-btns {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    gap: 1rem;
    align-items: flex-start;
  }

  .nav-links a,
  .sales-btn,
  .nav-call {
    width: 100%;
    padding: 0.75em 1.5em;
  }

  .nav-call {
    border: none; /* simplify for mobile */
    justify-content: flex-start;
  }
}

/* About use mobile  */

@media (max-width: 768px) {
  .about-us {
    flex-direction: column;
    text-align: center;
    padding: 3rem 1rem;
  }

  .about-content,
  .about-image {
    flex: 1 1 100%;
  }

  .about-content .description {
    max-width: 100%;
    margin-inline: auto;
  }

  .stats {
    justify-content: center;
  }
}

/* products section mobile  */

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr; /* Stack on small screens */
  }

  .products-header {
    text-align: left;
  }

  .products {
    padding: 3rem 1rem;
  }
}


/* Industry mobile  */

@media (max-width: 768px) {
  .industry-images {
    flex-direction: column;
    height: auto;
  }

  .image-stack {
    display: hidden;
  }

  .image-stack img,
  .main-image img {
    height: auto;
    width: 100%;
  }

  .image-stack img {
    display: none;
  }
}

/* Testimonial mobile  */

@media (max-width: 768px) {
  .testimonial-card {
    min-width: 100%;
    height: auto;           /* reset */
    aspect-ratio: auto;     /* disable */
    max-height: none;
  }

  .carousel-btn {
    display: none; /* optional: hide on mobile, allow swipe */
  }

  .testimonial-header{
    flex-direction: column;
    align-items: flex-start;
  }
}


/* Lets work together mobile */

@media (max-width: 600px) {
  .cta {
    padding: 4rem 1rem;
  }

  .cta-content p {
    font-size: 0.95rem;
  }
}

/* footer mobile */

@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .footer-links {
    width: 100%;
    justify-content: flex-start;
    gap: 2rem;
  }

  .footer-links ul {
    min-width: 8rem;
  }
}

@media (max-width: 480px) {
  .partners-gallery {
    gap: 1rem;
    padding: 1.5rem;
  }

  .partners-gallery img {
    max-width: 6rem;
    height: 3.5rem;
  }
}







