* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Baloo Chettan 2", sans-serif;
    line-height: 1.6;
    background: black;
  }
  
  .header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background 0.3s ease, padding 0.3s ease;
    padding: 20px 0;
  }
  
  .header.transparent {
    background: transparent;
    color: white;
  }

.header.scrolled {
    background: #000;
    color: white;
  }
/* Update only the container and nav section */

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .logo {
    font-family: "Baloo Chettan 2", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: inherit;
    margin-right: 40px;
    white-space: nowrap;
  }
  
  
  .nav {
    display: flex;
    align-items: center;
    flex: 1; /* 👈 This pushes nav items away from the logo */
    justify-content: space-between;
  }
  
  .nav-center,
  .nav-end {
    display: flex;
    gap: 24px;
    list-style: none;
  }
  
  .nav a {
    color: inherit;
    text-decoration: none;
    font-weight: 700; /* 👈 Bold */
    transition: color 0.3s ease;
  }
  
  .btn {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .btn:hover {
    background: white;
    color: black;
  }
  
  .menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: inherit;
  }
  
  /* Mobile Styles */
  @media (max-width: 768px) {
    .container {
      flex-wrap: wrap;
    }
  
    .nav {
      flex-direction: column;
      align-items: stretch;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100vw;
      background: black;
      display: none;
    }
  
    .nav.open {
      display: flex;
    }
  
    .nav-center,
    .nav-end {
      display: flex;
      flex-direction: column;
      padding: 16px;
      gap: 16px;
    }
  
    .nav-center {
      align-items: flex-start;
    }
  
    .nav-end {
      align-items: flex-start;
      border-top: 1px solid #444;
    }
  
    .menu-toggle {
      display: block;
    }
  
    .nav a {
      color: white;
    }
  
    .logo {
      flex: 1;
      margin-right: 0;
    }
  }
  
  
  
  


  .mioblack-hero-section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-image 1s ease-in-out;
  }
  
  .mioblack-hero-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.463); /* Full overlay */
    z-index: 1;
  }
  
  .mioblack-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 1rem;
  }
  
  .mioblack-logo {
    font-family: "Baloo Chettan 2", sans-serif;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  .mioblack-slide-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: bold;
  }
  
  .mioblack-hero-btn {
    display: inline-block;
    padding: 10px 40px;
    border: 2px solid white;
    color: white;
    background: transparent;
    border-radius: 20px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .mioblack-hero-btn:hover {
    background: white;
    color: black;
  }
  
  @media (max-width: 600px) {
    .mioblack-logo {
      font-size: 2rem;
    }
  
    .mioblack-slide-content h2 {
      font-size: 1.2rem;
    }
  
    .mioblack-hero-btn {
      padding: 8px 16px;
      font-size: 0.9rem;
    }
  }
  

  .products-section {
    padding: 60px 20px;
    background: #ffffff;
    text-align: center;
  }
  
  .products-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .products-container h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .products-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
  }
  
  .products-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .products-logos img {
    max-height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
  }
  
  .products-logos img:hover {
    transform: scale(1.05);
  }
  
  @media (max-width: 600px) {
    .products-logos {
      gap: 20px;
    }
  
    .products-logos img {
      max-height: 60px;
    }
  }
  

  /* Base Styles */
body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
  }
  
  /* Section Wrapper */
  .services-section {
    padding: 80px 20px;
    background: #f8f9fb;
  }
  
  /* Container */
  .services-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  /* Titles */
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
  }
  
  /* Services Grid */
  .services-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
  
  /* Service Card */
  .service-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
  }
  
  /* Icons */
  .icon {
    font-size: 2.8rem;
    color: #000000;
    margin-bottom: 20px;
  }
  
  /* Headings & Paragraphs */
  .service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
  }
  
  .service-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  /* Read More Button */
  .read-more {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid #000000;
    border-radius: 20px;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .read-more:hover {
    background: #00d9ff;
    color: white;
  }
  




  

  .mission-section {
    min-height: 50vh;
    display: flex;
    align-items: center;
    background-color: #000000;
    padding: 60px 20px;
  }
  
  .mission-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
  
  .mission-text {
    flex: 1;
    min-width: 300px;
  }
  
  .mission-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffffff;
  }
  
  .mission-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 24px;
  }
  
  .mission-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffffff;
    color: #000000;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  
  .mission-btn:hover {
    background-color: #444;
  }
  
  .mission-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
  }
  
  .mission-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
  }
  


  .us-tech-section {
    background-color: #fff;
    padding: 4rem 2rem;
  }
  
  .us-tech-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
  }
  
  .us-tech-image img {
    max-width: 500px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .us-tech-content {
    max-width: 600px;
  }
  
  .us-tech-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #111;
  }
  
  .us-tech-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #333;
  }
  
  .us-tech-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s ease;
  }
  
  .us-tech-button:hover {
    background-color: #333;
  }
  
  @media (max-width: 768px) {
    .us-tech-container {
      flex-direction: column;
      text-align: center;
    }
  
    .us-tech-content h2 {
      font-size: 1.8rem;
    }
  
    .us-tech-button {
      margin-top: 1rem;
    }
  }
  






  .mioblack-stay-informed {
    background-color: white;
    padding: 4rem 2rem;
  }
  
  .stay-informed-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
  }
  
  .stay-informed-left {
    flex: 1 1 40%;
  }
  
  .stay-informed-left h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  .stay-informed-left p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .learn-more-btn {
    display: inline-block;
    padding: 10px 30px;
    background-color: black;
    color: white;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  
  .learn-more-btn:hover {
    background-color: #333;
  }
  
  .stay-informed-right {
    flex: 1 1 55%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .service-card {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-left: 5px solid #000;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  
  .service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .service-card p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .stay-informed-content {
      flex-direction: column;
    }
  
    .stay-informed-right {
      flex-direction: column;
    }
  }






.single-banner-section {
  background-color: #fff;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0;
  color: #fff;
}

.banner-container {
  display: flex;
  position: relative;
  max-width: 1650px;
  height: 720px;
  margin: auto;
  width: 100%;
  overflow: hidden;
}

.banner-slide {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 40px;
  transition: all 0.5s ease;
  box-sizing: border-box;
}

.banner-slide.active {
  display: flex;
}

#banner1 {
  background-color: #b89eff; /* light purple */
}

#banner2 {
  background-color: #a3d4ff; /* light blue */
}

.banner-text {
  flex: 1;
  min-width: 300px;
  padding-right: 30px;
}

.banner-text h2 {
  font-size: 36px;
  margin-bottom: 16px;
  color: #000;
}

.banner-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #000;
}

.explore-btn {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 12px 24px;
  border: none;
  margin-top: 20px;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.explore-btn:hover {
  background-color: #333;
}

.banner-image {
  flex: 1;
  text-align: center;
}

.banner-image img {
  max-height: 90%;
  max-width: 100%;
  object-fit: contain;
}

.banner-controls {
  margin-top: 20px;
  text-align: center;
}

.banner-controls button {
  background-color: #333;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin: 0 10px;
  cursor: pointer;
  font-size: 16px;
}

.banner-controls button:hover {
  background-color: #555;
}

@media (max-width: 1280px) {
  .banner-container {
    flex-direction: column;
    height: auto;
    max-width: 100%;
    padding: 0 16px;
  }

  .banner-slide {
    flex-direction: column;
    padding: 20px;
    height: auto;
  }

  .banner-text {
    padding-right: 0;
    text-align: center;
  }

  .banner-text h2 {
    font-size: 24px;
  }

  .banner-text p {
    font-size: 16px;
  }

  .explore-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .banner-image {
    margin-top: 20px;
  }

  .banner-image img {
    max-width: 100%;
    height: auto;
  }
}









  

  .mioblack-leadership {
    background-color: #000000;
    padding: 4rem 2rem;
  }
  
  .leadership-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
  }
  
  .leadership-image {
    flex: 1 1 45%;
  }
  
  .leadership-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .leadership-content {
    flex: 1 1 50%;
  }
  
  .leadership-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
  }
  
  .leadership-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.8rem;
    color: #ffffff;
  }
  
  .btn-leadership {
    display: inline-block;
    padding: 12px 36px;
    background-color: #53c5f6;
    color: white;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .btn-leadership:hover {
    background-color: #444;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .leadership-container {
      flex-direction: column;
    }
    
    .leadership-image, 
    .leadership-content {
      flex: 1 1 100%;
    }
    
    .leadership-image {
      margin-bottom: 2rem;
    }
  }
  



  /* Talk to Us Section */
  .talk-to-us {
    position: relative;
    color: #fff;
    padding: 5rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('images/portrait-engineer-job-site-work-hours.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
  }
  
  /* Add a dark overlay */
  .talk-to-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6); /* Adjust the opacity as needed */
    z-index: -1;
  }
  

.talk-container {
  background: linear-gradient(135deg, #222, #2c2c2c);
  padding: 3.5rem 7rem;
  max-width: 700px;
  width: 100%;
  text-align: center;
  border-radius: 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

/* Icon circle */
.icon-circle {
  background-color: #53c5f6;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

.icon-circle i {
  font-size: 2.2rem;
  color: white;
}

/* Title */
.talk-container h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #53c5f6;
}

/* Description */
.talk-container p {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  color: #ffffff;
  line-height: 1.6;
}

/* Button */
.talk-button {
  background-color: #53c5f6;
  color: #fff;
  padding: 1rem 2.8rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.talk-button:hover {
  background-color: #53c5f6;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 600px) {
  .talk-container {
    padding: 2.5rem 2rem;
  }

  .icon-circle {
    width: 60px;
    height: 60px;
  }

  .icon-circle i {
    font-size: 1.8rem;
  }

  .talk-container h2 {
    font-size: 1.8rem;
  }

  .talk-container p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .talk-button {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}










  

  .mioblack-footer {
    background-color: #000000;
    color: #eee;
    padding: 3rem 2rem 1rem;
    font-family: Arial, sans-serif;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.8rem;
    color: #fff;
  }
  
  .footer-about p {
    max-width: 300px;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .footer-links,
  .footer-services,
  .footer-contact {
    flex: 1 1 200px;
  }
  
  .footer-links h4,
  .footer-services h4,
  .footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #fff;
  }
  
  .footer-links ul,
  .footer-services ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li,
  .footer-services li {
    margin-bottom: 0.5rem;
  }
  
  .footer-links a,
  .footer-services a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover,
  .footer-services a:hover {
    color: #fff;
  }
  
  .footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
  
  .social-icons a {
    display: inline-block;
    margin-right: 10px;
    color: #ffffff;
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .social-icons a:hover {
    color: #fff;
    transform: scale(1.2);
  }
  
  .footer-contact p i {
    margin-right: 8px;
    color: #ffffff;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid #444;
    padding-top: 1rem;
    font-size: 0.85rem;
    color: #bbb;
  }
  
  /* --- Mobile Responsive Fix: Two columns on mobile --- */
  @media (max-width: 768px) {
    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem;
      text-align: left;
    }
  
    .footer-links,
    .footer-services {
      flex: 1 1 calc(50% - 1rem); /* Two per row */
      max-width: 45%;
    }
  
    .footer-contact {
      flex: 1 1 100%; /* Full width below */
      max-width: 100%;
    }
  
    .footer-about {
      text-align: center;
    }
  
    .footer-contact p {
      margin-bottom: 0.3rem;
    }
  
    .social-icons {
      text-align: left;
    }
  }
  