/* ----------------------- Reset & Base ----------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #ffffff; /* pure clean white */
  color: #333; /* softer dark text */
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  color: #222; /* stronger dark for titles */
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------------- Navbar (White with Red Accents) ---------------- */
header, .navbar {
  position: relative;
  z-index: 1000;
}
.navbar .logo h1 {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding:  10px; /*reduced vertical and horizontal padding */
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.navbar .logo {
  display: flex;              /* aligns image and text in a row */
  align-items: center;        /* centers them vertically */
  gap: 10px;                  /* space between logo and text */
  font-size: 1.6rem;
  font-weight: 600;
  color: #E30613;
  text-transform: uppercase;
}
.navbar .logo img.hero-logo {
 height: 60px;
  vertical-align: middle;
  width: auto;
  background: transparent;
  display: inline-block;
}


.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar ul li a {
  color: #333;
  font-weight: 500;
  padding: 5px 10px;
  transition: 0.3s;
}

.navbar ul li a:hover {
  color: #E30613; /* Red text on hover - Accent */
  background: rgba(227,6,19,0.1); /* Very light red background on hover */
  border-radius: 5px;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #E30613; /* Red hamburger icon - Accent */
  margin: 5px 0;
  transition: 0.3s;
}

/* ---------------- Hero Section (Soft White Overlay & Slider) ---------------- */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  /* Soft white tint as requested */
  background: rgba(255,255,255,0.4); 
  z-index: 2;
}

.slide .content {
  position: relative;
  text-align: center;
  max-width: 800px;
  z-index: 3;
}

.hero-logo {
  max-width: 100px;
  margin: 0 auto 20px;
  display: block;
}

.content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #E30613; /* Red headline text - Accent */
}

.content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #333; /* Dark text for contrast against soft white overlay */
}

/* Buttons (Red Brand Color) */
.btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background-color: #E30613; /* Red brand color */
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #B2000F; /* Darker red on hover */
  transform: translateY(-3px);
}

/* Navigation Arrows/Dots */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #E30613; /* Red arrows for navigation - Accent */
  padding: 10px;
  cursor: pointer;
  background: rgba(255,255,255,0.6); /* White semi-transparent background */
  border-radius: 50%;
  z-index: 5;
  transition: background 0.3s;
}

.prev { left: 20px; }
.next { right: 20px; }

.dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 5;
}

.dot {
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background: rgba(227,6,19,0.3); /* Light red dot */
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: #E30613; /* Solid red for active dot - Accent */
}

/* ---------------- Section Headers ---------------- */
section {
  padding: 60px 0;
}

.page-header {
  text-align: center;
  padding: 80px 20px;
  background-color: #fff;
  color: #E30613;
  border-bottom: 1px solid #eee;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}

.page-header h1 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
  color: #E30613;
}

/* ---------------- Subtle Background for Sections ---------------- */
.gallery, .partners, .why-skel, .contact-form-section, .testimonials-section {
  background-color: #fafafa; /* Subtle light grey background */
}

/* ---------------- Vision & Mission / Services / Grid Cards ---------------- */
.vision-mission {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
.vision-mission div {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: center;
  border: 1px solid #f2f2f2; /* Subtle border */
  transition: transform 0.3s ease-in-out;
}
.vision-mission div:hover {
    transform: translateY(-5px);
}
.vision-mission i {
  font-size: 40px;
  color: #E30613; /* Red icon accent */
  margin-bottom: 15px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
  margin-top: 30px;
}

.service-card, .card {
  background: white;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: center;
  border: 1px solid #f2f2f2;
  transition: 0.3s;
}

.service-card:hover, .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.service-card i, .card .icon {
  font-size: 40px;
  color: #E30613; /* Red icon accent */
  margin-bottom: 15px;
}
.service-card h3 {
    color: #222;
    margin-bottom: 10px;
}
.service-card p {
    color: #555;
}

/* ---------------- Gallery ---------------- */
.gallery h2 {
  color: #E30613;
  text-align: center;
  margin-bottom: 40px;
}
.gallery-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.gallery-container img {
  width: 250px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.3s;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.gallery-container img:hover {
  transform: scale(1.05);
}

/* ---------------- Why SKEL (List section) ---------------- */
.why-skel {
  padding: 50px 20px;
}
.why-skel h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}
.why-skel ul {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: auto;
}
.why-skel ul li {
  font-size: 1.1rem;
  margin: 12px 0;
  display: flex;
  align-items: center;
  color: #333;
}
.why-skel ul li i {
  color: #E30613; /* Red icon accent */
  font-size: 1.3rem;
  margin-right: 12px;
}

/* ---------------- Partners Carousel (Colorful Logos) ---------------- */
.partners {
  padding: 50px 0;
  overflow: hidden;
}
.partner-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.partner-slide {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scrollPartners 30s linear infinite;
  align-items: center;
}
.partner-slide img {
  max-width: 120px;
  height: auto;
  object-fit: contain;
  /* Logos are now colorful by default */
  transition: all 0.3s ease;
  cursor: pointer;
}
.partner-slide img:hover {
  transform: scale(1.15);
}
.partner-carousel:hover .partner-slide {
  animation-play-state: paused;
}
@keyframes scrollPartners {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------------- Management ---------------- */
.management {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
.leader {
  flex: 1;
  min-width: 250px;
  text-align: center;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  border: 1px solid #f2f2f2;
}
.leader img {
  width: 180px; 
  height: 180px;
  
  /* --- REVERTED TO CONTAIN FOR FULL IMAGE VISIBILITY --- */
  object-fit: contain; /* Ensures the entire image is scaled down to fit */
  object-position: center; /* Centers the image within the circular space */
  /* ---------------------------------------------------- */
  
  border-radius: 50%;
  margin-bottom: 15px;
  display: block;
  margin: 0 auto 15px; 
  transition: transform 0.3s ease;
}

/* ---------------- Testimonials ---------------- */
.testimonials-section {
    background-color: #fafafa;
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 40px 0;
}
.testimonial {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border: 1px solid #f2f2f2;
  transition: 0.3s;
}
.testimonial:hover {
  transform: translateY(-5px);
}
.testimonial p {
  font-style: italic;
  color: #555;
}
.testimonial h4 {
  margin-top: 15px;
  color: #E30613; /* Red accent */
}
/* ---------------- Our Fleet / Process Section (FULL-WIDTH VERTICAL ZIGZAG) ---------------- */
.fleet-process {
    padding: 60px 0;
    background-color: #ffffff; 
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #222;
    font-family: 'Poppins', sans-serif;
}

.process-container {
    display: flex;
    flex-direction: column; /* Stacks the cards vertically */
    gap: 60px; /* Space between the two large cards */
}

/* --- Base Card Styles (Full Width) --- */
.process-card {
    width: 100%; /* Ensures the card takes up the full container width */
    background: #fafafa;
    padding: 40px; 
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid #f2f2f2;
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px; /* Space between text and image */
}

.text-content {
    flex: 1; /* Allows text to take up half the space */
}

.image-content {
    flex: 1; /* Allows image container to take up the other half */
    text-align: center;
}

.process-card h3 {
    color: #E30613; 
    margin-bottom: 15px;
    font-size: 1.8rem;
    text-align: left; 
}

.process-card p {
    color: #555;
    text-align: left; 
    font-size: 1.1rem;
}

.process-card img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* --- Alternating Layout (Zigzag) Class --- */

/* Card 1 is the default: Text (left) then Image (right) */

/* Card 2 uses this class to reverse the order: Image (left) then Text (right) */
.process-card.reversed-order .content-wrapper {
    flex-direction: row-reverse;
}


/* --- Mobile View: STACKING (Important for responsiveness) --- */
@media(max-width: 992px) {
    /* On smaller screens, force the content to stack vertically for readability */
    .content-wrapper {
        flex-direction: column !important; /* Overrides the row and row-reverse */
        gap: 30px;
    }

    /* Center text when stacked on mobile */
    .process-card h3,
    .process-card p {
        text-align: center;
    }
}
/* ---------------- Branches List Section ---------------- */
.branches-list {
    background-color: #fafafa; /* Subtle light gray background */
    padding: 60px 0;
    text-align: center;
}
.branches-list h2 {
    color: #222;
    font-size: 2rem;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}
.branches-list ul {
    list-style: none;
    padding: 0;
    max-width: 800px; /* Limits the width of the grid */
    margin: 0 auto;
    
    /* Grid Layout for scannability */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px; /* Spacing between the branch boxes */
}
.branches-list ul li {
    /* Box styling for each branch */
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-left: 5px solid #E30613; /* Strong red accent on the left */
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: default;
}

.branches-list ul li:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    background-color: #fff8f8; /* Very subtle red background on hover */
}


/* --- Mobile Adjustment --- */
@media(max-width: 600px) {
    .branches-list ul {
        grid-template-columns: 1fr; /* Stacks all branches on very small screens */
    }
}
/* ---------------- Contact Info & Form ---------------- */
.contact-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
  flex-wrap: wrap;
}
.info-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border: 1px solid #f2f2f2;
  flex: 1 1 250px;
  text-align: center;
}
.info-card h3 {
  margin-bottom: 10px;
  color: #E30613; /* Red accent */
}
.info-card i {
  color: #E30613; /* Red icon accent */
  font-size: 30px;
  margin-bottom: 10px;
}
.info-card a {
  color: #333;
}

.contact-form-section {
    background-color: #fafafa;
    padding: 60px 0;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border: 1px solid #f2f2f2;
}

.contact-form input, .contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  font-family: inherit;
}
.contact-form input:focus, .contact-form textarea:focus {
    border-color: #E30613;
    outline: none;
}
.contact-form button {
  background: #E30613; /* Red button */
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.contact-form button:hover {
  background: #B2000F;
}
/* Styling to make the phone number link look like plain text */
.contact-info a {
    text-decoration: none; /* Removes underline */
    color: inherit; /* Keeps the text color the same as the parent element */
}
/* ---------------- Footer ---------------- */
.footer {
  background: #E30613; /* Solid Red Footer */
  color: white;
  text-align: center;
  padding: 20px;
}

/* ---------------- Media Queries ---------------- */
@media(max-width: 768px){
  /* Navbar mobile menu */
 
  .navbar ul {
    display: none;
    flex-direction: column;
    gap: 10px;
    background: #fff;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  }
  .navbar ul li a {
    color: #333;
    padding: 10px 20px;
  }
  .navbar ul li a:hover {
    background: rgba(227,6,19,0.15); 
  }
  .navbar ul.active {
    display: flex;
  }
  .hamburger {
    display: block;
  }

  /* Section adjustments */
  .page-header h1 {
    font-size: 2rem;
  }
  .vision-mission, .management {
    flex-direction: column;
    gap: 20px;
  }
  .prev, .next {
    font-size: 1.5rem;
    padding: 8px;
  }
}