/* === CUSTOM MEGA-MENU FIX FOR PRODUCTS === */
.header-video-hero {
  margin-top: 20px;
}
ul.mega-sub-menu.custom-mega {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  padding: 22px 36px;
  min-width: 720px;
  max-width: 1080px;
  background: #0f0f0f;
  border-radius: 14px;
  text-align: left;
}

ul.mega-sub-menu.custom-mega > li.mega-menu-column {
  flex: 1 1 0;
}

ul.mega-sub-menu.custom-mega .mega-title {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 10px;
}

ul.mega-sub-menu.custom-mega .mega-links li a {
  color: #ccc;
  padding: 6px 0;
  display: block;
  text-align: left;
}

ul.mega-sub-menu.custom-mega .mega-links li a:hover {
  color: #fff;
}

/* In your custom.css file */
.feature-style4 .feature-img4 {
  left: -150px !important;
  bottom: 60px;
}

.feature-style4 .feature-img4 img {
  margin-left: -50px !important;
}

.feature-block4 img {
  max-width: 80px !important;
  height: auto !important;
  display: block;
  margin: 0 auto 15px auto;
}

/* Control logo size everywhere */
.footer-logo img {
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Prevent logo from overflowing its container */
.footer-logo {
  overflow: hidden;
}

.side-menu {
  padding-top: 40px;
}

.side-menu .logo img {
  width: 190px;
  height: auto;
  margin-bottom: 40px;
  flex-shrink: 0;
}

.side-menu .menu-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.side-menu .sidebar-menu {
  margin-top: -25px;
  margin-bottom: 20px;
}

.side-menu .ibt-btn-rounded {
  margin-top: 20px;
}

.side-menu::after {
  height: 150px;
}

.side-menu .logo {
  text-align: left;
  margin-left: -20px;
}
.hero-buttons {
  display: flex;
  gap: 50px;
}

.service-box7 .social-link3 span {
  white-space: nowrap;
  display: block;
}
.social-link3 img {
  max-width: 80px;
  height: auto;
  display: block;
}

.mega-container {
  position: absolute;
  top: 100%;
  left: 0%;
  transform: translateX(0);
  margin-left: -300px;
  width: 1000px;
  background: #0d0d18;
  padding: 40px 40px;
  border-radius: 18px;
  display: none;
  z-index: 9999;
  animation: fadeDown 0.35s ease forwards;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

#all-robots.mega-panel.active {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr); /* 3 Equal Columns */
  column-gap: 20px; /* Space between columns */
  row-gap: 30px; /* Space between rows */
  align-items: start; /* Align items to the top */
  margin-top: 20px;
}

/* 3. Style the individual Robot Item inside this grid */
#all-robots .mega-item {
  display: flex;
  align-items: center; /* Vertically center image and text */
  gap: 15px; /* Space between Image and Text */
  background: transparent;
  padding: 10px;
  border-radius: 12px;
  transition: background 0.3s ease;
}

/* Optional: Add a subtle hover effect to the item box */
#all-robots .mega-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* 4. Fix Image Sizing (Crucial) */
/* Make images smaller specifically for this 6-item grid */
#all-robots .mega-item .mega-img {
  width: 150px !important; /* Force smaller size */
  height: 100px !important;
  object-fit: contain;
  flex-shrink: 0; /* Prevent image from squishing */
}

/* 5. Fix Text Styling */
#all-robots .mega-item .mega-text a {
  font-size: 20px !important; /* readable size */
  font-weight: 600;
  color: #fff;
  white-space: nowrap; /* Prevent text wrapping */
}

/* Base transitions */
#all-robots .mega-item .mega-img,
#all-robots .mega-item .mega-text a {
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* 1. Image Animation (Subtle Lift) */
#all-robots .mega-item:hover .mega-img {
  transform: translateY(-5px) scale(1.05); /* Reduced movement for cleaner look */
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
}

/* 2. Text & Arrow Styling */
.hover-arrow {
  display: inline-block;
  opacity: 0;
  /* Start position: Slightly Up and Left (Hidden) */
  transform: translate(-10px, -5px);
  transition: all 0.3s ease;
  margin-right: 6px; /* Space between arrow and text */
  font-weight: 700;
  font-size: 14px;
  color: #4facfe; /* Default blue, changes to gradient on hover */
}

/* Text Link Styling */
#all-robots .mega-item .mega-text a {
  display: flex;
  align-items: center; /* Ensures arrow and text align perfectly */
  text-decoration: none;
  color: #fff;
}

/* On Hover: Text Color Change */
#all-robots .mega-item:hover .mega-text a {
  color: #4facfe; /* Simple bright blue highlight */
  /* Optional: Uncomment below for gradient text */
  /* background: linear-gradient(102deg, rgb(130, 88, 200), rgb(44, 132, 200));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
    */
}

/* On Hover: Reveal Arrow & Slide In */
#all-robots .mega-item:hover .hover-arrow {
  opacity: 1;
  /* End position: Normal */
  transform: translate(0, 0);
}

/* Fade-down animation */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Show on hover */
.mega-parent:hover .mega-container {
  display: block;
}

/* Tabs */
.mega-tabs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  color: #ddd;
  margin-bottom: 25px;
  white-space: nowrap;
  gap: 40px;
}

.mega-tab.active {
  color: #fff !important;
}

.mega-tab,
.mega-content a {
  color: #ddd !important;
}

.mega-content a:hover {
  color: #fff !important;
}

/* Item layout */
.mega-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 50px; /* vertical & horizontal spacing */
  margin-top: 25px;
}

/* Robot image + text */
.mega-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mega-img {
  width: 150px;
  height: auto;
  object-fit: contain;
}

.mega-text a {
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
}

/* Hide inactive panels */
.mega-panel {
  display: none;
}

.mega-panel.active {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 200px;
}

.mega-tab,
.mega-text a {
  color: #e0e0e0 !important;
}

.mega-text a:hover {
  color: #ffffff !important;
}

/* Arrow hidden by default */
.mega-tab .arrow {
  opacity: 0;
  margin-right: 6px;
  color: #4de2c1;
  transition: opacity 0.25s ease, transform 0.25s ease;
  display: inline-block;
  transform: translateX(-5px);
}

/* On hover → show arrow & slide */
.mega-tab:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ACTIVE tab → arrow stays visible */
.mega-tab.active .arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Highlight text when active/hover */
.mega-tab:hover,
.mega-tab.active {
  color: #fff !important;
}

/* Arrow styling (already added previously) */
.mega-tab .arrow {
  opacity: 0;
  margin-right: 6px;
  color: #4de2c1;
  transition: opacity 0.25s ease, transform 0.25s ease;
  display: inline-block;
  transform: translateX(-5px);
}

/* Hover → Arrow appears */
.mega-tab:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Active → Arrow stays */
.mega-tab.active .arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Scale animation */
.mega-tab {
  transition: transform 0.28s ease, color 0.25s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Hover scale effect */
.mega-tab:hover {
  transform: scale(1.05);
  color: #fff !important;
}

/* Active scale effect */
.mega-tab.active {
  transform: scale(1.05);
  color: #fff !important;
}

/* 1. TOP BAR (Solid White, Dark Text) */
.header-top4 {
  background-color: #ffffff !important;
  border-bottom: none !important;
  padding: 8px 0;
  position: relative;
  z-index: 1002;
}

.header-top4 .contact-item-title,
.header-top4 a,
.header-top4 span,
.header-top4 i {
  color: #1a1a1a !important; /* Dark Text */
  font-weight: 500;
}

.header-top4 a:hover {
  color: #2b70fa !important;
}

/* 2. HERO WRAPPER (Seamless) */
.header-video-hero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 45px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* 3. VIDEO CONTAINER */
.video-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.video-bg-container .video-bg-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-bg-container .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay */
  z-index: 1;
}

/* 4. MENU OVERLAY */
.header-bottom-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 10px 0;
  border-bottom: none !important;
  box-shadow: none !important;
}

/* 5. LOGO FIX  */
.header-logo img {
  max-height: 50px; /* Kept your requested size */
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Menu Links */
.header-bottom-overlay .header-menu-area {
  background: transparent;
}

.header-bottom-overlay .main-menu ul li a {
  color: #ffffff !important;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease;
}

.header-bottom-overlay .main-menu ul li a:hover {
  color: #4facfe !important;
}

.header-bottom-overlay .fa-search {
  color: #fff !important;
}

.header-bottom-overlay .ibt-btn-outline-3 {
  color: white;
  background: transparent;
}

.header-bottom-overlay .ibt-btn-outline-3:hover {
  color: #000;
}

.hero-content-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 5;
  padding-top: 80px;
  margin-left: -600px;
  margin-top: 80px;
}

.text-gradient-blue {
  background: linear-gradient(
    102deg,
    rgb(130, 88, 200) 0.77%,
    rgb(103, 102, 200) 32.11%,
    rgb(44, 132, 200) 100.27%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* The Text Block */
.hero-content-video {
  text-align: left;
  max-width: 700px;
  margin-left: 0;
  padding-left: 15px;
}

/* Left Align the Buttons Container */
.hero-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 30px;
}

/* Target BOTH buttons */
.hero-buttons .hero-custom-btn {
  background: transparent !important;
  border: 2px solid rgb(130, 88, 200) !important;
  color: #ffffff !important;
  padding: 15px 40px;
  font-weight: 700;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: none;
}

/* Hover State: Fills with Gradient */
.hero-buttons .hero-custom-btn:hover {
  background: linear-gradient(
    102deg,
    rgb(130, 88, 200) 0.77%,
    rgb(103, 102, 200) 32.11%,
    rgb(44, 132, 200) 100.27%
  ) !important;
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(103, 102, 200, 0.4) !important;
}

/* Mobile Adjustment */
@media (max-width: 991px) {
  .hero-content-video {
    margin-left: 0;
    max-width: 100%;
    padding: 0 20px;
    text-align: center; /* Center text on mobile */
  }

  .hero-buttons {
    justify-content: center; /* Center buttons on mobile */
  }
}
/* Mobile Responsiveness */
@media (max-width: 1199px) {
  .header-video-hero {
    min-height: 80vh;
  }
}

@media (max-width: 768px) {
  .header-video-hero {
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-content-container {
    padding-top: 40px;
  }

  /* On mobile, center text often looks better, but we keep it left for consistency */
  .hero-content-video {
    max-width: 100%;
    padding: 0 15px;
  }

  .header-bottom-overlay {
    background: rgba(0, 0, 0, 0.8);
  }
}
/* Add space between Marquee and Service Cards */
.marquee-sec {
  margin-bottom: 50px;
}

/* Fix alignment for "Customizable Solutions" Card (v1) */
.service-sec8 .ser-card3.v1 .ser-content {
  position: absolute;
  top: 20px;
  left: 30px;
  right: 30px;
  z-index: 2;
  text-align: left;
}

/* Style the paragraph text inside the last card */
.service-sec8 .ser-card3.v1 .ser-content p {
  margin-top: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 10px;
}

/* Ensure the title matches the others */
.service-sec8 .ser-card3.v1 .ser-content .title {
  margin-bottom: 5px;
  font-size: 24px;
  color: #fff;
}

/*  Base Card Style */
.feature-sec1 .feature-card {
  background: transparent;
  padding: 40px 30px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Hover Effect: Border & Glow */
.feature-sec1 .feature-card:hover {
  transform: translateY(-7px);
  /* CHANGED TO BLUE */
  border-color: #2b70fa;
  /* Soft Blue Glow */
  box-shadow: 0 10px 30px rgba(43, 112, 250, 0.15);
}

/*  Icon Styling - KEEP ORIGINAL COLOR */
.feature-sec1 .feature-card img {
  margin-bottom: 25px;
  transition: transform 0.4s ease;
  width: 60px;
  filter: none;
}

.feature-sec1 .feature-card:hover img {
  transform: scale(1.1);
}

/*  Title Styling */
.feature-sec1 .feature-card .title {
  font-size: 22px;
  margin-bottom: 15px;
  color: #1a1a1a;
  transition: color 0.3s ease;
}

/* Hover: Title turns Blue */
.feature-sec1 .feature-card:hover .title {
  color: #2b70fa;
}

/*  Paragraph Styling */
.feature-sec1 .feature-card p {
  color: #555555;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
}

.choose-us-sec3 .sec-title {
  margin-top: -300px;
}

.ser-card9 {
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: 24px;
  display: flex;
  width: 100%;
}

/* Background image */
.ser-card9 > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay for readability */
.ser-card9::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.45) 45%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: 1;
}

.ser-content9 {
  position: relative;
  z-index: 2;
  padding: 44px 40px;
  color: #ffffff;
  max-width: 100%;
}

/* Icon */
.ser-content9 img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 16px;
}

/* Title */
.ser-content9 .title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 1.25;
}

/* Description */
.ser-content9 p {
  font-size: 16px;
  line-height: 1.65;
  opacity: 0.9;
  max-width: 90%;
}

/* CTA */
.ser-btn3 {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/*  Commercial Solutions → TOP */
.service-sec9 .col-lg-4:nth-child(1) .ser-card9 {
  align-items: flex-start;
}

/* Add breathing room from top */
.service-sec9 .col-lg-4:nth-child(1) .ser-content9 {
  padding-top: 80px;
  margin-left: -50px;
}

/*  Industrial Applications → BOTTOM (but lifted) */
.service-sec9 .col-lg-4:nth-child(2) .ser-card9 {
  align-items: flex-end;
}

/* Lift content slightly so it doesn't stick to bottom */
.service-sec9 .col-lg-4:nth-child(2) .ser-content9 {
  padding-bottom: 80px;
  margin-left: -50px;
}

/*  Smart Lifestyle → TOP */
.service-sec9 .col-lg-4:nth-child(3) .ser-card9 {
  align-items: flex-start;
}

/* Slightly tighter than first card */
.service-sec9 .col-lg-4:nth-child(3) .ser-content9 {
  padding-top: 80px;
  margin-left: -50px;
}

.ser-card9 {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ser-card9:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.35);
}

@media (max-width: 991px) {
  .ser-card9 {
    height: 480px;
  }

  .ser-card9 {
    align-items: flex-end !important;
  }

  .ser-content9 {
    padding: 34px 28px;
  }
}

.service-sec7 {
  background-color: #dbdde0;
  padding: 80px 0;
  overflow: hidden;
}

/*  Centered Title */
.service-sec7 .sec-title {
  text-align: center;
  margin-bottom: 60px;
}

.service-sec7 .sec-title .title {
  color: #1a1a1a;
  font-size: 36px;
  font-weight: 700;
}

.service-sec7 .sec-title .sub-title {
  color: #05644f;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}

/*  Marquee Container */
.partner-marquee {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding: 20px 0;
}

/* Side Fades  */
.partner-marquee:before,
.partner-marquee:after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
}

.partner-marquee:before {
  left: 0;
  background: linear-gradient(to right, #dbdde0, transparent);
}

.partner-marquee:after {
  right: 0;
  background: linear-gradient(to left, #dbdde0, transparent);
}

/* The Track */
.partner-track {
  display: flex;
  animation: scroll 30s linear infinite;
  width: max-content;
}

/*  Individual Partner Item  */
.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 60px;
  transition: transform 0.3s ease;
}

.partner-item:hover {
  transform: translateY(-5px);
}

/* Logo Style */
.partner-item img {
  height: 70px;
  width: auto;
  margin-bottom: 15px;
  filter: none;
  display: block;
}

/* Text Style */
.partner-item span {
  color: #444;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* 6. Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.about-us-sec9 {
  padding-bottom: 10px;
}

.marquee-sec {
  margin-top: 0;
  padding-top: 20px;
}

.marquee-sec.ibt-section-gapBottom {
  padding-bottom: 20px;
}

.service-sec22 {
  padding-bottom: 80px;
}

.parallax-banner-sec {
  height: 550px;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  z-index: 10;
  margin-top: -40px;
  margin-bottom: 80px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  background: #fff;
}

.parallax-bg {
  background-image: url("../images/event/about\ us\ 2.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 120%;
  width: 100%;
  transform: translateY(-10%);
  will-change: transform;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}

/* --- CARDS  --- */
.mvv-card {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 24px;
  border: 2px solid #f0f3f6;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

/* Hover Effects */
.mvv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}
.mvv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, #2b70fa, #4de2c1);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.mvv-card:hover::before {
  opacity: 1;
}

/* Icon & Text */
.mvv-card .icon-box {
  margin-bottom: 30px;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: rgba(43, 112, 250, 0.08);
  color: #2b70fa;
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
.mvv-card:hover .icon-box {
  background: #2b70fa;
  color: #ffffff;
  transform: rotate(-5deg) scale(1.1);
}
.mvv-card .title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 25px;
  color: #1a1a1a;
}
.mvv-card p {
  color: #555;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 15px;
}

.service-sec6 {
  background-color: #f4f7fa;
}

.service-card-bento {
  background: #ffffff;
  padding: 40px;
  border-radius: 30px;
  height: 100%;
  min-height: 420px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);

  display: flex;
  flex-direction: column;
}

/* Hover Effect: Lift and Shadow */
.service-card-bento:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-card-bento .icon-box {
  width: 60px;
  height: 60px;
  background: #f0f5ff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  font-size: 24px;
  color: #2b70fa;
  transition: all 0.3s ease;
}

.service-card-bento:hover .icon-box {
  background: #2b70fa;
  color: #fff;
  transform: scale(1.1);
}

.service-card-bento .title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.service-card-bento p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 60px;
  flex-grow: 1;
}

.service-card-bento .arrow-btn {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.service-card-bento:hover .arrow-btn {
  background: #2b70fa;
  transform: rotate(-45deg);
}

.service-card-bento::after {
  content: attr(data-index);
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 80px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
  pointer-events: none;
}

.feature-sec10 {
  background-color: #ffffff;
  padding-bottom: 100px;
}

/* Premium Feature Card */
.feature-card-premium {
  background: #f8f9fa;
  padding: 35px 30px;
  border-radius: 20px;
  margin-bottom: 30px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Hover Effects */
.feature-card-premium:hover {
  transform: translateY(-10px);
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(43, 112, 250, 0.1);
  border-color: transparent;
}

/* Gradient Bottom Line on Hover */
.feature-card-premium::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2b70fa, #4de2c1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card-premium:hover::after {
  transform: scaleX(1);
}

/* Icon Box */
.feature-card-premium .icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 28px;
  color: #2b70fa;
  transition: all 0.4s ease;
}

.feature-card-premium:hover .icon-wrapper {
  background: #2b70fa;
  color: #ffffff;
  transform: rotateY(180deg);
}

/* Typography */
.feature-card-premium .title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.feature-card-premium p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 0;
}

.service-sec6.ibt-section-gap {
  padding-bottom: 50px;
}

.marquee-sec {
  margin-top: 0;
  padding-top: 40px;
  padding-bottom: 40px;
}

.feature-sec10.ibt-section-gap {
  padding-top: 50px;
}

.service-sec6 + .marquee-sec {
  margin-top: -40px;
}

.marquee-sec + .feature-sec10 {
  margin-top: -50px;
}

.testimonials-sec.v2 {
  margin-bottom: 100px !important;
}

.feature-sec10 .sec-title {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.feature-sec10 .sec-title .sub-title {
  display: inline-block;
}

.apetito-hero {
  padding: 0px 0px 0;
  background: #ffffff;
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: visible;
}

.apetito-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(43, 112, 250, 0.04) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: 0;
  pointer-events: none;
}

/* Text Content Area */
.hero-text-wrap {
  position: relative;
  z-index: 2;
  padding-right: 40px;
  margin-left: -30px;
  margin-top: -150px;
}

.hero-text-wrap .sub-title {
  font-size: 15px;
  font-weight: 800;
  color: #2b70fa;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 25px;
  display: block;
}

.hero-text-wrap h1 {
  font-size: 70px;
  font-weight: 700;
  line-height: 1.05;
  color: #1a1a1a;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

.hero-text-wrap p {
  font-size: 20px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 45px;
  max-width: 580px;
  font-weight: 400;
}

/*  Button Styling */
.hero-btn-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.premium-btn {
  padding: 18px 45px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  text-decoration: none !important;
}

/* ---  HERO BUTTONS --- */

.premium-btn-blue {
  background: linear-gradient(
    102deg,
    rgb(130, 88, 200) 0.77%,
    rgb(103, 102, 200) 32.11%,
    rgb(44, 132, 200) 100.27%
  );
  color: #fff;
  box-shadow: 0 10px 30px rgba(103, 102, 200, 0.35);
  border: none;
}

.premium-btn-blue:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(103, 102, 200, 0.5);
  color: #fff;
  filter: brightness(1.1);
}

.premium-btn-outline {
  background: transparent;
  color: #1a1a1a;
  border: 2px solid rgba(0, 0, 0, 0.1);
}

.premium-btn-outline:hover {
  border-color: rgb(103, 102, 200);
  color: rgb(103, 102, 200);
  transform: translateY(-3px);
}

/* Right Side Image Area */
.hero-img-wrap {
  position: relative;
  z-index: 2;
  text-align: center;
  background: radial-gradient(
    circle at center,
    rgba(43, 112, 250, 0.08) 0%,
    transparent 70%
  );
}

.hero-img-wrap img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.2));
  animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-25px);
  }
}

/* Responsive Tweaks */
@media (max-width: 991px) {
  .apetito-hero {
    text-align: center;
    height: auto;
    padding-top: 160px;
  }
  .hero-text-wrap {
    padding-right: 0;
    margin-bottom: 60px;
  }
  .hero-text-wrap h1 {
    font-size: 50px;
  }
  .hero-text-wrap p {
    margin: 0 auto 40px auto;
    font-size: 18px;
  }
  .hero-btn-group {
    justify-content: center;
  }
}

.value-intro-sec {
  padding: 100px 0;
  background-color: #f8faff;
  text-align: center;
}

.intro-title-box {
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.intro-title-box h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #1a1a1a;
}

/* Triple the Impact */
.intro-title-box h2 span {
  color: #2b70fa;
}

.intro-title-box p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
}

/*  UPDATED VALUE CARDS--- */

.value-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Hover Effect: Lift + Purple/Blue Shadow */
.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(103, 102, 200, 0.2);
  border-color: rgba(130, 88, 200, 0.3);
}

.value-icon-box {
  width: 80px;
  height: 80px;
  background: rgba(130, 88, 200, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  /* Default: Purple Icon Color */
  color: rgb(130, 88, 200);
  font-size: 32px;
  transition: all 0.4s ease;
}

/* Hover*/
.value-card:hover .value-icon-box {
  background: linear-gradient(
    102deg,
    rgb(130, 88, 200) 0.77%,
    rgb(103, 102, 200) 32.11%,
    rgb(44, 132, 200) 100.27%
  );
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(103, 102, 200, 0.4);
}

.value-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.value-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}
/* --- FEATURES IMAGE SECTION --- */
.apetito-feature-img-sec {
  padding: 80px 0;
  background: #f8faff;
  text-align: center;
}

.feature-full-img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

/* --- VIDEO SECTION --- */
.apetito-video-sec {
  padding: 100px 0;
  background: #111111;
  color: #fff;
  text-align: center;
}

.video-title-wrap {
  margin-bottom: 50px;
}

.video-title-wrap h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #fff;
}

.video-title-wrap p {
  font-size: 18px;
  color: #aaa;
}

/* Video Wrapper */
.video-box-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(43, 112, 250, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

/* Sensory Section */
.apetito-sensory-sec {
  padding: 120px 0;
  background: #111111;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sensory-title-wrap {
  margin-bottom: 60px;
}

.sensory-title-wrap h2 {
  font-size: 46px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.sensory-title-wrap p {
  font-size: 20px;
  color: #aaa;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Image Container */
.sensory-img-box {
  max-width: 900px;
  margin: 0 auto;
}

.sensory-img-box img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 50px rgba(43, 112, 250, 0.2));
}

/* Operation Section */
.apetito-operation-sec {
  padding: 100px 0;
  background: #f4f7fa;
  overflow: hidden;
  margin-top: -100px;
}

.op-row {
  margin-bottom: 60px;
}

.op-row:last-child {
  margin-bottom: 0;
}

/* Images */
.op-img-box {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.op-img-box img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.op-img-box:hover img {
  transform: scale(1.03);
}

/* Text Content */
.op-content-box {
  padding: 20px;
}

.op-content-box h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
  line-height: 1.3;
}

.op-content-box p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* List style features */
.op-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.op-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #555;
  font-size: 16px;
}

.op-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 3px;
  color: #2b70fa;
}

/* Mobile Fixes */
@media (max-width: 991px) {
  .op-content-box {
    padding: 30px 0 0 0;
    text-align: center;
  }
  .op-list li {
    text-align: left;
    display: inline-block;
  }
}

.apetito-modes-sec {
  padding: 100px 0;
  background: #f4f7fa;
  text-align: center;
}

.modes-grid {
  margin-top: 50px;
}

/* Individual Mode Card */
.mode-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

/* Hover Effect*/
.mode-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(103, 102, 200, 0.2);
  border-color: rgba(130, 88, 200, 0.3);
}

/* Icon Styling */
.mode-icon-box {
  width: 80px;
  height: 80px;
  background: rgba(130, 88, 200, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  transition: all 0.4s ease;
}

.mode-icon-box i {
  font-size: 32px;
  color: rgb(130, 88, 200);
}

/* Hover Effect: Icon Box fills with Gradient */
.mode-card:hover .mode-icon-box {
  background: linear-gradient(
    102deg,
    rgb(130, 88, 200) 0.77%,
    rgb(103, 102, 200) 32.11%,
    rgb(44, 132, 200) 100.27%
  );
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(103, 102, 200, 0.4);
}

.mode-card:hover .mode-icon-box i {
  color: #ffffff;
}

/* Text */
.mode-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.mode-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Black Background for Section */
.apetito-contrast-sec {
  padding: 100px 0;
  background: #000000;
}

/* The Unified Card  */
.contrast-unified-block {
  display: flex;
  flex-wrap: wrap;
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 80px;
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.05);
}

.contrast-unified-block:last-child {
  margin-bottom: 0;
}

/* Text Side  */
.unified-text {
  width: 50%;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.unified-text h3 {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.unified-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* List Styling */
.unified-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.unified-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: #333;
  font-weight: 600;
}

.unified-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 3px;
  color: #2b70fa;
}

/* Image Side  */
.unified-img {
  width: 50%;
  position: relative;
  background: #000;
}

.unified-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mobile Fix: Stack them */
@media (max-width: 991px) {
  .unified-text,
  .unified-img {
    width: 100%;
  }
  .unified-img {
    height: 300px;
  }
  .unified-text {
    padding: 40px 30px;
  }
}

/* Voice Broadcast Section  */
.apetito-voice-sec {
  position: relative;
  height: 100vh;
  min-height: 800px;
  width: 100%;
  margin-top: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 50px;
  overflow: hidden;
  background: #000;
}

.apetito-voice-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* Background Video */
.voice-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* The Text Container */
.voice-overlay-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography styling for Dark Overlay */
.voice-overlay-content h2 {
  font-size: 56px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
  letter-spacing: -1.5px;
}

.voice-overlay-content p {
  font-size: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .apetito-voice-sec {
    height: 600px;
    padding-top: 80px;
  }
  .voice-overlay-content h2 {
    font-size: 36px;
  }
}

/* Application Scenarios Section */
.apetito-scenarios-sec {
  padding: 100px 0;
  background: #ffffff;
  text-align: center;
}

.scenarios-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 50px;
}

/* The Main Display Window */
.scenario-display-window {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: 600px;
  margin: 0 auto 40px auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  background: #f0f2f5;
}

.scenario-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Tab Navigation Container */
.scenario-nav {
  display: inline-flex;
  background: #f8faff;
  padding: 10px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* Default Button State */
.scenario-btn {
  background: transparent;
  border: none;
  padding: 12px 30px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  color: #666;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Hover Effect (Non-Active Buttons) */
.scenario-btn:hover {
  color: rgb(130, 88, 200);
  background: rgba(130, 88, 200, 0.05);
}

/* ACTIVE State */
.scenario-btn.active {
  /* The Exact Gradient */
  background: linear-gradient(
    102deg,
    rgb(130, 88, 200) 0.77%,
    rgb(103, 102, 200) 32.11%,
    rgb(44, 132, 200) 100.27%
  );
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(103, 102, 200, 0.35);
  transform: translateY(-2px);
}
/* Fade Animation for Tabs */
.tab-content > .tab-pane {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.tab-content > .active {
  display: block;
  opacity: 1;
}

/* Mobile Fix */
@media (max-width: 768px) {
  .scenario-display-window {
    height: 300px;
  }
  .scenario-nav {
    border-radius: 15px;
  }
}

.apetito-support-sec {
  padding: 100px 0;
  background: #f8faff;
  text-align: center;
}

.support-title {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 60px;
}

.support-item {
  padding: 20px;
  transition: transform 0.3s ease;
}

/* Hover Effect: Lift Item */
.support-item:hover {
  transform: translateY(-10px);
}

/* Icon Box Styling */
.support-icon-box {
  width: 100px;
  height: 100px;
  background: linear-gradient(
    102deg,
    rgb(130, 88, 200) 0.77%,
    rgb(103, 102, 200) 32.11%,
    rgb(44, 132, 200) 100.27%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  /* Purple-tinted shadow for depth */
  box-shadow: 0 10px 25px rgba(103, 102, 200, 0.3);
  transition: all 0.3s ease;
}

.support-icon-box i {
  font-size: 40px;
  color: #ffffff;
}

/* Hover Effect: Scale & stronger glow */
.support-item:hover .support-icon-box {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(103, 102, 200, 0.5);
}

.support-text {
  font-size: 18px;
  font-weight: 600;
  color: #555;
  line-height: 1.5;
  max-width: 250px;
  margin: 0 auto;
}
/* Parameters & Specs Section */
.apetito-params-sec {
  padding: 100px 0;
  background: #ffffff;
}

.params-title {
  font-size: 38px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 50px;
  text-align: center;
}

/*  The Diagram Image Area */
.params-img-box {
  text-align: center;
  margin-bottom: 80px;
}

.params-img-box img {
  max-width: 100%;
  height: auto;
  max-width: 1000px;
}

/*  The Specifications Table */
.specs-table-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
}

.table-custom {
  width: 100%;
  margin-bottom: 0;
  border-collapse: collapse;
}

/* Table Header  */
.table-custom td.spec-name {
  background: #f8faff;
  color: #1a1a1a;
  font-weight: 700;
  padding: 20px 30px;
  width: 40%;
  border-bottom: 1px solid #eef2f6;
}

/* Table Value  */
.table-custom td.spec-value {
  background: #ffffff;
  color: #555;
  font-weight: 500;
  padding: 20px 30px;
  width: 60%;
  border-bottom: 1px solid #f0f0f0;
}

/* Hover Effect for Rows */
.table-custom tr:hover td {
  background: #f0f7ff;
}

/* Mobile Fix */
@media (max-width: 768px) {
  .table-custom td.spec-name,
  .table-custom td.spec-value {
    padding: 15px;
    font-size: 14px;
  }
}
/* --- PURE WHITE 360 SECTION --- */
.apetito-360-white-sec {
  padding: 50px;
  background: #ffffff;
  text-align: center;
}

/* Header */
.sec-360-white-header {
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.sec-360-white-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.sec-360-white-header p {
  font-size: 18px;
  color: #555;
}

/* Video Wrapper */
.video-360-white-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: #ffffff;
  line-height: 0;
  font-size: 0;
}

/* The Player */
.video-360-player-clean {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* CRUZR HERO SECTION STYLES */

.cruzr-hero-premium {
  position: relative;
  padding: 140px 0 100px 0;
  background: #ffffff;
  overflow: hidden;
  background-image: radial-gradient(
    circle at 70% 30%,
    rgba(43, 112, 250, 0.03) 0%,
    rgba(255, 255, 255, 0) 60%
  );
}

/* --- LEFT CONTENT --- */
.cruzr-hero-content {
  position: relative;
  z-index: 2;
  padding-right: 20px;
  margin-left: 50px;
  margin-top: -150px;
}

/* Tagline */
.hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #2b70fa;
  margin-bottom: 20px;
  background: rgba(43, 112, 250, 0.08);
  padding: 8px 16px;
  border-radius: 30px;
}

/* Main Title */
.hero-title {
  font-size: 65px;
  font-weight: 800;
  line-height: 1.1;
  color: #1a1a1a;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

/* Gradient Text Effect */
.highlight-gradient {
  background: linear-gradient(102deg, rgb(130, 88, 200), rgb(44, 132, 200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Description */
.hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 40px;
  max-width: 550px;
}

/* --- BUTTON GROUP --- */
.hero-btn-group {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* Primary Button */
.hero-custom-btn {
  background: linear-gradient(
    102deg,
    rgb(130, 88, 200),
    rgb(44, 132, 200)
  ) !important;
  color: #fff !important;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(103, 102, 200, 0.3);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.hero-custom-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(103, 102, 200, 0.5);
  filter: brightness(1.1);
}

/* Play Button (Watch Video) */
.hero-play-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-play-btn .icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  color: #2b70fa;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.hero-play-btn:hover .icon-box {
  background: #2b70fa;
  color: #fff;
  transform: scale(1.1);
}

.hero-play-btn:hover .text {
  color: #2b70fa;
}

/* --- RIGHT IMAGE & ANIMATION --- */
.cruzr-hero-img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 600px;
}

/* Floating Animation */
.cruzr-hero-img .main-robot {
  max-height: 100%;
  width: auto;
  max-width: 100%;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.15));
  animation: floatRobot 6s ease-in-out infinite;
}

@keyframes floatRobot {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(
    135deg,
    rgba(43, 112, 250, 0.05),
    rgba(130, 88, 200, 0.05)
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .cruzr-hero-premium {
    padding-top: 120px;
    text-align: center;
  }

  .cruzr-hero-content {
    padding-right: 0;
    margin-bottom: 50px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-btn-group {
    justify-content: center;
  }

  .cruzr-hero-img {
    height: 400px;
  }
}

/* CRUZR CORE FEATURES STYLES */

.cruzr-features-sec {
  background-color: #f8faff;
  padding-top: 100px;
  padding-bottom: 100px;
  margin-top: -70px;
}

/* --- Reusable Gradient Text Style --- */
.premium-gradient-text,
.highlight-gradient {
  background: linear-gradient(102deg, rgb(130, 88, 200), rgb(44, 132, 200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.sec-title .sub-title.premium-gradient-text {
  display: block;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
}

/* --- Feature Card Style --- */
.cruzr-feature-card {
  background: #ffffff;
  padding: 50px 35px;
  border-radius: 24px;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(130, 88, 200, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Hover Effect: Lift & Glow */
.cruzr-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(130, 88, 200, 0.15);
  border-color: transparent;
}

/* Hover Effect: Gradient Border at bottom */
.cruzr-feature-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(102deg, rgb(130, 88, 200), rgb(44, 132, 200));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 0;
}

.cruzr-feature-card:hover::after {
  transform: scaleX(1);
}

/* --- Icon Wrapper --- */
.cruzr-feature-card .icon-wrapper {
  width: 90px;
  height: 90px;
  margin: 0 auto 35px auto;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(130, 88, 200, 0.1),
    rgba(44, 132, 200, 0.1)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  /* Gradient Icon Color */
  background: linear-gradient(102deg, rgb(130, 88, 200), rgb(44, 132, 200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s ease;
}

/* Hover */
.cruzr-feature-card:hover .icon-wrapper {
  background: linear-gradient(102deg, rgb(130, 88, 200), rgb(44, 132, 200));
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: #fff;
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 15px 30px rgba(130, 88, 200, 0.3);
}

/* --- Typography --- */
.cruzr-feature-card .feature-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.cruzr-feature-card .feature-text {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 0;
}

/*  CRUZR APPLICATIONS SECTION*/

.cruzr-applications-sec {
  padding: 100px 0;
  background: #ffffff;
  margin-top: -150px;
}

/* --- Navigation Tabs (Pill Buttons) --- */
.application-nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 15px;
  background: #f8faff;
  padding: 10px 15px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  justify-content: center;
}

.application-nav .nav-link {
  border-radius: 40px;
  padding: 12px 25px;
  font-weight: 600;
  color: #555;
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.application-nav .nav-link i {
  font-size: 16px;
}

/* Hover State */
.application-nav .nav-link:hover {
  color: rgb(130, 88, 200);
  background: rgba(130, 88, 200, 0.05);
}

/* ACTIVE State  */
.application-nav .nav-link.active {
  background: linear-gradient(
    102deg,
    rgb(130, 88, 200),
    rgb(44, 132, 200)
  ) !important;
  color: #fff !important;
  box-shadow: 0 10px 20px rgba(103, 102, 200, 0.3);
  transform: translateY(-2px);
}

/* --- Display Window  --- */
.application-display-window {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  background: #000;
}

/* The Image */
.app-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Slight zoom on hover */
.application-display-window:hover .app-bg-img {
  transform: scale(1.03);
}

/* Text Overlay Box inside the image */
.app-overlay-text {
  position: absolute;
  bottom: 40px;
  left: 40px;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-left: 5px solid rgb(130, 88, 200);
}

.app-overlay-text h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.app-overlay-text p {
  font-size: 16px;
  color: #555;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .application-nav {
    border-radius: 20px;
  }

  .application-display-window {
    height: 400px;
  }

  .app-overlay-text {
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: none;
    padding: 20px;
  }
}

.cruzr-zigzag-sec {
  background-color: #ffffff;
  padding: 100px 0;
  overflow: hidden;
  margin-top: -50px;
}

.cruzr-container-limit {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

/*  ROW ALIGNMENT */
.zigzag-row {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  gap: 30px;
}

.zigzag-row:last-child {
  margin-bottom: 0;
}

/*  COLUMN SIZING */
.col-text,
.col-img {
  flex: 0 0 calc(50% - 15px);
  max-width: calc(50% - 15px);
}

.zigzag-content {
  padding-right: 40px;
}

.pl-fix {
  padding-right: 0;
  padding-left: 40px;
}

/*  IMAGE WRAPPER */
.zigzag-img-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.zigzag-row:nth-child(even) .zigzag-img-wrapper {
  margin-top: 20px;
}

.zigzag-row:nth-child(odd) .zigzag-img-wrapper {
  margin-top: 10px;
}

.rounded-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/*  TYPOGRAPHY & ELEMENTS (Same as before) */
.zigzag-content h3 {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 20px;
}
.zigzag-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
}

.check-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #444;
  font-weight: 600;
}
.check-list li i {
  color: #4de2c1;
  margin-right: 12px;
}

/* Battery Box Styles */
.battery-status-box {
  background: #f8faff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #eef2f6;
  display: inline-block;
  min-width: 280px;
}
.status-text {
  font-weight: 700;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: #1a1a1a;
}
.text-success {
  color: #4de2c1 !important;
}
.battery-bar-container {
  width: 100%;
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}
.battery-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #4de2c1, #26c6da);
  border-radius: 4px;
  animation: chargeAnim 3s infinite ease-in-out;
}
@keyframes chargeAnim {
  0% {
    width: 0%;
  }
  100% {
    width: 90%;
  }
}

/* 7. MOBILE RESPONSIVENESS */
@media (max-width: 991px) {
  .zigzag-row {
    flex-direction: column !important;
    gap: 40px;
    margin-bottom: 80px;
    text-align: center;
  }
  .col-text,
  .col-img {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-img {
    order: -1;
  }

  .zigzag-content,
  .pl-fix {
    padding: 0;
  }
  .check-list li {
    justify-content: center;
  }
  .icon-circle-gradient {
    margin: 0 auto 20px auto;
  }
}

/* HARDWARE IMAGE STYLING*/

.cruzr-hardware-img-sec {
  background: #ffffff;
  padding-bottom: 80px;
}

.rounded-spec-img {
  border: none;
  background: transparent;
  border-radius: 20px;
  box-shadow: none;
  display: block;
}

/* CRUZR VIDEO SECTION*/

.cruzr-video-sec {
  background-color: #ffffff;
  margin-top: -150px;
}

/* The Box that holds the video */
.video-wrapper-box {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  background: #000;
  border: 4px solid #ffffff;
}

/* The actual Iframe */
.video-wrapper-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/*SMART ECOSYSTEM SECTION */

.smart-ecosystem-sec {
  background: linear-gradient(to bottom, #ffffff 0%, #f4f7fa 100%);
  padding-bottom: 20px;
  padding-top: 20px;
  position: relative;
}

.ecosystem-img-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: none;
  background: transparent;
  padding: 0;
  border: none;
}

.ecosystem-img {
  border-radius: 20px;
  display: block;
}

.floating-badge {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(5px);
  animation: floatUp 3s ease-in-out infinite;
}

.floating-badge i {
  color: #2d9cdb;
  font-size: 24px;
}

.floating-badge span {
  font-weight: 700;
  color: #1a1a1a;
  font-size: 16px;
}

@keyframes floatUp {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .floating-badge {
    display: none;
  }
}

/* PRODUCT SPECS SECTION*/

.cruzr-specs-sec {
  background-color: #ffffff;
  padding-bottom: 100px;
  margin-top: -150px;
}

/*  Visual Diagram Styling */
.specs-img-wrapper {
  background: transparent;
  border-radius: 20px;
  box-shadow: none;
  padding: 0;
  border: none;
}

/*  Table Box Container */
.specs-table-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #eef2f6;
}

/*  Table Header */
.specs-table-box thead th {
  background-color: #f8faff;
  color: #1a1a1a;
  font-weight: 800;
  font-size: 18px;
  padding: 20px;
  border-bottom: 2px solid #e0e6ed;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/*  Table Rows */
.specs-table-box tbody tr {
  transition: all 0.3s ease;
  border-bottom: 1px solid #f1f1f1;
}

.specs-table-box tbody tr:last-child {
  border-bottom: none;
}

.specs-table-box tbody tr:hover {
  background-color: #fcfdff;
  transform: scale(1.01);
}

/*  Cell Styling */
.specs-table-box td {
  padding: 18px 20px;
  vertical-align: middle;
}

.spec-label {
  font-weight: 700;
  color: #555;
  font-size: 16px;
  border-right: 1px solid #f5f5f5;
}

.spec-value {
  font-weight: 500;
  color: #1a1a1a;
  font-size: 16px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .specs-table-box {
    padding: 15px;
  }
  .spec-label,
  .spec-value {
    font-size: 14px;
    padding: 12px;
  }
}

/* LOOPING VIDEO SECTION */

.cruzr-full-loop-sec {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 80px;
  line-height: 0;
  background: #000;
}

.loop-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (min-width: 1600px) {
  .loop-video {
    max-height: 800px;
  }
}

/* SCOOTX HERO STYLING*/

.scootx-hero-sec {
  background: linear-gradient(to right, #ffffff 0%, #f4f8fb 100%);
  padding: 120px 0 100px 0;
  overflow: hidden;
  margin-top: -40px;
}

/* 1. Hero Image */
.hero-scoot-img {
  max-height: 650px;
  animation: floatHero 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 35px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #667eea 0%, #764ba2 100%) border-box;
  color: #764ba2 !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-gradient:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) padding-box,
    linear-gradient(135deg, #667eea 0%, #764ba2 100%) border-box;

  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(118, 75, 162, 0.4);
}

.btn-gradient i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-gradient:hover i {
  transform: translateX(4px);
  color: #ffffff;
}

@keyframes floatHero {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Quick Specs Row */
.hero-quick-specs {
  border-top: 1px solid #eee;
  padding-top: 25px;
}

.spec-item {
  text-align: center;
  padding-right: 30px;
  border-right: 1px solid #eee;
}

.spec-item:last-child {
  border-right: none;
}

.spec-item i {
  font-size: 20px;
  color: #007bff;
  display: block;
}

.spec-item h5 {
  font-weight: 800;
  font-size: 18px;
  color: #1a1a1a;
}

/*  SCOOTX FEATURES STYLING*/

.scootx-features-sec {
  background-color: #f9fbfd;
  padding-bottom: 10px;
  margin-top: -150px;
}

.feature-card-box {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid #eef2f6;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.feature-card-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 123, 255, 0.1);
  border-color: rgba(0, 123, 255, 0.2);
}

/* The Blue Icon Circle */
.icon-circle-blue {
  width: 70px;
  height: 70px;
  background: rgba(0, 123, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #007bff;
}

.feature-card-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.feature-card-box p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

.scootx-showcase-banner {
  margin-top: -80px;
}

/* SCOOTX SPECS STYLING */

.scootx-specs-sec {
  background-color: #ffffff;
  padding-bottom: 10px;
  margin-top: -150px;
  position: relative;
}

.specs-table-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #eef2f6;
}

.specs-table-box tbody tr {
  border-bottom: 1px solid #f1f1f1;
  transition: background-color 0.2s;
}

.specs-table-box tbody tr:last-child {
  border-bottom: none;
}

.specs-table-box tbody tr:hover {
  background-color: #f8faff;
}

/* Icon styling inside the label */
.spec-label i {
  color: #007bff;
  width: 25px;
  text-align: center;
  margin-right: 10px;
}

.spec-label {
  font-weight: 700;
  color: #555;
  font-size: 16px;
  padding: 20px;
  width: 40%;
}

.spec-value {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 16px;
  padding: 20px;
}

/* SCOOTX VIDEO SECTION*/

.scootx-video-sec {
  background-color: #f9fbfd;
  padding-bottom: 10px;
  margin-top: -80px;
  padding-top: 50px;
}

.video-wrapper-box {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  background: #000;
  border: 4px solid #ffffff;
}

.video-wrapper-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* SCOOTX BANNER TABS */

.scootx-versatility-sec {
  margin-top: -70px;
  padding-bottom: 10px;
}

/* SCOOTX VERSATILITY TABS */

.custom-banner-tabs {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 0;
}

.custom-banner-tabs .nav-link {
  background: #ffffff;
  color: #555;
  border: 1px solid #eef2f6;
  border-radius: 50px;
  padding: 12px 35px;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.custom-banner-tabs .nav-link.active,
.custom-banner-tabs .nav-link:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  color: #ffffff !important;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(118, 75, 162, 0.4);
}

.custom-banner-tabs .nav-link i {
  margin-right: 8px;
}

/* Container Height Reduced */
.banner-wrapper {
  position: relative;
  width: 100%;
  height: 750px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  background: #f0f0f0;
}

/*  Image Positioning Fixed */
.banner-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.5s ease;
}

/* Floating Card Position */
.floating-info-card {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  max-width: 400px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-left: 5px solid #764ba2;
  z-index: 2;
}

/*  Mobile Responsiveness */
@media (max-width: 768px) {
  .banner-wrapper {
    height: 350px;
  }
  .floating-info-card {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: none;
    border-radius: 0 0 24px 24px;
    border-left: none;
    border-top: 5px solid #764ba2;
  }
}

/* SCOOTX TECHNICAL DIAGRAM STYLE */

.scootx-tech-diagram-sec {
  background-color: #ffffff;
  padding-bottom: 10px;
}

.tech-diagram-wrapper {
  position: relative;
  padding: 10px;
}

.tech-diagram-img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  filter: none;
}

/*BRUTUS PAGE STYLING*/

.brutus-hero-sec {
  background: linear-gradient(to right, #ffffff 0%, #f8faff 100%);
  padding: 60px 0 10px 0;
  overflow: visible;
  margin-top: -50px;
}

/* Hero Image Styling */
.brutus-hero-img {
  max-height: 700px;
  width: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.15));
}

/* Button Outline Style  */
.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 13px 30px;
  font-weight: 600;
  color: #555;
  border: 2px solid #eef2f6;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: #764ba2;
  color: #764ba2;
  background: rgba(118, 75, 162, 0.05);
}
@keyframes floatUpDn {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

/*  Apply it to the class */
.animate-float {
  animation: floatUpDn 4s ease-in-out infinite;
}

/*BRUTUS FEATURE*/

.brutus-features-sec {
  background-color: #ffffff;
  padding: 40px 0;
}

.feature-card-industrial {
  background: #f8faff;
  padding: 40px 30px;
  border-radius: 12px;
  border: 1px solid #eef2f6;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Hover Effect: Stronger Shadow & Lift */
.feature-card-industrial:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border-color: #764ba2;
  background: #ffffff;
}

/* Icon Wrapper Styling */
.feature-card-industrial .icon-wrapper {
  width: 70px;
  height: 70px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

/* NEW: Icon Gradient Color  */
.feature-card-industrial .icon-wrapper i {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* NEW: Icon Box Hover Effect */
.feature-card-industrial:hover .icon-wrapper {
  border-color: transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #667eea 0%, #764ba2 100%) border-box;
  box-shadow: 0 5px 15px rgba(118, 75, 162, 0.2);
}

.feature-card-industrial h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.feature-card-industrial p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Tech Accent Line at bottom */
.feature-card-industrial::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: width 0.3s ease;
}

.feature-card-industrial:hover::after {
  width: 100%;
}

/*BRUTUS CONTROL CENTER STYLE*/

.brutus-control-sec {
  background-color: #15151f;
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

.brutus-control-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}

.tech-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(40, 167, 69, 0.1);
  color: #28a745; /* Green */
  border: 1px solid rgba(40, 167, 69, 0.3);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Small Icon Box */
.tech-icon-small {
  width: 50px;
  height: 50px;
  background: rgba(118, 75, 162, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a485d6; /* Light Purple */
  font-size: 20px;
  border: 1px solid rgba(118, 75, 162, 0.2);
  transition: all 0.3s ease;
}

.tech-item:hover .tech-icon-small {
  background: #764ba2;
  color: #fff;
  box-shadow: 0 0 15px rgba(118, 75, 162, 0.5);
}

.tech-circle-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(102, 126, 234, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.z-index-2 {
  position: relative;
  z-index: 2;
}

/*BRUTUS LINEUP STYLE*/

.brutus-lineup-sec {
  background-color: #111;
  padding: 70px 0;
}

.model-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hover Effect */
.model-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.model-header {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
  background: #fcfcfc;
}

.model-name {
  font-weight: 800;
  font-size: 28px;
  margin: 10px 0 0 0;
  color: #1a1a1a;
}

.badge-tech {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: #888;
  background: #eee;
  padding: 4px 10px;
  border-radius: 20px;
}

.badge-tech.highlight {
  background: #764ba2;
  color: #fff;
}

/* Image Area */
.model-img-box {
  padding: 30px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.model-img-box img {
  max-height: 100%;
  max-width: 100%;
  transition: transform 0.4s ease;
}

.model-card:hover .model-img-box img {
  transform: scale(1.1);
}

/* Specs Footer */
.model-specs {
  background: #f8faff;
  padding: 15px 20px;
  border-top: 1px solid #eee;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
}

.spec-row:last-child {
  margin-bottom: 0;
}

.spec-row span {
  color: #666;
}

.spec-row strong {
  color: #764ba2;
  font-weight: 700;
}

.highlight-card {
  border: 2px solid #764ba2;
}

/* BRUTUS CORE COMPONENTS STYLE*/

.brutus-components-sec {
  background-color: #ffffff;
  padding: 50px 0;
}

.components-img-wrapper {
  position: relative;
  padding: 10px;
}

.components-img {
  width: 100%;
  max-width: 1200px;
  height: auto;
}

/* BRUTUS ZIG-ZAG STYLE*/

.brutus-zigzag-sec {
  background-color: #ffffff;
  padding: 40px 0;
  overflow: hidden;
}

.brutus-container-limit {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.mb-80 {
  margin-bottom: 80px;
}

.zigzag-row {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  gap: 30px;
}

.zigzag-row:last-child {
  margin-bottom: 0;
}

.col-text,
.col-img {
  flex: 0 0 calc(50% - 15px);
  max-width: calc(50% - 15px);
}

/* PADDING FIXES */
.zigzag-content {
  padding-right: 40px;
}

.pl-fix {
  padding-right: 0;
  padding-left: 40px;
}

/* IMAGE WRAPPER */
.zigzag-img-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.rounded-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* TYPOGRAPHY */
.zigzag-content h3 {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.zigzag-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
}

/* CHECK LIST */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #444;
  font-weight: 600;
}

.check-list li i {
  color: #764ba2;
  margin-right: 12px;
  font-size: 18px;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 991px) {
  .zigzag-row {
    flex-direction: column !important;
    gap: 40px;
    margin-bottom: 80px;
    text-align: center;
  }

  .col-text,
  .col-img {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .col-img {
    order: -1;
  }

  .zigzag-content,
  .pl-fix {
    padding: 0;
  }

  .check-list li {
    justify-content: center;
  }
}
/* BRUTUS VIDEO SECTION STYLE*/

.brutus-video-sec {
  background-color: #111; /* Dark Cinema Background */
  padding: 80px 0;
  position: relative;
}

.video-box-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); /* Heavy shadow for depth */
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
}

/* The Corner Accents */
.corner-accent {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 3px solid #764ba2;
  z-index: 5;
  pointer-events: none;
}

.corner-accent.top-left {
  top: 20px;
  left: 20px;
  border-right: none;
  border-bottom: none;
}

.corner-accent.bottom-right {
  bottom: 20px;
  right: 20px;
  border-left: none;
  border-top: none;
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .corner-accent {
    width: 20px;
    height: 20px;
  }
}
/* =========================================
   BRUTUS LAYOUT SECTION 
   ========================================= */

.brutus-layout-sec {
  /* Exact gradient from your code */
  background: linear-gradient(to bottom, #ffffff 0%, #f4f7fa 100%);
  padding-bottom: 20px;
  padding-top: 20px;
  position: relative;
}

.ecosystem-img-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: none;
  background: transparent;
  padding: 0;
  border: none;
}

.ecosystem-img {
  border-radius: 20px;
  display: block;
}

/* Floating Badge Animation */
.floating-badge {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(5px);
  animation: floatUp 3s ease-in-out infinite;
  z-index: 2;
}

.floating-badge i {
  color: #764ba2;
  font-size: 24px;
}

.floating-badge span {
  font-weight: 700;
  color: #1a1a1a;
  font-size: 16px;
}

@keyframes floatUp {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .floating-badge {
    display: none;
  }
  .ecosystem-content {
    text-align: center;
    padding-left: 0 !important;
  }
}

/*BRUTUS STRUCTURE SECTION*/

.brutus-structure-sec {
  background-color: #ffffff;
  padding: 40px 0;
}

.structure-img-box {
  padding: 20px;
}

.structure-img-box img {
  max-width: 100%;
  height: auto;
  margin-top: -50px;

  filter: contrast(1.05);
}

@media (max-width: 768px) {
  .structure-img-box img {
    transform: scale(1.1);
  }
}

/*BRUTUS TECH SPECS */

.brutus-specs-sec {
  background-color: #0b0b0b;
  padding: 100px 0;
  color: #fff;
}

.spec-table-wrapper {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 5px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.spec-table {
  margin-bottom: 0;
  color: #e0e0e0;
  vertical-align: middle;
}

.spec-table th,
.spec-table td {
  padding: 20px;
  border-color: rgba(255, 255, 255, 0.05);
  text-align: center;
  font-size: 15px;
  transition: all 0.3s ease;
}

/* HEADER STYLING */
.spec-table thead th {
  background: #222;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
  position: relative;
  border-bottom: 2px solid transparent;
}

/* THE HOVER EFFECT */
.spec-table thead th.interactive-header:hover {
  color: #764ba2;
  background: #2a2a2a;
  border-bottom: 2px solid #764ba2;
  cursor: default;
}

/* First Column (Labels) Aligned Left */
.spec-table tbody td:first-child,
.spec-table thead th:first-child {
  text-align: left;
  font-weight: 600;
  color: #aaa;
  background: #1a1a1a;
}

/* Highlight Numbers */
.text-highlight {
  color: #00d2b5; /* Cyan */
  font-weight: 700;
  font-size: 17px;
}

/* Section Separators */
.sep-row td {
  background: #2a2a2a;
  color: #fff;
  font-weight: 800;
  text-align: left;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.5px;
  padding: 12px 20px;
}

/* Merged Cells */
.merged-cell {
  color: #bbb;
  font-style: italic;
  letter-spacing: 0.5px;
}

/* Row Hover Effect */
.spec-table tbody tr:hover td {
  background-color: rgba(118, 75, 162, 0.1);
  color: #fff;
}
