@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
  --primary-color: #0f1a2c;
  --secendary-color:#f6ac0f;
  --text-dark: #0f172a;
  --text-light: #64748b;
  --extra-light: #f8fafc;
  --white: #ffffff;
  --max-width: 1920px;
  --header-font: "Playfair Display",serif;
}

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section_container{
  max-width:var(--max-width);
  margin:auto;
  padding: 5rem 1rem;
}

.section_subheader{
  margin-bottom: .5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
}

.section_header{
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--header-font);
  color: var(--text-dark);
}

.section_description{
  margin-top: 1 rem;
  color: var(--text-light);
}

.btn{
  padding: .75rem 2rem;
  font-size: 1rem;
  color: var(--white);
  background-color: var(--secendary-color);
  outline:none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.section_nav{
  margin-left:auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section_nav span{
  padding: 10px 15px;
  font-size:1.25rem;
  border-radius: 2px;
  cursor: pointer;
  transition: 0.3s;
}

.section_nav span:hover {
  background-color: var(--secendary-color);
}

.logo{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 2px;
}

.logo div {
  padding-inline: 12px;
  font-size: 2rem;
}

img,
video {
  width: 100%;
  display: flex;
}

a{
  text-decoration: none;
}

html,
body{
  scroll-behavior: smooth;
}

body {
 font-family: "Poppins", sans-serif;
  
}

nav{
  position: fixed;
  isolation: isolate;
  width: 100%;
  z-index: 9;
}

.nav_bar {
  position: relative;
  isolation: isolate;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav_header{
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--extra-light);
}

.nav_menu_btn{
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

.nav_links{
  list-style: none;
  position: absolute;
  padding: 2rem;
  width:100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  background-color: var(--white);
  transform: translateY(-100%);
  transition: .5s;
  z-index: -1;
}

.nav_links.open{
  transform: translateY(0);
}

.nav_links a{
  color:var(--text-light);
  transition: 0.3s;
}

.nav_links a:hover {
  color: var(--secendary-color);
}


.header{
  padding-block: 8rem;
  background-image: linear-gradient(rgba(15,26,44,.5),rgba(15,26,44,.5)),
  url("../target/image/header1.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.header_container .section_subheader{
  color: var(--white);
}

.header_container h1{
  margin-bottom: 2rem;
  font-size: 6rem;
  font-weight: 800;
  line-height: 7rem;
  font-family: var(--header-font);
  color: var(--white);
}

/* ABOUT US */
.about-Us {
  width: 100%;
  min-height: 100vh;
  background-color: var(--white);
  padding-bottom: 100px;
}

.container {
  padding-block: 20rem;
  background-image: linear-gradient(rgba(15,26,44,.5), rgba(15,26,44,.5)),
    url("../target/image/header3.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.content-section {
  float: left;
  width: 80%;
  margin-top: -10%;
  margin-left: 2%;
  color: var(--white);
}

/* Headings and text */
.content-section .title {
  margin-top: -100px;
  margin-bottom: 2rem;
  font-size: 5rem;
  font-weight: 800;
  line-height: 7rem;
  font-family: var(--header-font);
  color: var(--white);
}

.content-section .content h3 {
  margin-top: 25px;
  color: var(--text-dark);
  font-family: var(--header-font);
}

.content-section .content p {
  margin-top: 10px;
  font-family: sans-serif;
  font-size: 20px;
  line-height: 1.5;
  color: var(--white);
}

/* Button */
.button a {
  display: inline-block;
  background-color: var(--secendary-color);
  color: #fff;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
}

.button a:hover {
  background-color: var(--secendary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

/* ✅ Responsiveness fix */
@media (max-width: 1024px) {
  .content-section {
    margin-top: -10%;
    width: 90%;
  }

  .content-section .title {
    font-size: 3rem;
    line-height: 4rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding-block: 15rem;
  }

  .content-section {
    float: none;
    width: 100%;
    margin-top: 0;
    text-align: center;
  }

  .content-section .title {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .content-section .content p {
    font-size: 1rem;
  }
}



/*WHY CHOOSE US*/
.why-choose-us {
  text-align: center;
  padding: 100px;
   background-image: linear-gradient(rgba(15,26,44,.5),rgba(15,26,44,.5)),
  url("../target/image/header4.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-opacity: 20%;
  background-color: var(--text-light);
  margin-top: -100px;
}

.why-choose-us h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--white);
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.feature {
  max-width: 250px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #ffffff79;
  border-radius: 20px;
  padding: 20px;
}

.feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.feature .icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature p {
  font-size: 0.95rem;
  color: #222;
  line-height: 1.4;
}

.footer {
  background-color: #0f1a2c;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* tighter layout */
  align-items: flex-start;
  gap: 1.5rem;
  padding: 40px 60px; /* reduced height */
  font-family: 'Poppins', sans-serif;
}

.footer-content {
  flex: 1 1 180px;
  min-width: 160px;
}

.footer-content img {
  width: 100px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.footer-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: var(--secendary-color, #f4a51c);
  position: relative;
}

.footer-content h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 35px;
  height: 2px;
  background-color: var(--secendary-color, #f4a51c);
  border-radius: 2px;
}

.footer-content li {
  list-style: none;
  margin: 6px 0;
}

.footer-content li a {
  text-decoration: none;
  color: #ccc;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-content li a:hover {
  color: var(--secendary-color, #f4a51c);
}

.icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  margin: 15px 0;
}

.icon a {
  color: #fff;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.icon a:hover {
  color: var(--secendary-color, #f4a51c);
  transform: translateY(-3px);
}

.footer-content p {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-top: 5px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .footer-content {
    width: 100%;
  }

  .footer-content h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .icon {
    margin-top: 10px;
  }
  
  /* Status Badge Styling */
.status-tag {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending {
    background-color: #fef3c7;
    color: #92400e; /* Orange for 'Waiting for Admin' */
}

.status-assigned {
    background-color: #dbeafe;
    color: #1e40af; /* Blue for 'Driver Dispatched' */
}

.status-confirmed {
    background-color: #dcfce7;
    color: #166534; /* Green for 'Job Done' */
}

/* Booking Card Layout */
.booking-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    padding: 20px;
    border-left: 6px solid #f6ac0f;
    transition: transform 0.2s;
}

.booking-card:hover {
    transform: translateY(-3px);
}

.card-footer {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}
  
}
