* {  margin: 0;  padding: 0;  box-sizing: border-box;}body {  margin: 0;  padding: 0;  font-family: "Poppins", sans-serif; /* Use Poppins for body */}/* Heading font styles */h1,h2,h3,h4,h5,h6 {  font-family: "Cinzel", serif; /* Use Cinzel for headings */}
/* Container for centering and limiting width */
.container {  max-width: 1400px;  margin-left: auto;  margin-right: auto;  padding: 20px; /* Optional padding */}
h1 {  font-size: 36px;}h2 {  font-size: 30px;}h3 {  font-size: 24px;}h4 {  font-size: 20px;}h5 {  font-size: 18px;}h6 {  font-size: 16px;} /* Utility Classes for Margin and Padding */
/* Margin classes */.mb-2 {  margin-bottom: 8px;}.mb-5 {  margin-bottom: 20px;}.mb-10 {  margin-bottom: 40px;}.mt-2 {  margin-top: 8px;}.mt-5 {  margin-top: 20px;}
.mt-10 {  margin-top: 40px;} /* Padding classes */.pb-2 {  padding-bottom: 8px;}.pb-5 {  padding-bottom: 20px;}.pb-10 {  padding-bottom: 40px;}.pt-2 {  padding-top: 8px;
}
.pt-5 {  padding-top: 20px;}.pb-170 {  padding-bottom: 170px;}.pt-10 {  padding-top: 40px;} /* Utility Classes for Margin and Padding */.mb-2 {  margin-bottom: 8px;}.mb-5 {  margin-bottom: 20px;}.pb-5 {  padding-bottom: 20px;}

.navbar {
  /* max-width: 1400px; */
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #ffffff;
  padding: 10px 20px;
  color: rgb(0, 0, 0);
}
.navbar .left,
.navbar .center,
.navbar .right {
  display: flex;
  align-items: center;
}
.navbar .logo {
  font-size: 24px;
  font-weight: bold;
  color: rgb(0, 0, 0);
  text-decoration: none;
}
.logo img {
  max-width: 100%;
  height: 35px;
}
.navbar .menu {
  list-style-type: none;
  display: flex;
  gap: 20px;
}
.navbar .menu li {
  display: inline;
}
.navbar .menu li a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 16px;
}
.navbar .menu li a:hover {
  color: #00aeff;
  border-bottom: 2px solid rgb(2, 149, 255);
}
.navbar .mobile-number {
  font-size: 16px;
  border: 1px solid rgb(2, 149, 255);
  background-color: rgb(2, 149, 255);
  color: #fff;
  padding: 10px;
  border-radius: 18px;
}
.navbar .mobile-number:hover {
  background-color: #fff;
  color: #333;
  cursor: pointer;
}
.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
}
/* Sidebar (left sliding menu) */
.sidebar {
  position: fixed;
  top: 0;
  left: -250px; /* Hidden initially */
  height: 100%;
  width: 250px;
  background-color: #ffffff;
  padding-top: 60px;
  transition: 0.3s ease;
  z-index: 100;
  border: 2px solid black;
}
.sidebar ul {
  list-style-type: none;
  padding-left: 20px;
}
.sidebar ul li {
  padding: 10px 0;
}
.sidebar ul li a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 18px;
}
.sidebar ul li {
  border-bottom: 2px solid #0d0d0d3b;
}
.sidebar ul li a:hover {
  color: #ffffff;
  border-bottom: 2px solid #ffffff;
}
.sidebar ul li:hover {
  color: #000000;
  background-color: #70b6fc;
}
.sidebar .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  color: rgb(0, 0, 0);
  cursor: pointer;
}
/* Responsive styles */
@media screen and (max-width: 768px) {
  .navbar .center {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .sidebar {
    width: 250px;
  }
}

/* banner */

/* Custom banner styles */
.banner-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  margin: 5px auto;
}

.banner-left {
  width: 100%;
  max-width: 600px;
}

.banner-tabs {
  display: flex;
  /* justify-content: space-between; */
  gap: 30px;
  margin-bottom: 20px;
}

.banner-tab {
  padding: 12px 20px;
  cursor: pointer;
  border: none;
  background-color: #ffffff;
  border-radius: 25px; /* Rounded corners for each tab */
  font-weight: bold;
  transition: background-color 0.3s;
}

.banner-tab.active {
  background-color: #1d4ed8;
  color: white;
}

.banner-tab:hover {
  background-color: #1d4ed8;
}

.banner-form {
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

.trip-type-toggle {
  padding: 10px;
  display: inline;
}

.trip-type-toggle.outstation-only {
  display: block; /* Hide for Local and Airport tabs */
  display: flex;
  gap: 10px;
}
.trip-label {
  /* display: flex; */
  align-items: center;
  font-size: 1rem;
  font-weight: bold;
}

.trip-label input {
  margin-right: 8px; /* Adds space between radio button and text */
}

/* Optional: Change color on hover */
.trip-label:hover {
  cursor: pointer;
  color: #1d4ed8;
}
.tab-content {
  display: none;
  transition: all 0.3s ease;
}

.tab-content.active {
  display: block;
}

#outstation {
  background-color: #f0f8ff;
  padding: 10px;
}

#local {
  background-color: #f9f9f9;
  padding: 10px;
}

#airport {
  background-color: #fff7e6;
  padding: 10px;
}

.input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 5px;
}

.input-icon {
  font-size: 20px;
  color: #1d4ed8;
  margin-right: 10px;
}

.input-field {
  width: 100%;
  padding: 12px;
  border: none;
  outline: none;
  font-size: 1rem;
}

.border-divider {
  border-top: 1px dotted #e2e8f0;
  margin: 10px 0;
}
/* Additional styling for date and time fields */
.date-time-row div {
  width: 48%;
}

.date-time-row input {
  padding: 12px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  width: 100%;
  outline: none;
  transition: border-color 0.3s;
}

.date-time-row input:focus {
  border-color: #1d4ed8;
}

/* Add a custom style for the date input */
.date-input {
  background-color: #f9f9f9;
  color: #333;
}

.date-input::-webkit-calendar-picker-indicator {
  background-color: #1d4ed8;
  border-radius: 4px;
}

/* Custom style for the time input */
.time-input {
  background-color: #f9f9f9;
  color: #333;
}

.time-input::-webkit-outer-spin-button,
.time-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.date-time-row {
  display: flex;
  gap: 15px;
  padding: 10px;
}

.submit-btn {
  background-color: #1d4ed8;
  color: white;
  padding: 12px;
  width: 100%;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #2563eb;
}

.banner-right {
  width: 100%;
  max-width: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-right img {
  border-radius: 12px;
  max-width: 100%;
}

.icon {
  font-size: 24px;
  color: #1d4ed8;
  margin-right: 10px;
}
.add-btn {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
}

.remove-btn {
  background-color: #f44336;
  color: white;
  padding: 5px 10px;
  border: none;
  cursor: pointer;
  font-size: 12px;
  margin-left: 10px;
}

.remove-btn:hover {
  background-color: #d32f2f;
}


/* Wrapper for the input and button */
.destination-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

/* Style for input field */
.input-field {
  width: 100%;
  padding: 10px;
  padding-right: 40px; /* Space for the plus button */
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Position the add button inside the input */
.add-btn {
  position: absolute;
  right: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  color: #4CAF50;
}

/* Optional: Add hover effect to the button */
.add-btn:hover {
  color: #45a049;
}

/* Responsive styling */
@media screen and (max-width: 768px) {
  .banner-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .banner-right img {
    border-radius: 12px;
    max-width: 100%;
  }
  .banner-left {
    width: 100%;
  }

  .banner-right {
    width: 100%;
    margin-top: 20px;
  }

  .date-time-row {
    flex-direction: column;
  }

  .date-time-row div {
    width: 100%;
    margin-bottom: 10px;
  }
}

/* about section  */

/* Button Styling */
.about-button {
  font-size: 16px;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.about-button:hover {
  background-color: #0056b3;
}

/* Center the section */
.about-content {
  margin-left: auto;
  margin-right: auto;
  text-align: center; /* Centers the content */
  background-color: #f4f4f4; /* Optional background color */
  border-radius: 8px; /* Optional for rounded corners */
}
.about-content-para {
  text-align: justify;
}
/* Center the section */
.about-content {
  text-align: center; /* Centers the content */
  background-color: #f4f4f4; /* Optional background color */
  border-radius: 8px; /* Optional for rounded corners */
}

/* ocasion section */

/* Full section with container */
.occasion-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 35px 35px;
  background: rgb(2 149 255 / 12%);
}

.occasion-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px; /* Keeps the container within max width */
  overflow: hidden; /* Hide excess content when scrolling */
}

/* Styling for the left and right arrows */
.occasion-arrow {
  height: 50px;
  width: 50px;
  background: rgb(2, 149, 255);
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: 50%;
  font-size: 1.5rem;
  transform: translateY(-50%);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
  z-index: 2;
  transition: background-color 0.3s ease;
}

.occasion-arrow:hover {
  background-color: rgb(44, 162, 247);
}

/* Positioning the arrows */
.occasion-container i:first-child {
  left: -0px;
  padding-top: 10px;
}

.occasion-container i:last-child {
  right: 0px;
  padding-top: 10px;
}

/* Carousel layout with flex */
.occasion-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto; /* Horizontal scrolling */
  scroll-snap-type: x mandatory; /* Ensure snap to item */
  scroll-behavior: smooth;
  padding: 0;
  list-style: none;
}

/* Hides the scrollbar */
.occasion-carousel::-webkit-scrollbar {
  display: none;
}

/* Styling for the cards */
.occasion-carousel .occasion-card {
  flex: 0 0 auto; /* Prevent the cards from shrinking */
  width: calc(33.33% - 16px); /* 3 items per row */
  scroll-snap-align: start;
  background: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.occasion-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.occasion-card .occasion-img {
  background: rgb(2, 149, 255);
  border-radius: 50%;
  margin-bottom: 15px;
  /* padding: 10px; */
}

.occasion-card .occasion-img img {
  max-width: 100%;
  object-fit: cover;
  /* border-radius: 50%; */
  border: 4px solid #fff;
}

.occasion-card h2 {
  font-weight: 500;
  font-size: 1.56rem;
  margin: 15px 0;
}

.occasion-card span {
  color: #6a6d78;
  font-size: 1.31rem;
}

/* Responsive design adjustments */
@media screen and (max-width: 1024px) {
  .occasion-carousel .occasion-card {
    width: calc(50% - 16px); /* 2 items per row */
  }
}

@media screen and (max-width: 600px) {
  .occasion-carousel .occasion-card {
    width: 100%; /* 1 item per row */
  }

  .occasion-arrow {
    height: 40px;
    width: 40px;
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 400px) {
  .occasion-section {
    padding: 20px; /* Reduced padding for small screens */
  }

  .occasion-arrow {
    height: 35px;
    width: 35px;
    font-size: 1.1rem;
  }
}

/* outstation cab */

/* Outstation Cab Section */
.outstation-cab-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
  padding: 30px 0;
}

.outstation-cab-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* Allow wrapping for mobile */
}

.outstation-cab-left {
  width: 45%;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.outstation-cab-heading {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.outstation-cab-paragraph {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 20px;
}

.outstation-cab-google-play {
  width: 200px;
  height: auto;
  margin-top: 20px;
}

.outstation-cab-right {
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.outstation-cab-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .outstation-cab-container {
    flex-direction: column;
    align-items: center;
  }

  .outstation-cab-left,
  .outstation-cab-right {
    width: 100%;
    text-align: center;
  }

  .outstation-cab-heading {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .outstation-cab-paragraph {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .outstation-cab-google-play {
    width: 180px;
  }
}

/* advantae of hiring */

/* Advantage of Hiring Section */
.advantage-hiring-section {
  background-color: #f4f4f4;
  padding: 40px 0;
}

.advantage-hiring-container {
  margin: 0 auto;
  text-align: center;
}

.advantage-hiring-heading {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.advantage-hiring-paragraph {
  font-size: 1rem;
  color: #6a6d78;
  margin-bottom: 40px;
}

/* Advantage Boxes */
.advantage-hiring-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.advantage-hiring-box {
  background-color: #fff;
  border-radius: 8px;
  width: 48%; /* 2 boxes per row */
  display: flex;
  align-items: center;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.advantage-hiring-box:hover {
  transform: translateY(-10px); /* Add hover effect */
}

.advantage-hiring-box-img img {
  max-width: 100%;
  object-fit: cover;
  margin-right: 20px;
}

.advantage-hiring-box-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.advantage-hiring-box-content p {
  font-size: 1rem;
  color: #6a6d78;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
  .advantage-hiring-box {
    width: 100%; /* Stack boxes on small screens */
    margin-bottom: 20px;
  }
}

/* Applie Section */
.applie-section {
  padding: 40px 0;
  background-color: #000000;
}

.applie-container {
  margin: 0 auto;
  text-align: center;
}

/* Applie Heading */
.applie-heading {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  /* color: #fff; */
}
/* Applie Rows */
.applie-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0; /* No space between rows */
}
.applie-left,
.applie-right {
  width: 50%; /* Each section takes up 48% width to avoid space */
}

.applie-left p,
h3 {
  color: #ffffff;
  text-align: left;
  padding: 10px;
}

.applie-right p,
h3 {
  text-align: left;
  padding: 0px;
  margin: 15px 0px;
}
.applie-right img {
  width: 100%;
  height: auto;
}

.applie-left img {
  width: 100%;
  height: auto;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
  .applie-row {
    flex-direction: column;
    align-items: center;
  }

  .applie-left,
  .applie-right {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
}

/* hire service   */
/* Hire Service Section */
.hire-service {
  width: 100%;
  padding: 40px 20px;
  background-color: #f8f9fa;
  text-align: center;
}
.hire-service-container {
  margin: 0 auto;
}
/* Heading and Description */
.service-heading {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
  color: #000000;
}

.service-description {
  font-size: 1.125rem;
  color: #6a6d78;
  margin-bottom: 40px;
}

/* Service Cards Container */
.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Service Card Styles */
.service-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Card Icon */
.card-icon {
  font-size: 3rem;
  color: #02a9ff;
  margin-bottom: 20px;
}

/* Card Number */
.card-number {
  font-size: 2rem;
  font-weight: bold;
  color: #02a9ff;
}

/* Responsiveness: Adjusting layout for smaller screens */
@media screen and (max-width: 1024px) {
  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .service-cards {
    grid-template-columns: 1fr; /* Single column for very small screens */
  }
}

/* FAQ Section */
.faq-section {
  padding: 40px 0;
}

.faq-container {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

/* Left Side Image */
.faq-left {
  width: 25%;
}

.faq-left img {
  max-width: 100%;
  height: auto;
  border-radius: 8px; /* Optional for rounded corners */
}

/* Right Side FAQ */
.faq-right {
  width: 65%;
}

.faq-heading {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #000000;
}

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #000000;
}

.faq-header {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 10px;
}

.faq-icon {
  font-size: 1.5rem;
  margin-right: 10px;
  color: #4caf50;
  transition: transform 0.3s ease;
}

.faq-question h4 {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0;
  color: #000000;
}

.faq-answer {
  display: none; /* Initially hidden */
  padding-left: 30px;
  font-size: 1rem;
  color: #000000;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  max-height: 0;
  overflow: hidden;
}

.faq-answer.open {
  display: block;
  max-height: 200px;
  padding-left: 30px;
}

.faq-icon.open {
  transform: rotate(45deg);
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
  .faq-container {
    flex-direction: column;
    align-items: center;
  }

  .faq-left {
    width: 100%;
    margin-bottom: 20px;
  }

  .faq-right {
    width: 100%;
  }
}

/* Footer Section Styling */
.footer-section {
  background-color: #073c7a;
  color: #fff;
  padding: 40px 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
}

.footer-heading {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-paragraph {
  font-size: 1rem;
  color: #bdc3c7;
}

.footer-links {
  list-style: none;
  text-align: left;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #bdc3c7;
  font-size: 1rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #e74c3c;
}

.footer-app-img {
  width: 180px;
  height: auto;
  margin-right: 15px;
}

.footer-app img {
  width: 180px;
  height: auto;
  margin-right: 15px;
}

/* Footer Column Layout */
.footer-about,
.footer-resources,
.footer-extra-links,
.footer-app {
  width: 22%;
  text-align: left;
}

.footer-copyright {
  background-color: #d9d9d98a;
  color: #000000;
  text-align: center;
  padding: 20px;
  margin-top: 20px;
}

.footer-copyright p {
  font-size: 1rem;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-about,
  .footer-resources,
  .footer-extra-links,
  .footer-app {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }

  .footer-copyright p {
    font-size: 0.9rem;
  }
}

/*  login container  */
.login-container-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 70px;
}
.login-container h3 {
  color: #000000;
}
.login-container {
  background-color: #e7e7f97d;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgb(4 47 255 / 60%);
  width: 400px;
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* height: 500px; */
}

.input-field {
  padding: 14px;
  margin: 12px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.input-field:focus {
  border-color: #1d4ed8;
  box-shadow: 0 0 6px rgba(29, 78, 216, 0.5);
  outline: none;
}

.submit-btn {
  background-color: #1d4ed8;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  background-color: #2563eb;
}

.toggle-link {
  text-align: center;
  margin-top: 20px;
}

.toggle-link a {
  color: #1d4ed8;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
}

.toggle-link a:hover {
  text-decoration: underline;
}

.form-container {
  display: none;
}

.form-container.active {
  display: block;
}

/* Animation for smooth transition */
.form-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* Styling for links at the bottom */
.toggle-link p {
  margin: 0;
}

/* car-rent  */
.car-rect-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  position: relative;
}
.car-rect-section h3 {
  color: #003399;
}
.car-rect-left {
  width: 70%;
  padding: 20px;
  height: 100vh;
  overflow-y: scroll;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For IE 10+ */
}

.car-rect-left::-webkit-scrollbar {
  display: none; /* For Chrome, Safari, and Opera */
}

.car-rect-right {
  width: 30%;
  padding: 20px;
  background-color: #f0f8ff;
  position: sticky;
  top: 0;
  height: calc(100vh - 40px); /* Reduced height of the right section */
}

.car-rect-top-routes {
  margin-bottom: 30px;
}

.car-rect-top-routes h2 {
  font-size: 22px;
  color: #003399;
}
.route-item {
  display: flex; /* Enable flexbox layout */
  align-items: center; /* Vertically center align the items */
  margin-bottom: 20px; /* Space between each route item */
  background-color: #80808024;
}

.route-item img {
  width: 50%; /* Set the image width to 50% */
  border-radius: 8px;
  margin-right: 15px; /* Add space between image and text */
}

.route-item p {
  flex-grow: 1;
  color: #000000;
  font-size: 14px;
  padding: 5px;
}

.car-rect-form-section {
  margin-top: 20px;
  background-color: #80808024;
  padding: 20px;
}

.car-rect-form-section h2 {
  font-size: 22px;
  color: #003399;
}

.car-rect-form input {
  display: block;
  width: 100%;
  padding: 8px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.car-rect-form button {
  background-color: #003399;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.taxi-rate-section {
  margin: 40px 0;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.taxi-rate-section h2 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #003399;
  margin-bottom: 20px;
}

.taxi-rate-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.taxi-rate-table th,
.taxi-rate-table td {
  padding: 12px 15px;
  text-align: left;
  border: 1px solid #ddd;
}

.taxi-rate-table th {
  background-color: #003399;
  color: white;
  font-size: 16px;
}

.taxi-rate-table td {
  background-color: #ffffff;
  font-size: 14px;
  color: #333;
}

.taxi-rate-table tr:nth-child(even) {
  background-color: #f2f2f2;
}

.taxi-rate-table tr:hover {
  background-color: #e0e0e0;
  cursor: pointer;
}

@media (max-width: 768px) {
  .taxi-rate-table {
    font-size: 12px;
  }

  .taxi-rate-table th,
  .taxi-rate-table td {
    padding: 8px 10px;
  }
}

/* Media Query for mobile responsiveness */
@media (max-width: 768px) {
  .car-rect-container {
    flex-direction: column;
  }

  .car-rect-left {
    width: 100%;
    height: auto;
    padding: 15px;
  }

  .car-rect-right {
    width: 100%;
    height: auto;
    position: relative;
    padding: 15px;
  }

  .car-rect-top-routes h2,
  .car-rect-form-section h2 {
    font-size: 20px;
  }

  .car-rect-form input {
    padding: 12px;
  }

  .car-rect-form button {
    width: 100%;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .car-rect-form input {
    padding: 10px;
  }

  .car-rect-form button {
    padding: 12px;
  }
}

/* car fare  */
.starting-fare-car-container {
  width: 100%;
  margin-top: 20px;
}

.starting-fare-car-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  margin-bottom: 10px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.starting-fare-car-details {
  display: flex;
  align-items: flex-start;
}

.starting-fare-car-image {
  height: 80px;
  object-fit: cover;
  margin-right: 15px;
  border-radius: 8px;
}

.starting-fare-car-info {
  font-size: 14px;
}

.starting-fare-car-title {
  font-size: 18px;
  font-weight: bold;
  color: #003399;
  margin: 0;
}

.starting-fare-car-facilities {
  display: flex;
  margin: 8px 0;
}

.starting-fare-car-facility-icon {
  width: 24px;
  height: 24px;
  margin-right: 5px;
}

.starting-fare-car-included {
  color: #0066cc;
  font-weight: bold;
}

.starting-fare-car-price {
  text-align: right;
}

.starting-fare-car-price h3 {
  margin: 0;
  color: #003399;
  font-size: 18px;
}

.starting-fare-car-button {
  background-color: #003399;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .starting-fare-car-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
  }

  .starting-fare-car-details {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
  }

  .starting-fare-car-image {
    height: 60px;
    margin-bottom: 10px;
  }

  .starting-fare-car-info {
    font-size: 12px;
  }

  .starting-fare-car-title {
    font-size: 16px;
  }

  .starting-fare-car-facilities {
    flex-wrap: wrap;
  }

  .starting-fare-car-facility-icon {
    margin-bottom: 5px;
  }

  .starting-fare-car-price {
    text-align: left;
    margin-top: 10px;
  }

  .starting-fare-car-price h3 {
    font-size: 16px;
  }

  .starting-fare-car-button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .starting-fare-car-card {
    padding: 10px;
  }

  .starting-fare-car-image {
    height: 50px;
    margin-right: 10px;
  }

  .starting-fare-car-title {
    font-size: 14px;
  }

  .starting-fare-car-info {
    font-size: 12px;
  }

  .starting-fare-car-button {
    padding: 8px;
    font-size: 14px;
  }
}

/* booking */
/* General Container */
.booking-car-container {
  width: 90%;
  margin: 0 auto;
  padding-top: 20px;
}

/* Destination Text */
.booking-car-destination {
  font-size: 24px;
  font-weight: bold;
  color: #003399;
  margin-bottom: 20px;
}

/* Main Booking Container (70% width) */
.booking-car-main-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.booking-car-container-main {
  /* width: 70%; */
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-family: "Arial", sans-serif;
}

/* Car Details Section */
.booking-car-starting-fare-card {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.booking-car-starting-fare-details {
  display: flex;
}

.booking-car-starting-fare-details img {
  width: 150px;
  border-radius: 8px;
  margin-right: 15px;
}

.booking-car-starting-fare-info {
  font-size: 14px;
}

.booking-car-starting-fare-title {
  font-size: 18px;
  font-weight: bold;
  color: #003399;
}

.booking-car-starting-fare-facilities img {
  width: 20px;
  margin-right: 10px;
}

.booking-car-starting-fare-included {
  font-size: 12px;
  color: #555;
}

.booking-car-starting-fare-price {
  text-align: right;
  font-size: 16px;
}

.booking-car-starting-fare-button {
  background: #003399;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.booking-car-starting-fare-button:hover {
  background: #0052cc;
}

/* Trip Information Form */
.booking-car-input-group {
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.booking-car-input-group input {
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.booking-car-input-group span {
  padding: 12px;
  background: #003399;
  color: white;
  border-radius: 5px 0 0 5px;
  font-size: 14px;
}

.booking-car-input-group input:focus {
  border-color: #003399;
  outline: none;
}

/* Name & Country Code Section */
.booking-car-input-group-name-country {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 10px;
}

.booking-car-input-group-name-country input {
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.booking-car-input-group-name-country span {
  padding: 12px;
  background: #003399;
  color: white;
  border-radius: 5px 0 0 5px;
  font-size: 14px;
}

/* Overall Fare Summary */
.booking-car-summary {
  width: 30%;
  background: #f4f7fc;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-family: "Arial", sans-serif;
  border: 2px solid #003399;
  margin-top: 20px;
}

.booking-car-summary h5 {
  font-size: 20px;
  font-weight: bold;
  color: #003399;
  margin-bottom: 15px;
}

.booking-car-summary p {
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
}

.booking-car-summary strong {
  font-size: 18px;
  color: #003399;
}

.booking-car-checkbox-container {
  margin: 10px 0;
}

.booking-car-pay-btn {
  background: #002f6c;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.booking-car-pay-btn:hover {
  background: #003366;
}

/* General Form Styling */
.booking-car-input-group-name-country,
.booking-car-input-group {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 20px;
}

.booking-car-input-group-item {
  width: 48%;
}
/* Overall form styling */
.car-booking-form {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.car-booking-form-item {
  flex: 1;
  min-width: 250px;
  margin-bottom: 15px;
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.car-booking-form-item label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 14px;
  color: #333;
}

.car-booking-form-item input {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  background-color: #fff;
  transition: border 0.3s, box-shadow 0.3s;
}

.car-booking-form-item input::placeholder {
  color: #aaa;
}

.car-booking-form-item input:focus {
  border-color: #003399;
  box-shadow: 0 0 8px rgba(0, 51, 153, 0.4);
}
/* Overall Container */
.booking-summary-container {
  background-color: #0295ff33;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: auto;
}

/* Title */
.summary-title {
  font-size: 22px;
  font-weight: bold;
  color: #003399;
  margin-bottom: 20px;
  border-bottom: 2px solid #003399;
}

/* Price Details */
.price-details {
  margin-bottom: 20px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.total-price {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: bold;
  padding-top: 10px;
}

/* Price alignment */
.price-right {
  font-weight: bold;
  color: #003399;
  display: flex;
  align-items: center;
}

.price-right i {
  margin-left: 8px;
  font-size: 18px;
  color: #003399;
}

/* Coupon Section */
.coupon-section {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.coupon-input {
  padding: 10px;
  width: 70%;
  font-size: 16px;
  border: 1px solid #ddd;
  transition: all 0.3s;
}

.coupon-input:focus {
  border-color: #003399;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 51, 153, 0.5);
}

.apply-btn {
  padding: 10px 20px;
  background-color: #003399;
  color: white;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.apply-btn:hover {
  background-color: #0056b3;
}

/* Payment Dropdown */
.payment-dropdown {
  margin-bottom: 20px;
}

.payment-select {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background-color: #f9f9f9;
  transition: all 0.3s;
}

.payment-select:focus {
  border-color: #003399;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 51, 153, 0.5);
}

/* Terms and Conditions */
.terms-container {
  margin: 15px 0;
  display: flex;
  align-items: center;
  font-size: 14px;
}

.agree-checkbox {
  margin-right: 10px;
}

.terms-label {
  color: #333;
  cursor: pointer;
}

/* Pay Now Button */
.pay-now-btn {
  width: 100%;
  padding: 14px;
  background-color: #003399;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.pay-now-btn:hover {
  background-color: #0056b3;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .coupon-input {
    width: 60%;
  }
}

@media (max-width: 768px) {
  .car-booking-form {
    flex-direction: column;
  }
}

.booking-car-input-group-item label {
  font-size: 14px;
  font-weight: bold;
  color: #003399;
  margin-bottom: 5px;
  display: block;
}

.booking-car-input-group-item input {
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 14px;
  margin-bottom: 15px;
}

.booking-car-input-group-iteminput:focus {
  border-color: #003399;
  outline: none;
}
.booking-car-input-group button {
  padding: 10px;
  background: #002f6c;
  color: #fff;
  border-radius: 11px;
  border: none;
}
/* Adjust for smaller screen sizes */
@media screen and (max-width: 768px) {
  .booking-car-main-container {
    flex-direction: column;
  }
  .booking-car-summary {
    width: 100%;
    margin-top: 20px;
  }
  .booking-car-starting-fare-card {
    flex-direction: column;
  }

  .booking-car-starting-fare-details {
    margin-bottom: 15px;
  }
  .booking-car-input-group input {
    width: 100%;
  }

  .booking-car-input-group span {
    width: 100%;
    margin-bottom: 10px;
  }
}
.booking-tab-container {
  width: 100%;
  margin-top: 20px;
}

.booking-tabs {
  display: flex;
  justify-content: space-between;
  background-color: #f2f2f2;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

.booking-tab {
  flex: 1;
  text-align: center;
  padding: 14px 0;
  background-color: #e0e0e0;
  cursor: pointer;
  font-weight: bold;
  color: #003399;
  transition: background-color 0.3s, color 0.3s;
  border-right: 1px solid #d4d4d4;
}

.booking-tab:last-child {
  border-right: none;
}

.booking-tab:hover {
  background-color: #003399;
  color: white;
}

.booking-tab.active {
  background-color: #003399;
  color: white;
}

.booking-tab-content {
  padding: 20px;
  background-color: #ffffff;
  border-radius: 0 0 8px 8px;
}

.booking-tab-pane {
  display: none;
}

.booking-tab-pane.active {
  display: block;
}

.booking-tab-pane h3 {
  color: #003399;
}

.booking-tab-pane p {
  color: #666;
  font-size: 14px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .booking-tabs {
    flex-direction: column;
  }

  .booking-tab {
    margin-bottom: 10px;
    text-align: center;
  }

  .booking-tab:last-child {
    margin-bottom: 0;
  }
}

/* Blog html */
/* Blog Section */
.blog-banner {
    background-color: #0295ff;
    padding: 3%;
}

.blog-banner-content {
    text-align: center;
    list-style: none;
}

.blog-section {
    /* display: flex; */
    justify-content: space-between;
    padding: 20px 0;
}

.blog-main {
    flex: 0 0 70%;
    margin-right: 30px;
}

/* Container for blog posts with 2 columns */
.blog-posts-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;  /* Adjust the gap between blog posts */
    width: 100%; /* Ensure it uses 100% width */
}

.blog-post {
    flex: 0 0 calc(50% - 20px); /* 2 blog posts per row with 20px gap */
    box-sizing: border-box;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for blog posts */
.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.blog-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.blog-content {
    padding: 15px;
}

.blog-content h4 {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 10px;
}

.Blog-btn {
    background-color: #0295ff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.Blog-btn:hover {
    background-color: #0277d4;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.pagination a {
    text-decoration: none;
    padding: 8px 16px;
    background-color: #f0f0f0;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.pagination a.active {
    background-color: #0295ff;
    color: white;
}

.pagination a:hover {
    background-color: #0277d4;
    color: white;
}

.pagination a.disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-post {
        flex: 0 0 100%; /* Make blog posts stack on smaller screens */
    }
}


/* Popular Tags Section */
.popular-tags {
  background-color: #fff;
  padding: 20px;
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.popular-tags ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.popular-tags li {
  margin-right: 15px;
  margin-bottom: 10px;
}

.popular-tags a {
  text-decoration: none;
  color: #7f7f7f;
  background-color: #e8e8e8;
  padding: 4px;
  border-radius: 15px;
}

.popular-tags a:hover {
  color: #ffffff;
  background-color: #0295ff;
}

/* Blog Post */
.blog-post {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 15px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.badge {
  background-color: #ff5722;
  color: white;
  padding: 8px 15px;
  font-weight: bold;
  border-radius: 4px;
  position: absolute;
  top: 20px;
  left: 20px;
}

.blog-image {
  position: relative;
  width: 100%;
  max-width: 40%;
}
.blog-image-1 {
  position: relative;
  width: 100%;
}

.blog-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.search-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.blog-content {
  padding-left: 20px;
  flex: 1;
}

.blog-content .top-image {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.blog-content h4 {
  margin-bottom: 10px;
}

.Blog-btn {
  background-color: #0295ff;
  color: white;
  border: none;
  padding: 12px 25px;
  cursor: pointer;
  border-radius: 25px;
  font-size: 16px;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.Blog-btn:hover {
  background-color: #007bff;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.pagination a {
  color: #007bff;
  padding: 10px 15px;
  text-decoration: none;
  border: 1px solid #ddd;
  margin: 0 5px;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
}

.pagination a:hover {
  background-color: #007bff;
  color: white;
}

.pagination .active {
  background-color: #007bff;
  color: white;
  border: 1px solid #007bff;
}

.pagination .prev,
.pagination .next {
  font-weight: bold;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
  .blog-section {
    flex-direction: column;
    padding: 10px;
  }
  .blog-img img {
    width: 100%;
  }
  .blog-main {
    flex: 0 0 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .category-section,
  .latest-updates,
  .popular-tags {
    margin: 10px 0;
  }

  .update-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .update-image {
    height: 50px;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .popular-tags ul {
    display: block;
  }

  .popular-tags li {
    margin-right: 0;
    margin-bottom: 8px;
  }

  .blog-post {
    flex-direction: column;
  }

  .blog-image {
    max-width: 100%;
    margin-bottom: 15px;
  }

  .blog-content {
    padding-left: 0;
  }

  .blog-post .badge {
    top: auto;
    left: auto;
    position: relative;
  }

  .pagination {
    flex-direction: column;
  }

  .pagination a {
    margin: 5px 0;
  }
}

@media screen and (max-width: 480px) {
  .category-section a {
    font-size: 14px;
    padding: 5px;
  }

  .category-section i {
    font-size: 10px;
  }

  .blog-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* contact */

/* General styling for contact section */
.contact-section {
  margin-top: 40px;
  padding: 30px;
  background-color: #f4f4f4;
  border-radius: 15px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Info Styling */
.contact-info {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 350px;
  padding: 15px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2);
}

.contact-info-icon i {
  font-size: 28px;
  color: #003399;
}

.contact-info-content p {
  font-size: 16px;
  color: #333;
}

.contact-info-content span {
  font-weight: bold;
  color: #003399;
}

/* Divider */
hr {
  margin: 30px 0;
  border: 1px solid #ddd;
}

/* Contact Form Styling */
.contact-form {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
  text-align: center;
  font-size: 28px;
  color: #003399;
  margin-bottom: 20px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

/* Input fields */
.contact-form input {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #f9f9f9;
  transition: all 0.3s;
}

.contact-form input:focus {
  border-color: #003399;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 51, 153, 0.5);
}

/* Submit button */
.contact-form .submit-button {
  background-color: #003399;
  color: white;
  padding: 14px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

.contact-form .submit-button:hover {
  background-color: #0056b3;
}

/* Map Section Styling */
.map-section {
  margin-top: 40px;
  text-align: center;
}

.map-section h3 {
  font-size: 24px;
  color: #003399;
  margin-bottom: 15px;
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-info-item {
    width: 100%;
    max-width: 100%;
  }

  .contact-form input {
    padding: 12px;
    font-size: 14px;
  }

  .contact-form .submit-button {
    width: 100%;
  }

  .map-section iframe {
    height: 250px;
  }

  .contact-form h2 {
    font-size: 24px;
  }

  .contact-info-icon i {
    font-size: 24px;
  }

  .contact-info-content p {
    font-size: 14px;
  }
}

/* about  */

.about-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f8f8f8;
}

.about-image img {
  height: auto;
  max-width: 100%;
  margin-bottom: 40px;
}

.about-container {
  display: flex;
  gap: 40px;
  align-items: center;
  margin: 0 auto;
}

.about-content {
  flex: 1;
  color: #333;
  padding: 15px;
}

.about-content h2 {
  font-size: 32px;
  color: #003399;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: left;
}

.about-list {
  list-style-type: none;
  padding: 0;
  text-align: left;
}

.about-list li {
  font-size: 16px;
  margin: 10px 0;
}

.about-list li strong {
  color: #003399;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    max-width: 100%;
  }
}

/* .fixed-icons  */
/* Style for WhatsApp and Inquiry icons */
.fixed-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.fixed-icons a {
  font-size: 30px; /* Increased font size */
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  transition: all 0.3s ease;
  width: 60px;
  height: 60px;
  display: inline-block;
  line-height: 60px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Added shadow */
}

.fixed-icons a:hover {
  transform: scale(1.1);
}

/* Style for the inquiry popup */
.inquiry-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(4 147 255 / 66%);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.inquiry-popup-content {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  width: 400px;
}

.inquiry-popup h2 {
  margin-bottom: 15px;
}

.inquiry-popup input,
.inquiry-popup textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.inquiry-popup button {
  background-color: #003399;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}

.inquiry-popup button:hover {
  background-color: #0056b3;
}

/* Close button for inquiry form */
.close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 35px;
  cursor: pointer;
}
