/* ==== RESET ==== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* ==== HERO SECTION ==== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DARK OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.4)
  );
  top: 0;
  left: 0;
  z-index: 1;
}


/* Per-slide text content */
.slide-content {
  position: absolute;
  top: 50%;
  left: 7%;
  transform: translateY(-50%);
  color: white;
  z-index: 2;
  max-width: 600px;
}

.slide-content h1 {
  font-size: 55px;
  font-weight: 700;
}

.slide-content p {
  margin: 10px 0 20px 0;
  font-size: 19px;
  line-height: 1.4;
}

.btn {
  background: linear-gradient(135deg,#F15A24, #00325A);
  padding: 12px 25px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

  

/* ARROWS */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #fff;
  padding: 10px;
  cursor: pointer;
  z-index: 3;
}
.arrow.left { left: 20px; }
.arrow.right { right: 20px; }

/* TYPEWRITER */
.typewriter {
  font-size: 28px;
  white-space: nowrap;
  overflow: hidden;
  min-height: 35px;  /* keep layout stable */
  border-right: none !important;
}

.typewriter {
    border-right: none !important;
    animation: none !important;
}

/* ===========================
   HERO SLIDER BASE
=========================== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DARK OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.45)
  );
  top: 0;
  left: 0;
  z-index: 1;
}
.multi-carousel {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.carousel-container {
  overflow: hidden; /* important */
}

.carousel-track {
  display: flex;
  gap: 25px;  /* distance between cards */
  transition: transform 0.6s ease;
  will-change: transform;
}

/* FIX: exact card width */
.card {
  flex: 0 0 420px;    /* FIXED WIDTH */
  height: 350px;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
}

/* Make images fit */
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-text {
  position: absolute;
  bottom: 30px;
  left: 20px;
  right: 20px;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
}

.small-text {
  display: block;
  font-size: 16px;
  margin-top: 5px;
  font-weight: 300;
}


/* ===========================
   HERO CONTENT
=========================== */
.slide-content {
  position: absolute;
  top: 50%;
  left: 7%;
  transform: translateY(-50%);
  color: white;
  z-index: 2;
  max-width: 600px;
}

.slide-content h1 {
  font-size: 55px;
  font-weight: 700;
}

.slide-content p {
  margin: 10px 0 20px 0;
  font-size: 19px;
  line-height: 1.4;
}


/* ===========================
   ARROWS
=========================== */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #fff;
  padding: 10px;
  cursor: pointer;
  z-index: 3;
}
.arrow.left { left: 20px; }
.arrow.right { right: 20px; }

/* ===========================
   TYPEWRITER
=========================== */
.typewriter {
  font-size: 28px;
  white-space: nowrap;
  overflow: hidden;
  min-height: 35px;
  border-right: none !important;
  animation: none !important;
}

/* ===========================
   RESPONSIVE DESIGN
=========================== */

/* ---------- TABLETS ---------- */
@media (max-width: 1024px) {
  .slide-content h1 {
    font-size: 42px;
  }
  .slide-content p {
    font-size: 17px;
  }
  .typewriter {
    font-size: 22px;
  }
}

/* ---------- MOBILE LARGE ---------- */
@media (max-width: 768px) {
  .hero-slider {
    height: 80vh;
  }

  .slide-content {
    top: 55%;
    left: 5%;
    max-width: 90%;
  }

  .slide-content h1 {
    font-size: 32px;
  }

  .typewriter {
    font-size: 20px;
  }

  .slide-content p {
    font-size: 15px;
  }

  .btn {
    font-size: 16px;
    padding: 10px 20px;
  }

  .arrow {
    font-size: 30px;
  }
}

/* ---------- MOBILE SMALL ---------- */
@media (max-width: 480px) {
  .hero-slider {
    height: 70vh;
  }

  .slide-content h1 {
    font-size: 26px;
  }

  .typewriter {
    font-size: 18px;
  }

  .slide-content p {
    font-size: 14px;
  }

  .btn {
    font-size: 14px;
    padding: 8px 18px;
  }

  .arrow {
    font-size: 26px;
    padding: 6px;
  }
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.slider-wrapper {
  width: 100%;
  height: 100%;
}

.slider-track {
  display: flex;
  width: 300%; /* 3 slides */
  height: 100%;
  transition: transform 1s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.4)
  );
  top: 0;
  left: 0;
}

.slide-content {
  position: absolute;
  top: 52%;
  left: 8%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 550px;
}

.slide-content h1 {
  font-size: 58px;
  font-weight: 700;
  margin-bottom: 10px;
}

.typewriter {
  font-size: 22px;
  min-height: 28px;
  white-space: nowrap;
  overflow: hidden;
}

/* ---------- ARROWS ---------- */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 45px;
  padding: 10px;
  cursor: pointer;
  color: white;
  z-index: 10;
  transition: 0.3s;
}

.arrow:hover {
  color: #ffb74d;
}

.left { left: 20px; }
.right { right: 20px; }


/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .hero-slider { height: 75vh; }
  .slide-content h1 { font-size: 32px; }
  .typewriter { font-size: 18px; }
}

@media (max-width: 480px) {
  .hero-slider { height: 65vh; }
  .slide-content h1 { font-size: 26px; }
  .typewriter { font-size: 15px; }
}

/* about */
/* ==== ABOUT SECTION ==== */
.about {
  position: relative;
  background: #ffffff;
  padding: 100px 8%;
  color: #000814;
  overflow: hidden;
  margin-bottom: 70px;
}

.section-title {
  font-size: 3.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.section-title span {
  background: linear-gradient(90deg, #005DAA, #F15A29);
  -webkit-background-clip: text;
  color: transparent;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: -55px;
}

/* ==== LEFT SIDE ==== */
.about-left {
  flex: 1 1 500px;
  animation: fadeInUp 1s ease forwards;
}

.about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
  text-align: justify;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 30px;
}

.feature-card {
  flex: 1 1 250px;
  background: #f9f9ff;
  border: 1px solid rgba(0, 93, 170, 0.2);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  transition: 0.4s ease;
  box-shadow: 0 0 10px rgba(0, 93, 170, 0.05);
}

.feature-card i {
  font-size: 2rem;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #005DAA, #F15A29);
  -webkit-background-clip: text;
  color: transparent;
  transition: 0.3s;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

.feature-card p {
  font-size: 0.95rem;
  color: #444;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: #F15A29;
  box-shadow: 0 0 20px rgba(241, 90, 41, 0.2);
}

.feature-card:hover i {
  transform: rotate(10deg) scale(1.1);
}

/* ==== RIGHT SIDE (VIDEO) ==== */
.about-right {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left:-70px ;
}

.about-video {
  width: 100%;
  max-width: 380px;
  height: 61vh;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 0 25px rgba(0, 93, 170, 0.2);
  border: 2px solid rgba(0, 93, 170, 0.3);
  animation: floatVideo 4s ease-in-out infinite;
}

/* Floating animation */
@keyframes floatVideo {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.about-btn {
  background: linear-gradient(90deg, #005DAA, #F15A29);
  color: #fff;
}

/* ==== SCROLL ANIMATIONS ==== */
[data-animate] {
  opacity: 45;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="slide-left"] {
  transform: translateX(-60px);
}
[data-animate="slide-right"] {
  transform: translateX(60px);
}
[data-animate="slide-left"].visible,
[data-animate="slide-right"].visible {
  transform: translateX(0);
}

/*get your tech*/
/* ==== CTA SECTION ==== */
.cta-section {
  position: relative;
  background: linear-gradient(160deg, #001a3a, #000814);
  padding: 120px 8%;
  color: #fff;
  text-align: center;
  overflow: hidden;
  margin-top: -85px;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(0, 93, 170, 0.15), transparent 70%);
  z-index: 0;
  animation: pulseGlow 6s ease-in-out infinite alternate;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  animation: fadeInUp 1.5s ease-in-out;
}

.cta-title {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 15px;
  margin-top: -88px;
}

.cta-title span {
  background: linear-gradient(90deg, #005DAA, #F15A29);
  -webkit-background-clip: text;
  color: transparent;
  animation: glowText 2s infinite alternate;
}

.cta-desc {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 60px;
  line-height: 1.7;
}

/* ==== REPAIR CARDS ==== */
.repair-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

.repair-card {
  flex: 1 1 300px;
  background: linear-gradient(180deg, #005DAA, #00246b);
  color: #fff;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 93, 170, 0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.repair-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 35px rgba(0, 93, 170, 0.4);
}

.repair-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
}

.repair-card:hover::before {
  left: 100%;
}

.repair-icon img {
  width: 243px;
  height: 30vh;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.repair-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.repair-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #eaeaea;
}

/* ==== CTA BUTTON ==== */
.cta-btn {
  display: inline-block;
  padding: 14px 40px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(90deg, #005DAA, #F15A29);
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(0, 93, 170, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transition: all 0.6s ease;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 35px rgba(0, 93, 170, 0.6);
}

/* ==== ANIMATIONS ==== */
@keyframes pulseGlow {
  0% {
    opacity: 0.6;
    background: radial-gradient(circle at 70% 50%, rgba(0, 93, 170, 0.15), transparent 70%);
  }
  100% {
    opacity: 1;
    background: radial-gradient(circle at 30% 50%, rgba(0, 93, 170, 0.3), transparent 70%);
  }
}

/* ===== SCROLL BANNER SECTION ===== */
.scroll-banner-section {
  position: relative;
  width: 100%;
  background: #ffffff;
  overflow: hidden;
  padding: 80px 0;
}

/* Common Banner Styling */
.banner {
  position: relative;
  width: 160%;
  left: -30%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  white-space: nowrap;
  overflow: hidden;
  height: 160px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: transform 0.3s ease-out;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Colors & rotation */
.blue-banner {
  background: #005DAA;
  color: #ffffff;
  transform: rotate(-4deg);
  z-index: 2;
}
.yellow-banner {
  background: #F15A29;
  color: #000000;
  transform: rotate(4deg);
  margin-top: -40px;
  z-index: 1;
}

/* Banner track for continuous loop */
.banner-track {
  display: flex;
  width: 200%;
  gap: 80px;
  animation: marquee 20s linear infinite;
}
.group {
  display: inline-flex;
  gap: 80px;
  flex: 0 0 50%;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}
.group span {
  font-size: 2.2rem;
  white-space: nowrap;
  display: inline-block;
  transition: transform 0.3s;
}
.group span:hover {
  transform: scale(1.05);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose {
  background: #fff;
  color: #000814;
  padding: 140px 8%; /* Increased padding for better spacing */
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: -40px; /* Reduced negative margin to avoid crowding above */
}

.choose-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  line-height: 1.3;
}

.choose-title span {
  background: linear-gradient(90deg, #005DAA, #F15A29);
  -webkit-background-clip: text;
  color: transparent;
}

.choose-subtitle {
  color: #555;
  font-size: 1.1rem;
  max-width: 780px;
  margin: 0 auto 80px auto; /* More breathing room below subtitle */
  line-height: 1.8;
}

/* ===== GRID CARDS ===== */
.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 45px; /* Slightly increased gap between cards */
  margin-top: 0; /* Removed negative margin */
  justify-items: center;
}

.choose-card {
  background: linear-gradient(135deg, #000d33, #001a66);
  color: #fff;
  border-radius: 20px;
  padding: 50px 30px;
  box-shadow: 0 10px 25px rgba(0, 68, 255, 0.15);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  max-width: 300px;
  text-align: center;
}

.choose-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.choose-card p {
  font-size: 0.95rem;
  color: #d9d9d9;
  line-height: 1.6;
}

.choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 93, 170, 0.3);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .why-choose {
    padding: 100px 6%;
  }
  .choose-title {
    font-size: 2.4rem;
  }
  .choose-subtitle {
    margin-bottom: 60px;
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .why-choose {
    padding: 80px 5%;
  }
  .choose-title {
    font-size: 2rem;
  }
  .choose-subtitle {
    margin-bottom: 40px;
  }
}

/* ===== ANIMATION ON SCROLL ===== */
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

[data-animate][data-delay="100"].visible { transition-delay: 0.1s; }
[data-animate][data-delay="200"].visible { transition-delay: 0.2s; }
[data-animate][data-delay="300"].visible { transition-delay: 0.3s; }

/* ===== SECTION BASE ===== */
.fix-section {
  background: linear-gradient(135deg, rgb(0, 8, 20), rgb(0, 25, 60));
  color: #fff;
  padding: 100px 8%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.fix-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at top left, rgba(0, 93, 170, 0.25), transparent 70%),
              radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.5), transparent 70%);
  animation: bgGlow 10s infinite alternate;
  z-index: 0;
}

@keyframes bgGlow {
  0% { transform: rotate(0deg) scale(1); }
  100% { transform: rotate(20deg) scale(1.1); }
}

/* ===== TITLE ===== */
.fix-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.fix-title span {
  color: #F15A29;
  position: relative;
}

.fix-title span::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #F15A29, #005DAA);
  animation: blinkLine 1.5s infinite alternate;
}

@keyframes blinkLine {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.fix-subtitle {
  color: #ccc;
  font-size: 1rem;
  max-width: 650px;
  margin: 0 auto 60px;
  line-height: 1.7;
  z-index: 2;
  position: relative;
}

/* ===== FIX ITEMS (UPDATED TO 4 PER ROW) ===== */
.fix-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* ✅ 4 per line */
  gap: 40px;
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .fix-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .fix-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 480px) {
  .fix-wrapper {
    grid-template-columns: 1fr;
  }
}

.fix-item {
  text-align: center;
  opacity: 45;
  transform: translateY(40px);
  transition: all 0.8s ease;
  cursor: pointer;
}

.fix-img {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(0, 93, 170, 0.2), rgba(255, 255, 255, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s ease;
  overflow: hidden;
}

.fix-img img {
  width: 60%;
  transition: transform 0.6s ease;
  filter: drop-shadow(0 0 10px rgba(0, 93, 170, 0.3));
}

.fix-item h4 {
  font-size: 1.1rem;
  color: #005DAA;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.fix-item p {
  color: #cfcfcf;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Hover Effects */
.fix-item:hover .fix-img img {
  transform: scale(1.2) rotate(6deg);
  filter: drop-shadow(0 0 20px rgba(0, 93, 170, 0.6));
}

.fix-item:hover h4 {
  color: #00eaff;
  text-shadow: 0 0 10px rgba(0, 93, 170, 0.6);
}

/* ===== BUTTON ===== */
.fix-btn-container {
  margin-top: 70px;
}

.fix-btn {
  background: linear-gradient(90deg, #005DAA, #F15A29);
  color: #fff;
  padding: 14px 38px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.4s ease;
  box-shadow: 0 0 20px rgba(0, 93, 170, 0.3);
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.fix-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.6), transparent);
  transition: 0.6s;
}

.fix-btn:hover::before {
  left: 100%;
}

.fix-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(241, 90, 41, 0.6);
}

/* ===== SCROLL ANIMATION ===== */
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate][data-delay="100"].visible { transition-delay: 0.1s; }
[data-animate][data-delay="200"].visible { transition-delay: 0.2s; }
[data-animate][data-delay="300"].visible { transition-delay: 0.3s; }
[data-animate][data-delay="400"].visible { transition-delay: 0.4s; }
[data-animate][data-delay="500"].visible { transition-delay: 0.5s; }
[data-animate][data-delay="600"].visible { transition-delay: 0.6s; }
[data-animate][data-delay="700"].visible { transition-delay: 0.7s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .fix-title {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .fix-img {
    width: 80px;
    height: 80px;
  }
  .fix-item h4 {
    font-size: 1rem;
  }
  .fix-item p {
    font-size: 0.85rem;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .choose-title {
    font-size: 2.2rem;
  }
  .choose-subtitle {
    font-size: 1rem;
  }
  .choose-card {
    padding: 30px 20px;
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .banner {
    height: 130px;
  }
  .group span {
    font-size: 1.6rem;
  }
  .banner-track {
    animation-duration: 25s;
  }
}

@media (max-width: 600px) {
  .banner {
    height: 100px;
    width: 180%;
    left: -40%;
  }
  .group span {
    font-size: 1.2rem;
  }
  .banner-track {
    animation-duration: 30s;
  }
}

/* ==== RESPONSIVE ==== */
@media (max-width: 992px) {
  .cta-title {
    font-size: 2.3rem;
  }
  .cta-desc {
    font-size: 1rem;
  }
  .repair-card {
    flex: 1 1 45%;
  }
}

@media (max-width: 600px) {
  .cta-title {
    font-size: 1.9rem;
  }
  .cta-desc {
    font-size: 0.95rem;
  }
  .repair-card {
    flex: 1 1 100%;
  }
  .cta-btn {
    padding: 12px 30px;
    font-size: 0.9rem;
  }
}

.card {
  position: relative;
  min-width: 44% !important;
  margin-right: 20px;
  border-radius: 20px;
  overflow: hidden;
}
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  filter: brightness(55%);
}




.card-text {
  position: absolute;
  top: 25px;
  left: 25px;
  color: #fff;
  z-index: 10;
  font-size: 4rem !important;   /* INSANE HUGE */
  font-weight: 500;
  line-height: 0.95;
  max-width: 85%;
  text-transform: none;
  text-shadow: 0 6px 25px rgba(0,0,0,0.95);
}

.small-text {
  display: block;
  margin-top: 18px;
  font-size: 1.8rem !important;
  font-weight: 300;
  opacity: 0.95;
  text-shadow: 0 4px 18px rgba(0,0,0,0.9);
}

@media (max-width: 600px) {
  .section-title {
    font-size: 2rem;
  }

  .feature-card {
    flex: 1 1 100%;
  }

  .about-text {
    font-size: 0.95rem;
  }

  .about-video {
    max-width: 260px;
  }
}

/* ==== RESPONSIVE ==== */
@media (max-width: 992px) {
  .hero {
    padding: 100px 5%;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .typing-text {
    font-size: 1.3rem;
  }

  .hero-desc {
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 80px 5%;
  }

  .hero-title {
    font-size: 2rem;
  }

  .typing-text {
    font-size: 1.1rem;
  }

  .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}

/* FIX BROKEN MOBILE CARDS */
@media (max-width: 768px) {

  .multi-carousel {
    padding: 10px !important;
    margin-top: 100px !important;
  }

  .carousel-track {
    gap: 20px !important;
  }

  .card {
    min-width: 85% !important;    /* ❤️ wide card */
    height: 220px !important;     /* ❤️ rectangular */
    border-radius: 16px !important;
    padding: 0 !important;
    overflow: hidden !important;
    margin: 0 auto !important;    /* ❤️ center align */
  }

  .card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 16px !important;
    filter: brightness(60%) !important;
  }

  
.card-text {
    font-size: 1.1rem !important;   /* smaller top heading */
    line-height: 1.2;
    top: 12px;
    left: 12px;
    max-width: 85%;
  }

  .small-text {
    font-size: 0.8rem !important;   /* smaller paragraph */
    margin-top: 5px;
  }
}

.multi-carousel {
  width: 100%;
  overflow: hidden;
  padding: 60px 0;  /* top-bottom only, NO SIDE PADDING */
  margin-top: 50px;
}


.carousel-container {
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}







@media (max-width: 768px) {

  /* REMOVE LEFT/RIGHT PADDING */
  .about {
    padding: 50px 0 !important;
  }

  /* CENTER THE WHOLE SECTION */
  .about-container {
    padding: 0 15px !important;
    margin: 0 auto !important;
    width: 100% !important;
    text-align: center !important;
    display: block !important;
  }

  .about-left {
    width: 100% !important;
    text-align: center !important;
    margin-left: 60px;
  }

  .about-text {
    text-align: center !important;
    padding: 0 10px !important;
  }

  /* FIX FEATURE CARDS */
  .about-features {
    display: block !important;
  }

  .feature-card {
    width: 90% !important;
    margin: 0 auto 20px auto !important;
  }

  /* CENTER VIDEO PROPERLY */
  .about-right {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    margin-top: 50px;
  }

  .about-video {
    max-width: 317px !important;
    margin: 20px auto !important;
    display: block !important;
  }
}
