/* General Reset */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.brand-color{
  color: #263DE8;
}

/* Header */
.header {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.logo {
  height: 60px;
}
.call-btn2 {
  background: #263DE8;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  
}

.call-btn2:hover {
     background-color: white;
    color: #263DE8;
    transition: 700ms;
}

/* Hero Section */
.hero {
  background: url('../img/slider/about1.png') center/cover no-repeat;
  color: #fff;
  min-height: 100vh;
  position: relative;
  padding: 40px 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.highlight {
  color: #263DE8;
  text-shadow: white 3px 1px 2px ;
}
.features li {
  margin-bottom: 10px;
  font-size: 1rem;
}
.book-btn {
  display: inline-block;
  margin-top: 15px;
  background: #263DE8;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
}

.book-btn:hover {
     background-color: white;
    color: #263DE8;
    transition: 700ms;
}

/* Booking Form */
.booking-form {
  background: #fff;
  color: #000;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.booking-form h4 {
  font-weight: bold;
  margin-bottom: 15px;
}
.form-control {
  margin-bottom: 12px;
  border: 1px solid #263DE8;
  border-radius: 6px;
}
.send-btn {
  width: 100%;
  background: #263DE8;
  color: #fff;
  font-weight: bold;
  padding: 10px;
  border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 20px;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .features li {
    font-size: 0.9rem;
  }
}


/* Why Choose Us Section */
.choose-us h6 {
  color: #263DE8;
  font-weight: bold;
  margin-bottom: 10px;
}
.choose-us h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.choose-us p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}
.feature-box {
  background: #263DE8;
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  height: 100%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.feature-box h5 {
  font-size: 1.1rem;
  margin-top: 10px;
  font-weight: bold;
}
.feature-box p {
  font-size: 0.9rem;
  margin-top: 5px;
}
.feature-box .icon {
  font-size: 28px;
}
.rounded-lg {
  border-radius: 15px !important;
}


/* Base size for desktop */
.about-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

/* For large desktops */
@media (min-width: 1200px) {
  .about-img {
    max-width: 500px; /* adjust size */
  }
}

/* For tablets */
@media (max-width: 991px) {
  .about-img {
    max-width: 400px;
  }
}

/* For mobile */
@media (max-width: 576px) {
  .about-img {
    max-width: 100%;
    margin-bottom: 20px;
  }
}



/* Car Card */
.car-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 255, 0.384);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.car-card:hover {
  transform: translateY(-5px);
}

/* Image Zoom Effect */
.car-img {
  overflow: hidden;
}
.car-img img {
  transition: transform 0.4s ease;
}
.car-card:hover .car-img img {
  transform: scale(1.1);
}

/* Card Content */
.car-content {
  padding: 15px;
  text-align: left;
}
.car-content h5 {
  font-weight: bold;
  margin-bottom: 10px;
}
.car-content p {
  margin: 5px 0;
  font-size: 0.95rem;
  color: #333;
}
.car-content i {
  color: #263DE8;
  margin-right: 6px;
}

/* Call Button */
.call-btn {
  display: block;
  text-align: center;
  background: #263DE8;
  color: #fff;
  font-weight: bold;
  padding: 10px;
  border-radius: 6px;
  margin-top: 10px;
  text-decoration: none;
  transition: background 0.3s;
}
.call-btn:hover {
  background: #1b2cb5;
  color: #fff;
}


/* call btn 2  */

.call-btn2 {
  background-color: #007bff; /* Custom blue */
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 12px 35px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.call-btn2 i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

/* Hover Effects */
.call-btn2:hover {
  background-color: #0056d6;
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.6);
  transform: translateY(-2px);
}

.call-btn2:hover i {
  transform: rotate(20deg);
}

/* Ripple Effect */
.call-btn2::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.call-btn2:active::after {
  width: 200%;
  height: 200%;
}



/* call btn 3  */

.call-btn3 {
  background-color: #007bff; /* Custom blue */
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 12px 35px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.call-btn3 i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: white;
}

/* Hover Effects */
.call-btn3:hover {
  background-color: #8691a1;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.6);
  transform: translateY(-2px);
}

.call-btn3:hover i {
  transform: rotate(20deg);
}

/* Ripple Effect */
.call-btn3::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.call-btn3:active::after {
  width: 200%;
  height: 200%;
}


/* footer /////////// */

.footer {
  background: #000;
  color: #ccc;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #007bff, transparent);
  animation: glowMove 6s linear infinite;
}

@keyframes glowMove {
  0% { left: -50%; }
  100% { left: 100%; }
}

.footer a {
  color: #00aaff;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #fff;
}

.footer .social-links a {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: #007bff;
  color: #fff;
  border-radius: 50%;
  line-height: 35px;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.footer .social-links a:hover {
  background: #fff;
  color: #007bff;
  transform: translateY(-3px);
}