/* Section styling */
    .welcome-section {
      background: linear-gradient( #093149, #1ba5ad);
      color: white;
      padding: 100px 20px;
      text-align: center;
      border-radius: 0px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    }

    .welcome-title {
      font-size: 2.5rem;
      font-weight: bold;
    }

    /* Typing text */
    .animated-text {
      display: inline-block;
      font-size: 1.3rem;
      color: #fff;
      margin-top: 15px;
    }

    /* Typed.js cursor */
    .typed-cursor {
      font-weight: bold;
      font-size: 1.3rem;
      color: #fff;
      animation: blink 0.7s infinite;
    }

    @keyframes blink {
      0%, 100% {
        opacity: 1;
      }
      50% {
        opacity: 0;
      }
    }

    /* Emoji pulse animation */
    .emoji {
      font-size: 2rem;
      margin: 0 8px;
      display: inline-block;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% {
        transform: scale(1);
        opacity: 0.8;
      }
      50% {
        transform: scale(1.15);
        opacity: 1;
        text-shadow: 0 0 12px #fff;
      }
      100% {
        transform: scale(1);
        opacity: 0.8;
      }
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .welcome-title {
        font-size: 2rem;
      }

      .animated-text {
        font-size: 1rem;
      }
    }

  .benefit-card {
      border: none;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%;
    }

    .benefit-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }

    .benefit-card img {
      height: 180px;
      object-fit: cover;
      width: 100%;
    }

    .card-body {
      padding: 20px;
    }

    .btn-custom {
      border-radius: 25px;
      padding: 8px 20px;
    }


    /* 🔹 Filter Form */
.filter-section {
  background: #fff;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  position: relative;
  top: 0;
  z-index: 100;
}

.filter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-form select,
.filter-form input,
.filter-form button {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  flex: 1;
  min-width: 150px;
}

.filter-form button {
  background: #007bff;
  color: white;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
.filter-form button:hover {
  background: #0056b3;
}

/* 🔹 Loading Popup */
.loading-popup {
  display: none;
  position: fixed;
  top:0; left:0; width:100%; height:100%;
  background: rgba(0,0,0,0.6);
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  color:white;
  z-index:200;
}
.loader {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #007bff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  100% { transform: rotate(360deg); }
}

/* 🔹 Results */
.results-section {
  padding: 20px;
}
.results-section.hidden {
  display: none;
}

.dealer-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.dealer-card {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dealer-card h3 {
  margin: 0 0 10px;
  color: #007bff;
}
.dealer-card p {
  margin: 4px 0;
  font-size: 14px;
}
.toast, .alert-success {
  display: none !important;
}




.partner-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
  text-align: center;
  overflow: hidden;
}

.partner-container {
  max-width: 1100px;
  margin: auto;
}

.partner-title {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #333;
  font-weight: 700;
}

.partner-desc {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
}

.partner-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.benefit-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(50px);
}

.benefit-card i {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #0077ff;
}

.benefit-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #222;
}

.benefit-card p {
  font-size: 0.95rem;
  color: #666;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.partner-btn {
  background: #0077ff;
  color: #fff;
  border: none;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.partner-btn:hover {
  background: #005ecc;
}

/* ===== Animation ===== */
.show {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: all 0.8s ease-in-out;
}


