* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: linear-gradient(135deg, #04092cff, #04092cff, #04092cff);
  color: white;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}


.full-width-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.bg-blobs .blob {
  fill: url(#g1);
  transform-origin: center;
  opacity: 0.7; /* Reduced opacity for subtle effect */
}
.bg-blobs .b1 {
  animation: move1 15s ease-in-out infinite;
}

.bg-blobs .b2 {
  animation: move2 12s ease-in-out infinite;
}

.bg-blobs .b3 {
  animation: move3 18s ease-in-out infinite;
}
@keyframes move1 {
  0% { transform: translate(-20px, 0) scale(0.8); }
  50% { transform: translate(20px, -5px) scale(0.9); }
  100% { transform: translate(-20px, 0) scale(0.8); }
}

@keyframes move2 {
  0% { transform: translate(0, 0) scale(0.7); }
  50% { transform: translate(-15px, 5px) scale(0.8); }
  100% { transform: translate(0, 0) scale(0.7); }
}

@keyframes move3 {
  0% { transform: translate(25px, 0) scale(0.75); }
  50% { transform: translate(-10px, -8px) scale(0.85); }
  100% { transform: translate(25px, 0) scale(0.75); }
}

#stats .container {
  position: relative;
  z-index: 2;
}
.full-width-bg svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hed {
  background: rgba(0, 0, 0, 0.3);
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  z-index: 10;
}

.hed .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 20px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: bold;
  flex-shrink: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #fdbb2d;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

.cta-button {
  background: #39363dff;
  color: #FDBB2D;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  align-self: flex-start;
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Preloader styles remain the same */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #04092c, #1a2a6c);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.6s ease-out;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
  position: relative;
  z-index: 10;
}

.preloader-logo {
  font-size: 3.8rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  animation: logoFadeIn 1.2s ease-out 0.8s forwards;
}

.logo-text {
  display: inline-block;
}

.logo-text:first-child {
  color: #fdbb2d;
  margin-right: 5px;
}

.logo-text.routes {
  color: #ffffff;
}

.preloader-logo::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, transparent, #fdbb2d, transparent);
  opacity: 0;
  animation: underlineFade 0.8s ease-out 2s forwards;
}

.popup-logo {
  font-size: 3rem;
  font-weight: 600;
  color: rgba(253, 187, 45, 0.8);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: absolute;
  top: 50%;
  left: -100%;
  transform: translateY(-50%);
  opacity: 0;
  z-index: 5;
  animation: slideInPopup 2s ease-out 0.2s forwards;
  white-space: nowrap;
}

.loading-bar {
  width: 280px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  margin: 0 auto 1rem;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  animation: barSlideIn 0.8s ease-out 2.2s forwards;
}

.loading-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #fdbb2d, #b21f1f);
  border-radius: 2px;
  animation: loading 2s ease-out 2.2s forwards;
  box-shadow: 0 0 10px rgba(253, 187, 45, 0.3);
}

.loading-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(10px);
  animation: dotsFadeIn 0.6s ease-out 3s forwards;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(253, 187, 45, 0.7);
  animation: dotPulse 1.2s ease-in-out infinite;
}

.dot:nth-child(2) {
  animation-delay: 0.15s;
}

.dot:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes loading {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes logoFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes underlineFade {
  to {
    opacity: 1;
    width: 120px;
  }
}

@keyframes slideInPopup {
  0% {
    opacity: 0;
    transform: translateY(-50%) translateX(-100%);
  }
  30% {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
  70% {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-50%) translateX(100%);
  }
}

@keyframes barSlideIn {
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes dotsFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dotPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

/* Subtle background vehicle */
.vehicle-bg {
  position: absolute;
  bottom: 50%;
  right: 300px;
  z-index: 1;
  opacity: 0;
  animation: vehicleSlideIn 2.5s ease-out 0.5s forwards;
}
.vehicle-bg1 {
  position: absolute;
  bottom: 50%;
  left: 300px;
  z-index: 1;
  opacity: 0;
  animation: vehicleSlideIn 2.5s ease-out 0.5s forwards;
}
.vehicle-bg2 {
  position: absolute;
  bottom: 30%;
  left: 500px;
  z-index: 1;
  opacity: 0;
  animation: vehicleSlideIn 2.5s ease-out 0.5s forwards;
}
.vehicle-bg3 {
  position: absolute;
  bottom: 15%;
  left: 500px;
  z-index: 1;
  opacity: 0;
  animation: vehicleSlideInn 2.5s ease-out 0.5s forwards;
}
.vehicle-bg4 {
  position: absolute;
  bottom: 15%;
  left: 100px;
  z-index: 1;
  opacity: 0;
  animation: vehicleSlideInn 2.5s ease-out 0.5s forwards;
}
@keyframes vehicleSlideIn {
  0% {
    transform: translateX(-150px);
    opacity: 0;
  }
  50% {
    transform: translateX(0);
    opacity: 0.4;
  }
  100% {
    transform: translateX(500px);
    opacity: 0;
  }
}
@keyframes vehicleSlideInn {
  0% {
    transform: translateX(-500px);
    opacity: 0;
  }
  50% {
    transform: translateX(0);
    opacity: 0.4;
  }
  100% {
    transform: translateX(1000px);
    opacity: 0;
  }
}

/* Minimal floating particles */
.preloader-particle {
  position: absolute;
  background: rgba(253, 187, 45, 0.1);
  border-radius: 50%;
  animation: floatParticle 8s linear infinite;
}

.particle-1 {
  width: 12px;
  height: 12px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.particle-3 {
  width: 16px;
  height: 16px;
  top: 70%;
  left: 80%;
  animation-delay: 2s;
}

@keyframes floatParticle {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0.1;
  }
  50% {
    transform: translateY(-15px) translateX(10px);
    opacity: 0.3;
  }
  100% {
    transform: translateY(0) translateX(20px);
    opacity: 0.1;
  }
}

/* Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg, #fdbb2d, #b21f1f);
  color: black;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 0;
  overflow: hidden; /* Key for the scroll effect */
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.announcement-content {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 50px; 
  animation: scroll-left 20s linear infinite;
}

.announcement-bar:hover .announcement-content {
  animation-duration: 40s; 
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%); 
  }
  100% {
    transform: translateX(-100%); 
  }
}

/* Slider */
.slider-container {
    position: relative;
    height: 80vh;  
    max-height: 600px;
    margin-top: 0;  
    overflow: hidden;
    border-radius: 0;  
    perspective: 600px;
    perspective-origin: center center;
    transform-style: preserve-3d;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.slider-inner {
    width: 100%;
    height: 100%;
    max-width: 1400px;  
    margin: 0 auto;
    position: relative;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

input[type="radio"] {
  display: none;
}

#slide1,
#slide2,
#slide3 {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-style: preserve-3d;
  z-index: 1;
  backface-visibility: hidden;
}

/* 3D positioning for center slide */
#s1:checked ~ #slide1,
#s2:checked ~ #slide2,
#s3:checked ~ #slide3 {
  box-shadow: 0 13px 26px rgba(0, 0, 0, 0.3), 0 12px 6px rgba(0, 0, 0, 0.2);
  transform: translate3d(0%, 0, 0px) scale(1) rotateY(0deg);
  opacity: 1;
  z-index: 3;
}

/* 3D positioning for next slide */
#s1:checked ~ #slide2,
#s2:checked ~ #slide3,
#s3:checked ~ #slide1 {
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3), 0 2px 2px rgba(0, 0, 0, 0.2);
  transform: translate3d(70%, 0, -600px) scale(0.7) rotateY(10deg);
  opacity: 0;
  z-index: 2;
}

/* 3D positioning for previous slide */
#s1:checked ~ #slide3,
#s2:checked ~ #slide1,
#s3:checked ~ #slide2 {
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3), 0 2px 2px rgba(0, 0, 0, 0.2);
  transform: translate3d(-70%, 0, -600px) scale(0.7) rotateY(-10deg);
  opacity: 0;
  z-index: 2;
}

.slide {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  transform-style: flat;
  background: linear-gradient(135deg, #1c1c1dff, #5c2222ff, #726a58ff);
}

.slide-left {
  flex: 0 0 40%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 40px;
  position: relative;
  color: #fff;
  clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
  backdrop-filter: blur(8px);
  border-right: 2px solid rgba(255, 255, 255, 0.25);
  transform-style: flat;
}

.slide-left::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #fdbb2d, #b21f1f, #1a2a6c);
  border-radius: 2px;
}

.slide-content h2 {
  font-size: clamp(28px, 5vw, 42px);
  margin-bottom: 20px;
  color:#FDBB2D;
  line-height: 1.2;
}

.slide-content p {
  font-size: clamp(14px, 2.5vw, 18px);
  max-width: 400px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: white;
}

.slide-badges {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.badge .icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  color: white;
}

.circle {
  background: #080100ff;
  border-radius: 50%;
}

.diamond {
  background: #181406ff;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.badge .label {
  font-size: 12px;
  color: white;
  text-align: center;
}

.slide-right {
  flex: 0 0 60%;
  background-size: cover;
  background-position: center;
  position: relative;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 10% 100%, 0 50%);
  transform-style: flat;
}

/* Gradient border on left of image */
.slide-right::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #fdbb2d, #b21f1f, #1a2a6c);
  border-radius: 2px;
}

/* Optional gradient animation */
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.slide-left::after,
.slide-right::before {
  background: linear-gradient(270deg, #fdbb2d, #b21f1f, #1a2a6c);
  background-size: 600% 600%;
  animation: gradientFlow 8s ease infinite;
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
  padding: 20px 0;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  flex-shrink: 0;
}

.nav-dot.active {
  background: #fdbb2d;
  transform: scale(1.3);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100vw;  /* Full width for edge positioning */
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    z-index: 10;
    pointer-events: none;
    pointer-events: all;
}
.arrow {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
  pointer-events: all;
  font-size: 18px;
}

.arrow:hover {
  background: rgba(253, 187, 45, 0.8);
}

/* Sections */
#audiences,
#testimonials {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.section-muted {
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.who {
  background-image: url("https://cdn.svgator.com/images/2022/06/use-svg-as-background-image-particle-strokes.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  object-fit: cover;
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
}

.section-eyebrow {
  display: inline-block;
  background: rgba(253, 187, 45, 0.2);
  color: #fdbb2d;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.section-title {
  font-size: clamp(32px, 5vw, 42px);
  margin-bottom: 20px;
  color: #fff;
}

.section-desc {
  font-size: clamp(16px, 2.5vw, 18px);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 30px 0;
  width: 100%;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: clamp(20px, 4vw, 40px) clamp(20px, 3vw, 30px);
  text-align: center;
  transition: all 0.5s ease;
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, #fdbb2d, #b21f1f, #1a2a6c);
}

.card h3 {
  font-size: clamp(20px, 3vw, 24px);
  margin-bottom: 20px;
  color: #fdbb2d;
}

.card p {
  margin-bottom: 25px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(14px, 2vw, 16px);
}

.feature {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  text-align: left;
  font-size: clamp(14px, 2vw, 16px);
}

.feature .icon {
  background: rgba(76, 175, 80, 0.2);
  color: #0de615ff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
}

/* Stats Section */
#stats {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: transparent;
}

.stats {
  position: relative;
  width: 600px;
  height: 600px;
  margin: 0 auto;
}

.stat {
  border-radius: 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
  transition: all 0.5s ease;
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
}
.stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, #fdbb2d, #b21f1f, #1a2a6c);
}


.stat-tl {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 200px;
  height: 200px;
}

.stat-tr {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 200px;
  height: 200px;
}

.stat-bl {
  position: absolute;
  bottom: 5px;
  left: 5px;
  width: 200px;
  height: 200px;
}

.stat-br {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 200px;
  height: 200px;
}

.stat-center {
  position: absolute;
  top: 33%;
  left: 33%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  padding: 20px;
  z-index: 2;
  box-shadow: 0 0 30px rgba(253, 187, 45, 0.3);
}

.stat strong {
  font-size: clamp(24px, 6vw, 48px);
  display: block;
  color: #fdbb2d;
  margin-bottom: 10px;
  font-weight: bold;
}
.stat span {
  font-size: clamp(14px, 3vw, 16px);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.stat:hover {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.animated-delay-3 {
  transition-delay: 0.6s;
}

/* Testimonials */
.quote {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: clamp(20px, 4vw, 40px) clamp(20px, 3vw, 30px);
  text-align: center;
  transition: all 0.5s ease;
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, #fdbb2d, #b21f1f, #1a2a6c);
}

.quote p {
  font-size: clamp(16px, 2.5vw, 18px);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
  color: #fdbb2d;
  font-size: clamp(14px, 2vw, 16px);
}

.dot {
  width: 8px;
  height: 8px;
  background: #fdbb2d;
  border-radius: 50%;
  flex-shrink: 0;
}

.quote:hover {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
  text-align: center;
  padding: 30px 0;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.social-icons a {
  color: white;
  font-size: 20px;
  transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
  color: #fdbb2d;
  transform: translateY(-3px);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 3D Animation Classes */
.reveal {
  opacity: 0;
  transform: translateZ(50px);
  transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateZ(0);
}

.fadeInLeft {
  transform: translate3d(-100px, 0, 50px) rotateY(15deg);
}

.fadeInUp {
  transform: translate3d(0, 100px, 50px) rotateX(-15deg);
}

.fadeInRight {
  transform: translate3d(100px, 0, 50px) rotateY(-15deg);
}

.animated-delay-1 {
  transition-delay: 0.2s;
}

.animated-delay-2 {
  transition-delay: 0.4s;
}

/* Floating elements */
.floating-element {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  z-index: 0;
}

.floating-element-1 {
  animation-delay: 0s;
}

.floating-element-2 {
  animation-delay: 2s;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
  100% {
    transform: translateY(0) rotate(360deg);
  }
}

/* Hover effects for cards */
.card:hover {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Design - World-Class Breakpoints */
/* Large Desktop */
@media (min-width: 1201px) {
  .container {
    padding: 0 40px;
  }
}

/* Desktop */
@media (min-width: 769px) and (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .stats {
    width: 500px;
    height: 500px;
  }

  .stat-tl,
  .stat-tr,
  .stat-bl,
  .stat-br,
  .stat-center {
    top: 33%;
    left:0;
    width: 160px;
    height: 160px;
    padding: 12px;
  }

  .stat-center {
    padding: 16px;
  }
}

/* Tablet */
@media (min-width: 481px) and (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .hed .container {
    padding: 15px 20px;
  }

  nav ul {
    gap: 20px;
  }

  .slider-container {
    height: 70vh;
    max-height: 500px;
  }

  .slide-left {
    padding: 40px 30px;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    width: 100%;
    height: auto;
    gap: 20px;
    max-width: 500px;
  }

  .stat-tl {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    width: 100%;
    height: auto;
    min-height: 120px;
  }

  .stat-tr {
    grid-column: 2;
    grid-row: 1;
    position: relative;
    width: 100%;
    height: auto;
    min-height: 120px;
  }

  .stat-bl {
    grid-column: 1;
    grid-row: 2;
    position: relative;
    width: 100%;
    height: auto;
    min-height: 120px;
  }

  .stat-br {
    grid-column: 2;
    grid-row: 2;
    position: relative;
    width: 100%;
    height: auto;
    min-height: 120px;
  }

  .stat-center {
    grid-column: 1 / -1;
    position: relative;
    width: 100%;
    height: auto;
    min-height: 140px;
    box-shadow: 0 0 30px rgba(253, 187, 45, 0.3);
  }

  .stat {
    max-width: none;
    width: 100%;
    height: auto;
    padding: 25px 15px;
    border-radius: 15px;
  }
  .slider-container {
        height: 60vh;
        max-height: 400px;
    }
    
    .slider-arrows {
        padding: 0 10px;
    }
.stat-center {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-30%, -30%);
  width: 200px;
  height: 200px;
  padding: 20px;
  z-index: 2;
  box-shadow: 0 0 30px rgba(253, 187, 45, 0.3);
}

}

/* Mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hed .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    position: relative;
  }

  .logo {
    font-size: 20px;
  }

  .logo img {
    width: 50px;
  }

  .cta-button {
    display: none;
  }

  nav {
    position: relative;
    flex: 1;
    justify-content: flex-end;
  }

  nav ul {
    display: none;
    position: fixed;
    top: 120px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    gap: 0;
    padding: 20px 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    margin: 0;
    list-style: none;
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: color 0.3s;
  }

  nav ul li a:hover {
    color: #fdbb2d;
  }

  nav ul li a:last-child {
    border-bottom: none;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    position: static;
    width: auto;
    height: auto;
  }

  .announcement-bar {
    font-size: 12px;
    padding: 6px 0;
  }

  .announcement-content {
    gap: 5px;
  }

  .announcement-content img {
    width: 20px;
  }

  .slider-container {
    height: 60vh;
    max-height: 400px;
    border-radius: 15px;
  }

  .slide {
    flex-direction: column;
  }

  .slide-left,
  .slide-right {
    flex: 1;
    clip-path: none;
    border: none;
  }

  .slide-right::before,
  .slide-left::after {
    display: none;
  }

  .slide-left {
    padding: 30px 20px;
    text-align: center;
  }

  .slide-badges {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .badge .icon {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  #slide1,
  #slide2,
  #slide3 {
    transform: none !important;
    opacity: 1 !important;
    position: relative;
  }

  #s1:checked ~ #slide1,
  #s2:checked ~ #slide2,
  #s3:checked ~ #slide3 {
    position: relative;
    z-index: 1;
  }

  #s1:checked ~ #slide2,
  #s2:checked ~ #slide3,
  #s3:checked ~ #slide1,
  #s1:checked ~ #slide3,
  #s2:checked ~ #slide1,
  #s3:checked ~ #slide2 {
    display: none;
  }

  .slider-container {
    perspective: none;
  }

  .slider-arrows {
    padding: 0 10px;
  }

  .arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .slider-nav {
    gap: 10px;
    padding: 15px 0;
  }

  .nav-dot {
    width: 10px;
    height: 10px;
  }

  .nav-dot.active {
    transform: scale(1.2);
  }

  .section-head {
    margin-bottom: 40px;
  }

  .section-eyebrow {
    padding: 6px 15px;
    font-size: 12px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card {
    padding: 25px 20px;
  }

  .feature {
    justify-content: center;
    text-align: center;
  }

 .stats {
    width: 100%;
    max-width: none;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, auto);
    gap: 15px;
  }

  .stat {
    min-height: 100px;
    position: relative;
    width: 100% !important;
    height: auto;
  }

  .stat-tl,
  .stat-tr,
  .stat-bl,
  .stat-br,
  .stat-center {
    grid-column: 1;
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    min-height: 120px !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
  }

  .stat-center {
    box-shadow: none;
    padding: 20px;
  }

  .vehicle-bg4 {
    display: none;
  }

  .bg-blobs .b1,
  .bg-blobs .b2,
  .bg-blobs .b3 {
    transform: scale(0.4);
  }
  .quote {
    padding: 25px 20px;
  }

  .social-icons {
    gap: 15px;
  }

  .social-icons a {
    font-size: 18px;
  }

  footer p {
    font-size: 14px;
  }

  #audiences,
  #stats,
  #testimonials {
    padding: 60px 0;
  }
}

/* Additional responsive tweaks for intermediate sizes */
@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .stats {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-tl,
  .stat-tr,
  .stat-bl,
  .stat-br {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 120px;
  }

  .stat-center {
    grid-column: 1 / -1;
    position: relative;
    width: 100%;
    height: auto;
    min-height: 140px;
  }

  .fadeInLeft,
  .fadeInUp,
  .fadeInRight {
    transform: translate3d(0, 50px, 0);
  }
}

@media (max-width: 768px) {
  .stats {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 20px;
    max-width: 500px;
  }


 .stat-tl,
  .stat-tr,
  .stat-bl,
  .stat-br,
  .stat-center {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 120px;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
  }

  .stat-center {
    grid-column: 1 / -1;
    min-height: 140px;
  }
  .section-title {
    font-size: 32px;
  }

  .section-desc {
    font-size: 16px;
  }

  .card,
  .stat,
  .quote {
    padding: 30px 20px;
  }

  .stat strong {
    font-size: 36px;
  }

  nav ul {
    display: none;
  }

  .slide-left {
    padding: 40px 20px;
  }
  .bg-blobs .b1,
  .bg-blobs .b2,
  .bg-blobs .b3 {
    transform: scale(0.6);
  }
}
.vertical-stack-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    margin-top: 40px;
}

.role-navigation {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.role-nav-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 30px;
}

.role-nav-btn i {
    font-size: 20px;
    width: 24px;
    text-align: center;
    color: #fdbb2d;
    transition: all 0.3s ease;
}

.role-nav-btn:hover {
    background: rgba(253, 187, 45, 0.1);
    border-color: rgba(253, 187, 45, 0.3);
    color: white;
    
}

.role-nav-btn.active {
    background: rgba(253, 187, 45, 0.15);
    border-color: #fdbb2d;
    color: white;
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(253, 187, 45, 0.2);
}

.role-nav-btn.active i {
    color: #fdbb2d;
    transform: scale(1.1);
}

.role-content {
    position: relative;
    min-height: 400px;
}

.role-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.role-panel.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.panel-header i {
    font-size: 32px;
    color: #fdbb2d;
    background: rgba(253, 187, 45, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.panel-header h3 {
    font-size: 28px;
    color: #fdbb2d;
    margin: 0;
}

.role-panel p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
}

.feature .icon {
    background: rgba(76, 175, 80, 0.2);
    color: #0de615;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .vertical-stack-layout {
        grid-template-columns: 240px 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .vertical-stack-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .role-navigation {
        position: relative;
        top: auto;
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .role-nav-btn {
        white-space: nowrap;
        min-width: 140px;
        flex-direction: column;
        gap: 8px;
        padding: 15px;
    }
    
    .role-nav-btn:hover,
    .role-nav-btn.active {
        transform: translateY(-5px);
    }
    
    .role-panel {
        padding: 30px 25px;
    }
    
    .panel-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .panel-header i {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
  .vertical-stack-layout {
    gap: 25px;
  }

  .role-navigation {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .role-nav-btn {
    min-width: calc(50% - 4px);
    flex: 1;
    padding: 12px 10px;
    font-size: 14px;
    flex-direction: column;
    margin-top: 20px;
  }

  .role-nav-btn i {
    font-size: 18px;
  }

  .role-panel {
    padding: 25px 20px;
  }

  .panel-header h3 {
    font-size: 24px;
  }

  .role-panel p {
    font-size: 16px;
  }

  .feature {
    font-size: 15px;
  }
}