.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #aaa;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form button {
  background-color: #003366;
  color: white;
  padding: 10px;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #002244;
}

/* HEADER BASE */
  header {
    background-color: #003366;
    color: white;
    font-family: 'Segoe UI', sans-serif;
  }
  
  /* === TOP BAR === */
 .top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 0 3rem;
  height: auto;
  box-sizing: border-box;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}


.logo-wrapper img {
  width: auto;
  max-width: 250px;
  max-height: 70px;
  object-fit: contain;
}


.contact-info {
  flex: 2;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: flex-start; 
  gap: 1rem;              /* Increased spacing between icon and text */
}

.contact-item img {
  width: 48px !important;
  height: 48px !important;
  object-fit: contain;
  margin-top: 4px;
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-text span {
  font-size: 1.05rem;
  font-weight: 500;
  color: #003366;
  line-height: 1.4;
}
  
  /* === BOTTOM NAV === */
  .bottom-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    height: 78px;
    background-color: #003366;
  }
  
  .bottom-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
  }
  
  .bottom-nav a:hover {
    color: #ffcc00;
  }



.hero-slider-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85vh;
  overflow: hidden;
  padding: 0 2rem;
  background: url('../light-background.jpg') repeat;
  background-size: cover;
}

.hero-content {
  flex: 1 1 50%;
  padding-right: 2rem;
  z-index: 2;
}

.hero-headline {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* Center horizontally inside left block */
  height: 100%;
  text-align: center;  /* Center text */
  padding: 0 2rem;
}

.hero-headline h1 {
  font-size: 3.6rem;
  font-weight: 800;
  color: #b50000;
  font-family: 'Segoe UI', 'Poppins', sans-serif;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-headline .subheading {
  font-size: 1.8rem;
  font-weight: 500;
  color: #002244;
  margin-bottom: 0.5rem;
  font-family: 'Segoe UI', 'Poppins', sans-serif;
  letter-spacing: 0.4px;
}

.hero-headline .tagline {
  font-size: 1.5rem;
  color: #0072bb;
  font-style: italic;
  font-weight: 500;
  font-family: 'Segoe UI', 'Poppins', sans-serif;
  margin-top: 0.3rem;
}

.hero-slider-wrapper {
  flex: 1 1 50%;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-slider-track {
  display: flex;
  height: 100%;
  width: calc(100% * 9);
  animation: scrollHeroSlider 45s linear infinite;
}

.hero-slide {
  flex: 0 0 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  box-shadow: none;
  position: relative; /* ✅ Add this only */
}


.hero-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 10px 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  z-index: 2;
}

@keyframes scrollHeroSlider {
  0% { transform: translateX(0%); }
  11.11% { transform: translateX(0%); }
  13.33% { transform: translateX(-100%); }
  24.44% { transform: translateX(-100%); }
  26.66% { transform: translateX(-200%); }
  37.77% { transform: translateX(-200%); }
  40% { transform: translateX(-300%); }
  51.11% { transform: translateX(-300%); }
  53.33% { transform: translateX(-400%); }
  64.44% { transform: translateX(-400%); }
  66.66% { transform: translateX(-500%); }
  77.77% { transform: translateX(-500%); }
  80% { transform: translateX(-600%); }
  91.11% { transform: translateX(-600%); }
  93.33% { transform: translateX(-700%); }
  100% { transform: translateX(-800%); }
}

/* === SPLIT SERVICES SECTION (with sliding image panel) === */
.split-services {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
  align-items: stretch;

  /* 🔵 Add background pattern */
  background-image: url('../light-background.jpg'); /* Update path */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.services-text {
  flex: 1 1 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  /* Optional light overlay for readability */
}

.services-text h2 {
  color: #003366;
  margin-bottom: 20px;
}

.services-text ul {
  list-style: none;
  padding: 0;
}

.services-text ul li {
  margin: 10px 0;
}

.services-text ul li a {
  display: block;
  padding: 10px 15px;
  background: #003366;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.services-text ul li a:hover {
  background: #0055aa;
}

.services-image-slider {
  flex: 1 1 50%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: stretch;
  height: auto;
  min-height: 100%;
  box-sizing: border-box;
}

.slider-track {
  display: flex;
  width: 500%;
  width: calc(100% * 10);
  animation: scrollHeroSlider 50s linear infinite;
}

.slide {
  flex: 0 0 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  /* Removed background-color to show section bg */
}

@keyframes scrollHeroSlider {
  0% { transform: translateX(0%); }
  11.11% { transform: translateX(0%); }
  13.33% { transform: translateX(-100%); }
  24.44% { transform: translateX(-100%); }
  26.66% { transform: translateX(-200%); }
  37.77% { transform: translateX(-200%); }
  40% { transform: translateX(-300%); }
  51.11% { transform: translateX(-300%); }
  53.33% { transform: translateX(-400%); }
  64.44% { transform: translateX(-400%); }
  66.66% { transform: translateX(-500%); }
  77.77% { transform: translateX(-500%); }
  80% { transform: translateX(-600%); }
  91.11% { transform: translateX(-600%); }
  93.33% { transform: translateX(-700%); }
  100% { transform: translateX(-800%); }
}

/* === Footer Styling Fix === */ 
.footer {
  background: #003366;
  color: white;
  padding: 5rem 2rem; /* Increased vertical padding */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: left;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  max-width: 1600px;
  box-sizing: border-box;
}

.footer-column {
  flex: 1 1 20%;
  min-width: 220px;
  box-sizing: border-box;
  text-align: left;
}

.footer-column h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.4rem; /* Increased size */
  text-align: left;
}

.footer-column hr {
  border: 0;
  border-top: 2px solid #ccc;
  margin: 0.6rem 0 1.2rem 0; /* More space between title and content */
  width: 70%; /* Optional: Reduce width slightly for design touch */
}

.footer-column p {
  margin: 0.7rem 0; /* More space between lines */
  line-height: 1.8;
  font-size: 1.05rem; /* Slightly larger text */
  text-align: left;
}



/* Make in India Logo */
.make-in-india {
  width: 160px;
  margin-top: 1rem;
  display: block;
  margin-left: 0;
}

/* Footer Bottom */
.footer-bottom {
  background-color: #002244;
  color: #ccc;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  width: 100vw;                            /* ✅ full screen width */
  margin-left: calc(-50vw + 50%);
  box-sizing: border-box;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 1rem;
  }

  .footer-column {
    width: 100%;
    text-align: left;
    margin-bottom: 2rem;
  }

  .footer-column h3,
  .footer-column p {
    text-align: left;
  }

  .footer-column hr {
    margin: 0.5rem 0 1rem 0;
    width: 50%;
  }

  .make-in-india {
    margin-left: 0;
    display: inline-block;
  }
}


#Brands-We-Repair,
#contact {
  display: block;
  min-height: auto;
  justify-content: unset;
  flex-direction: unset;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.card {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  max-width: 300px;
  border-radius: 10px;
  text-align: center;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

form input,
form textarea {
  width: 100%;
  padding: 0.5rem;
  margin: 0.5rem 0;
}

form button {
  padding: 0.5rem 2rem;
  background: #003366;
  color: white;
  border: none;
  cursor: pointer;
}

/* === Match hero section height for all except products section === */
.section,
#Brands-We-Repair,
#contact {
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#Brands-We-Repair h2,
#contact h2 {
  text-align: center;
    color: #003366; /* same blue as used in other section titles */
  margin-bottom: 2rem;
}

.about-veltech-section {
  padding: 60px 20px;
  background-color: #f5f7fa;
  font-family: 'Segoe UI', sans-serif;
}

.about-veltech-section h2 {
  color: #003366;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.about-veltech-section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: #ff3c3c;
  margin: 10px auto 0;
}

.about-veltech-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

.about-info-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.about-info-box {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 25px 20px;
  transition: transform 0.3s ease;
}

.about-info-box:hover {
  transform: translateY(-5px);
}

.about-info-box h3 {
  color: #003366;
  font-size: 1.4rem;
  margin-bottom: 15px;
  border-left: 4px solid #ff3c3c;
  padding-left: 10px;
}

.about-info-box ul {
  padding-left: 20px;
  list-style: disc;
  color: #444;
}

.about-info-box li {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.return-box {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

.return-btn {
  background-color: #003366;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.return-btn:hover {
  background-color: #002244;
  color: #ffcc00;
}

@media (max-width: 768px) {

  /* === FIX NAVBAR: Logo + WhatsApp on One Row === */
  .top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.8rem;
    background-color: #fff;
    flex-wrap: nowrap;
  }

  .logo-wrapper {
    padding-left: 0;
    margin: 0;
    flex: 0 1 auto;
  }

  .logo-wrapper img {
    max-height: 48px;
    height: auto;
    width: auto;
    display: block;
  }

  .contact-info {
    flex: 0 1 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.4rem;
    padding-right: 0.5rem;
    white-space: nowrap;
  }

  .contact-item:not(:last-child) {
    display: none;
  }

  .contact-item:last-child {
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }

  .contact-item:last-child img {
    width: 26px;
    height: 26px;
  }

  .contact-item:last-child span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #003366;
  }


  .split-services {
    flex-direction: column;
    padding: 0.5rem;
  }

  .services-text {
    width: 100%;
    padding: 0.5rem 0;
  }

  .services-image-slider {
    height: 240px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .slider-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: none !important;
  }

  .slide {
    min-width: 90%;
    height: 240px;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    scroll-snap-align: start;
    flex-shrink: 0;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  }

  /* === Bottom Nav === */
  .bottom-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    background-color: #003366;
    padding: 0.5rem 0;
  }

  .bottom-nav a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
  }

  .bottom-nav a:hover {
    color: #ffcc00;
  }


  /* === Brand Cards === */
  .cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
  }

  .card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    padding: 10px;
  }

  /* === Footer === */
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .footer-column h3 {
    font-size: 1.2rem;
  }

  .footer-column p {
    font-size: 0.95rem;
  }

  .footer-bottom {
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
  }

  .make-in-india {
    margin-left: 0;
    display: inline-block;
  }

  /* === Forms === */
  form input,
  form textarea {
    width: 100%;
    padding: 0.5rem;
    margin: 0.5rem 0;
  }

  form button {
    padding: 0.5rem 2rem;
    background: #003366;
    color: white;
    border: none;
    cursor: pointer;
  }
  
}



@media (max-width: 768px) {
  /* === Hide Product & Industry sliders === */
  #products-and-services .services-image-slider,
  #industries .services-image-slider {
    display: none !important;
  }
}
