* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Baloo Chettan 2", sans-serif;
    line-height: 1.6;
    background: black;
  }
  
  .header {
    background: black;
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background 0.3s ease, padding 0.3s ease;
    padding: 20px 0;
  }
  
/* 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;
    }
  }
  


  .about-hero {
    background-image: url('images/portrait-engineer-job-site-work-hours.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    height: 100vh;
    color: white;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .about-hero .overlay {
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
  }
  
  .about-hero .content {
    position: relative;
    z-index: 1;
  }
  
  .about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .about-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
  }
  
  .about-hero .btn {
    background-color: #ff6600;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  
  .about-hero .btn:hover {
    background-color: #e65500;
  }
  


  .about-section {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
    color: #333;
  }
  
  .about-section .container {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .about-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  
  .about-section ul {
    list-style: disc inside;
    margin-bottom: 1.5rem;
  }
  
  .about-section li {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
  }

  
  .mission-section {
    padding: 4rem 2rem;
    background-color: #fff;
    color: #222;
  }
  
  .mission-section .container {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .mission-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .mission-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  
  .mission-section ul {
    list-style: disc inside;
    margin-bottom: 1.5rem;
  }
  
  .mission-section li {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
  }

  



  .why-us-section {
    padding: 4rem 2rem;
    background-color: #f4f4f4;
    color: #222;
  }
  
  .why-us-section .container {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .why-us-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .why-us-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
  }
  
  .why-us-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .feature {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  }
  
  .feature h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
  
  .feature p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .feature .icon {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 1rem;
    display: block;
  }
  



  .partner-section {
    padding: 4rem 2rem;
    background-color: #fff;
    color: #222;
    text-align: center;
  }
  
  .partner-section .container {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .partner-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .partner-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  
  .partner-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  
  .benefit {
    background: #f7f9fb;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  }
  
  .benefit .icon {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 1rem;
  }
  
  .partner-cta {
    margin-top: 2rem;
  }
  
  .partner-btn {
    background-color: #007bff;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  
  .partner-btn:hover {
    background-color: #0056b3;
  }
  


  
.contact-banner {
    margin-top: 80px;
    background: #0a0a0a;
    color: white;
    padding: 4rem 1rem;
    overflow-x: hidden; /* Prevent horizontal scroll */
  }
  
  .container {
    max-width: 1200px;
    margin: auto;
  }
  
  .content-wrapper {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    align-items: center;
  }
  
  .contact-form {
    flex: 0 0 50%;
    background: #1e1e1e;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  }
  
  .contact-form h2 {
    margin-bottom: 1.5rem;
  }
  
  .contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1.2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    background: #333;
    color: white;
  }
  
  .contact-form textarea {
    resize: vertical;
    min-height: 150px;
  }
  
  .contact-form button {
    background: #007bff;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
  }
  
  .contact-form button:hover {
    background: #0056b3;
  }
  
  .map-container {
    flex: 0 0 50%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.7);
    height: 500px;
  }
  
  .map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }
  
  /* Responsive layout */
  @media (max-width: 900px) {
    .content-wrapper {
      flex-direction: column;
    }
  
    .contact-form,
    .map-container {
      width: 100%;
      flex: 1 1 100%;
    }
  
    .map-container {
      height: 500px; /* Larger height for better visibility */
      margin-top: 2rem;
    }
  }
  
  
  
  
  
  .holding-section {
  background-color: #000;
  color: #fff;
  padding: 40px 20px;
  font-family: sans-serif;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.tab {
  padding: 10px 16px;
  border: none;
  background: #222;
  color: #fff;
  cursor: pointer;
  border-radius: 20px;
  font-weight: bold;
}

.tab.active {
  background: #444;
}








.projects {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 16px;
}

.card {
  border-radius: 8px;
  overflow: hidden;
  background-color: #111;
  max-width: 100%;
  height: 320px;
  position: relative;
}

.card-image {
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.card-content {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  width: 100%;
  padding: 12px 16px;
  text-align: left;
}

.card-content h3 {
  margin: 0;
  font-size: 18px;
}

.card-content p {
  margin: 4px 0;
  font-size: 14px;
}

.card-content a {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 16px;
  background-color: #4fa3ff;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 20px;
  font-size: 14px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.card-content a:hover {
  background-color: #1f8fff;
  transform: translateY(-2px);
}

  
  
  
  
  
  .why-products {
  background-color: #000;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.why-products h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.reason {
  background-color: #111;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
}

.reason i {
  font-size: 36px;
  color: #4fa3ff;
  margin-bottom: 16px;
}

.reason h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.reason p {
  font-size: 14px;
  line-height: 1.6;
}

  
  
  
  
  .future-section {
  background-color: #000;
  color: #fff;
  padding: 60px 20px;
}

.future-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.future-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
}

.future-content {
  max-width: 600px;
  text-align: left;
}

.future-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.future-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.join-btn {
  display: inline-block;
  background-color: #4fa3ff;
  color: #000;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 25px;
  transition: background-color 0.3s ease;
}

.join-btn:hover {
  background-color: #1f8fff;
}

/* Responsive layout for larger screens */
@media (min-width: 768px) {
  .future-container {
    flex-direction: row;
    justify-content: space-between;
  }

  .future-content {
    text-align: left;
  }
}





.welcome-support-section {
  background-color: #0a0a0a;
  color: #fff;
  padding: 60px 20px;
}

.welcome-support-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.welcome-image {
  flex: 1;
  min-width: 280px;
}

.welcome-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.welcome-text {
  flex: 1;
  min-width: 280px;
}

.welcome-text h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.welcome-text p {
  font-size: 16px;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
  .welcome-support-container {
    flex-direction: column;
    text-align: center;
  }

  .welcome-text h2 {
    font-size: 28px;
  }
}










.support-section {
  background-color: #0a0a0a;
  color: #fff;
  padding: 60px 20px;
}

.support-container {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.support-container h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.support-container p {
  font-size: 16px;
  margin-bottom: 30px;
}

.support-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border-radius: 6px;
  border: none;
  background-color: #1a1a1a;
  color: #fff;
  font-size: 15px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb;
}

.support-btn {
  align-self: flex-start;
  background-color: #4fa3ff;
  color: #000;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.support-btn:hover {
  background-color: #1f8fff;
}











.partner-cta-section {
  background-color: #0a0a0a;
  color: #fff;
  padding: 60px 20px;
}

.partner-cta-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.partner-cta-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
}

.partner-cta-content {
  flex: 1;
  min-width: 280px;
  max-width: 600px;
}

.partner-cta-content h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.partner-cta-content p {
  font-size: 16px;
  margin-bottom: 24px;
}

.partner-btn {
  background-color: #4fa3ff;
  color: #000;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.partner-btn:hover {
  background-color: #1f8fff;
}










.partnership-section {
  background-color: #0a0a0a;
  color: #fff;
  padding: 60px 20px;
}

.partnership-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.partnership-container h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.partnership-container p {
  font-size: 16px;
  margin-bottom: 30px;
}

.partnership-form .form-group {
  text-align: left;
  margin-bottom: 20px;
}

.partnership-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.partnership-form input,
.partnership-form select,
.partnership-form textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background-color: #222;
  color: #fff;
}

.partnership-form input::placeholder,
.partnership-form textarea::placeholder {
  color: #aaa;
}

.submit-btn {
  background-color: #4fa3ff;
  color: #000;
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #1f8fff;
}








.mio-students-section {
  background-color: #0a0a0a;
  color: #fff;
  padding: 60px 20px;
}

.mio-students-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.mio-students-text {
  flex: 1 1 500px;
}

.mio-students-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.mio-students-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.apply-btn {
  display: inline-block;
  background-color: #4fa3ff;
  color: #000;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.apply-btn:hover {
  background-color: #1f8fff;
}

.mio-students-image {
  flex: 1 1 400px;
  text-align: center;
}

.mio-students-image img {
  max-width: 100%;
  border-radius: 8px;
  object-fit: cover;
}





.internship-section {
  background-color: #000;
  color: #fff;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.internship-content {
  max-width: 700px;
  width: 100%;
}

.internship-content h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.internship-content p {
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.internship-form .form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.internship-form label {
  margin-bottom: 8px;
  font-weight: 600;
}

.internship-form input,
.internship-form select,
.internship-form textarea {
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  background-color: #1a1a1a;
  color: #fff;
}

.internship-form input:focus,
.internship-form select:focus,
.internship-form textarea:focus {
  outline: 2px solid #4fa3ff;
}

.submit-btn {
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  background-color: #4fa3ff;
  color: #000;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #1f8fff;
}



.support-options-section {
  background-color: #0a0a0a;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.support-options-title {
  font-size: 32px;
  margin-bottom: 40px;
}

.support-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: auto;
}

.support-card {
  background-color: #111;
  padding: 24px;
  border-radius: 12px;
  transition: background-color 0.3s ease;
}

.support-card i {
  font-size: 32px;
  margin-bottom: 16px;
  color: #4fa3ff;
}

.support-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.support-card p {
  font-size: 14px;
  line-height: 1.5;
}

.support-card:hover {
  background-color: #1a1a1a;
}





  .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;
    }
  }