/*
Theme Name: KTS - Khan Transport Service
Theme URI: https://ktspt.com
Author: Your Name
Description: A custom theme for Khan Transport Service
Version: 1.0
*/

   
            /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

                #home{
    margin: 0;
    padding: 0;
}

        :root {
            --primary: #d71920;
            --secondary: #b5151b;
            --accent: #f39c12;
            --light: #f8f9fa;
            --dark: #2c3e50;
            --gray: #7f8c8d;
            --success: #27ae60;
        }

        body {
            color: #333;
            line-height: 1.6;
            background-color: #f5f7fa;
        }

        /* .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        } */

        section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h4 {
            /* font-size: 2rem; */
            /* color: var(--primary); */
            margin-bottom: 15px;
            font-weight: bold;
        }

        .section-title p {
            font-size: 1rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--accent);
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn:hover {
            background-color: #e67e22;
            transform: translateY(-2px);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--accent);
            color: var(--accent);
        }

        .btn-outline:hover {
            background-color: var(--accent);
            color: white;
        } 

        /* Header Styles */
        /* Header styling */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky !important;
    top: 0px !important; /* or 0 for non-logged users */
    z-index: 1000;
}
/* 
header {
  position: sticky !important;
  top: 32px !important; /* or 0 for non-logged users */
  /* z-index: 10000 !important; */
  /* background: #fff !important; */
  /* box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important; */
/* } */
/* body:not(.logged-in) header {
  top: 0 !important;
} */
/* header, .container, body {
  overflow: visible !important; */
/* }  */


/* Container */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 40px;
}

.logo{
   background-color: transparent !important;
}

.logo img {
  
  height: 30px; /* adjust to your navbar height */
  width: auto; /* keep proportions */
  object-fit: contain; /* ensures it doesn’t stretch */
  display: block;
}

/* Navbar list */
nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

/* Navbar links */
nav ul li a {
    color: #556270;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

/* Active link */
nav ul li a.active,
nav ul li a:hover {
    color: #d21e1e;
}

nav ul li a.active::after,
nav ul li a:hover::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #d21e1e;
    bottom: 0;
    left: 0;
}

/* Mobile styles */
.mobile-menu {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}
nav ul li a.active,
nav ul li a:hover {
    color: #d21e1e; /* Red when active */
}

nav ul li a.active::after,
nav ul li a:hover::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #d21e1e; /* Red underline */
    bottom: -2px;
    left: 0;
}
/* our key project */

  /* .hero {
      background: linear-gradient(to bottom, #e80000, #ff3b3b);
      color: white;
      padding: 3rem 1rem;
      text-align: center;
    } */

    .stat-box h2 {
      color: #fff;
      font-weight: 700;
      margin-bottom: 0.2rem;
    }
    .stat-box p {
      margin: 0;
      font-size: 0.9rem;
    }

    .section-title {
      font-weight: 700;
      text-align: center;
      margin-bottom: 0.5rem;
    }
    .section-subtitle {
      text-align: center;
      color: #666;
      margin-bottom: 2rem;
    }

    /* Project cards */
    .project-box {
   padding: 1.5rem;
    }

    .project-label {
      display: inline-block;
      background: #e80000;
     color: #fff;
      padding: 0.25rem 0.75rem;
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .project-title {
      font-weight: 700;
      font-size: 1.2rem;
    }

    .project-img {
      width: 100%;
      border-radius: 10px; 
    }

  
    .project-points i {
      color: green;
      margin-right: 0.4rem;
    }

    /* Project Impact */
    .impact-card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      padding: 1.5rem;
      text-align: center;
      height: 100%;
    }
    .impact-card i {
      font-size: 2rem;
      color: #e80000;
      margin-bottom: 0.5rem;
    }
    .impact-card h6 {
      font-weight: 600;
      margin-bottom: 0.3rem;
    }
    .impact-card p {
      font-size: 0.9rem;
      color: #666;
    }

@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        gap: 20px;
        position: absolute;
        top: 70px;
        right: 20px;
        background-color: #fff;
        width: 200px;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.15);
        border-radius: 5px;
    }

    .mobile-menu {
        display: block;
    }
}

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(215, 25, 32, 0.85), rgba(181, 21, 27, 0.9)), url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 150px 0;
        }

       

        /* Why Choose KTS */

        
        .features {
            background-color: white;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s ease;
            margin-top: 20px;
        }

        .feature-card:hover {
            transform: translateY(-10px);
        }

        .feature-icon {
            font-size: 1.9rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            /* color: var(--primary); */
        }

        /* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card1 {
    background-color: white;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
     transition: transform 0.3s ease;
     margin-top: 50px;
     
}
 .service-card1:hover {
            transform: translateY(-10px);
        }

        .learn-more {
    color: #e30613;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}
.learn-more:hover {
    text-decoration: underline;
}


        /* Stats Section */
        .stats {
            background: linear-gradient(rgba(215, 25, 32, 0.9), rgba(181, 21, 27, 0.9)), url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .stat-item {
            padding: 20px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .stat-text {
            font-size: 1.2rem;
        }

       

        /* Innovation Section */
        .innovation {
            background-color: #f8f9fa;
        }

        .innovation-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .innovation-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .innovation-list {
            list-style: none;
            margin: 30px 0;
        }

        .innovation-list li {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }

        .innovation-list li:before {
            content: "✓";
            color: var(--primary);
            font-weight: bold;
            margin-right: 15px;
            font-size: 1.2rem;
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .tech-item {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            
        }

        .tech-item h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--primary);
        }

        /* CTA Section */
        /* .cta {
            background: linear-gradient(rgba(215, 25, 32, 0.9), rgba(181, 21, 27, 0.9)), url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 100px 0;
        }

        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        } */

         /* about us Section */

/* Header Section */
  .about-header {
     background: linear-gradient(rgba(215, 25, 32, 0.9), rgba(181, 21, 27, 0.9)), url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');
     background-size: cover;
     background-position: center;
     color: white;
     text-align: center;
     padding: 30px 0;
  }

 

  .about-header p {
    font-size: 16px;
    margin-top: 8px;
    opacity: 0.9;
  }

  /* Introduction */
 .introduction-section {
  background: #ffffff;
  padding: 100px 20px;
  color: #333;
  font-family: "Poppins", sans-serif;
}

.introduction-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.intro-header {
  text-align: center;
  margin-bottom: 40px;
}

.intro-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #111;
  position: relative;
}



.intro-subtitle {
  font-size: 1.3rem;
  /* color: #0078d7; */
  margin-top: 10px;
}

.intro-body p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 18px;
  text-align: justify;
}

.service-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 35px;
  margin-bottom: 15px;
  color: #222;
}

.intro-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.intro-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.intro-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  /* color: #0078d7; */
  font-weight: 600;
}

.highlight-box {
 
  /* border-left: 5px solid #0078d7; */
  padding: 30px;
  margin-top: 50px;
  border-radius: 8px;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); */
}

.highlight-heading {
  font-size: 1.2rem;
  font-weight: 600;
  /* color: #0078d7; */
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.highlight-box p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}

@media (max-width: 768px) {
  .intro-title {
    font-size: 1.9rem;
  }

  .intro-subtitle {
    font-size: 1.1rem;
  }

  .highlight-box {
    padding: 20px;
  }
}


  /* Vision & Mission */
  .vision-mission {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    background: #fff;
  }

  .card {
    flex: 1 1 300px;
    max-width: 520px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.08);
    padding: 25px;
    text-align: left;
    transition: transform 0.3s;
  }

  .card:hover {
    transform: translateY(-4px);
  }

  .card i {
    color: #E71313;
    font-size: 26px;
    margin-bottom: 15px;
  }

  .card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .card p {
    color: #555;
    font-size: 15px;
  }

  /* Core Values */
  .core-values {
    text-align: center;
    padding: 60px 20px;
    background-color: #f8f9fa;
  }

  .core-values h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .core-values p {
    color: #777;
    margin-bottom: 40px;
  }

  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
  }

  .value-box {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
  }

  .value-box i {
    color: #E71313;
    font-size: 24px;
    margin-bottom: 10px;
  }

  .value-box h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .value-box p {
    color: #555;
    font-size: 14px;
  }

  /* Leadership Messages */
  .leadership {
    background: #f1f3f6;
    padding: 60px 20px;
    text-align: center;
  }

  .leadership h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
  }

  .messages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .message-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    max-width: 400px;
    text-align: left;
    box-shadow: 0 0 10px rgba(0,0,0,0.08);
  }

  .message-box i {
    color: #E71313;
    font-size: 24px;
    margin-bottom: 15px;
  }

  .message-box h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .message-box p {
    font-size: 14px;
    color: #555;
  }

  .no-bullets {
      list-style-type: none;
    }


    .hero-our-service {
        background: linear-gradient(rgba(215, 25, 32, 0.9), rgba(181, 21, 27, 0.9)), url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80')!important;
        background-size: cover !important;
        background-position: center !important;
        color: white !important;
        padding: 3rem 1rem !important;
        text-align: center !important;
    }

    /* Transport Service cards */
    .service-card {
      margin-top: 10px;
      border-radius: 10px;
      padding: 1.5rem;
    }

.trans{
    background-color: #f8f9fa;}

    .service-card i {
      font-size: 1.5rem;
      color: #e80000;
      margin-bottom: 1rem;
    }
.feature-section{
    background-color: #f1f3f6;
}
    .service-card ul li:before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    margin-right: 10px;
}

    /* Section headings */
    .section-title1 {
      /* font-weight: 700; */
       margin: 0 auto;
      text-align: center; max-width: 700px;
    }
    .section-subtitle {
      color: #666;
      text-align: center;
      margin-bottom: 2rem;
    }
   
    /* Image styling */
    .feature-img {
      border-radius: 10px;
      width: 100%;
      height: auto;
    }

    

    /* Auto repair icons */
    .repair-icon {
      font-size: 2rem;
      color: #e80000;
      margin-bottom: 0.5rem;
    }
    .fasfa-gear{
      color: #E71313;   
    }

    .fs-size{ 
        font-size: 14px; 
    color: #555;
    padding-left: 20px;
    padding-right: 20px;
    
 }

   .info-box {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      padding: 1.5rem;
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }
    .info-box i {
      color: #e80000;
      font-size: 1.8rem;
    }


/* innovation section */

       .innovation-card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      padding: 1.5rem;
      height: 100%;
    }

     .innovation-card i {
      color: #e80000;
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
    }

     
          .info-box {
      background-color: #f4c4c4;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      padding: 1.5rem;
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }
    .info-box i {
      color: #e80000;
     
      font-size: 1.8rem;
    }
.setting-section{
        background: #f1f3f6;
       
    text-align: center;

}
     .tech-icon {
      
      color: #e80000;
      margin-bottom: 0.5rem;
    }

        .impact-section {
      background: #e50914; /* red background */
      color: #fff;
      text-align: center;
      padding: 60px 20px;
    }
    .impact-section h2 {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 10px;
    }
    .impact-section p {
      max-width: 750px;
      margin: 0 auto 40px;
      font-size: 1rem;
      color: #f0f0f0;
    }
    .impact-stats .col-md-4 {
      margin-bottom: 20px;
    }
    .impact-value {
      font-size: 2rem;
      font-weight: 700;
    }
    .impact-label {
      font-size: 0.95rem;
      color: #f0f0f0;
      margin-top: 5px;
    }

  @media (max-width: 768px) {
    .card, .message-box {
      text-align: center;
    }
  }       /* Footer */
        footer {
            background: linear-gradient(rgba(44, 62, 80, 0.95), rgba(26, 37, 47, 0.95));
            color: white;
            padding: 70px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--accent);
        }

        .footer-column p, .footer-column a {
            color: #ddd;
            margin-bottom: 10px;
            display: block;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .innovation-content {
                grid-template-columns: 1fr;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
           
        }

        @media (max-width: 576px) {
            .hero {
                padding: 100px 0;
            }
            
            section {
                padding: 60px 0;
            }
            
            .tech-grid {
                grid-template-columns: 1fr;
            }
        }

.hero-overlay {
    position: relative;
}

.hero-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Change color & opacity here */
    z-index: 1;
}

.hero-overlay .carousel,
.hero-overlay img {
    position: relative;
    z-index: 0;
}


.electric-bus-section {
  background: #f9fafc;
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
  line-height: 1.8;
  color: #333;
}

.electric-bus-section .container {
  max-width: 900px;
  margin: 0 auto;
}





.electric-bus-section p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  text-align: justify;
}

.electric-bus-section p .highlight {
  font-weight: 600;
  /* color: #0078d7; */
}

@media (max-width: 768px) {
  .electric-bus-section {
    padding: 50px 15px;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .electric-bus-section p {
    font-size: 1rem;
  }
}


.turnkey-project {
  background: #ffffff;
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
  color: #333;
}

.turnkey-project .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
}

.turnkey-project .content {
  flex: 1 1 600px;
}

.turnkey-project .image-side {
  flex: 1 1 450px;
}

.turnkey-project .image-side img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.turnkey-project .image-side img:hover {
  transform: scale(1.03);
}

.section-title-people {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
  position: relative;
}

.section-title-people::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  /* background: #0078d7; */
  margin: 10px 0 0;
  border-radius: 2px;
}

.turnkey-project p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.turnkey-project p .highlight {
  font-weight: 600;
  /* color: #0078d7; */
}

@media (max-width: 992px) {
  .turnkey-project .container {
    flex-direction: column;
    text-align: center;
  }

  .turnkey-project .image-side img {
    max-width: 90%;
  }

  .section-title-people::after {
    margin: 10px auto 0;
  }
}


.auto-services {
  background: #f7f9fb;
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
  color: #333;
}

.auto-services .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap-reverse;
  gap: 50px;
  align-items: center;
}

.auto-services .content {
  flex: 1 1 600px;
}

.auto-services .image-side {
  flex: 1 1 450px;
}

.auto-services .image-side img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.auto-services .image-side img:hover {
  transform: scale(1.03);
}





.auto-services p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 18px;
  text-align: justify;
}

.auto-services .highlight {
  /* color: #0078d7; */
  font-weight: 600;
}

.auto-services .service-list {
  list-style: none;
  margin: 20px 0 30px;
  padding: 0;
}

.auto-services .service-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.6;
}

.auto-services .service-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  /* color: #0078d7; */
  font-weight: bold;
}

@media (max-width: 992px) {
  .auto-services .container {
    flex-direction: column;
    text-align: center;
  }

  .auto-services .image-side img {
    max-width: 90%;
  }

  .auto-services .section-title::after {
    margin: 10px auto 0;
  }

  .auto-services .service-list li {
    padding-left: 0;
  }

  .auto-services .service-list li::before {
    display: none;
  }
}

.pplbusservice {
  font-family: Arial, sans-serif;
  line-height: 1.7;
  font-size: 16px;
  color: #333;
  /* background-color: #f7f9fc; */
  /* padding: 20px; */
  /* border-left: 5px solid #d12030; Example accent color */

}
.pplbusservice p {
  margin-bottom: 14px;
}




#carouselExampleIndicators {
  /* width: 1169px; */
  height: 490px;
  overflow: hidden;
 
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); /* optional – adds depth */
}

#carouselExampleIndicators .carousel-inner {
  width: 100%;
  height: 100%;
}

#carouselExampleIndicators .carousel-item img {
  width: 100%;
  height: 490px;
  object-fit: cover; /* ensures image fills area properly */
}
