/* ----------------------- Reset & Base ----------------------- */
*html, body{
  margin:0;
  padding:0;
  width:100%;
  overflow-x:hidden;
}

.container{
  max-width:100% !important;
  padding-left:0 !important;
  padding-right:0 !important;
}

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: 70vh;
  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:500px;
  margin:0 auto 20px;
  display:block;
}

/* 📱 Mobile Responsive Logo Size */
@media (max-width:768px){
  .hero-logo{
    max-width:380px;   /* 👉 इथे mobile size set */
  }
}

/* 📱 छोट्या phones साठी अजून छोटा */
@media (max-width:480px){
  .hero-logo{
    max-width:300px;
  }
}


.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;
  margin-left: 80px;
  margin-top: -15px;

}

.btn-primary:hover {
  background-color: #B2000F; /* Darker red on hover */
  transform: translateY(-3px);
}

.truck-box {
    width: 50%;
    position: relative;
}

.truck-img {
    width: 100%;
    max-width: 500px;
    float: right;   /* right side dikhane ke liye */
    margin-top: -150px;
}
/* ------------------------------------------------------------------------------------------------------------------------------- */
/* container */
.industry-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* card */
.industry-card {
  height: 320px;
  padding: 20px;

  border: 2px solid #b11226;
  border-radius: 18px;
  background: #fff;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;   /* center content */

  text-align: center;
  transition: all 0.3s ease;
}

/* hover */
.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(139, 0, 0, 0.25);
}

/* image */
.industry-card img {
  width: 180px;
  height: 180px;
  object-fit: contain;
}

/* 🔴 underline (image ke niche – like sample) */
.industry-card .card-underline {
  width: 70px;              /* line length */
  height: 3px;              /* thickness */
  background-color: #b11226; /* red */
  margin: 12px 0;
  border-radius: 2px;
}

/* text */
.industry-card p {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}


/* responsive */
@media (max-width: 992px) {
  .industry-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .industry-container {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: #fafafa;
    padding: 40px;
}

.title {
    text-align: center;
    font-size: 34px;
    margin-bottom: 40px;
    color: #222;
}

/* GRID : 4 LEFT + 4 RIGHT */
.branches-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.branches-title{
  text-align:center;
  font-size: 40px;
    font-weight: 800;
    margin-bottom: 45px;
    color: #000000;
}
#branches-section h2{
  text-align:center;
}


/* CARD STYLE */
.branch-card {
    background: #fff;
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.05);
    border-left: 4px solid #d71920;
}

.branch-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
    border-left-color: #b31217;
}

.branch-card {
    transition: all 0.3s ease;
}


.branch-card h3 {
    font-size: 18px;
    margin-bottom: 4px;
    color: #111;
}

.branch-card .type {
    display: inline-block;
    font-size: 13px;
    color: #d71920;
    margin-bottom: 12px;
}

.branch-card p {
    font-size: 14px;
    color: #444;
    margin-bottom: 6px;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .branches-grid {
        grid-template-columns: 1fr;
    }
}


/* ------------------------------------------------------------------------------------------------------------------------------------------- */
/* 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;
}
#lr-no {
    width: 250px !important;
    height: 45px !important;
    font-size: 20px !important;
    padding: 0 20px !important;
    border-radius: 12px !important;
    border: 3px solid #ddd !important;
}

.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;
  font-size: 40px;
    font-weight: 600;
    margin-bottom: 45px;
    color: #000000;

  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;
  line-height: 1.2;
  color: #000000;
}

/* ---------------- 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;
}

.testimonial-box{
  text-align:center;
  padding:35px 20px;
}

.testimonial-box h1{
  font-size:38px;
  font-weight:800;
  margin-bottom:8px;
}

.testimonial-box p{
  font-size:18px;
  color:#E30613;   /* 🔴 Red text */
  font-weight:600;
  margin:0;
}


/* ---------------- 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;
  }
}




.stats-counter {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 140px;
}

.stat h2 {
    font-size: 50px;     /* Yaha number ka size badhega */
    font-weight: bold;
}

.stat p {
    font-size: 22px;     /* Yaha neeche text ka size badhega */
}

.stat {
    text-align: center;
}

.branches-wrapper-3{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns: 1fr 1fr 1.3fr;
    gap:25px;
}

.branches-part{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.branch-card{
    background:#fff;
    padding:16px;
    border-radius:8px;
    box-shadow:0 4px 10px rgba(0,0,0,0.08);
}

.branch-card h3{
    margin:0 0 6px;
    font-size:16px;
    color:#000;
}

.branch-card p{
    margin:4px 0;
    font-size:13px;
    color:#000;
}

.branch-card a{
    color:#000;
    text-decoration:none;
    font-weight:600;
}

.direction-link{
    display:inline-block;
    margin-top:6px;
    color:#d60000 !important;
    font-weight:600;
}

.branches-map{
    background:#fff;
    padding:0;                
    border-radius:8px;
    box-shadow:0 4px 10px rgba(0,0,0,0.08);
    height:100%;
    min-height:500px;          /* full visible height */
    overflow:hidden;
    display:flex;
}

.branches-map img{
    width:100%;
    height:100%;
    object-fit:contain;        
    display:block;
}

.branches-map h3{
    margin-bottom:15px;
    color:#000;
    text-align:center;
}


.maha-svg{
    width:100%;
    max-width:420px;
    height:auto;
}


/* MOBILE */
@media(max-width:992px){
    .branches-wrapper-3{
        grid-template-columns:1fr;
    }
}



.testimonials-section{
    padding:80px 20px;
    background:#fff;
}

.testimonial-info-card{
    max-width:620px;
    margin:0 auto 50px;
    background:#fff;
    padding:28px 30px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

.testimonial-info-card h2{
    margin:0 0 10px;
    font-size:30px;
    font-weight:700;
    color:#000;
}

.testimonial-info-card p{
    margin:0;
    font-size:15px;
    color:#555;
}

.testimonials-wrapper{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.testimonial-card{
    background:#fff;
    padding:22px;
    border-radius:10px;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
    font-size:14px;
}




/* WRAPPER */
.contact-wrapper{
    max-width:1200px;
    margin:60px auto;
    display:flex;
    gap:30px;
    align-items:stretch;
}

/* LEFT FORM BOX */
.contact-form-box{
    width:50%;
    background:#fff;
    padding:30px;
    border-radius:10px;
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

.contact-form-box h3{
    text-align:center;
    margin-bottom:20px;
}

.contact-form-box input,
.contact-form-box textarea{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:1px solid #ccc;
    border-radius:6px;
}

.contact-form-box textarea{
    height:120px;
    resize:none;
}

.contact-form-box button{
    width:100%;
    padding:12px;
    color:#E30613;
    border:none;
    border-radius:6px;
    font-size:16px;
}

/* RIGHT SQUARE MAP */
.contact-map-box{
    width:50%;
    aspect-ratio:1/1;   /* ⭐ square */
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

.contact-map-box iframe{
    width:100%;
    height:100%;
    border:0;
}

/* MOBILE */
@media(max-width:768px){
    .contact-wrapper{
        flex-direction:column;
    }
    .contact-form-box,
    .contact-map-box{
        width:100%;
    }
}


/* FORM + MAP SIDE BY SIDE */
.form-map-wrapper{
  display:flex;
  gap:30px;
  align-items:stretch;
}

/* BIGGER BOX */
.contact-form-section,
.map-section{
  flex:1;
  background:#ffffff;
  border-radius:14px;
  box-shadow:0 8px 28px rgba(0,0,0,0.18);
  padding:45px;          /* ⭐ box मोठा */
  min-height:520px;       /* ⭐ height वाढवली */
}

/* MAP FULL FIT BIG */
.map-section iframe{
  width:100%;
  height:100%;
  min-height:460px;       /* ⭐ map मोठा */
  border-radius:12px;
  border:none;
}

/* FORM FIELDS */
.contact-form input,
.contact-form textarea{
  width:100%;
  margin-bottom:15px;
  font-size:16px;
  padding:12px 10px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .form-map-wrapper{
    flex-direction:column;
  }
  .contact-form-section,
  .map-section{
    min-height:auto;
  }
}



.why-skel{
  width:100%;
  text-align:center;
  padding:70px 20px;
  font-family:Arial, sans-serif;
}

.why-skel h2{
  font-size:40px;
  font-weight:800;
  margin-bottom:45px;
  color:#000000;
}

/* GRID */
.why-box-wrapper{
  display:grid;
  grid-template-columns: repeat(5,1fr);
  gap:28px;
}

/* PERFECT SIZE CARD */
.why-box{
  background:#ffffff;
  border:3px solid #4f4d4e;
  padding:35px 18px;
  border-radius:18px;
  box-shadow:0 5px 15px rgba(0,0,0,0.15);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  transition:0.3s ease;
}

/* HOVER EFFECT */
.why-box:hover{
  transform: translateY(-8px) scale(1.03);
  box-shadow:0 12px 30px rgba(0,0,0,0.25);
  border-color:#bfbfbf;
}

/* BIG IMAGE */
.why-box img{
  width:200px;
  height:200px;
  object-fit:contain;
  margin-bottom:14px;
}

/* TEXT */
.why-box p{
  margin:0;
  font-size:20px;
  font-weight:800;
  color:#000000;
}

/* RESPONSIVE */
@media(max-width:1024px){
  .why-box-wrapper{ grid-template-columns: repeat(3,1fr);}
}

@media(max-width:700px){
  .why-box-wrapper{ grid-template-columns: repeat(2,1fr);}
}

@media(max-width:450px){
  .why-box-wrapper{ grid-template-columns:1fr;}
}




/* ===== HERO SECTION ===== */
.tracking-section{
    width:100%;
    height:85vh;
    background:url('../images/home_3.jpeg') center center/cover no-repeat;
    position:relative;
    padding-top:120px;
}

/* Premium dark overlay */
.tracking-section::before{
    content:"";
    position:absolute;
    inset:0;

}

/* inner content */
.hero-content{
    position:relative;
    z-index:2;
    color:#fff;
    text-align:left;      /* ⭐ LEFT */
    max-width:650px;
}
.container.hero-content{
    margin-left:60px;     /* ⭐ पूर्ण left ला आणलं */
}
/* Heading */
.tracking-section h2{
    font-size:42px;
    font-weight:800;
    color:#fff;
}

.form-group label{
    color:#fff !important;
    font-weight:600;
}


/* Form */
#lr-tracking-form{
    background:#000000dd;
    padding:35px 35px;     /* ⭐ padding वाढवलं */
    border-radius:18px;
    display:inline-block;
    margin-top:15px;
    min-width:420px;       /* ⭐ width वाढवलं */
}

/* Truck image */
.tracking-right{
    margin-top:25px;
}
.truck-img{
    width:280px;
}

/* Responsive */
@media(max-width:700px){
    .tracking-section{ height:70vh; }
    .tracking-section h2{ font-size:30px; }
    #lr-tracking-form{ width:100%; }
}

.stats-counter{
    width:auto;
    margin:auto;
    margin-top:-120px;     /* ⭐ आणखी वर आणलं */
    display:flex;
    gap:30px;
    justify-content:center;
    position:relative;
    z-index:3;
    color:#fff;
}

.stat{
    text-align:center;
}

/* NUMBERS */
.stat h2{
    font-size:40px;
    font-weight:900;
    color:#fff;
    text-shadow:2px 2px 8px rgba(0,0,0,0.9);
}

/* TEXT */
.stat p{
    font-size:18px;
    font-weight:700;
    color:#fff;
    margin-top:5px;
    text-shadow:2px 2px 8px rgba(0,0,0,0.9);
}


/* Mobile */
@media(max-width:700px){
    .stats-counter{
        flex-wrap:wrap;
        gap:20px;
        margin-top:-40px;
    }
}



/* SLIDER MUST HAVE HEIGHT + POSITION */
.slider{
  position: relative;
  width:100%;
  height:100%;
}

/* DEFAULT HIDE */
.slide{
  z-index:1;
  opacity:0;
  visibility:hidden;
}

/* SHOW ONLY ACTIVE */
.slide.active{
  z-index:5;
  opacity:1;
  visibility:visible;
}


.testimonials{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
}

/* Card Same Size */
.testimonial{
  background:#fff;
  border-radius:15px;
  padding:25px;
  box-shadow:0 10px 25px rgba(0,0,0,0.12);
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

/* Text Proper align */
.testimonial p{
  font-size:15px;
  line-height:1.7;
  color:#444;
}

/* Company Section Bottom fix */
.company-wrap{
  margin-top:15px;
}

.company-wrap h4{
  color:#E30613;
  font-weight:700;
  margin-bottom:10px;
}

.company-wrap img{
  width:120px;
}


.form-map-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

/* दोन्ही कार्ड equal */
.contact-form-section,
.contact-map-box{
    height: 450px;        /* 👈 दोन्ही कार्ड ही एवढीच */
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    background:#fff;
}

/* inside form center ठेवलेलं */
.contact-form-section{
    padding:25px;
    display:flex;
    align-items:center;
}

/* Map full fill */
.contact-map-box iframe{
    width:100%;
    height:100%;
    border:0;
}

/* Mobile responsive */
@media(max-width:900px){
    .form-map-wrapper{
        grid-template-columns:1fr;
    }
}

.form-map-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

/* 🔥 DONI CARD SAME + SQUARE */
.contact-form-section,
.contact-map-box{
    aspect-ratio: 1 / 1;      /* square बनवतो */
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    overflow: hidden;
}

/* Form center */
.contact-form-section{
    padding: 25px;
    display: flex;
    align-items: center;
}

/* Map Perfect Fill */
.contact-map-box iframe{
    width: 100%;
    height: 100%;
    border: 0;
}

/* Mobile Responsive */
@media(max-width:900px){
    .form-map-wrapper{
        grid-template-columns: 1fr;
    }
}


.testimonial{
  display: flex;
  flex-direction: column;
}

.testimonials .testimonial:nth-child(3) .company-wrap{
  margin-top: auto;
  margin-bottom: auto;   /* 👉 कार्डच्या मध्ये आणतो */
  text-align: center; 
}

.stars{
  color:#E30613;       /* 🔴 Red Stars */
  font-size:22px;
  margin-bottom:10px;
}

.client-title{
  font-size:18px;
  font-weight:700;
  color:#000;
  margin-top:10px;
}

/* ========== TESTIMONIAL ALIGN FIX ========== */

/* 3 Cards Same Height Grid */
.testimonials{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

/* Card layout proper vertical alignment */
.testimonial{
  background:#fff;
  padding:25px;
  border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,.12);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

/* Stars Center */
.stars{
  text-align:center;
}

/* 👉 Headings same position */
.client-title{
  text-align:center;
  min-height:45px;      /* Same line ठेवण्यासाठी */
}

/* 👉 Description same line align */
.testimonial p{
  text-align:center;
  min-height:180px;     /* तीनही समान दिसतील */
}

/* 👉 Company logo Center */
.company-wrap{
  text-align:center;
}

.company-wrap img{
  height:60px;
  object-fit:contain;
  margin:auto;
}

.testimonials{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:25px;
}

.testimonial{
  width:32%;
}

/* Mobile */
@media(max-width:900px){
  .testimonial{
    width:45%;
  }
}

@media(max-width:600px){
  .testimonial{
    width:100%;
  }
}
.testimonials{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:25px;
}

.testimonial{
  width:32%;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:430px;   /* 👉 हे सर्व cards same height करेल */
}


.testimonials{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:stretch;
  gap:30px;
  flex-wrap:nowrap;   /* 🔥 एका लाईनमध्ये ठेवतो */
}

.testimonial{
  width:32%;          /* 🔥 तीनही कार्ड्स समान रूंदी */
}


.slider{
  position:relative;
  width:100%;
  height:100%;
}

.slide{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  opacity:0;
  visibility:hidden;
  transition:1s;
}

.slide.show{
  opacity:1;
  visibility:visible;
}

.hero-logo{
  height: 500px;     
  width:auto;
  object-fit:contain;
}



.stats-counter{
  position: absolute;
  bottom: 30px;              /* खाली किती हवा ते */
  right: 40px;               /* 👉 हे वाढव/कमी करून right ला adjust कर */
  
  background: rgba(0,0,0,0.7);
  padding: 25px 30px;
  border-radius: 12px;
  display:flex;
  gap:40px;
  color:#fff;
}




/* ================= MOBILE PERFECT CLEAN CARD UI ================= */
@media(max-width:768px){

  /* HERO IMAGE */
  #heroSlider .carousel-item img{
    height: 100vh;
    object-fit: cover;
  }

  /* LR BOX CLEAN LIKE POSTER */
  .hero-content{
    position: absolute;
    top: 28%;
    left: 50%;
    transform: translateX(-50%);
    
    width: 85%;
    max-width: 380px;

    background: rgba(0,0,0,0.80);
    border-radius: 18px;

    padding: 18px 15px;
    text-align: left;
    z-index: 10;
  }

  /* Label neat */
  .hero-content label{
    color:#fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    display:block;
  }


  /* Input clean */
  .hero-content input{
    width: 200%;
    height: 42px;
    border-radius: 10px;
    border: none;
    font-size: 14px;
    padding: 8px 10px;
  }

  /* Button neat lovely */
  #track-lr-btn{
    margin-top: 15px;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  /* ---------- STATS BAR ---------- */
  .stats-counter{
    position: absolute;
    bottom: 20px;
    right: 10px;
    width: 95%;

    background: rgba(0,0,0,0.78);
    border-radius: 18px;

    padding: 20px 15px;
    display:flex;
    justify-content: space-between;
    align-items:center;
    gap:16px;
  }

  .stats-counter h2{
    font-size: 20px;
    margin-bottom: 4px;
  }

  .stats-counter p{
    font-size: 11px;
  }
}




/* ===== MOBILE TESTIMONIAL CARD FIX ===== */
@media(max-width:768px){

  .testimonials{
    display:block;
  }

  .testimonial{
    width:100% !important;
    max-width:100% !important;
    margin:0 0 20px 0;
    padding:18px;
    text-align:center;
    box-sizing:border-box;
  }

  .testimonial p{
    white-space:normal !important;
    word-break:break-word;
  }

  .client-title{
    text-align:center;
  }
}

/* ===== HERO DEFAULT ===== */
.hero,
.hero .slider,
.hero .slide{
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

/* ===== HERO CONTENT ===== */
.hero .content{
  position:absolute;
  top: 50%;
  left:50%;
  transform: translate(-50%, -50%);
  z-index:5;
}

/* ===== BOTTOM STATS BOX ===== */
.hero .stats-box{
  position:absolute;
  bottom:40px;
  right:40px;
  z-index:6;
}


/* ================= MOBILE VIEW ================= */



/* ✅ FULL PAGE LAYOUT FIX */
html, body{
  width:100%;
  margin:0;
  padding:0;
  overflow-x:hidden;
}

section{
  width:100%;
}

/* Center content inside full width */
.partners-testimonials{
  max-width:100%;
  padding:0 40px;
  box-sizing:border-box;
}

/* ---------------- ORIGINAL STYLES (UNCHANGED) ---------------- */

.partners-testimonial-box h1{
  color:#000000;
}

.partners-testimonial-box .sub-heading{
  color:#E30613;
  font-size:16px;
  font-weight:600;
  letter-spacing:0.5px;
  margin-top:5px;
}

.trusted-title{
  color:#E30613;
  font-size:16px;
  font-weight:600;
  letter-spacing:0.5px;
  margin-top:5px;
}

.pt-card{
  width:30%;
  min-width:340px;
  background:#fff;
  padding:25px;
  border-radius:14px;
  text-align:center;
  box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.stars{
  color:#E30613;
  font-size:22px;
  margin-bottom:10px;
}

.client-title{
  color:#E30613;
  font-weight:800;
  margin-bottom:10px;
}

.company-wrap img{
  width:80px;
  margin-top:10px;
}

/* Responsive */
@media(max-width:900px){
  .pt-card{width:45%;}
}

@media(max-width:600px){
  .pt-card{width:100%;}
  .partners-testimonials{padding:0 15px;}
}

/* Mobile footer + partners fix */
@media(max-width:600px){
  .page-header{
    padding:40px 15px 20px;
    text-align:center;
  }

  .partners{
    padding:20px 0;
    margin-bottom:40px;
  }

  .partner-carousel{
    overflow:hidden;
    width:100%;
  }

  .partner-slide img{
    width:80px;
    margin:10px;
  }
}

html, body{
  margin:0;
  padding:0;
  width:100%;
  overflow-x:hidden;
}

section{
  width:100%;
}

.container{
  max-width:100% !important;
  padding-left:0 !important;
  padding-right:0 !important;
}





.why-skel{
  background:#E30613; /* light red */
  padding:60px 0;
}


/* SECTION */
.why-skel{
  background:#E30613;
  padding:80px 0;
  overflow:hidden; /* baher jatay te thambav */
}

/* HEADING */
.why-skel h2{
  text-align:center;
  color:#fff; /* white */
  font-size:42px;
  margin-bottom:50px;
  font-weight:700;
}

/* WRAPPER */
.why-box-wrapper{
  max-width:1200px; /* content limit */
  margin:auto;
  display:flex;
  justify-content:space-between;
  gap:25px;
}

/* CARD */
.why-box{
  background:#fff;
  border-radius:20px;
  padding:30px 20px;
  text-align:center;
  flex:1;
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
  border:2px solid #ddd;
}

/* IMAGE */
.why-box img{
  width:170px;
  margin-bottom:20px;
}

/* TEXT */
.why-box p{
  font-size:16px;
  font-weight:600;
}



/* ONLY CONTACT INFO SECTION */
#contact-info-section{
  background:#E30613; /* same SKEL red */
  padding:80px 0;
}

/* HEADING WHITE */
#contact-info-section .section-title{
  color:#fff;
  text-align:center;
  font-size:38px;
  margin-bottom:50px;
}





footer.main-footer{
  background:#E30613 !important;
  color:#fff !important;
}
/* Hover underline for footer links & address */

.footer-bottom a:hover{
  text-decoration:underline;
  text-decoration-color:#000; /* black line */
}

/* Address hover */
.footer-box p:hover{
  text-decoration:underline;
  text-decoration-color:#000;
}


/* ONLY Our Partners header */
.page-header:has(h3:contains("Our Partners")){
  background:#E30613;
  padding:60px 0;
  text-align:center;
}

/* Text white */
.page-header:has(h3:contains("Our Partners")) h3,
.page-header:has(h3:contains("Our Partners")) h2{
  color:#fff !important;
}


/* ONLY PARTNERS HEADER */
.partners-header{
  background:#E30613;
  padding:60px 0;
  text-align:center;
}

.partners-header h3,
.partners-header h2{
  color:#fff !important;
}


/* Footer headings white */
.footer-box h3{
  color:#fff !important;
  border-bottom:2px solid #fff; /* underline white */
}
