/* Reset and basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;900&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #0e0e11; /* matches your screenshot */
  color: white;
}

.hero {
  background: url('assets/images/bg.png') no-repeat center center / cover;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #f4a825;
  margin-bottom: 20px;
  animation: slideInLeft 1s ease-out forwards;
}

.hero-content p {
  font-size: 1.2rem;
  color: #ffffff;
  animation: slideInRight 1s ease-out 0.5s forwards;
}

@keyframes slideInLeft {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .hero {
    padding: 20px 10px;
    min-height: 45vh;
    background-position: center top;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 15px 8px;
    min-height: 35vh;
  }

  .hero-content h1 {
    font-size: 1.4rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }
}

/* Content section animation */
.content-section {
  opacity: 0;
  transform: translateY(50px);
  animation: slideUpFadeIn 1.2s ease-out forwards;
  animation-delay: 0.5s;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.7;
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

@keyframes slideUpFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* General styles */
.featured-services {
  padding: 40px 20px;
  background-color: #000000;
}

.featured-services h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2em;
}

.service-cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  background-color: #1D1E23;
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 30%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.service-btn {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #FFA500;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.service-btn:hover {
  background-color: #0056b3;
}

/* Mobile view: scrollable horizontally */
@media (max-width: 768px) {
  .service-cards {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .service-card {
    flex: 0 0 80%;
    scroll-snap-align: start;
    min-width: 80%;
    margin-right: 15px;
  }
}

.quality-policy {
  background: url('/path/to/your/background-image.jpg') no-repeat center center/cover;
  padding: 80px 20px;
  color: white;
  position: relative;
}

.quality-policy::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5); /* dark overlay for readability */
  z-index: 0;
}

.quality-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  z-index: 1;
}

.quality-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.quality-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.talk-btn {
  background-color: #f4c04e;
  border: none;
  border-radius: 10px;
  padding: 12px 24px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}
.stats-section {
  background-color: #1f2127;
  padding: 60px 20px;
  text-align: center;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-box {
  background-color: white;
  padding: 40px 30px;
  border-radius: 12px;
  min-width: 200px;
  flex: 1;
  max-width: 250px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2127;
}

.stat-box p {
  margin-top: 10px;
  color: #f4c04e;
  font-weight: 600;
  font-size: 1rem;
}
.subscribe-section {
  background-color: #1f2127;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.subscribe-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.subscribe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.subscribe-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: #292b31;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.subscribe-item .icon {
  font-size: 1.8rem;
  background-color: #f4c04e;
  border-radius: 50%;
  padding: 10px;
  color: #1f2127;
}

.subscribe-item.show {
  opacity: 1;
  transform: translateY(0);
}

.subscribe-btn-wrap {
  margin-top: 40px;
}

.subscribe-btn {
  background-color: #f4c04e;
  color: #1f2127;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}
.industry-section {
  background-color: #1f2127;
  color: #fff;
  padding: 60px 20px;
}

.industry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.industry-img {
  flex: 1 1 45%;
}

.industry-img img {
  width: 100%;
  border-radius: 10px;
}

.industry-text {
  flex: 1 1 50%;
}

.industry-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.industry-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

.animate-on-scroll.show {
  opacity: 1;
  transform: translateY(0);
}
.mvps-section {
      padding: 60px 20px;
      display: flex;
      justify-content: center;
    }

    .mvps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      width: 100%;
    }

   .mvps-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem; /* Adjust spacing between cards */
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

.mvps-card {
  background-color: black;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


    .mvps-card h2 {
      margin-bottom: 20px;
      font-size: 28px;
      color: white;
    }

    .mvps-card p {
      font-size: 16px;
      line-height: 1.6;
      color: #d1d1d1;
    }

    /* Bounce In Animation */
    @keyframes bounceIn {
      0% {
        opacity: 0;
        transform: scale(0.3);
      }
      50% {
        opacity: 1;
        transform: scale(1.05);
      }
      70% {
        transform: scale(0.9);
      }
      100% {
        transform: scale(1);
      }
    }

    .animate-bounce-in {
      opacity: 0;
      transform: scale(0.3);
    }

    .animate-bounce-in.show {
      animation: bounceIn 0.8s ease forwards;
    }
    .about-section {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      padding: 80px 40px;
      max-width: 1200px;
      margin: 0 auto;
      gap: 40px;
    }

    .about-image {
      flex: 1 1 500px;
    }

    .about-image img {
      width: 100%;
      max-width: 600px;
      border-radius: 12px;
      object-fit: cover;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    }

    .about-content {
      flex: 1 1 500px;
      max-width: 600px;
    }

    .about-content h4 {
      color: #f8c259;
      font-size: 50px;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .about-content h2 {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .about-content p {
      font-size: 16px;
      line-height: 1.7;
      color: #cccccc;
      margin-bottom: 30px;
    }

    .read-more {
      padding: 12px 24px;
      background-color: white;
      color: #11131b;
      text-decoration: none;
      border-radius: 6px;
      font-weight: 500;
      transition: background-color 0.3s ease;
      display: inline-block;
    }

    .read-more:hover {
      background-color: #f8c259;
      color: #11131b;
    }

    @media (max-width: 768px) {
      .about-section {
        flex-direction: column;
        text-align: center;
      }

      .about-content h2 {
        font-size: 28px;
      }
    }
/* Basic Dropdown CSS */
nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  background: #111;
}

nav ul li {
  position: relative;
  display: inline-block;
}

nav ul li a {
  display: block;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  background: #111;
}

nav ul li:hover > a {
  background: #222;
}

nav ul li ul {
  display: none;
  position: absolute;
  background: #222;
  min-width: 200px;
  z-index: 9999;
}

nav ul li:hover > ul {
  display: block;
}

nav ul li ul li {
  display: block;
}

nav ul li ul li ul {
  left: 100%;
  top: 0;
  display: none;
}

nav ul li ul li:hover > ul {
  display: block;
}
/* ─────────────────────────────────────────────────────────────────────────────
   Business & Logistics Leadership Awards Page Styles
   ───────────────────────────────────────────────────────────────────────────── */

/* Hero Section (if not already in your CSS) */
.hero {
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero .hero-content {
  text-align: center;
  padding: 0 20px;
  z-index: 9999;
}

.hero .hero-content h1 {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Two-Column Content Section */
.content-section-awards {
  background-color: #fff;
  color: #222;
  padding: 60px 20px;
}

.awards-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  padding: 40px;
}


.awards-image {
  width: 100%;
  text-align: center;
  padding: 10px;
}

.awards-image img {
  display: block;
  width: 100%;
  max-width: 500px;        /* Limit max width on larger screens */
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  margin: 0 auto 20px;
}

.awards-image h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.awards-image p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  max-width: 500px;
  margin: 0 auto;
}

/* Responsive tweak for small screens */
@media (max-width: 600px) {
  .awards-image img {
    width: 90%;
    max-width: 100%;  /* Allow full width on mobile */
  }

  .awards-image h2 {
    font-size: 1.4rem;
  }

  .awards-image p {
    font-size: 0.95rem;
    padding: 0 10px;
  }
}

.awards-text {
  width: 100%;
  max-width: 600px;       /* Optional: limits line width for better readability */
  padding: 40px 20px;
  text-align: left;
  margin-left: 60px;      /* Push it away from the edge */
}

.awards-text h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.awards-text .divider {
  width: 60px;
  height: 4px;
  background-color: #1c4ca0;
  margin: 10px 0 20px 0;
}

.awards-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
}


/* Quote Section */
.quote-section {
  background-color: #11131b;
  padding: 40px 20px;
}

.quote-section .quote-container {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #1a1c24;
  padding: 30px 20px;
  border-left: 6px solid #fff;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
  .awards-content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .awards-text h2 {
    font-size: 1.75rem;
  }
}
/* FUTURE SECTION */
.future-section {
  background: url('assets/images/looking-future.jpg') no-repeat center center/cover;
  color: white;
  padding: 80px 60px;
  position: relative;
}

.future-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.future-text {
  max-width: 600px;
  font-family: 'Georgia', serif;
  font-size: 1.3rem;
  line-height: 1.6;
}

.future-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.future-btn {
  margin-top: 20px;
}

.custom-btn.yellow-btn {
  background-color: #ffc107;
  color: #000;
  font-weight: bold;
  padding: 14px 24px;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
  transition: background 0.3s ease;
}

.custom-btn.yellow-btn:hover {
  background-color: #e0a800;
  color: #fff;
}
.services-intro {
    background-color: #494d55;
    text-align: center;
    padding: 40px 20px;
}

.services-intro h1 {
    font-size: 2.8em;
    margin: 0 0 10px;
}

.services-intro p {
    font-size: 1.1em;
    color: #ddd;
}

.services-content {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 5%;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.services-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.services-text {
    max-width: 500px;
}

.services-text h4 {
    font-size: 0.95em;
    color: #cccccc;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.services-text h2 {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 15px;
}

.services-text p {
    font-size: 1em;
    color: #dddddd;
    line-height: 1.6;
    margin-bottom: 25px;
}

.features {
    list-style: none;
    padding: 0;
}

.features li {
    font-weight: bold;
    font-size: 1em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.features .icon {
    font-size: 1.3em;
    margin-right: 10px;
    color: #ffc107;
}

.cta-button {
    display: inline-block;
    background-color: #e6b24c; /* Yellow/Gold */
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #cf9e3d;
}

.cta-icon {
    margin-right: 8px;
}
.history-partnership-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px 5%;
    justify-content: space-between;
}

.our-history,
.partnership {
    flex: 1 1 45%;
    background-color: #2a2a2e;
    padding: 20px;
    border-radius: 10px;
    color: #fff;
}

.our-history h2,
.partnership h2 {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #ffc107;
}

.award-text p {
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 15px;
}
/* footer.css */
.site-footer {
  background-color: #16171d;
  color: white;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-block {
  flex: 1 1 220px;
}

.footer-logo {
  width: 100px;
  margin-bottom: 20px;
}

.footer-description {
  line-height: 1.6;
  color: #ccc;
}

.footer-heading {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
}

.footer-list {
  list-style: none;
  padding: 0;
}

.footer-link, .quick-link {
  color: #ccc;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-link:hover, .quick-link:hover {
  color: #ffd54f;
}

.footer-email {
  margin-top: 10px;
  color: #ccc;
}

.footer-socials {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.footer-socials img {
  width: 20px;
  filter: invert(100%);
}

/* Side Menu */
#side-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background-color: #1c1c24;
  color: white;
  padding: 30px;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5);
  transition: right 0.3s ease;
  z-index: 1000;
}

#close-menu {
  cursor: pointer;
  font-size: 20px;
  display: block;
  text-align: right;
  margin-bottom: 20px;
}

/* Scroll Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #fff;
  color: #000;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  font-weight: bold;
}
.about-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background-color: #1e2026; /* match site theme background */
}

.about-banner-box {
  background-color: #53585e;
  padding: 40px 30px;
  text-align: center;
  max-width: 800px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 192, 203, 0.2); /* soft pink border/glow */
}

.about-banner-box h1 {
  font-size: 2.5rem;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 15px;
}

.about-banner-box p {
  font-size: 1.2rem;
  color: #e5e5e5;
}


.our-story {
    padding: 60px 40px;
    background-color: #1c1f26;
}

.story-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.story-image {
    max-height: 600px;
    max-width: 500px;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}

.story-image img {
    height: 600%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}


.story-text {
    max-width: 600px;
}

.story-text h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffffff;
}

.story-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #ddd;
}
.mission-vision-section {
    text-align: center;
    padding: 60px 30px;
    background-color: #1c1f26;
}

.mission-vision-section h2 {
    font-size: 28px;
    color: #ddd;
    margin-bottom: 40px;
}

.mv-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.mv-box {
    background-color: #000;
    color: #fff;
    padding: 30px;
    max-width: 500px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    flex: 1 1 300px;
}

.mv-box h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.mv-box p {
    font-size: 16px;
    line-height: 1.6;
}

.values-section {
    text-align: center;
    padding: 60px 30px;
    background-color: #1c1f26;
}

.values-section h2 {
    font-size: 28px;
    color: #ddd;
    margin-bottom: 10px;
}

.values-subtitle {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 40px;
}

.values-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.value-box {
    background-color: #000000;
    border: 1px solid #333;
    padding: 20px;
    max-width: 300px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.value-box h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #f2f2f2;
}

.value-box p {
    font-size: 15px;
    color: #ccc;
    line-height: 1.5;
}
.about-learn-more {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
  background-color: #1e2026; /* Match site background */
}

.about-learn-more-box {
  background-color: #53585e;
  padding: 40px 30px;
  text-align: center;
  max-width: 800px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 192, 203, 0.2); /* soft pink glow like the values cards */
}

.about-learn-more-box h2 {
  font-size: 2.2rem;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 15px;
}

.about-learn-more-box p {
  font-size: 1.1rem;
  color: #e5e5e5;
  margin-bottom: 30px;
}

.btn-outline {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: #fff;
  color: #1e2026;
}
.contact-banner {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
  background-color: #1e2026;
}

.contact-banner-box {
  background-color: #53585e;
  padding: 40px 30px;
  text-align: center;
  max-width: 900px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 192, 203, 0.2);
}

.contact-banner-box h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 10px;
}

.contact-banner-box p {
  font-size: 1.1rem;
  color: #dfe3e6;
}

.contact-main {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 60px 5%;
  background-color: #1e2026;
  gap: 40px;
}

.contact-left {
  flex: 1 1 40%;
  color: #fff;
}

.contact-left h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.contact-left p {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #ccc;
}

.contact-form-box {
  flex: 1 1 50%;
  background-color: #1e2026;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 192, 203, 0.2);
}

.contact-form-box form {
  display: flex;
  flex-direction: column;
}

.contact-form-box label {
  color: #ffffff;
  margin: 10px 0 5px;
}

.contact-form-box input,
.contact-form-box textarea {
  background-color: #53585e;
  border: none;
  padding: 15px;
  border-radius: 4px;
  color: #fff;
  margin-bottom: 20px;
  font-size: 1rem;
  resize: vertical;
}

.contact-form-box button {
  background-color: #000;
  color: #fff;
  padding: 12px 20px;
  border: 1px solid #fff;
  border-radius: 5px;
  cursor: pointer;
  align-self: flex-start;
  transition: background-color 0.3s ease;
}

.contact-form-box button:hover {
  background-color: #333;
}
.contact-left i {
  margin-right: 8px;
  color: #fff;
}

.business-hours {
  margin-top: 30px;
}

.business-hours h3 {
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.business-hours p {
  color: #ccc;
  margin: 5px 0;
}
/* Renamed container */
.customer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.training-hero {
  background-color: #464d56;
  padding: 60px 0;
  text-align: center;
}

.training-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.training-hero p {
  font-size: 1rem;
  color: #e0e0e0;
}

.training-content {
  padding: 60px 0;
  background-color: #11141b;
}

.training-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.training-image {
  flex: 0 0 40%; /* fixed proportion: 40% width */
  max-width: 40%;
}

.training-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.training-text {
  flex: 1;
  max-width: 60%;
}

.training-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #000; /* Dark text for strong contrast */
  margin-bottom: 1rem;
  background-color:orange;
}

.training-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #222; /* Darker shade for better visibility */
  font-weight: 500;
  margin-bottom: 1rem;
  background-color:white;
}

.training-bullets {
  list-style-type: disc;
  padding-left: 1.5rem;
  color: #444;
}

/* Responsive: stack on smaller screens */
@media (max-width: 768px) {
  .training-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .training-image, .training-text {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .training-bullets {
    text-align: left;
  }
}
.training-programs {
  background-color: #000000;
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
}

.programs-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.programs-subtext {
  color: #cccccc;
  font-size: 1rem;
  margin-bottom: 40px;
}

.programs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.program-card {
  background-color: #11141b;
  border: 1px solid #333;
  padding: 30px 20px;
  border-radius: 8px;
  width: 300px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.program-card:hover {
  transform: translateY(-5px);
}

.program-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.program-card p {
  font-size: 0.95rem;
  color: #dddddd;
  line-height: 1.6;
}
.training-bullets {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 20px;
  color: #ffffff;
}

.training-bullets li {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.6;
  color: #cccccc;
}
.training-methodology {
  background-color: #1b1c1f;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.training-methodology h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.training-methodology .intro-text {
  margin-bottom: 40px;
  color: #d1d1d1;
  font-size: 1.1rem;
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.methodology-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.methodology-item .icon {
  background-color: #fff;
  color: #1b1c1f;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.methodology-item h4 {
  margin: 0 0 8px;
  color: #ffffff;
}

.methodology-item p {
  margin: 0;
  color: #cccccc;
  font-size: 0.95rem;
}
.cta-section {
  background-color: #53575b;
  color: #ffffff;
  text-align: center;
  padding: 50px 20px;
  margin-top: 0;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.cta-section p {
  margin-bottom: 30px;
  font-size: 1.05rem;
  color: #f2f2f2;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-dark {
  background-color: #1b1c1f;
  color: #ffffff;
}

.btn-dark:hover {
  background-color: #333;
}

.btn-light {
  background-color: #eeeeee;
  color: #1b1c1f;
}

.btn-light:hover {
  background-color: #ddd;
}

.hero-section {
    background-color: #444a52;
    text-align: center;
    padding: 40px 20px;
}

.hero-section h1 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-section p {
    font-size: 1.1em;
    color: #e0e0e0;
}

.road-content-section {
    display: flex;
    flex-wrap: wrap;
    padding: 50px 10%;
    gap: 30px;
    align-items: center;
}

.image-container img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.text-container {
    flex: 1;
    min-width: 280px;
}

.text-container h2 {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
}

.text-container p {
    font-size: 1em;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 15px;
}

.training-title {
    font-weight: bold;
    font-size: 1.1em;
}

@media (max-width: 768px) {
    .road-content-section {
        flex-direction: column;
        padding: 30px 20px;
    }

    .text-container h2 {
        font-size: 1.6em;
    }
}
.training-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-top: 10px;
    color: #f0f0f0;
}

.training-list li {
    margin-bottom: 8px;
    font-size: 1em;
}

.program-section {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}

.program-section h2 {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 15px;
}

.program-section p {
    font-size: 1.1em;
    color: #cce0ff;
}
.training-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 40px 60px;
    background-color: #000;
}

.training-card {
    border: 1px solid #333;
    padding: 20px;
    background-color: #111;
    color: #fff;
    text-align: center;
    box-shadow: 0 0 8px #2e2e2e;
    transition: transform 0.3s ease;
}

.training-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px #555;
}

.training-card h3 {
    font-weight: 600;
    font-size: 1.1em;
    margin-bottom: 10px;
}

.training-card p {
    font-size: 0.95em;
    line-height: 1.5em;
    color: #ddd;
}
.road-carousel-section {
    background-color: #1e1f21;
    text-align: center;
    padding: 60px 40px;
    color: #fff;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.carousel-slide {
    display: flex;
    flex-shrink: 0;
    width: 100%;
    justify-content: center;
    gap: 20px;
}
.carousel-slide img {
    width: 100%;
    max-width: 350px;
    border: 2px solid #fff;
    border-radius: 4px;
    object-fit: cover;
}


.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 6px;
    background-color: #666;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active, .dot:hover {
    background-color: #fff;
}

.training-methodology h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
    font-weight: bold;
}

.training-methodology p {
    color: #ccc;
    font-size: 1.05em;
}
.training-methodology {
  background-color: #1e1f21;
  color: #fff;
  text-align: center;
  padding: 60px 40px;
}

.training-methodology h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.training-methodology p {
  font-size: 16px;
  margin-bottom: 40px;
  color: #ccc;
}

.training-method-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.training-method-card {
  background-color: #1e1f21;
  border: 1px solid #888;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease;
}

.training-method-card:hover {
  transform: translateY(-5px);
}

.training-method-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #fff;
}

.training-method-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0d0d0d;
    color: #fff;
}

.training-benefits {
    padding: 40px 20px;
    text-align: center;
    max-width: 1200px;
    margin: auto;
}

.training-benefits h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.training-benefits p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ddd;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.benefit-box {
    background-color: #1a1a1a;
    padding: 20px;
    border: 1px solid #333;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: transform 0.3s;
}

.benefit-box:hover {
    transform: translateY(-5px);
}

.benefit-box h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
}

.benefit-box p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.5;
}




.cta-section {
    background-color: #3f444a;
    padding: 40px 20px;
    text-align: center;
}

.cta-container {
    background-color: #4c5055; /* or your original gray */
    padding: 40px 20px;
    max-width: 800px;    /* ✅ limits horizontal width */
    margin: 0 auto;      /* ✅ centers the box horizontally */
    text-align: center;
    border-radius: 6px;  /* Optional: rounded corners */
    color: #ffffff;
}



.cta-container h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.cta-container p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 10px 20px;
    border: none;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-dark {
    background-color: #1d1d1d;
    color: #fff;
}

.btn-dark:hover {
    background-color: #000;
}

.btn-light {
    background-color: #e4e4e4;
    color: #000;
}

.btn-light:hover {
    background-color: #d0d0d0;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0f1115;
    padding: 10px 40px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: gold;
}

.nav-links a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
}

.hero {
    background-color: #3a3f47;
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: bold;
}

.hero p {
    font-size: 18px;
    color: #d3d3d3;
}

.content {
    text-align: center;
    max-width: 900px;
    margin: 40px auto;
    line-height: 1.8;
    font-size: 16px;
    padding: 0 20px;
}

.openings {
    text-align: center;
    padding: 30px 20px;
}

.openings h2 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: bold;
}

.openings p {
    color: #ccc;
    font-size: 16px;
}



.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px;
    max-width: 1200px;
    margin: auto;
}

.job-card {
    background-color: #1b1d23;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.05);
    color: #fff;
    transition: transform 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.job-card:hover {
    transform: scale(1.02);
}

.job-card h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffffff;
    text-align: center;
}

.job-meta {
    font-size: 14px;
    color: #cccccc;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.job-description {
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.apply-btn {
    background-color: #FFD700;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 5px;
    color: #000;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    transition: background-color 0.3s ease;
}

.apply-btn:hover {
    background-color: #e6c200;
}





.why-apply-section {
    background-color: #1b1d23;
    color: #ffffff;
    padding: 50px 20px;
    font-family: Arial, sans-serif;
}

.apply-other {
    text-align: center;
    margin-bottom: 40px;
}

.apply-other-btn {
    background-color: #FFD700;
    border: none;
    padding: 12px 25px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.why-apply-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
}

.why-work, .how-apply {
    flex: 1;
    min-width: 300px;
}

.why-work h2, .how-apply h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 8px;
}

.benefit-item .icon {
    font-size: 28px;
    background-color: #fff;
    color: #000;
    border-radius: 50%;
    padding: 5px 10px;
}

.benefit-item h4 {
    font-size: 16px;
    font-weight: bold;
}

.benefit-item p {
    font-size: 14px;
    color: #cccccc;
}

.email-box {
    background-color: #000;
    padding: 15px 20px;
    border-radius: 5px;
    margin: 15px 0;
    color: #fff;
}

.email-box a {
    color: #1e90ff;
    text-decoration: none;
    display: block;
    margin: 10px 0;
    font-size: 16px;
}

.contact-btn {
    background-color: #FFD700;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
}
/* Hero Banner */
.attachment-hero {
    background-color: #4a4f57;
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.attachment-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.attachment-hero p {
    font-size: 1.1rem;
    color: #e6e6e6;
}

/* Main Section */
.attachment-content {
    background-color: #1c1e24;
    color: white;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 40px;
    justify-content: center;
}

.attachment-info,
.attachment-opportunities {
    flex: 1 1 400px;
    max-width: 600px;
}

.attachment-info h2,
.attachment-opportunities h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.attachment-info p,
.attachment-opportunities p {
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Opportunity Boxes */
.opportunity-box {
    background-color: black;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    color: white;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.05);
}

.opportunity-box h3 {
    font-size: 1rem;
    font-weight: bold;
    text-decoration: underline;
    margin-bottom: 10px;
}





.apply-section {
    text-align: center;
    padding: 40px 20px 20px;
    color: white;
    background-color: #1c1e24;
}

.apply-section h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.apply-section p {
    font-size: 1.1rem;
    color: #ccc;
}

.requirements-application {
    background-color: #000;
    padding: 40px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.requirements-box {
    flex: 1 1 400px;
    max-width: 600px;
    color: white;
}

.requirements-box h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.requirements-box p {
    font-size: 1rem;
    line-height: 1.8;
}

.requirements-box a {
    color: #36a9e1;
    text-decoration: none;
}

.requirements-box a:hover {
    text-decoration: underline;
}





.attachment-features {
    background-color: #1e1e1e;
    color: #ffffff;
    padding: 2em;
    border-radius: 10px;
    margin: 2em 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5em;
}

.feature-item {
    background: #2c2c2c;
    padding: 1.5em;
    border-radius: 8px;
    text-align: center;
}

.feature-item .icon {
    font-size: 2em;
    margin-bottom: 0.5em;
}

.box-button {
    display: inline-block;
    width: 100%;
    max-width: 320px;
    padding: 20px;
    background-color: hsl(41, 87%, 49%);
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 10px;
    border: 2px solid hsl(42, 100%, 97%);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin: 20px auto;
}

.box-button:hover {
    background-color: #e49f0ba6;
    transform: scale(1.03);
    cursor: pointer;
}
.main-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.info-box {
    background-color: #2c2c32;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.btn {
    padding: 15px 40px;
    font-size: 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-dark {
    background-color: #000;
    color: #fff;
}

.btn-dark:hover {
    background-color: #333;
}

.btn-light {
    background-color: #fff;
    color: #000;
    border: 2px solid #000;
}

.btn-light:hover {
    background-color: #f0f0f0;
}

.section-heading {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
}

.features {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 40px;
}

.feature-box {
    flex: 1;
    background-color: #2c2c32;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

.feature-box h3 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 700;
}

.assistance {
    background-color: transparent;
    color: #ddd;
    font-size: 15px;
    text-align: left;
}
.assistance a {
    color: #5bc0de;
    text-decoration: none;
}
.assistance a:hover {
    text-decoration: underline;
}
.register-container {
    max-width: 700px;
    margin: 50px auto;
    background-color: #2a2a2f;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h1 {
    color: #4caf50;
    margin: 10px 0;
}

.form-header p {
    font-size: 14px;
    color: #b0b0b0;
}

.tab-navigation {
    display: flex;
    justify-content: space-between;
    background-color: #1e1e22;
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.tab {
    flex: 1;
    text-align: center;
    color: #ccc;
    font-weight: 500;
    padding: 10px 0;
    cursor: default;
}

.tab.active {
    color: #ffffff;
    font-weight: bold;
    border-bottom: 2px solid #4caf50;
}

.form-box {
    display: flex;
    flex-direction: column;
}

.form-box h2 {
    margin-bottom: 20px;
    color: #ffffff;
}

label {
    margin-top: 15px;
    font-weight: bold;
    font-size: 14px;
    color: #e0e0e0;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    margin-top: 5px;
    padding: 10px;
    font-size: 15px;
    background-color: #111;
    color: #fff;
    border: 1px solid #444;
    border-radius: 4px;
}

input[type="submit"] {
    margin-top: 25px;
    background-color: #4caf50;
    color: white;
    font-size: 16px;
    border: none;
    padding: 12px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: #43a047;
}

.success-message {
    text-align: center;
    background: #2a2a2f;
    padding: 30px;
    color: #c0ffc0;
    font-size: 18px;
}
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-nav {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

button, input[type="submit"] {
    background-color: #4caf50;
    border: none;
    padding: 10px 18px;
    color: white;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
}

button:hover,
input[type="submit"]:hover {
    background-color: #45a049;
}
.individual-reg {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background: #2b2b30;
    border-radius: 10px;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

header img {
    height: 50px;
}

header h1 {
    font-size: 24px;
    margin: 10px 0;
}

header h1 span {
    color: #1fa2ff;
}

header h1 strong {
    color: #fdbb2d;
}

header p {
    font-style: normal;
    color: #ccc;
}

.tabs {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  padding: 10px 0;
  background-color: #f8f9fa;
  border-bottom: 1px solid #ddd;
}

.tabs::-webkit-scrollbar {
  display: none; /* Hide scrollbar on mobile */
}

.tab-link {
  flex: 0 0 auto;
  padding: 10px 16px;
  margin: 0 5px;
  font-size: 14px;
  border: none;
  background: #eee;
  border-radius: 5px;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.3s ease;
}

.tab-link.active {
  background: #007bff;
  color: white;
}

.tab {
  display: none;
  padding: 15px;
}

.tab.active-tab {
  display: block;
}

@media (max-width: 480px) {
  .tab-link {
    font-size: 12px;
    padding: 8px 10px;
  }
}
.tab-link.active {
    border-bottom: 2px solid #1fa2ff;
    color: #fff;
}

form {
    display: flex;
    flex-direction: column;
}

.tab {
    display: none;
    flex-direction: column;
}

.tab.active {
    display: flex;
}

input, select {
    padding: 10px;
    margin: 10px 0;
    border: none;
    width: 100%;
    border-radius: 5px;
    background: #000;
    color: #fff;
}

button {
    padding: 10px 20px;
    margin: 15px 5px 0 0;
    background: #1fa2ff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    align-self: flex-start;
}

#reviewSection ul {
    list-style-type: none;
    padding: 0;
}

#reviewSection li {
    margin: 8px 0;
    padding: 6px;
    background: #111;
    border-radius: 4px;
}
.client-profile {
    display: flex;
    min-height: 100vh;
    font-family: 'Segoe UI', sans-serif;
    background: #111;
    color: #f0f0f0;
}

.sidebar {
    background: #1e1e1e;
    padding: 1rem;
    min-width: 220px;
    transition: 0.3s;
    position: relative;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    padding: 0.75rem;
    margin: 0.5rem 0;
    background: #292929;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
}

.sidebar ul li:hover {
    background: #3a3a3a;
}



.section {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Sidebar */
@media (max-width: 768px) {
    .sidebar {
        position: absolute;
        left: -250px;
        top: 0;
        height: 100%;
        z-index: 1000;
        min-width: 200px;
        background: #1e1e1e;
    }

    .sidebar.show {
        left: 0;
    }

    .hamburger {
        display: block;
    }

    .sidebar ul#menu.show {
        display: block;
    }

    .sidebar ul#menu {
        display: none;
    }
}.client-profile {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #222;
    padding: 15px 25px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.top-header h1 {
    margin: 0;
    color: #f9a825;
    font-size: 22px;
}

.logout-btn {
    background: hwb(49 2% 23%);
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.logout-btn:hover {
    background: #d32f2f;
}

.sidebar {
    background: #1e1e1e;
    padding: 1rem;
    width: 220px;
    float: left;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    background: #292929;
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.2s;
}

.sidebar ul li:hover {
    background: #3a3a3a;
}



@media (max-width: 768px) {
    .client-profile {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        float: none;
    }

    .content {
        margin-left: 0;
    }

    .hamburger {
        display: block;
    }

    #menu.show {
        display: block;
    }

    #menu {
        display: none;
    }
}
.main-wrapper {
    display: flex;
    flex: 1;
    min-height: calc(100vh - 60px); /* adjusts for top header height */
}

.sidebar {
    background: #1e1e1e;
    padding: 1rem;
    width: 220px;
    flex-shrink: 0;
}

.content {
    flex: 1;
    padding: 30px;
    background: #1a1a1a;
    color: #fff;
}

.section {
    display: none;
}

.section.active {
    display: block;
}
.top-header {
    background: #111;
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    align-items: center;
    border-bottom: 1px solid #333;
}

.top-header h1 {
    color: orange;
}

.logout-btn {
    background: rgb(240, 166, 7);
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
}

.admin-container {
    display: flex;
    height: calc(100vh - 60px);
}

.sidebar {
    width: 220px;
    background-color: #1e1e1e;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.sidebar button {
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    padding: 12px;
    margin: 6px 0;
    text-align: left;
    cursor: pointer;
    border-radius: 5px;
}

.sidebar button:hover {
    background-color: #444;
}

.main-content {
    flex: 1;
    padding: 20px;
}

.section {
    display: block;
}

.hidden {
    display: none;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

table, th, td {
    border: 1px solid #444;
}

th, td {
    padding: 10px;
    text-align: left;
}

textarea {
    width: 100%;
    height: 80px;
    margin-bottom: 10px;
}

.request-box {
    background-color: #222;
    padding: 10px;
    margin-bottom: 10px;
    border-left: 3px solid orange;
}

.mb {
    color: gold;
}

.brand {
    color: #b0dffb;
    margin-left: 8px;
}

.highlight {
    color: #33cc66;
}

.tagline {
    color: #aaa;
    font-style: normal;
    font-size: 14px;
    margin-top: 5px;
}

/* Full-page centered container */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #0f172a; /* Optional: page background */
}

/* Login Box */
.login-box {
    background-color: #1e2b3b;
    border-radius: 10px;
    overflow: hidden;
    width: 340px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    margin-top: 25px;
}

/* Header inside login card */
.login-top {
    background: linear-gradient(to right, #2ab8ff, #34e89e);
    color: white;
    text-align: center;
    padding: 25px 20px;
}

.login-top h2 {
    margin: 10px 0 0;
    font-size: 22px;
}

/* Form Elements */
form {
    padding: 25px 20px;
}

form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

form input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: #2c3e50;
    color: white;
    font-size: 14px;
    margin-bottom: 15px;
    outline: none;
}

form input::placeholder {
    color: #bbb;
}

.btn-login {
    width: 100%;
    padding: 12px;
    background: linear-gradient(to right, #2ab8ff, #34e89e);
    color: black;
    font-weight: bold;
    font-size: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 15px;
}

.register-link {
    text-align: center;
    font-size: 14px;
    color: #ccc;
}

.register-link a {
    color: #4db8ff;
    text-decoration: none;
}

.register-link a:hover {
    text-decoration: underline;
}

/* Error styling */
.error {
    background-color: #ff5555;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    text-align: center;
}

/* Header */
.header {
    text-align: center;
    padding: 30px 20px 10px;
}
.mb {
    color: gold;
}

.brand {
    color: #b0dffb;
    margin-left: 8px;
}

.driver {
    color: #3fb0ff;
}

.highlight {
    color: #ffb84d;
}

.tagline {
    color: #aaa;
    font-style: normal;
    font-size: 14px;
    margin-top: 5px;
}

/* Login Card */
.login-box {
    background-color: #132a3d;
    border-radius: 10px;
    overflow: hidden;
    width: 350px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    margin-top: 25px;
}

/* Header inside login box */
.login-top {
    background: linear-gradient(to right, #2ab8ff, #ffc857);
    color: white;
    text-align: center;
    padding: 25px 20px;
}

.login-top h2 {
    margin: 10px 0 5px;
    font-size: 22px;
}

.login-top p {
    font-size: 14px;
    color: #eee;
    margin: 0;
}

/* Form Styling */
.login-form {
    padding: 25px 20px;
}

.login-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

.input-icon {
    position: relative;
    margin-bottom: 15px;
}

.input-icon i {
    position: absolute;
    top: 12px;
    left: 10px;
    color: #999;
}

.input-icon input {
    width: 100%;
    padding: 12px 12px 12px 35px;
    border: none;
    border-radius: 5px;
    background-color: #2c3e50;
    color: white;
    font-size: 14px;
    outline: none;
}

.input-icon input::placeholder {
    color: #bbb;
}

.btn-login {
    width: 100%;
    padding: 12px;
    background: linear-gradient(to right, #2ab8ff, #ffc857);
    color: #0a0a0a;
    font-weight: bold;
    font-size: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Links */
.register-link {
    text-align: center;
    font-size: 14px;
    color: #ccc;
}

.register-link a {
    color: #4db8ff;
    text-decoration: none;
}

.register-link a:hover {
    text-decoration: underline;
}

/* Error message */
.error {
    background-color: #ff4d4d;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 15px;
}
.left-image-container {
    flex: 1;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 400px;
}

.left-image-container img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.individual_driver_hero {
    background-color: #53595f;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 30px;
}

.individual_driver_hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.individual_driver_hero p {
    font-size: 1.1rem;
    margin: 0;
}
.gallery-section {
  padding: 20px;
  background-color: #f9f9f9;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  text-align: center;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 200px; /* You can adjust this height as needed */
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.caption {
  margin-top: 8px;
  font-size: 16px;
  color: #333;
}

