@font-face {
  font-family: 'custom';
  src: url(./NeueMachina-Regular.otf) format('opentype');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #000000;
  color: #ffffff;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
}

section {
  width: 100%;
  position: relative;
}

/* Sticky Navbar */
/* nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #0a0a0a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 60px;
  border-bottom: 1px solid #1f1f1f;
} */

nav h1 {
  font-size: 40px;
  display: flex;
  align-items: center;
  color: #ffffff;
  font-family: 'custom', sans-serif;
}

nav h1 i {
  transform: rotate(45deg);
  padding: 0 5px;
}

.part2 {
  display: flex;
  align-items: center;
  gap: 40px;
}

.part2 h4 {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  cursor: pointer;
  transition: color 0.3s;
}

.part2 h4:hover {
  color: #60a5fa;
}

/* Modern styled navbar button */
.part2 button {
  padding: 10px 24px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.part2 button:hover {
  text-decoration: none;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Hero section */
.center {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 70px 100px;
  flex-wrap: wrap;
  gap: 40px;
}

.center-part1 {
  flex: 1;
  min-width: 300px;
}

.center-part1 h1 {
  font-family: 'custom';
  font-size: 60px;
  line-height: 1.2;
  color: #ffffff;
}

.center-part1 p {
  margin: 30px 0;
  font-size: 18px;
  color: #cbd5e1;
}

.center-part1 button {
  padding: 16px 32px;
  background-color: #3b82f6;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
}

.center-part1 button:hover {
  background-color: #2563eb;
}

.center-part2 {
  flex: 1;
  text-align: center;
}

.center-part2 img {
  max-width: 100%;
  height: auto;
}

/* Section Titles */
.section-title {
  font-family: 'custom';
  font-weight: 600;
  color: #60a5fa;
  text-align: center;
  margin-bottom: 2rem;
}

/* Tech tags */
.tech-tags span {
  background: #1f2937;
  color: #60a5fa;
  padding: 6px 14px;
  border-radius: 20px;
  margin: 5px;
  display: inline-block;
  font-weight: 500;
}

/* Internship Card */
.intern-card {
  background: #1f2937;
  border-left: 5px solid #60a5fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* Form Styling */
.contact-form input,
.contact-form textarea,
.contact-form select {
  border-radius: 10px;
  border: 1px solid #374151;
  background-color: #111827;
  color: #e2e8f0;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9ca3af;
}

/* Buttons */
.btn-primary {
  background-color: #3b82f6;
  border: none;
}

.btn-primary:hover {
  background-color: #2563eb;
}

/* Changed Contact Us submit button to blue theme */
.btn-success {
  background-color: #3b82f6;
  border: none;
}

.btn-success:hover {
  background-color: #2563eb;
}

/* Footer */
footer {
  background: #111827;
  color: white;
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid #222;
}

footer a {
  color: #60a5fa;
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover {
  text-decoration: underline;
}
*{
  color: white !important;
}
a{
  text-decoration: none;
}






    nav {
      position: sticky;
      top: 0;
      background-color: #000;
      padding: 15px 20px;
      z-index: 1000;
    }

    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    nav h1 {
      font-size: 24px;
      color: white;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 2rem;
    }

    .nav-links {
      display: flex;
      gap: 20px;
      align-items: center;
    }

    .nav-links a {
      color: white;
      text-decoration: none;
      font-size: 16px;
    }

    .nav-links button {
      background-color: #007bff;
      color: white;
      padding: 8px 14px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }

    .hamburger {
      display: none;
      font-size: 28px;
      color: white;
      cursor: pointer;
    }

    /* Responsive behavior */
    @media (max-width: 900px) {
      .nav-links {
        display: none;
        flex-direction: column;
        background-color: #111;
        width: 100%;
        padding: 10px 0;
        position: absolute;
        top: 60px;
        left: 0;
      }

      .nav-links a,
      .nav-links button {
        margin: 10px 20px;
      }

      .hamburger {
        display: block;
      }

      .nav-links.show {
        display: flex;
      }
    }
    /* Toggle menu: Show nav-links when .active is added */
    .active {
      display: flex !important;
      flex-direction: column;
      background-color: #111;
      width: 100%;
      padding: 10px 0;
      position: absolute;
      top: 60px;
      left: 0;
      z-index: 1001;
    }
    .contact-form input,
    .contact-form textarea,
    .studentForm input,
    .studentForm textarea {
      color: #fff !important;
    }

    .contact-form input:focus,
    .contact-form textarea:focus,
    .studentForm input:focus,
    .studentForm textarea:focus {
      color: #000 !important;
    }