* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background: #fff;
    color: #111;
    margin-top: 3%;
  }
  
  @media (max-width: 600px) {
    body {
      margin-top: 19%;
    }
  }
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
  
    background:black;
    /* backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); */
     /* mix-blend-mode: difference;  */
    color: white;
  }
  
  
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-links a {
    color: #fff;
    text-decoration: none;
  }
  
  .nav-links a:hover {
    text-decoration: underline;
  }
  .logo-img-absolute {
    position: fixed;
    top: 1.2rem; /* Default for laptop */
    left: 1rem;
    z-index: 1001;
    pointer-events: none;
  }
  
  @media (max-width: 600px) {
    .logo-img-absolute {
      top: 0.7rem; /* Override for mobile */
    }
  }
  
  
  .logo-img-absolute img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    mix-blend-mode: normal;
    isolation: isolate;
  }
  
  /* Reserve space so text doesn’t clash with logo visually */
  .logo-text-container {
    margin-left: 50px;
  }
  
  .logo-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: inherit;
  }
  .menu-icon {
    display: none;
    font-size: 1.8rem;
    margin-left: auto;
    cursor: pointer;
  }
  
  .menu-toggle,
  .close-icon {
    display: none;
  }
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }
  
    .close-icon {
      display: block;
      font-size: 1.8rem;
      text-align: right;
      padding: 0.5rem 1rem;
      cursor: pointer;
      color: white;
    }
  }
  
  .placement-banner {
    background: linear-gradient(to right, #000, #003a34);
    color: white;
    padding: 40px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 85% 75%, 70% 70%, 50% 75%, 30% 70%, 15% 75%, 0 70%);
  }
  
  .placement-banner h2 {
    font-size: 24px;
    border-left: 3px solid #e92063;
    padding-left: 10px;
    margin-left: 10px;
    color: #fff;
  }
  
  .placement-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 40px;
    background: #fff;
  }
  
  .left {
    flex: 1;
    min-width: 300px;
  }
  
  .left img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
  }
  
  .right {
    flex: 2;
    min-width: 300px;
  }
  
  .right h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .right p {
    margin-bottom: 15px;
    line-height: 1.6;
  }
  
  /* Career Cards */
  .career-section {
    padding: 40px;
    text-align: center;
  }
  
  .career-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
  
  .card {
    border: 2px solid #e92063;
    padding: 15px;
    border-radius: 12px;
    background: #fff;
    text-align: center;
    transition: transform 0.3s;
  }
  
  .card:hover {
    transform: scale(1.03);
  }
  
  .card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .card p {
    margin-top: 10px;
    font-size: 14px;
  }
  
     /* Social Sidebar */
     .social-sidebar {
        position: fixed;
        top: 35%;
        right: 0;
        background: rgba(136, 136, 136, 0.95);
        padding: 10px 5px;
        border-radius: 10px 0 0 10px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 1000;
        transition: right 0.3s ease, left 0.3s ease;
      }
      /* When moved to the left */
.social-sidebar.move-left {
    right: auto;
    left: 0;
    border-radius: 0 10px 10px 0;
  }
      
  .social-sidebar .icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .social-sidebar .icon img {
    width: 20px;
    height: 20px;
  }
  
  /* Brand colors */
  .icon.facebook { background-color: #3b5998; }
  .icon.twitter { background-color: #000; } /* X (Twitter) */
  .icon.linkedin { background-color: #0077b5; }
  .icon.instagram { background-color: #e1306c; }
  .icon.phone { background-color: #3fa9f5; }
  .icon.whatsapp { background-color: #25d366; }
  .icon.google { background-color: #4285f4; }
  



/* =============================
   Footer
============================= */
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}










/* =============================
   Responsive Design
============================= */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text,
  .hero-image {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text h5 {
    font-size: 1.1rem;
  }

  .hero-text h6 {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .navbar {
    flex-direction: row;
    justify-content: space-between;
  }

  .nav-links {
    position: absolute;
    top: 100%; /* Right below navbar */
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem;
    display: none;
    flex-direction: column;
    width: max-content;
    border-radius: 0 0 10px 10px;
  }


  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    padding: 0.5rem 1rem;
    text-align: left;
  }

  .nav-links a {
    display: block;
    color: white;
    text-decoration: none;
  }

  .nav-links a:hover {
    text-decoration: underline;
  }

  

  .hero-text h1 {
    font-size: 2rem;
  }

  .service-box {
    flex-direction: column;
    align-items: center;
  }

  .portfolio-gallery {
    grid-template-columns: 1fr;
  }

  .scroll-btn {
    display: none;
  }

  .job-card {
    flex: 0 0 80%;
    max-width: none;
  }
}

/* ✅ Fix: Show nav-links again for wider screens */
@media (min-width: 769px) {
  .nav-links {
    display: flex !important;
    flex-direction: row !important;
    gap: 1.5rem;
  }

  .nav-links li {
    display: block;
  }

  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
  }

  .mobile-menu,
  .menu-icon {
    display: none !important;
  }
}

/* =============================
   Mobile Slide Menu
============================= */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 100%;
  width: 75%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  mix-blend-mode: difference;
    z-index: 9999;
  padding: 2rem 1rem;
  transition: left 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  left: 0;
}

.close-icon {
  font-size: 2rem;
  cursor: pointer;
  margin-bottom: 1.5rem;
  align-self: flex-end;
}

.nav-links-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nav-links-list a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
}

.nav-links-list a:hover {
  text-decoration: underline;
}



@media (max-width: 768px) {
  .scroll-btn {
    display: none;
  }

  .job-card {
    flex: 0 0 80%;
    max-width: none;
  }
}






















  