/* Header Styles */
.landing-header {
  background: #fff;
  padding: 0px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container img {
  max-height: 50px;
  width: auto;
  margin: 25px 0;
}

.header-nav {
  display: flex;
  gap: 15px;
  align-items: center;
}

.header-nav a {
  text-decoration: none;
}

.btn-register {
  padding: 10px 20px;
  border: 1px solid #614ace;
  background: #fff;
  color: #614ace;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-register:hover {
  background: #f5f3ff;
}

.btn-login {
  padding: 10px 20px;
  background: #614ace;
  color: #fff;
  border: 1px solid #614ACE;
  font-size: 20px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-login:hover {
  background: #4d3aa3;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  flex-direction: column;
  gap: 15px;
}

.mobile-menu.active {
  display: flex;
}

/* User Dropdown Navigation for Landing Headers */
.landing-header .header-nav .navbar-nav {
  align-items: center;
}

.nav-link-flex {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link-flex:hover {
  cursor: pointer;
}

.header-user-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333 !important;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
}

.header-user-nav:hover,
.header-user-nav:focus,
.header-user-nav:active,
.header-user-nav[aria-expanded="true"],
.landing-header .header-user-nav:hover,
.landing-header .header-user-nav:focus,
.landing-header .header-user-nav:active,
.landing-header .header-user-nav[aria-expanded="true"],
.landing-header a.header-user-nav:hover,
.landing-header a.header-user-nav:focus,
.landing-header a.header-user-nav:active,
.landing-header a.header-user-nav[aria-expanded="true"],
.landing-header .nav-link.header-user-nav:hover,
.landing-header .nav-link.header-user-nav:focus,
.landing-header .nav-link.header-user-nav:active,
.landing-header .nav-link.header-user-nav[aria-expanded="true"] {
  color: #333 !important;
  text-decoration: none;
  background-color: transparent !important;
}

.header-user-nav .img-logo {
  width: 3rem;
  height: 3rem;
}

.header-dropdown-wrapper {
  position: relative;
  display: inline-block;
  margin-left: 5px;
}

.header-dropdown-wrapper .dt-chevron {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  vertical-align: middle;
}

.header-dropdown-wrapper .dt-chevron:after {
  content: "";
  position: absolute;
  top: -5px;
  left: 5px;
  width: 10px;
  height: 10px;
  border-bottom: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
}

/* Dropdown menu positioning for landing headers */
.landing-header .dropdown-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s ease all;
  left: auto !important;
  right: 0 !important;
  top: 100% !important;
  margin-top: 10px;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid #e0e0e0;
  border-radius: 6px;
}

.landing-header .dropdown-menu.show {
  display: block;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: 0.3s ease all;
}

.landing-header .dropdown-item {
  padding: 12px 20px;
  color: #6b7afe !important;
  font-size: 14px;
  transition: background-color 0.2s;
}

.landing-header .dropdown-item:hover {
  background-color: #f5f3ff;
  color: #6b7afe !important;
}

.landing-header .dropdown-item:active {
  background-color: #e8e4ff;
  color: #6b7afe !important;
}

/* Hero Section */
.hero-section {
  background: #fff;
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 40px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 20px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-demo {
  padding: 15px 40px;
  background: #614ace;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}

.btn-demo:hover {
  background: #4d3aa3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(97, 74, 206, 0.3);
}

.hero-image-placeholder {
  text-align: center;
  color: #999;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  order: 1;
}

/* Rotating SVG Animation */
.svg-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rotating-svg {
  position: absolute;
  transition: opacity 0.8s ease-in-out;
  opacity: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rotating-svg-active {
  opacity: 1;
  position: relative;
}

/* Powering Your Growth Section */
.powering-growth-section {
  padding: 0;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #614ace;
  margin-bottom: 30px;
}

.section-title.purple-bg {
  background: #f5f3ff;
}

.feature-row {
  padding: 40px 20px;
}

.feature-row.purple-bg {
  background: #f5f3ff;
}

.feature-row.white-bg {
  background: #fff;
}

.feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #614ace;
  margin-bottom: 20px;
  line-height: 1.3;
}

.feature-content p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.feature-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.feature-image-wrapper-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

@media screen and (min-width: 320px) and (max-width: 920px) {
  .feature-image-wrapper-left {
    order: 1;
  }
  .feature-image-wrapper {
    justify-content: center;
  }
}

.feature-image-placeholder {
  width: 100%;
  max-width: 500px;
  height: 350px;
  background: #f0f0f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 12px;
  text-align: center;
  padding: 20px;
}

/* Everything Built In Section */
.everything-built-in-section {
  background: #fff;
  padding: 80px 20px;
}

.features-grid-3x3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card-small {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s;
}

.feature-icon-placeholder {
  height: 135px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #614ace;
  font-size: 12px;
}

.ph-icons {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  max-width: 135px;
  margin-bottom: 24px;
}

.feature-icon-placeholder-large {
  height: 235px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #614ace;
  font-size: 12px;
}

.fiph-icons {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  max-width: 235px;
}

.fiph-icons-lg {
  max-width: 335px;
}

.feature-card-small h4 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.feature-card-small p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* Business Models Section */
.business-models-section {
  background: #f5f3ff;
  padding: 80px 20px;
}

.business-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.business-column {
  display: flex;
  flex-direction: column;
}

.business-column h2 {
  background: #614ace;
  color: #fff;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

.business-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.business-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.business-item.icon-left {
  flex-direction: row;
}

.business-item.icon-right {
  flex-direction: row-reverse;
}

.business-item-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid #614ace;
}

.business-item-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.products-diagram-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.products-diagram {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  background: #f0f0f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
  text-align: center;
  padding: 20px;
}

.products-diagram img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Contact Form Section */
.contact-section {
  background: #fff;
  padding: 80px 20px;
}

.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #614ace;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.word-counter {
  text-align: right;
  font-size: 12px;
  color: #999;
  margin-top: 5px;
}

.word-counter.warning {
  color: #ff6b6b;
}

.btn-submit {
  width: 100%;
  padding: 15px;
  background: #614ace;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit:hover {
  background: #4d3aa3;
}

.thank-you-message {
  text-align: center;
  padding: 60px 40px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: none;
}

.thank-you-message.show {
  display: block;
}

.thank-you-message h3 {
  font-size: 28px;
  color: #614ace;
  margin-bottom: 20px;
  font-weight: 600;
}

.thank-you-message p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
}

.contact-form.hide {
  display: none;
}

/* Footer Section */
.footer-section {
  background: #c5daf9;
  color: #000000;
  padding: 60px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
  color: #000000;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #186be8;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #186be8;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #999;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .alfin-title-wrapper {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  .alfin-title-content .alfin-title {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
  }

  .feature-row .section-container {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  .feature-row {
    padding: 30px 20px;
  }

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

  .feature-content h3 {
    font-size: 24px;
  }

  .feature-content p {
    font-size: 16px;
  }

  .feature-image-placeholder {
    height: 250px;
    max-width: 100%;
  }

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

  .feature-icon-placeholder {
    width: 70px;
    height: 70px;
  }

  .ph-icons {
    max-width: 60px;
    max-height: 60px;
  }

  .business-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Hide header-nav with login/register buttons on mobile */
  .header-nav {
    display: none;
  }

  /* Show header-nav for authenticated users on mobile */
  .header-nav-authenticated {
    display: flex !important;
  }

  .header-nav-authenticated .navbar {
    display: flex !important;
  }

  .header-nav-authenticated .navbar-nav {
    display: flex;
    align-items: center;
  }

  .header-nav-authenticated .header-user-nav {
    font-size: 14px;
    padding: 5px 0;
  }

  .header-nav-authenticated .img-logo {
    width: 2.5rem;
    height: 2.5rem;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  /* Adjust dropdown positioning on mobile */
  .landing-header .dropdown-menu {
    right: 0 !important;
    left: auto !important;
    min-width: 180px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .features-grid-3x3 {
    grid-template-columns: 1fr;
  }

  .feature-icon-placeholder {
    width: 65px;
    height: 65px;
  }

  .ph-icons {
    max-width: 55px;
    max-height: 55px;
  }

  .contact-form {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 40px 20px;
  }

  .hero-image-placeholder {
    min-height: unset;
    margin-bottom: 20px;
  }

  .hero-image-placeholder img {
    max-width: 300px;
  }

  .powering-growth-section,
  .everything-built-in-section,
  .business-models-section,
  .contact-section {
    padding: 40px 20px;
  }

  .feature-icon-placeholder {
    width: 60px;
    height: 60px;
  }

  .ph-icons {
    max-width: 50px;
    max-height: 50px;
  }
}

/* Override alfin-hp-wrapper styles to match hero-section layout */
.alfin-hp-wrapper {
  width: 100%;
  padding: 80px 20px !important;
  position: relative;
  border-top: unset;
}

.alfin-hp-wrapper:after {
  display: none !important;
  /* Remove right-hand side image */
}

.alfin-hp-wrapper:before {
  display: none !important;
  /* Remove background image */
}

.alfin-title-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.alfin-title-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.alfin-title-content .alfin-title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  line-height: 1.2;
  margin-bottom: 20px;
}

.alfin-title-content .alfin-title:last-child {
  margin-bottom: 0;
}

.alfin-login-wrapper {
  max-width: 100%;
  margin: 0;
}

.alfin-login-card-body {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 40px;
  width: 100%;
  max-width: 100%;
}

@media screen and (min-width: 320px) and (max-width: 420px) {
  .alfin-login-card-body {
    padding: 12px !important;
  }
}

.alfin-login-card-body .form-head {
  color: #614ace;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

.alfin-image-placeholder {
  background: #f5f5f5;
  border: 2px dashed #ddd;
  border-radius: 8px;
  padding: 60px 40px;
  text-align: center;
  color: #999;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.website-api-login-form {
  justify-items: unset !important;
}

.alfin-button-base {
  width: 100%;
}

@media screen and (min-width: 320px) and (max-width: 920px) {
  .alfin-hp-wrapper {
    border-top: 0 !important;
  }

  .alfin-login-wrapper {
    order: 1;
  }

  .alfin-hp-wrapper .alfin-title:first-child {
    color: #333333;
    font-size: 28px;
  }

  .alfin-hp-wrapper .alfin-title {
    font-size: 28px !important;
  }

  .alfin-login-card-body {
    margin-top: 0;
  }

  .alfin-title-wrapper {
    gap: 20px !important;
  }

  .feature-image-wrapper-left {
    order: 1;
  }

  .btn-register {
    margin: 0 !important;
  }

  .alfin-title-content {
    margin-bottom: 20px;
  }
}
.rsa-login-form-wrapper .alfin-login-card-body {
  margin: unset;
}

/* How We Stand Out Section */
.how-we-stand-out-section {
  padding: 80px 20px;
  background: #030014;
  color: #fff;
}

.stand-out-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.stand-out-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.stat-item h3 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  text-transform: capitalize;
}

.stat-item p {
  font-size: 16px;
  color: #e0e0e0;
  line-height: 1.4;
  margin-top: 0;
  text-transform: capitalize;
}

/* Electrifying Card */
.electrifying-card {
  background: linear-gradient(
    180deg,
    rgba(30, 30, 60, 0.8) 0%,
    rgba(15, 15, 30, 0.95) 100%
  );
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.electrifying-header {
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
}

.electrifying-header h3 {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.electrifying-image {
  width: 100%;
  height: 180px;
  background-color: #0d1b2a; /* Dark background fallback */
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.electrifying-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.electrifying-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 0 30px;
}

.electrifying-feature {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.ef-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.ef-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.electrifying-feature p {
  font-size: 14px;
  color: #fff;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 968px) {
  .stand-out-container {
    grid-template-columns: 1fr;
  }
  .stand-out-stats {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .how-we-stand-out-section {
    padding: 40px 20px;
  }

  .stand-out-stats {
    gap: 30px 15px;
  }

  .stat-item h3 {
    font-size: 26px;
  }

  .electrifying-features {
    padding: 0 15px;
    gap: 20px 10px;
  }
}

/* What We Cover Section */
.what-we-cover-section {
  padding: 80px 20px;
  background: #030014;
}

.cover-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.cover-col-title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 30px;
  text-align: center;
}

/* Left Column - EV Services Grid */
.ev-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.landing-header-dark {
  background: #030014;
}

.service-card {
  background: #1a1a2e;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 200px;
  transition: transform 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
  transform: translateY(-5px);
  background: #20203a;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card p {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

/* Right Column - Lists */
.cover-right-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cover-list-box {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.purple-box {
  background-color: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.5);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.15);
}

.cover-list-title {
  color: #8b5cf6;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cover-subtitle {
  color: #a78bfa;
  font-size: 14px;
  font-weight: 500;
  margin-top: -15px;
  margin-bottom: 20px;
}

.cover-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 30px;
}

.cover-list li {
  position: relative;
  padding-left: 15px;
  font-size: 15px;
  color: #fff;
}

.cover-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #fff;
  font-weight: bold;
}

.cover-list-section {
  padding: 10px 30px;
}

/* Responsive */
@media (max-width: 968px) {
  .cover-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ev-services-grid {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .what-we-cover-section {
    padding: 40px 20px;
  }

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

  .service-card {
    min-height: 180px;
    flex-direction: row;
    text-align: left;
    padding: 20px;
    gap: 20px;
    justify-content: flex-start;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .cover-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cover-list-box {
    padding: 20px;
  }

  .cover-list-section {
    padding: 0 10px;
  }
}

/* Next Gen Customer Experience Section */
.next-gen-experience-section {
  padding: 80px 20px;
  background: #030014;
}

.next-gen-card {
  background: linear-gradient(
    135deg,
    rgba(30, 30, 60, 0.6) 0%,
    rgba(15, 15, 30, 0.8) 100%
  );
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  padding: 60px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.next-gen-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  width: 80%; /* Leave space for the image on the right */
  z-index: 2;
}

.next-gen-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.next-gen-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ng-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ng-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ng-emoji-fallback {
  font-size: 32px;
}

.next-gen-item p {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

.next-gen-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30%;
  height: 100%;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.next-gen-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: bottom right;
}

/* Responsive Next Gen */
@media (max-width: 968px) {
  .next-gen-card {
    flex-direction: column;
    padding: 40px;
    text-align: left;
  }

  .next-gen-content {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .next-gen-image {
    position: relative;
    width: 100%;
    height: 200px;
    margin-top: 30px;
    justify-content: center;
  }

  .next-gen-image img {
    object-position: bottom center;
  }
}

@media (max-width: 480px) {
  .next-gen-experience-section {
    padding: 40px 20px;
  }

  .next-gen-card {
    padding: 30px 20px;
    border-radius: 16px;
  }

  .next-gen-item {
    gap: 15px;
  }

  .ng-icon {
    width: 32px;
    height: 32px;
  }

  .next-gen-item p {
    font-size: 16px;
  }
}

/* AI-Powered Command Center Section */
.ai-command-center-section {
  padding: 80px 20px;
  background: #030014;
}

.ai-command-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.ai-card-title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.ai-card-description {
  font-size: 18px;
  color: #e0e0e0;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 30px;
}

.ai-card-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 40px;
}

.ai-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.ai-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.ai-feature-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-feature-icon img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.ai-feature-item p {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  max-width: 250px;
}

/* Responsive AI Section */
@media (max-width: 968px) {
  .ai-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }

  .ai-card-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .ai-command-center-section {
    padding: 40px 20px;
  }

  .ai-command-card {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .ai-features-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ai-card-description {
    font-size: 16px;
  }

  .ai-feature-item p {
    font-size: 16px;
  }
}

/* RoadSure Advantage Section */
.roadsure-advantage-section {
  padding: 80px 20px;
  background-color: #030014; /* Dark background as per design */
  color: #fff;
}

.roadsure-advantage-section .section-title {
  color: #fff;
  margin-bottom: 60px;
}

.advantage-tabs-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  align-items: flex-start;
}

/* Left Column: Tabs */
.advantage-tabs {
  flex: 0 0 25%;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.advantage-tab {
  padding: 20px 24px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.advantage-tab:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.05);
}

.advantage-tab.active {
  color: #8b5cf6; /* Purple highlight color */
  font-weight: 600;
  background: linear-gradient(
    90deg,
    rgba(139, 92, 246, 0.1) 0%,
    transparent 100%
  );
}

.advantage-tab.active::before {
  content: "";
  position: absolute;
  left: -1px; /* Overlap the border */
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #8b5cf6;
}

.advantage-tab::after {
  content: "›";
  position: absolute;
  left: 10px;
  opacity: 0;
  transition: opacity 0.3s;
}

.advantage-tab.active::after {
  opacity: 1;
}

.advantage-tab.active {
  padding-left: 30px; /* Make space for the arrow */
}

/* Center Column: Image */
.advantage-image-display {
  flex: 0 0 35%;
  position: relative;
  height: 400px; /* Fixed height for consistency */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.advantage-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 1;
}

.advantage-img.active {
  opacity: 1;
  z-index: 2;
}

/* Right Column: Content */
.advantage-content-display {
  flex: 1;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 400px;
}

.advantage-content {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.advantage-content.active {
  display: block;
}

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

.advantage-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.4;
}

.highlight-text {
  font-weight: 700;
  /* Gradient text effect if desired, or just bold white */
  color: #fff;
}

.advantage-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.advantage-content li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.advantage-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #8b5cf6;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 968px) {
  .advantage-tabs-container {
    flex-direction: column;
    gap: 30px;
  }

  .advantage-tabs {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
  }

  .advantage-tab {
    white-space: nowrap;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .advantage-tab.active::before {
    left: 0;
    top: auto;
    bottom: -11px;
    width: 100%;
    height: 3px;
  }

  .advantage-image-display {
    width: 100%;
    height: 300px;
  }

  .advantage-content-display {
    padding-left: 0;
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .roadsure-advantage-section {
    padding: 40px 20px;
  }

  .advantage-tabs {
    gap: 10px;
  }

  .advantage-tab {
    padding: 10px 15px;
    font-size: 14px;
  }

  .advantage-image-display {
    height: 200px;
  }

  .advantage-content h3 {
    font-size: 20px;
  }

  .advantage-content li {
    font-size: 15px;
  }
}

/* Premium RSA Section */
.premium-rsa-section {
  padding: 80px 20px;
  background-color: #050511; /* Dark background */
  background-image: radial-gradient(
    circle at 20% 50%,
    rgba(76, 29, 149, 0.15) 0%,
    transparent 50%
  );
  position: relative;
}

/* Add a subtle grid effect if possible, or just keep it clean dark */
.premium-rsa-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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: 50px 50px;
  pointer-events: none;
}

.premium-rsa-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.premium-rsa-content {
  flex: 1;
  color: #fff;
}

.premium-rsa-content h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}

.rsa-features {
  font-size: 20px;
  margin-bottom: 15px;
  color: #fff;
}

.rsa-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.btn-start-selling {
  display: inline-block;
  padding: 16px 48px;
  /* Gradient border trick: background-clip padding-box for inner, border-box for border */
  background: linear-gradient(#050511, #050511) padding-box,
    linear-gradient(135deg, #ffffff 0%, #bca5ff 50%, #614ace 100%) border-box;
  border: 2px solid transparent;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: inherit;
}

.btn-start-selling:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(97, 74, 206, 0.4);
  color: #fff;
}

.premium-rsa-image-wrapper {
  flex: 1;
  position: relative;
  /* Ensure consistent height for carousel */
  min-height: 400px;
}

.premium-rsa-image-wrapper img {
  width: 100%;
  border-radius: 24px;
  display: block;
}

/* RSA Carousel Styles */
.rsa-carousel-slides {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.rsa-slide {
  display: none;
  width: 100%;
  height: 100%;
  animation: fadeEffect 1s ease-in-out;
}

.rsa-slide.active {
  display: block;
}

.rsa-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image covers the area without distortion */
  border-radius: 24px;
}

@keyframes fadeEffect {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

.rsa-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.dot {
  width: 30px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

.dot.active {
  background-color: #8b5cf6;
}

@media (max-width: 968px) {
  .premium-rsa-container {
    flex-direction: column;
    text-align: center;
  }

  .premium-rsa-content h2 {
    font-size: 32px;
  }
}

/* Dark Section Styles */
.dark-section {
  background-color: #030014;
  color: #fff;
  position: relative;
  z-index: 1;
}

.how-we-stand-out-section .section-title,
.what-we-cover-section .section-title,
.next-gen-experience-section .section-title,
.dark-section .section-title {
  color: #fff;
}

.dark-section .contact-form {
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0px 0px 161px -23px #614ace;
}

.dark-section .form-group label {
  color: #fff;
}

.dark-section .form-group input,
.dark-section .form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.dark-section .form-group input:focus,
.dark-section .form-group textarea:focus {
  border-color: #614ace;
  background: rgba(255, 255, 255, 0.1);
}
