 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: "Poppins", sans-serif;
 }

 body {
     background: #f9fafb;
     color: #333;
     overflow-x: hidden;
 }

 /* HEADER */
 header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 15px 25px;
     background: white;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
 }

 .logo {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .logo img {
     width: 40px;
 }

 .logo h2 {
     font-size: 20px;
     font-weight: 600;
 }

 .contact span {
     font-size: 18px;
     font-weight: 600;
     color: #1f2937;
 }

 /* HERO SECTION */
 .hero {
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-direction: column;
     text-align: center;
     padding: 40px 50px;
     gap: 30px;
     animation: fadeIn 1s ease;
 }

 .hero-text {
     width: 50%;
 }

 .hero-text h1 {
     font-size: 45px;
     line-height: 1.2;
 }

 .hero-text span {
     color: #ffcc00;
 }

 .hero-text p {
     margin: 18px 0;
     font-size: 18px;
 }

 .buttons {
     margin-top: 20px;
 }

 .btn {
     padding: 12px 25px;
     text-decoration: none;
     border-radius: 8px;
     color: white;
     font-weight: 600;
     margin-right: 10px;
     display: inline-block;
 }

 .call {
     background: #1f2937;
 }

 .whatsapp {
     background: #25D366;
 }

 .hero-car img {
     width: 450px;
     max-width: 100%;
     animation: float 3s infinite ease-in-out;
 }

 .testimonials {
     padding: 50px;
     text-align: center;
 }

 .testimonials h2 {
     font-size: 32px;
     margin-bottom: 30px;
 }

 .testimonial-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
     gap: 20px;
 }

 .testimonial-card {
     background: white;
     padding: 25px;
     border-radius: 15px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
     font-size: 16px;
 }

 .testimonial-card h4 {
     margin-top: 15px;
     color: #555;
 }

 .map-section {
     padding: 50px;
     text-align: center;
 }

 .map-section iframe {
     width: 100%;
     height: 350px;
     border: none;
     border-radius: 15px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
 }

 .booking {
     padding: 50px;
     text-align: center;
 }

 .booking-form {
     max-width: 600px;
     margin: auto;
     display: flex;
     flex-direction: column;
     gap: 15px;
 }

 .booking-form input,
 .booking-form textarea {
     padding: 14px;
     border-radius: 8px;
     border: 1px solid #ddd;
     font-size: 16px;
 }

 .booking-form textarea {
     resize: vertical;
     height: 120px;
 }

 .booking-form button {
     padding: 14px;
     background: #111827;
     color: white;
     border: none;
     border-radius: 10px;
     font-size: 18px;
     cursor: pointer;
 }

 .booking-form button:hover {
     background: #1f2937;
 }


 .whatsapp-float {
     position: fixed;
     bottom: 25px;
     right: 25px;
     background: #25D366;
     color: white;
     font-size: 28px;
     padding: 12px 18px;
     border-radius: 50%;
     text-decoration: none;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
     animation: float 3s infinite ease-in-out;
 }


 /* FLOATING ANIMATION */
 @keyframes float {
     0% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-12px);
     }

     100% {
         transform: translateY(0);
     }
 }

 /* SERVICES */
 .services {
     padding: 40px 25px;
     text-align: center;
 }

 .services h2 {
     font-size: 30px;
     margin-bottom: 25px;
 }

 .service-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
     gap: 20px;
 }

 .service-card {
     background: white;
     padding: 25px 20px;
     border-radius: 15px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
     transition: 0.3s;
 }

 .service-card:hover {
     transform: translateY(-8px);
 }

 .service-card img {
     width: 55px;
     margin-bottom: 15px;
 }

 /* FOOTER */
 footer {
     background: #111827;
     color: white;
     text-align: center;
     padding: 20px;
     margin-top: 40px;
     line-height: 1.6;
 }

footer a {
    color: #ffdf69;
    font-weight: 600;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer .credit {
    opacity: 0.9;
    font-size: 13px;
}
 /* RESPONSIVE DESIGN */
 @media (max-width: 900px) {
     .hero {
         flex-direction: column;
         text-align: center;
         padding: 30px 20px;
     }

     .hero-text {
         width: 100%;
     }

     .hero-text h1 {
         font-size: 34px;
     }

     .hero-text p {
         font-size: 16px;
     }

     .hero-car img {
         width: 320px;
     }

     header {
         padding: 15px 20px;
     }
 }

 @media (max-width: 480px) {

     .logo h2 {
         font-size: 18px;
     }

     .hero-text h1 {
         font-size: 30px;
     }

     .hero-car img {
         width: 260px;
     }

     .btn {
         display: block;
         margin: 10px auto;
         width: 80%;
         text-align: center;
     }

     .service-card {
         padding: 20px;
     }
 }

 /* HERO FADE-IN */
 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }