body {
      font-family: 'Poppins', sans-serif;
      background: white;
      color: black;
    }
    .navbar {
      background: black;
      border-radius: 1.5rem;
      margin: 0.25rem;
      backdrop-filter: blur(10px);
    }
    .navbar-brand{
      font-family: 'Outfit';
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(90deg, white, #17C9ED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
      color: #17C9ED
    }
    .navbar-brand img {
      border-radius: 50px;
      height: 50px;
      margin-right: 2px;
    }
    .why-container{
      color: grey;
      place-items: center;
      margin: 2rem 0;
    }
.why-container h2{
  font-family: 'Outfit';
  font-size: 3rem;
}

    .hero-section {
      height: 100vh;
      padding-top: 50px;
      background: linear-gradient(#17C9ED, rgba(0,0,0,0.6)), url('images/hero.jpg') center/cover no-repeat;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fff;
    }
    .nav-link{
      color: whitesmoke;
    }
    .nav-link:hover{
      color :#17C9ED
    }
    .car-logo{
      width: 50%;
       animation: fadeInTopRight 2s ease;
    }
    .hero-section h1 {
      font-size: 3.5rem;
      font-weight: 700;
      text-shadow: 0 4px 20px rgba(0,0,0,0.6);
      animation: fadeInUp 1s ease;
    }
    .hero-section p {
      font-size: 1.2rem;
      margin-bottom: 20px;
      animation: fadeInUp 1s ease;
    }
    .btn-premium {
      background: linear-gradient(135deg, #ffd700, #ffb400);
      border: none;
      color: #000;
      font-weight: 600;
      padding: 12px 28px;
      border-radius: 30px;
      box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      animation: fadeInUp 1.5s ease;
    }
    .btn-premium:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
    }
    .card-3d {
      background: white;
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 20px;
      backdrop-filter: blur(15px);
     
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
      align-items: center;
    }
    .img_icons{
      width: 50px;
      height: 50px;
      margin-right: 2px;
    }

    .reliable-section {
      max-width: 900px;
      margin: auto;
      padding: 60px 20px;
    }

    .reliable-section h2 {
      font-family: 'Outfit';
      font-size: 2.4rem;
      text-align: center;
      margin-bottom: 15px;
      color: grey;
    }

    .reliable-section p.section-intro {
      font-size: 1.2rem;
      color: #555;
      margin-bottom: 40px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .feature {
      margin-bottom: 35px;
    }

    .feature h3 {
      font-size: 1.4rem;
      margin-bottom: 10px;
      color: #0077b6;
    }

    .feature p {
      font-size: 1rem;
      color: #444;
      line-height: 1.7;
    }

    .icon {
      font-size: 1.8rem;
      margin-right: 10px;
      color: #0077b6;
    }

    .feature-header {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }
    
     footer {
      width: 100%;
      margin-top: 3rem;
      background: #000;
      color: #fff;
      text-align: center;
      padding: 20px 10px;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 20px;
      gap: 3rem;
      flex-wrap: wrap;
    }

    .footer-links a {
      color: #fff;
      font-size: 20px;
      transition: color 0.3s ease;
      text-decoration: none;
    }

    .footer-links a:hover {
      color: #06b6d4;
    }

    .footer-text {
      margin-top: 10px;
      font-size: 14px;
      color: #bbb;
    }
    @keyframes fadeInTopRight {
      from {
      opacity: 0;
      transform: translate3d(100%, -100%, 0); /* from top-right */
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0); /* to original position */
  }
  }
   
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(50px); }
      to { opacity: 1; transform: translateY(0); }
    }





  

    



