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

body {
  font-family: 'Inter', sans-serif;
  background: white;
  color: #000;

}

body.dark-mode {
  background: linear-gradient(226deg, black, #1e1e1e);
  color: #f1f5fa;
}

header {
  padding: 0px 40px;
  /* increased horizontal padding */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  backdrop-filter: blur(12px);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(90deg, rgba(0, 64, 255, 0.10) 0%, rgba(184, 191, 196, 0.18) 100%);
  border-bottom: 1px solid #dfe6ee;
  backdrop-filter: blur(12px);
}

.navbar {

  max-width: 1300px;
  /* slightly wider */
  margin: auto;
  background: transparent;
  backdrop-filter: none;
  border-radius: 20px;
  padding: 30px 30px 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;


}

body.dark-mode header {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 5%, rgba(34, 34, 34, 0.5) 100%);
  border-bottom: 1px solid #2c3e50;
}

body.dark-mode .navbar {
  background: transparent;
  color: transparent;
}

.logo {
  width: 6vw;
  max-width: 160px;
  height: auto;
  aspect-ratio: 2 / 1;
  display: inline-block;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
  /* Light mode shadow */
  transition: filter 0.3s ease;
  background: url('../img/vypa_logo.png') center/contain no-repeat;
}

body.dark-mode .logo {
  animation: logoGlow 2s infinite ease-in-out;
  background: url('../img/vypa_logo_white.png') center/contain no-repeat;

}



@keyframes logoGlow {

  0%,
  100% {
    filter: drop-shadow(0 0 6px rgba(255, 255, 180, 0.4));
  }

  50% {
    filter: drop-shadow(0 0 12px rgba(255, 255, 220, 0.8));
  }
}

body.dark-mode .contact-icon {
  background-color: #1a1a1a;
}
body.dark-mode .contact-icon:hover {
  background-color: #343535;
}

.contact-icon:hover {
  background-color: #0077cc;
}
@keyframes slideUpFadeIn {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.contact-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #44aaff;
  color: white;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 999;
  opacity: 0;
  transform: translateY(40px);
  animation: slideUpFadeIn 0.6s ease-out 0.4s forwards;
  transition: background-color 0.3s ease;
}

.contact-icon:hover {
  background-color: #0077cc;
}

nav {
  display: flex;
  gap: 60px;
  /* more space between nav links */
}

nav a {

  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.18rem;
  /* larger nav text */
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

nav a:hover {
  color: #0070ff;
}
:root {
  --nav-active: #0070ff;
}

/* keep your existing nav styles; just add these */
nav a { position: relative; }

nav a.active,
nav a[aria-current="page"] {
  color: var(--nav-active);
  
}

nav a.active::after,
nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -8px;           /* adjust to taste */
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  opacity: 0.9;
}

/* Mobile overlay nav: same highlight color */
.mobile-nav a.active,
.mobile-nav a[aria-current="page"] {
  color: var(--nav-active);
}

/* Optional: tiny glow in dark mode (keeps the same highlight color) */
body.dark-mode nav a.active,
body.dark-mode nav a[aria-current="page"] {
  text-shadow: 0 0 12px rgba(245, 242, 242, 0.55);
}


.buttons {
  display: flex;
  gap: 18px;
  /* more space between buttons */
}

.btn-outline {
  position: relative;
  overflow: hidden;
  padding: 12px 28px;
  /* bigger buttons */
  border: 1px solid #0070ff;
  border-radius: 999px;
  background: white;
  color: #0070ff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  z-index: 1;
}

#darkModeToggle {
  padding: 8px 16px;
  border: 1px solid #0070ff;
  border-radius: 999px;
  background: white;
  color: #0070ff;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

#darkModeToggle:hover {
  background: #0070ff;
  color: white;
}

.btn-outline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: #0070ff;
  width: 0;
  height: 100%;
  z-index: 0;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}


.btn-outline:hover::before {
  width: 100%;
}

.btn-outline:hover {
  color: #fff;
 
}

.btn-outline span {
  position: relative;
  z-index: 2;
}

body.dark-mode .btn-outline {
  background: #1a1a1a;
  color: #ffff;
  border-color: #fff;
}

body.dark-mode #darkModeToggle {
  background: #181c2a;
  color: #44aaff;
  border-color: #44aaff;
}

body.dark-mode #darkModeToggle:hover {
  background: #44aaff;
  color: white;
}

body.dark-mode .btn-outline:hover {
  color: #fff;
  background: #2f3030;
}
body.dark-mode .btn-outline::before {
  background: #4d4e4e;
}

.btn-filled {
  position: relative;
  overflow: hidden;
  padding: 12px 28px;
  /* bigger buttons */
  border-radius: 999px;
  background: #0070ff;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  z-index: 1;
}

.btn-filled::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #111111;
  z-index: 0;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-filled:hover::before {
  width: 100%;
}

.btn-filled span {
  position: relative;
  z-index: 2;
}

body.dark-mode .btn-filled {
  background: #1a1a1a;
  color: #ffff;
}

body.dark-mode .btn-filled:hover {
  color: #fff;
}
body.dark-mode .btn-filled::before {
  background: #363636;
}

/* HERO */
/* HERO SECTION */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10% 8% 52px 8%;
  gap: 40px;
  min-height: 90vh;
  flex-wrap: wrap;
  position: relative;
  background: url('../img/vecteezy_colorful-abstract-shapes-and-lines-in-a-vibrant-design_50037590.jpg') center/cover no-repeat;
  background: url('../img/abstract_lines_transparent busy.png') center/cover no-repeat;
}


.hero-left {
  flex: 1;
  animation: fadeUp 1.2s ease-out forwards;
  transform: translateY(30px);
  opacity: 0;
}

.hero-left h1 {
  font-size: clamp(2.5rem, 6vw, 6rem);
  color: #111;
  margin-bottom: 20px;
  line-height: 1.05;
  word-spacing: -6px;
}

.hero-left p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 30px;
  max-width: 500px;
}

.highlight {
  background: linear-gradient(to right, #0040ff, #44aaff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Right side */
.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 1.2s ease-out forwards;
  transform: translateY(30px);
  opacity: 0;
}

/* If using an image instead of video */
.hero-visual {
  width: 100%;
  max-width: 500px;
  animation: fadeUp 1s ease-out forwards;
  transform: translateY(30px);
  opacity: 0;
}

/* If using a looping video instead */
.hero-video {
  width: 100%;
  max-width: 700px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
  animation: fadeUp 1s ease-out forwards;
  transform: translateY(30px);
  opacity: 100;
  object-fit: cover;
}

/* Animation */
@keyframes fadeUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero-buttons{
  margin-left: 55px;
}
  .hero {
    flex-direction: column;
    padding: 120px 5%;
    text-align: center;
  }

  .hero-left,
  .hero-right {
    transform: none;
    opacity: 1;
    animation: none;
  }

  .hero-left h1 {
    font-size: 2.5rem;
  }

  .hero-video,
  .hero-visual {
    max-width: 90%;
    margin-top: 30px;
  }
}



body.dark-mode nav a {
  color: #f1f5fa;
}

body.dark-mode nav a:hover {
  color: #44aaff;
}

body.dark-mode .hero {
  background: url('../img/abstract_lines_transparent busy (white).png') center/cover no-repeat;
}

body.dark-mode .hero-text h1 {
  color: #fff;
}

body.dark-mode .hero-text p {
  color: #f1f5fa;
}

body.dark-mode .hero-left h1 {
  color: #f1f5fa;
}

body.dark-mode .hero-left p {
  color: #f1f5fa;
}

body.dark-mode .hero-video {
  box-shadow: 0 0 24px rgba(100, 200, 255, 0.15);
}

body.dark-mode .hero-visual {
  box-shadow: 0 0 24px rgba(100, 200, 255, 0.15);
}

/*features section*/

.section-subtext {
  color: #ff4d4d;
}

.body.dark-mode .section-subtext {
  color: #d1d5db;
}



.features-band-vypa {
  background: url('../img/abstract_lines_transparent\ busy.png') center / cover no-repeat;
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 60px 60px;
}

body.dark-mode .features-header .section-title {
  color: #f1f5fa;
}

body.dark-mode .footevents {
  color: #f1f5fa;
}

body.dark-mode .seamless {
  color: #d1d5db;
}

.features-header .section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #000
}

.features-header #adsec-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #f8f5f5
}






.features-header p {
  font-size: 1.1rem;
  font-weight: 500;
  color: #ff4d4d;
  margin-top: 10px
}


body.dark-mode .features-header p {
  color: #ecf010;
}


.features-wrapper-vypa {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
  perspective: 1000px;
}


.feature-card-vypa {
  opacity: 0;
  transform: translateY(40px) scale(.95);
  transition: opacity .6s ease, transform .2s ease;
  background: rgba(230, 238, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 24px;
  padding: 32px;
  max-width: 320px;
  box-shadow: 0 25px 40px rgba(0, 0, 0, .1);
  will-change: transform;
}


.feature-card-vypa.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.feature-card-vypa:hover {
  transform: translateY(-20px) scale(1.05);
  box-shadow: 0 30px 60px rgba(0, 60, 255, .25);
}

.feature-card-vypa h3 {
  color: #003cff;
  font-size: 1.35rem;
  margin: 20px 0 12px;
}

.feature-card-vypa p {
  color: #222;
  font-size: 1rem;
  line-height: 1.6;
}

body.dark-mode .features-tagline-vypa p {
  color: #d1d5db;
}

body.dark-mode .feature-card-vypa {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(100, 200, 255, 0.1);
}

body.dark-mode .feature-card-vypa h3,
body.dark-mode .feature-card-vypa p {
  color: #f1f5fa;
}

.vypa-gradient-text {
  background: linear-gradient(to right, #081cfc, #228eff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.features-tagline-vypa {
  margin-top: 60px;
}

.features-tagline-vypa h4 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #0070ff;
}

.features-tagline-vypa p {
  font-size: 1rem;
  color: #444;
  margin-top: 10px;
}

.footevents {
  color: #000;
}

.seamless {
  color: #000;
}

.vypa-gradient-text {
  background: linear-gradient(to right, #081cfc, #228eff);
  -webkit-background-clip: text;
  background-clip: text;
  color: #081cfc;
}

.cta-highlight-section {
  background: linear-gradient(75deg, #003cff 0%, #77039b 100%);
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}
.changing-headline {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

#morph-word {
  display: inline-block;
  letter-spacing: 1px;
  white-space: nowrap;
}

.letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.letter.visible {
  opacity: 1;
  color: rgb(246, 246, 8);
  transform: translateY(0);
}

.cta-card {
  max-width: 640px;
  margin: 0 auto;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 32px;
  padding: 48px 36px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .25);
}

.cta-card h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px
}

.cta-card p {
  font-size: 1.1rem;
  margin-bottom: 28px
}

.cta-btn {
  display: inline-block;
  padding: 14px 36px;
  text-decoration: none;
  border-radius: 999px;
  background: #fff;
  color: #003cff;
  font-weight: 600;
  transition: transform .3s ease, box-shadow .3s ease;
}

.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .25);
}


.features-tagline-vypa {
  margin-top: 80px
}

.features-tagline-vypa h4 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #0070ff
}

.features-tagline-vypa p {
  font-size: 1rem;
  color: #444;
  margin-top: 10px
}

body.dark-mode .cta-card {
  background: #1e2738;
  box-shadow: 0 10px 30px rgba(68, 170, 255, 0.2);
}

body.dark-mode .cta-card h2 {
  color: #44aaff;
}

body.dark-mode .cta-card p {
  color: #ccc;
}


/* INDUSTRIES SECTION */

.industries-section {
  padding: 100px 5%;
  background: linear-gradient(to bottom, #f9fbff, #edf2f7);
  text-align: center;
}


body.dark-mode .industries-header-centered h2 {
  color: #f1f5fa;
}

body.dark-mode .industries-header-centered p {
  color: #d1d5db;
}

body.dark-mode .learn-more-link {
  color: white;
}

body.dark-mode .industry-card-tile {
  background: #060606;
}

body.dark-mode .industry-card-tile p {
  color: #d1d5db;
}

body.dark-mode .industry-card-tile h3 {
  color: #ffff;
}


body.dark-mode .cta-highlight-section,
body.dark-mode .features-band-vypa,
body.dark-mode .industries-section {
  background: url('../img/abstract_lines_transparent busy (white).png') center / cover no-repeat;
}

.industries-grid.fixed-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}


.industries-learn-more {
  margin-top: 40px;
  text-align: center;
}

.learn-more-link {
  font-size: 1rem;
  font-weight: 600;
  color: #003cff;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.learn-more-link:hover {
  border-color: #003cff;
  text-shadow: 0 1px 4px rgba(0, 60, 255, 0.15);
}

.industries-header-centered h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #111;
}

.industries-header-centered p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 60px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  perspective: 1000px;
}

/* Card styling */
.industry-card-tile {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  will-change: transform;
}

.industry-card-tile.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.industry-card-tile img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 16px;
}

.industry-card-tile h3 {
  color: #003cff;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 10px 0 4px;
}

.industry-card-tile p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Tilt effect */
.industry-card-tile:hover {
  transform: scale(1.03) translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 64, 255, 0.15);
}

/* DARK MODE */
body.dark-mode .industries {
  background: linear-gradient(to bottom, #111827, #1f2937);
}

body.dark-mode .industry-left h2,
body.dark-mode .industry-card label {
  color: #f1f5fa;
}

body.dark-mode .industry-left p {
  color: #d1d5db;
}

body.dark-mode .industry-card {
  background: rgba(30, 41, 59, 0.9);
}

/* Animation */
@keyframes fadeUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/*partner section*/
.partners-section {
  padding: 40px 20px;
  background: #f2f2f2;
  text-align: center;
}

.partners-section h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}

.partner-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 40px;
  padding: 20px;
  max-width: 100%;
}

.partner-row img {
  height: 100px;
  max-width: 120px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.partner-row img:hover {
  transform: scale(1.08);
}







.subscribe-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  padding: 80px 5%;
 background: linear-gradient(75deg, #77039b  0%, #003cff 100%);
  border: white solid 1px;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  margin: 80px auto;
  max-width: 1400px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
}

body.dark-mode .subscribe-hero {
  background: url('../img/abstract_lines_transparent busy (white).png') center / cover no-repeat;
  box-shadow: 0 15px 45px rgba(68, 170, 255, 0.1);
}

.subscribe-content {
  flex: 1;
  max-width: 600px;
}

.subscribe-content h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 30px;
}

.subscribe-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.subscribe-form input[type="email"] {
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid #fff;
  outline: none;
  font-size: 1rem;
  flex: 1;
  min-width: 250px;
}

.subscribe-form button {
  padding: 16px 24px;
  border-radius: 12px;
  background-color: #ffffff;
  color: #0040ff;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subscribe-form button:hover {
  background-color: #e0e7ff;
}

.subscribe-illustration {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.subscribe-illustration img {
  max-width: 100%;
  height: auto;
  animation: floatBird 4s ease-in-out infinite;
}


.toggle-switch {
  display: inline-block;
  width: 48px;
  height: 24px;
  position: absolute; top: 24px; right: 32px; z-index: 10;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #595a72;
  transition: .4s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

input:checked+.slider {
  background-color: #2d37ee;
}

input:checked+.slider:before {
  transform: translateX(24px);
}

.subscribe-msg { margin-top: 10px; font-weight: 600; }
.subscribe-msg.ok  { color: #16a34a; }  /* green */
.subscribe-msg.err { color: #ef4444; }  /* red  */
body.dark-mode .subscribe-msg.ok  { color: #22c55e; }
body.dark-mode .subscribe-msg.err { color: #f87171; }



@keyframes floatBird {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}















/*testimonial*/
.testimonial-section {
  background-color: #f9fbff;
  padding: 4rem 2rem;
  text-align: center;
}

body.dark-mode .testimonial-section {
  background: url('../img/abstract_lines_transparent busy (white).png') center / cover no-repeat;

}

.testimonial-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #000;
}

body.dark-mode .testimonial-title {
  color: #f1f5fa;
}

.testimonial-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: nowrap;
}

.testimonial-slide {
  display: none;
  flex: 1 1 auto;
}

.testimonial-slide.active {
  display: flex;
  justify-content: center;
}

.testimonial-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  background: #ffffff;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
  padding: 2rem;
  border-radius: 1.5rem;
  max-width: 1100px;
  text-align: left;

}

.testimonial-img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
  max-width: 600px;
}

.testimonial-brand {
  font-size: 1.2rem;
  font-weight: bold;
  color: #0c1f6c;
  margin-bottom: 0.6rem;
}

body.dark-mode .testimonial-brand {
  color: #e2e7eb;
}

.testimonial-quote {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 1rem;
}

body.dark-mode .testimonial-quote {
  color: #fff;
}

.testimonial-author {
  font-size: 0.95rem;
  color: #777;
}

.testimonial-btn {
  background: none;
  border: 2px solid #0c1f6c;
  color: #0c1f6c;
  border-radius: 50%;
  padding: 0.75rem;
  font-size: 1.2rem;
  cursor: pointer;
  position: relative;
  z-index: 1;
  margin: 0 1rem;
  transition: 0.3s ease;
}

.testimonial-btn:hover {
  background: #0c1f6c;
  color: #fff;
}
body.dark-mode .testimonial-btn:hover {
  border-color: #033966;
  color: #f9fafc;
}

.testimonial-dots {
  margin-top: 1.5rem;
}

.testimonial-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.testimonial-dots .dot.active {
  background-color: #0c1f6c;
}
body.dark-mode .testimonial-dots .dot.active{
  background-color: #4a5066;
}

body.dark-mode .testimonial-title {
  color: #f1f5fa;
}

body.dark-mode .testimonial-btn {
  border-color: #edeff1;
  color: #eef5fc;
}

/* Revert to previous hamburger and mobile nav styling for main.css */

/* Hamburger styles */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1201;
  margin-left: 18px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 2px 0;
  background: #0070ff;
  border-radius: 2px;
  transition: all 0.3s;
}

body.dark-mode .hamburger span {
  background: #44aaff;
}

/* Hamburger open animation */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 32px rgba(0, 64, 255, 0.08);
  z-index: 1200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

body.dark-mode .mobile-nav {
  background: #1a1a1a;
}

.mobile-nav.open {
  display: flex;
  background-color: white;
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
  margin-bottom: 5px;
  height: 200px;
}

.mobile-nav .buttons {
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.mobile-nav a {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0070ff;
  text-decoration: none;
  transition: color 0.2s;
}

body.dark-mode .mobile-nav a {
  color: white;
}

.mobile-nav a[style] {
  color: rgb(250, 92, 92) !important;
}
 .process-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 112, 255, 0.3), transparent);
    width: 80%;
    margin-top: 2px;
    margin-bottom: 15px;

}


@media (max-width: 900px) {
   .subscribe-hero {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 32px 8px;
    margin: 40px auto;
    max-width: 95vw;
    box-sizing: border-box;
    border-radius: 18px;
  }
  .subscribe-content {
    max-width: 100vw;
    padding: 0;
  }
  .subscribe-content h2 {
    font-size: 1.5rem;
    margin-bottom: 18px;
  }
  .subscribe-form {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .subscribe-form input[type="email"] {
    min-width: 0;
    width: 100%;
    font-size: 1rem;
    padding: 12px 10px;
  }
  .subscribe-form button {
    width: 100%;
    padding: 12px 0;
    font-size: 1rem;
  }
  .subscribe-illustration {
    margin-top: 24px;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .subscribe-illustration img {
    max-width: 220px;
    height: auto;
  }
  .navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 50px 12px;
    width: 100vw;
    max-width: 100vw;
    min-width: 0;
    box-sizing: border-box;
    position: relative;
  }
  .hamburger {
    display: flex;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0;
    z-index: 1300;
  }
  .logo {
    position: absolute;
    left: 41%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-width: 100px;
    width: 60px;
    height: 32px;
    z-index: 1200;
  }
  .toggle-switch {
  display: inline-block;
  width: 35px;
  height: 15px;
  position: absolute; top: 14px; right: 15px; z-index: 10;
}
.slider:before {
  height: 10px;
  width: 10px;
  bottom: 3px;
  left: 3px;
}
input:checked+.slider:before {
  transform: translateX(20px);
}



.industries-section {
    padding: 40px 8px;
    border-radius: 18px;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  .industries-header-centered h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }
  .industries-header-centered p {
    font-size: 1rem;
    margin-bottom: 32px;
  }
  .industries-grid,
  .industries-grid.fixed-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 100vw;
    margin: 0 auto;
    padding: 0;
  }
  .industry-card-tile {
    padding: 16px 8px;
    border-radius: 14px;
    min-width: 0;
    box-sizing: border-box;
    max-width: 80vw;
    margin: 0 auto;
  }
  .industry-card-tile img {
    height: 120px;
    border-radius: 10px;
    margin-bottom: 10px;
  }
  .industry-card-tile h3 {
    font-size: 1rem;
    margin: 8px 0 2px;
  }
  .industry-card-tile p {
    font-size: 0.92rem;
    line-height: 1.4;
  }
  .industries-learn-more {
    margin-top: 24px;
  }
  .partners-section,
  .partner-stats {
    padding: 24px 8px;
    border-radius: 12px;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  .partners-section h2,
  .partner-stats h2 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  .partner-row,
  .partner-logos.bottom-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 8px 0;
    justify-content: center;
    align-items: center;
    max-width: 100vw;
    overflow-x: hidden;
  }
  .partner-row img,
  .partner-logos.bottom-row img {
    height: 28px;
    max-width: 60px;
    margin: 0 2px;
    flex: 1 1 40px;
    object-fit: contain;
  }
 .testimonial-section {
    padding: 1.2rem 4px;
  }
  .testimonial-wrapper {
    max-width: 100vw;
    overflow-x: hidden;
    gap: 0.2rem;
  }
  .testimonial-slide,
  .testimonial-slide.active {
    width: 100vw;
    min-width: 0;
    padding: 0;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.7rem;
    max-width: 96vw;
    border-radius: 0.7rem;
    box-sizing: border-box;
    text-align: center;
  }
  .testimonial-img {
    width: 54px;
    height: 54px;
    margin: 0 auto 0.3rem auto;
  }
  .testimonial-text {
    max-width: 96vw;
    text-align: center;
    font-size: 0.95rem;
  }
  .testimonial-brand {
    font-size: 1rem;
  }
  .testimonial-quote {
    font-size: 0.95rem;
  }
  .testimonial-author {
    font-size: 0.85rem;
  }
  .testimonial-btn {
    font-size: 0.95rem;
    padding: 0.3rem;
    margin: 0 0.15rem;
  }
  .testimonial-dots {
    margin-top: 0.7rem;
  }
  .testimonial-dots .dot {
    width: 7px;
    height: 7px;
    margin: 0 2px;
  }

  .footer {
    padding: 24px 8px;
    background: #f9fbff;
    text-align: center;
  }
  .footer-columns {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .footer-column {
    margin-bottom: 12px;
  }
  .footer-column h4 {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  .footer-column ul {
    font-size: 0.95rem;
    padding-left: 0;
  }
  .footer-bottom {
    font-size: 0.9rem;
    margin-top: 16px;
    
  }
  .process-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 112, 255, 0.3), transparent);
    width: 80%;
    margin-top: 2px;
    margin-bottom: 15px;

}

.navbar > nav,
  .navbar > .buttons {
    display: none !important;
  }

  .hamburger {
    display: flex;
    margin-left: -20px;
  }


}


