/* Hero Section */

body {
    font-family: "Nunito", sans-serif !important;
}

.hero {
  position: relative;
  width: 100%;
  height: 80vh; /* Adjust height as needed */
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

/* Hero Image */
.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* makes image cover entire hero */
  z-index: -1;
}

/* Content Box */
.hero-content {
  background: rgba(0, 0, 0, 0.6); /* dark overlay for readability */
  color: #fff;
  padding: 20px 30px;
  border-radius: 12px;
  margin-bottom: 40px;
  text-align: center;
  max-width: 700px;
  width: 90%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Icon with text */
.icon-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 15px;
}

.car-icon {
  width: 40px;
  height: auto;
}

/* Contact Button */
.btn-contact {
  display: inline-block;
  background: #ff5722;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.btn-contact:hover {
  background: #e64a19;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    height: 60vh;
  }

  .hero-content {
    margin-bottom: 20px;
    padding: 15px 20px;
  }

  .icon-text {
    flex-direction: column;
    text-align: center;
  }

  .car-icon {
    width: 35px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 50vh;
  }

  .btn-contact {
    width: 100%;
  }
}


/* ===== Services Section ===== */
.services-section {
  padding: 60px 20px;
  background: #f8f9fa;
  text-align: center;
}

.services-section .section-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #222;
  text-transform: uppercase;
  position: relative;
}

.services-section .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ff5722;
  margin: 12px auto 0;
  border-radius: 3px;
}

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* Service Card */
.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.service-icon {
  font-size: 32px;
  color: #ff5722;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #333;
  font-weight: 600;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* Company Overview */
.company-overview {
  margin-top: 50px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-direction: column;
}

.company-overview h4 {
  font-size: 18px;
  font-weight: bold;
  color: #222;
}

.company-overview p {
  font-size: 15px;
  color: #555;
  margin: 0;
}

.company-overview .arrow-down {
  font-size: 20px;
  color: #ff5722;
  margin-top: 10px;
  animation: bounce 1.5s infinite;
}

/* Bounce Animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .services-section .section-title {
    font-size: 24px;
  }

  .service-card {
    padding: 20px 15px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 40px 15px;
  }

  .services-section .section-title {
    font-size: 22px;
  }

  .company-overview {
    padding: 15px;
  }
}

/* ===== About Section ===== */
.about-section {
  position: relative;
  background: url('img/about-bg.jpg') center/cover no-repeat; /* Optional background image */
  /* padding: 80px 20px; */
  color: #333;
}

.about-section .overlay {
  background: rgba(0, 0, 0, 0.6); /* dark overlay for text readability */
  padding: 50px 20px;
  border-radius: 12px;
  color: #fff;
}

.about-section h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}

.about-section p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.about-section p:last-of-type {
  text-align: center;
}

.btn-read-more {
  display: inline-block;
  background: #ff5722;
  color: #fff;
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
  margin-top: 20px;
}

.btn-read-more:hover {
  background: #e64a19;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .about-section {
    padding: 60px 15px;
  }

  .about-section .overlay {
    padding: 40px 15px;
  }

  .about-section h2 {
    font-size: 24px;
  }

  .about-section p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 40px 10px;
  }

  .about-section .overlay {
    padding: 30px 10px;
  }

  .about-section h2 {
    font-size: 20px;
  }

  .about-section p {
    font-size: 14px;
  }

  .btn-read-more {
    width: 100%;
    text-align: center;
  }
}

/* ===== Expect Section ===== */
.expect-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.expect-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.expect-content {
  flex: 1 1 480px;
}

.expect-content h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 25px;
  color: #222;
}

.expect-content ul {
  list-style: disc inside;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  padding-left: 0;
}

.expect-content ul li {
  margin-bottom: 12px;
}

.expect-video {
  flex: 1 1 470px;
  max-width: 100%;
}

.expect-video iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .expect-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .expect-content h2 {
    font-size: 24px;
  }

  .expect-content ul li {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .expect-section {
    padding: 50px 15px;
  }

  .expect-content h2 {
    font-size: 20px;
  }

  .expect-content ul li {
    font-size: 14px;
  }

  .expect-video iframe {
    height: 240px;
  }
}
/* ===== Certifications Section ===== */
.certifications {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 40px 20px;
  background: #f8f9fa;
}

.certifications img {
  max-width: 220px;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
}

.certifications img:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .certifications {
    gap: 20px;
    padding: 30px 15px;
  }

  .certifications img {
    max-width: 180px;
  }
}

@media (max-width: 480px) {
  .certifications {
    flex-direction: column;
    gap: 15px;
    padding: 20px 10px;
  }

  .certifications img {
    max-width: 160px;
  }
}
/* ===== Team Section ===== */
.team-section {
  padding: 80px 20px;
  background: #f8f9fa;
  text-align: center;
}

.team-section h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #222;
}

.team-section p {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Slider wrapper */
.team-slider {
  display: flex;
  overflow-x: auto;
  gap: 25px;
  padding-bottom: 10px;
  scroll-behavior: smooth;
}

.team-slider::-webkit-scrollbar {
  height: 8px;
}

.team-slider::-webkit-scrollbar-thumb {
  /* background-color: #ff5722; */
  /* border-radius: 4px; */
}

.team-slider::-webkit-scrollbar-track {
  background: #e0e0e0;
  border-radius: 4px;
}

/* Team Card */
.team-card {
  background: #fff;
  border-radius: 12px;
  min-width: 200px;
  max-width: 220px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.team-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.team-info {
  padding: 15px 10px;
  text-align: center;
}

.team-info h4 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #222;
}

.team-info p {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .team-section h2 {
    font-size: 24px;
  }

  .team-section p {
    font-size: 15px;
  }

  .team-card {
    min-width: 180px;
    max-width: 200px;
  }

  .team-card img {
    height: 180px;
  }

  .team-info h4 {
    font-size: 16px;
  }

  .team-info p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .team-section {
    padding: 50px 10px;
  }

  .team-card {
    min-width: 160px;
    max-width: 180px;
  }

  .team-card img {
    height: 160px;
  }

  .team-info h4 {
    font-size: 14px;
  }

  .team-info p {
    font-size: 12px;
  }
}
 /* ============ TOP BAR ============ */
    .top-bar {
        background: #1d1f21;
        color: #fff;
        font-size: 14px;
        padding: 8px 20px;
    }

    .top-bar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .top-left span {
        margin-right: 20px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .top-left a {
        color: #fff;
        text-decoration: none;
    }

    .top-right a {
        margin-left: 12px;
        color: #fff;
        font-size: 16px;
        transition: color 0.3s ease;
    }

    .top-right a:hover {
        color: #ff5722;
    }

    /* ============ HEADER ============ */
    header {
        background: #fff;
        border-bottom: 1px solid #eee;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    header .logo {
        font-size: 22px;
        font-weight: bold;
        color: #333;
    }

    /* NAV MENU */
    nav ul {
        list-style: none;
        display: flex;
        margin: 0;
        padding: 0;
    }

    nav ul li {
        position: relative;
    }

    nav ul li a {
        display: block;
        padding: 10px 18px;
        color: #333;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    nav ul li a:hover {
        color: #ff5722;
    }

    /* SUBMENU */
    nav ul li .submenu {
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        min-width: 180px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        display: none;
        flex-direction: column;
        padding: 8px 0;
        border-radius: 6px;
        z-index: 1000;
    }

    nav ul li:hover .submenu {
        display: flex;
    }

    nav ul li .submenu li a {
        padding: 10px 15px;
        color: #333;
    }

    nav ul li .submenu li a:hover {
        background: #f7f7f7;
        color: #ff5722;
    }

    /* NAV TOGGLE (MOBILE) */
    .nav-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 22px;
        cursor: pointer;
        color: #333;
    }

    /* ============ RESPONSIVE ============ */
    /* ===== MOBILE HEADER MENU ===== */
@media (max-width: 992px) {

  /* Hide nav initially above viewport */
  nav {
    position: fixed;
    top: -100%; /* start hidden above */
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: top 0.4s ease;
    z-index: 1000;
    padding: 20px 0;
  }

  /* Slide down when active */
  nav.active {
    top: 60px; /* below the sticky header */
  }

  /* Vertical menu */
  nav ul {
    flex-direction: column;
    margin: 0;
    padding: 0;
  }

  nav ul li a {
    padding: 12px 20px;
    border-bottom: 1px solid #f1f1f1;
  }

  /* Submenu adjustments */
  nav ul li .submenu {
    position: static;
    display: none;
    flex-direction: column;
    box-shadow: none;
  }

  nav ul li.open .submenu {
    display: flex;
  }

  /* Toggle button */
  .nav-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 22px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    color: #333;
  }

  /* Top bar adjustments */
  .top-bar .container {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}