/* Prevent horizontal scrolling */
body, html {
  line-height: 1.5;
  font-family: 'Arial';
}
html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
    margin: 0;
    font-family: 'Arial';
}

.topbar {
  background-color: #000;
  color: #fff;
  padding: 10px 40px 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Arial', sans-serif;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 150px;
}



/* Wrapper for logos + menu icon */
.logo-menu-wrapper {
  display: flex;
  align-items: center;
  /* gap: 10px; */
}

/* Logos */
.logo-group {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 auto; /* center horizontally */
}

.logo-group img {
  height: 150px;
  display: block;
  object-fit: contain;
}
/* Menu icon beside logos */
.menu-icon {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 22px;
  width: 30px;
}

.menu-icon span {
  height: 4px;
  background: gold;
  border-radius: 2px;
}

.menu-wrapper {
  position: relative;
}


.menu {
  display: none;
  position: absolute;
  top: 40px; /* below the icon */
  right: 0;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 10px 0;
  width: 200px;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  z-index: 999;
}

.menu.show {
  display: block;
}



.menu a {
  display: block;
  color: white;
  padding: 8px 15px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
}

.menu a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .topbar {
    flex-direction: column;
    
  }

  .logo-group img {
    height: 70px;
  }

  .menu-icon {
    width: 25px;
    height: 18px;
  }

  /* .menu {
    right: 15px;
  } */
}

.hero {
    position: relative;
    height: 600px;
    background: url('images/background.jpg') no-repeat center center/cover;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    padding: 0%;
    margin: 0%;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.6); /* black with 50% opacity */
    z-index: 1;
}

.hero > * {
    position: relative;
    z-index: 2; /* make sure text/content is above overlay */
}

.overlay {
    /* background-color: rgba(0, 0, 0, 0.5); */
    padding: 30px;
    max-width: 800px;
    margin: auto;
    text-align: left;
}

.hero .ar {
    font-size: 50px;
    color: #FFD700;
    margin-bottom: 10px;
    direction: rtl;
    font-weight: 500;
    margin-left: -200px;
    line-height: 0%;
}

.hero .en {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 500;
     margin-left: -200px;
}

.buttons {
    display: flex;
    gap: 10px;
    /* justify-content: center; */
    text-align: left;
     margin-left: -200px;
}

.btn {
    padding: 10px 20px;
    border: none;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.call {
    background-color: #FFC107;
    color: black;
}

.whatsapp {
    background-color: #25D366;
    color: white;
}

.car-img {
    position: absolute;
    bottom: 0;
    width: 600px;
    max-width: 90%;
}

.company-overview {
    background-color: #f9f9f9;
    padding: 60px 20px;
    display: flex;
    justify-content: space-around;
    font-family: 'Arial';
    font-size: 28px;

}

.company-overview .container {
    max-width: 900px;
    text-align: center;
}

.company-overview h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: bold;
}

.company-overview .highlight {
    color: #f7b500; /* golden yellow */
}

.company-overview p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #8d8c8c;
}

.company-overview .location {
    font-weight: bold;
    color: #a1a1a1;
    text-align: left;
}

/* --- Welcome Section --- */

.welcome-section {
    padding: 80px 20px;
    background: #fff;
    font-family: 'Arial';
    font-weight: 400;
}

.welcome-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.welcome-left, .welcome-right {
    flex: 1 1 500px;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease;
}

.welcome-right {
    transform: translateX(50px);
}

.welcome-left.visible, .welcome-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.welcome-left h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.welcome-left .highlight {
    color: #f7b500;
}

.welcome-left .quote {
    /* font-weight: bold; */
    margin-bottom: 10px;
    text-align: center;
    font-family: 'Arial';
    font-size: 16px;
}

.welcome-left .quote .orange {
    color: orange;
}

.vision-mission {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    font-size: 16px;
}

.card {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 12px;
    flex: 1;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.card .icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.card h4 {
    margin-bottom: 10px;
    color: #333;
}

.features {
    display: flex;
    margin-top: 30px;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.years-box {
    background: #00113a;
    color: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    font-weight: bold;
}

.years-box strong {
    display: block;
    font-size: 26px;
    margin-bottom: 5px;
}

.features-list {
    list-style: none;
    padding: 0;
    color: #333;
}

.features-list li {
    margin-bottom: 8px;
    font-size: 16px;
}

.welcome-right .main-img img {
    width: 400px;
    border-radius: 12px;
}

.car-overlay img {
    width: 400px;
    margin-top: 20px;
    border-radius: 10px;
}

/* Animation Trigger on Scroll */
@media (prefers-reduced-motion: no-preference) {
    .slide-left, .slide-right {
        opacity: 0;
        transform: translateX(-50px);
        transition: all 1s ease-out;
    }
    .slide-right {
        transform: translateX(50px);
    }
    .slide-left.visible, .slide-right.visible {
        opacity: 1;
        transform: translateX(0);
    }
}

.stats-section {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0b183f 0%, #15284d 100%);
  color: white;
  padding: 40px 0;
  font-family: Arial;
  font-size: 16px;
}

.stats-container {
  max-width: 900px;          /* Limit width of inner content */
  margin: 0 auto;            /* Center horizontally */
  display: flex;
  justify-content: space-around; /* Even spacing inside container */
  align-items: center;
}

.stat-item {
  text-align: center;
  max-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.icon-wrapper {
  width: 100%; /* fills stat-item width */
  height: 100%;
  border-radius: 50% 50% 50% 10% / 60% 40% 60% 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.icon-wrapper img {
  max-width: 60%;
  max-height: 60%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.stat-number {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 6px;
  color: white;
}

.stat-label {
  font-size: 18px;
  color: #dcdcdc;
  line-height: 1.5;
}


.services-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #fff;
  max-width: 900px;   /* limits the width */
  margin: 0 auto;     /* centers the section */
}


.services-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.services-section h2 span {
  font-weight: normal;
}

.services-section h2 strong {
  color: #f7b500;
}

.services-description {
  max-width: 700px;
  margin: 0 auto 40px auto;
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.service-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp 1s ease forwards;
}

.service-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card h3 {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 700;
}

.service-card p {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
  line-height: 1.5;
}

.icon-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 50% 50% 50% 10% / 60% 40% 60% 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.icon-wrapper img {
  max-width: 60%;
  max-height: 60%;
  object-fit: contain;
}
.services-section {
  text-align: center;
  padding: 50px 20px;
  font-family: 'Arial';
  font-weight: 400;
  text-decoration: none solid rgb(110, 118, 132);
  font-size: 20px;
}

.services-section h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 36px;
}

.services-section .highlight {
  color: #fdb913;
}

.services-section .subtitle {
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.5;
  color: RGB(110, 118, 132);
  font-size: 16px;
}

.service-box {
  background: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  transform: translateY(50px);
  opacity: 0;
  animation: fadeInUp 1s forwards;
}

.service-box:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
}

.service-box h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 10px 0;
}

.service-box p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Exactly 3 columns */
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}


/* Animation */
@keyframes fadeInUp {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.car-type-section {
  max-width: 900px;  /* or whatever width you prefer */
  margin: 0 auto;    /* centers the section */
  text-align: center;
  padding: 60px 20px;
}

.car-type-section h2 {
  font-size: 2.2rem;
  font-weight: bold;
}

.car-type-section .highlight {
  color: #fdb913;
}

.car-type-section .subtext {
  /* font-size: 1rem; */
  color: #666;
  max-width: 700px;
  margin: 10px auto 40px;
  line-height: 1.5;
  font-size: 16px;
  font-family: 'Arial';
  font-weight: 400;
}

.car-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-content: center;
}

.car-type-box {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 25px 15px;
  background: #fff;
  transition: all 0.3s ease;
}

.car-type-box:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: scale(1.03);
}

.car-image {
  width: 100%;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  overflow: hidden;
}

.car-image img {
  max-width: 100%;
  max-height: 100%;
  transition: transform 0.3s ease;
}

.car-type-box:hover .car-image img {
  transform: scale(1.05);
}

.car-type-box h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.car-btn {
  background-color: #fdb913;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.car-btn:hover {
  background-color: #d79d0b;
}

.rental-info-section {
  width: 100%;
  background-color: #121212;
  color: white;
  padding: 60px 20px;
  font-family: 'Arial';
}

.rental-info-heading {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  font-size: 48px;
}

.rental-info-heading h2 {
  font-size: 2.2rem;
  color: #fdb913;
  margin-bottom: 10px;
}

.rental-info-heading p {
  font-size: 1rem;
  color: #ddd;
  line-height: 1.5;
  font-size: 16px;
}

.info-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 16px;
}

.info-card {
  background-color: #1c2b52;
  padding: 30px 20px;
  border-radius: 10px;
  position: relative;
  text-align: center;
  color: white;
  flex: 1 1 300px;
  max-width: 350px;
  transition: all 0.3s ease;
  font-size: 16px;
}

.info-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
}

.info-card p {
  font-size: 0.95rem;
  color: #f0f0f0;
}

.circle-num {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1c2b52;
  color: white;
  border: 2px solid white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.vehicle-categories {
  padding: 50px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.categories-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.categories-header h2 span {
  color: gold;
}

.categories-header p {
  color: #666;
  font-size: 16px;
  margin-bottom: 40px;
}

.card-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  overflow-x: hidden;
}

.car-card {
  flex: 0 0 23%;                  /* 4 cards in a row with space for gaps */
  box-sizing: border-box;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  height: 250px;                 /* ✅ Fixed height */
  display: flex;                /* ✅ Flex layout for vertical alignment */
  flex-direction: column;
  justify-content: space-between; /* ✅ Space out content vertically */
}

.car-card img {
  max-width: 100%;
  height: 200px;                 /* ✅ Fixed image height for uniformity */
  object-fit: contain;
}

.car-card h3,
.car-card p {
  margin: 10px 0 0;
}


/* ✅ Responsive */
@media (max-width: 992px) {
  .car-card {
    flex: 0 0 48%;
  }
}

@media (max-width: 576px) {
  .car-card {
    flex: 0 0 100%;
  }
}


.carousel-btn {
  background-color: #fdb913;
  border: none;
  color: #000;
  font-size: 1.2rem;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  margin: 0 10px;
  z-index: 2;
  transition: background 0.3s;
}

.support-section {
  text-align: center;
  padding: 40px 20px;
}

.support-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.support-section .highlight {
  color: orange;
}

.support-section p {
  color: #666;
  font-size: 14px;
  margin-bottom: 30px;
}

.support-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.support-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 300px;
  flex: 1 1 300px;
}

.support-card img {
  width: 100%;
  height: auto;
  display: block;
}

.contact-info {
  padding: 15px;
  font-size: 14px;
  color: #333;
}

.contact-info i {
  font-size: 20px;
  color: orange;
}
.testimonial-section {
  text-align: center;
  padding: 50px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.testimonial-section .highlight {
  color: orange;
}

.testimonial-intro {
  color: #555;
  font-size: 14px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-inline: auto;
}

.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.testimonial-card {
  background: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 20px;
  width: 320px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: left;
}

.testimonial-card .quote-icon {
  position: absolute;
  top: -20px;
  right: -20px;
  background: #192142;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1.5;
  text-align:  center;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.testimonial-header img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.stars {
  color: orange;
  font-size: 14px;
}

.testimonial-text {
  font-size: 14px;
  color: #444;
  margin-top: 10px;
}
.footer {
  background-color: #07112e;
  color: white;
  font-family: Arial;
  padding-top: 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 30px;
  border-bottom: 1px solid #1e2a45;
}

.footer-column {
  flex: 1 1 220px;
  margin: 20px;
}

.footer-column h4 {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: bold;
}

.footer-column p,
.footer-column li {
  font-size: 14px;
  line-height: 1.5;
  color: #cfcfcf;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-input {
  margin-top: 15px;
  padding: 10px 20px;
  border-radius: 30px;
  border: none;
  outline: none;
  width: 100%;
  max-width: 250px;
}

.footer-socials {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  font-size: 18px;
}

.footer-bottom {
  background-color: #040e26;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: #cfcfcf;
}

.footer-bottom .brand {
  color: white;
  font-weight: bold;
  text-decoration: underline;
}

.footer-bottom a {
  color: #ffffff;
  text-decoration: underline;
}

.scroll-top {
  background-color: #1a2b48;
  color: white;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  cursor: pointer;
}
/* Quick Links and Contact Info Lists */
.footer-column ul li {
  position: relative;
  cursor: pointer;
  color: #a0a0a0;
  padding-left: 20px;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-column ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: #f9b000; /* golden yellow */
  transition: color 0.3s ease;
}

/* Hover Effect for Quick Links */
.footer-column ul li:hover {
  color: #f9b000; /* golden yellow */
}

/* On hover, keep the arrow golden */
.footer-column ul li:hover::before {
  color: #f9b000;
}

/* Contact Info items hover (for phone and email) */
.footer-column p:hover {
  color: #f9b000;
  cursor: pointer;
}



/* Body content styling */

.main-content {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
  font-family: Arial;
  color: #1b2c4d; /* dark navy */
}

.main-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.no-data {
  font-size: 14px;
  color: #777;
}

.scroll-text {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  animation: scroll-left 20s linear infinite;
  padding-left: 100%; /* start off screen from right */
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}


/*   review    */
.elfsight-app-YOUR_WIDGET_ID {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

#email-form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: 20px auto;
}

#email-form input, #email-form button {
  padding: 10px;
  margin: 5px 0;
  font-size: 16px;
}

#email-form button {
  background-color: #007BFF;
  color: white;
  border: none;
  cursor: pointer;
}

#email-form button:hover {
  background-color: #0056b3;
}