html, body {
  margin: 0;
  padding: 0;
}

nav {
  display: flex;
  padding: 1% 4%;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  z-index: 1000;
  margin: 0;   /* ✅ Remove any accidental spacing */
  top: 0;      /* ✅ Ensures no gap */
}


nav img {
  width: 120px;
}
.nav-links {
  flex: 1;
  text-align: right;
}
.nav-links ul li {
  list-style-type: none;
  display: inline-block;
  padding: 6px 10px;
}
.nav-links ul li a {
  color: black;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}
.nav-links ul li::after {
  content: "";
  width: 0%;
  height: 2px;
  background: #f44336;
  display: block;
  margin: auto;
  transition: 0.5s;
}
.nav-links ul li:hover::after {
  width: 100%;
}
nav .fas {
  display: none;
}

/* Apply Now Button Style */
.apply-btn {
  background: #f44336;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: bold;
  transition: 0.3s ease;
}
.apply-btn:hover {
  background: #d32f2f;
}

@media (max-width: 768px) {
  nav {
    padding: 0.5rem;
  }
  nav img {
    width: 80px;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 280px;
    background: linear-gradient(45deg, #f44336, #d32f2f);
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.4s ease;
    z-index: 950;
    padding-top: 3rem;
    display: flex;
    flex-direction: column;
  }
  .nav-links.active {
    transform: translateX(0);
    opacity: 1;
  }
  .nav-links ul {
    display: flex;
    text-align: left;
    flex-direction: column;
    list-style: none;
    padding: 0 1.5rem;
    margin: 0;
    width: 100%;
  }
  .nav-links ul li {
    padding: 1rem 1.5rem;
    justify-self: left;
  }
  .nav-links ul li a {
    font-size: 16px;
    color: #fff;
  }
  nav .fas {
    display: block;
    color: #f44336;
    font-size: 22px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  nav .fas:hover {
    transform: rotate(90deg);
  }

  /* Mobile Apply Button */
  .apply-btn {
    display: inline-block;
    margin-top: 10px;
    text-align: center;
  }
}
.hiring-section {
  color: #000000;
  text-align: center;
  padding: 60px 20px;
  margin-top: 80px;
}

.hiring-section h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.hiring-section p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 25px auto;
  line-height: 1.6;
}

.hiring-cta .apply-now-btn {
  background: #fff;
  color: #d32f2f;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: 0.3s ease;
}

.hiring-cta .apply-now-btn:hover {
  background: #ffe5e5;
  color: #b71c1c;
}

/* Mobile */
@media (max-width: 768px) {
  .hiring-section {
    padding: 40px 15px;
  }
  .hiring-section h2 {
    font-size: 2rem;
  }
  .hiring-section p {
    font-size: 1rem;
  }
}


      /* Footer Styles */
      .isha-footer {
        background-color: #1a1a1a;
        color: #eee;
        padding: 40px 20px 20px;
        font-family: "Segoe UI", sans-serif;
      }
      .footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 1200px;
        margin: auto;
      }
      .footer-column {
        flex: 1 1 220px;
        margin: 15px;
      }
      .footer-column h4 {
        margin-bottom: 15px;
        color: #fff;
      }
      #footer-brand {
        margin-bottom: 4rem;
      }
      .footer-column p,
      .footer-column a {
        font-size: 14px;
        line-height: 1.8;
        color: #ccc;
        text-decoration: none;
      }
      .footer-column a:hover {
        color: #f44336;
      }
      .footer-column img {
        height: 2rem;
        width: 2rem;
      }
      .footer-column span {
        margin: auto;
        font-size: 1.8rem;
      }
      .footer-logo {
        margin-top: 10px;
        width: 12rem;
        height: 100rem;
      }
      .footer-links {
        list-style: none;
        padding: 0;
      }
      .footer-links li {
        margin-bottom: 8px;
      }
      .social-icons a {
        margin-right: 10px;
        font-size: 18px;
        color: #ccc;
      }
      .social-icons a:hover {
        color: #f44336;
      }
      .footer-bottom {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid #444;
        color: #aaa;
        font-size: 13px;
      }

      /* WhatsApp Floating Button */
      .whatsapp-float {
        position: fixed;
        bottom: 16px;
        right: 16px;
        display: flex;
        align-items: center;
        background-color: #25d366;
        padding: 8px;
        border-radius: 50px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s;
        z-index: 900;
      }
      .whatsapp-float:hover {
        transform: scale(1.1);
      }
      .whatsapp-float img {
        width: 32px;
        height: 32px;
        margin-right: 8px;
      }
      .whatsapp-float .whatsapp-text {
        color: white;
        font-weight: 500;
        font-size: 12px;
      }
      @media (min-width: 640px) {
        .whatsapp-float {
          padding: 10px;
        }
        .whatsapp-float img {
          width: 40px;
          height: 40px;
          margin-right: 10px;
        }
        .whatsapp-float .whatsapp-text {
          font-size: 14px;
        }
      }

      /* Ensure content doesn’t overlap fixed nav */
      body {
        padding-top: 60px;
      }
      @media (max-width: 768px) {
        body {
          padding-top: 48px;
        }
      }