:root {
  --color-primary: #008832;
  --color-primary-light: #000;
  --color-secondary: #2f2e2d;
  --color-bg-light: #f1f1f1;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-muted: #f2f2f2;
  --color-grey: #00000050;
  --color-gradient-start: #000000;
  --color-gradient-end: #008832;
  --color-login-gradient-start: #008832;
  --color-login-gradient-end: #000000;
  --color-shadow1: rgba(50, 50, 93, 0.25);
  --color-shadow2: rgba(0, 0, 0, 0.3);
  --btn-info: #309eb5;
  --vehicle-badge: #008832;
}

.text-theme {
  color: var(--color-primary);
}

a {
  text-decoration: none;
}

.orange-bg {
  background-color: var(--color-primary);
}

.orange-text {
  color: var(--color-primary);
}

.btn-orange {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.btn-orange:hover {
  background-color: var(--color-white);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.hero-section {
  background: url('../assets/Images/Inner-bg.png') no-repeat center center;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Black shade with 50% opacity */
    z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
}

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

.vehicle-card {
  background: var(--color-white);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
  border: none;
  height: 100%;
}

.vehicle-card:hover {
  transform: translateY(-2px);
}

.vehicle-image {
  height: 240px;
  background: linear-gradient(
    135deg,
    var(--color-login-gradient-start) 0%,
    var(--color-login-gradient-end) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 3rem;
  position: relative;
}

.vehicle-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--vehicle-badge);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.vehicle-info {
  padding: 2rem;
  background-color: var(--color-grey);
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-white);
  display: flex;
  align-items: center;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list i {
  color: var(--color-primary);
  margin-right: 0.5rem;
  width: 20px;
}

.category-nav {
  background: var(--color-white);
  border-radius: 50px;
  padding: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.category-btn {
  border: none;
  background: transparent;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.category-btn.active {
  background: var(--color-primary);
  color: var(--color-white);
}

.category-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.spec-item {
  text-align: center;
  padding: 1rem;
  background: var(--color-white);
  border-radius: 10px;
}

.spec-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.spec-label {
  font-size: 1.2rem;
  color: #6c757d;
}

.premium-section {
  background: linear-gradient(
    135deg,
    var(--color-white) 0%,
    var(--color-white) 100%
  );
  padding: 0rem 0rem 3rem 0rem;
}

.service-highlight {
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

/* Conatct */

.contact-form-section {
  background: linear-gradient(
    135deg,
    var(--color-white) 0%,
    var(--color-white) 100%
  );
  padding: 5rem 0;
}

.contact-card {
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  margin-bottom: 2rem;
  border: none;
  position: relative;
  height: 600px;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-primary)
  );
  border-radius: 20px 20px 0 0;
}

.form-control:focus {
  border-color: var(--color-primary);
}

.form-check-input:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.contact-info-card {
  background: linear-gradient(
    135deg,
    var(--color-login-gradient-start) 0%,
    var(--color-login-gradient-end) 100%
  );
  color: var(--color-black);
  border-radius: 20px;
  padding: 1rem;
}

.contact-method {
  border-radius: 15px;
  padding: 1rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border: 1px solid var(--color-white)50;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* Company */
.stats-card {
  background: var(--color-white);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.stats-card:hover {
  transform: translateY(-5px);
}

.stats-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    45deg,
    var(--color-primary),
    var(--color-primary)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--color-white);
  font-size: 2rem;
}

.stats-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.value-card {
  background: linear-gradient(
    135deg,
    var(--color-white) 0%,
    var(--color-white) 100%
  );
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  border: 1px solid var(--color-muted);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.team-card {
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-image {
  height: 250px;
  background: linear-gradient(
    135deg,
    var(--color-login-gradient-start) 0%,
    var(--color-login-gradient-end) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 4rem;
}

.timeline-section {
  background: var(--color-muted);
  padding: 5rem 0;
}

.timeline-item {
  position: relative;
  padding-bottom: 4rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-primary);
  transform: translateX(-50%);
}

.timeline-content {
  background: var(--color-white);
  border-radius: 15px;
  padding: 2rem;
  margin: 0 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.timeline-year {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -40px;
}

.cta-section {
  background: linear-gradient(
    135deg,
    var(--color-login-gradient-start) 0%,
    var(--color-login-gradient-end) 100%
  );
  color: var(--color-white);
  padding: 3rem 0;
}

.stepper-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

.stepper-line {
  height: 2px;
  width: 80px;
  margin: 0 15px;
  background-color: var(--color-bg-light);
}

.stepper-active {
  background-color: var(--color-primary-light);
  color: white;
}

.stepper-inactive {
  background-color: var(--color-bg-light);
  color: var(--color-grey);
}

.stepper-line-active {
  background-color: var(--color-primary);
}

.stepper-line-inactive {
  background-color: var(--color-bg-light);
}

.vehicle-card {
  border: 1px solid var(--color-bg-light);
  transition: all 0.3s;
  cursor: pointer;
}

.vehicle-card:hover {
  border-color: var(--color-primary);
}

.screen {
  display: none;
}

.screen.active {
  display: block;
}

.extra-item {
  border: 1px solid var(--color-bg-light);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
  transition: all 0.3s;
}

.extra-item:hover {
  border-color: var(--color-gradient-end);
  background-color: var(--color-white);
}

.extra-item.selected {
  border-color: var(--color-gradient-end);
  background-color: var(--color-bg-light);
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quantity-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #d1d5db;
  background: var(--color-white);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.quantity-btn:hover {
  background-color: var(--color-bg-light);
}

.quantity-btn.orange {
  background-color: var(--color-gradient-end);
  border-color: var(--color-gradient-end);
  color: white;
}

.themeBtn {
  background: linear-gradient(
    270deg,
    var(--color-gradient-start) 0%,
    var(--color-gradient-end) 100%
  );
  color: var(--color-white);
  font-weight: 700;
  border: none;
  padding: 0.5rem;
  font-size: 1rem;
  border-radius: 0.5rem;
}

@media (max-width: 480px) {
  .themeBtn {
    font-size: 0.85rem;
    padding: 0.4rem;
  }
}


.themeBtn2 {
  background: linear-gradient(
    270deg,
    var(--color-gradient-start) 0%,
    var(--color-gradient-end) 100%
  );
  color: var(--color-white);
  height: 40px;
  font-weight: 700;
  border: none;
  padding: 0.3rem 1.5rem;
  font-size: 1rem;
  border-radius: 0.5rem;
}

.summarytext {
  font-size: 1rem;
  font-weight: 700;
  border-bottom: 1px solid var(--color-grey);
  padding: 0.5rem 0;
  margin-bottom: 1rem;
}

.route-point {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 3px solid var(--color-primary-light);
  background-color: var(--color-white);
}

.dot-line {
  width: 2px;
  height: 10px;
  background-color: var(--color-primary-light);
  margin-left: 5px;
}

.theme_para {
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 0rem;
}

.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#lottie-loader {
  width: 180px;
  height: 180px;
/*   background: var(--color-white); */
  border-radius: 50%;
}

.mini-title {
  color: var(--color-black);
  font-size: 1rem;
  font-weight: 400;
}

.mini-para {
  color: var(--color-grey);
  font-size: 0.8rem;
  font-weight: 400;
}

.fs-16 {
  font-size: 1rem;
}

.fs-20 {
  font-size: 1.5rem;
}

.pay-amount {
  font-size: 2rem;
  color: var(--color-black);
  font-weight: 400;
}

.anchor-text {
  color: var(--btn-info);
  text-decoration: underline;
}

.text-muted2 {
  color: var(--color-grey);
  font-size: 1rem;
  font-weight: 400;
  margin: 0px;
}

.text-dark2 {
  color: var(--color-black);
  font-size: 1rem;
  font-weight: 400;
  margin: 0px;
}

.minWidthForm {
  max-width: 150px !important;
}

.small_text {
  font-size: 0.85rem;
  font-weight: 400;
}

@media screen and (max-width: 500px) {
  .text-muted2 {
    font-size: 0.8rem;
    margin: 0px;
  }

  .text-dark2 {
    font-size: 0.8rem;
    margin: 0px;
  }

  .stepper-circle {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .stepper-line {
    margin: auto;
    width: 30px;
  }

  .minWidthForm {
    max-width: 88px !important;
  }

  .themeBtn2 {
    width: 100%;
    margin-top: 0.5rem;
  }
}

@media screen and (max-width: 700px) {
  .themeBtn2 {
    width: 100%;
    margin-top: 0.5rem;
  }
  .contact-info-card {
    height: auto;
  }
  .contact-card {
    height: auto;
  }
  .hero-section {
  min-height: 120px;
}
}


 .processing-container {
        background: linear-gradient(to right, #6e8efb, #a777e3);
        color: var(--color-white);
        min-height: 80vh;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .processing-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(12px);
        border-radius: 1.5rem;
        padding: 3rem;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        animation: fadeIn 0.8s ease-in-out;
    }

    .processing-card h2 {
        font-size: 2rem;
        font-weight: 700;
        color: var(--color-white);
        margin-bottom: 1rem;
    }

    .processing-card p {
        font-size: 1.1rem;
        color: var(--color-bg-light);
    }

    .loader {
        width: 100px;
        height: 100px;
        border: 10px solid rgba(255, 255, 255, 0.2);
        border-top: 10px solid var(--color-white);
        border-radius: 50%;
        animation: spin 1s linear infinite;
        margin: 2rem auto;
    }

       .cancel-icon {
        font-size: 4rem;
        color: #ff4d4f;
        margin-bottom: 1rem;
        animation: pulse 1s infinite ease-in-out;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

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

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

     @keyframes pulse {
        0%, 100% { transform: scale(1); opacity: 1; }
        50% { transform: scale(1.8); opacity: 0.8; }
    }