/* Basic Reset */
:root {
  --dark-bg: white;
  --text-color: #000;
  --accent-color: #f7a01d;
  --light-gray: #ccc;
  /* --font-family: Arial, sans-serif; */
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* ==== Reset ==== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  background-color: var(--dark-bg);
  color: var(--text-color);
  line-height: 1.6;
}
a {
    color: var(--text-color);
    text-decoration: none;
}
ul {
    list-style: none;
}
/* ==== Navbar ==== */
.navbar {
   display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: absolute; /* Allows hero content to span full height */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10; /* Ensures it sits above other content */
    box-sizing: border-box;
    background-color: #000;
}


.logo {
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  color:orange;
  /*text-transform: uppercase; */
  display: inline-block;  
  position: relative;
}

.logo span {
  color: #ebdb04;
}

/* .logo::after {
  content: '';
  width: 0%;
  height: 3px;
  background-color: orange;
  transition: width 0.3s ease;
  position: absolute;
  bottom: -5px;
  left: 0;
} */

.logo:hover::after {
  width: 100%;
}
.highlighted {
  background-color: orange;
  color: black;
}

.main-menu ul {
     display: flex;
    gap: 80px; /* adjust spacing between links */
     }

 .main-menu li {
  margin-left: 0;    /* remove unnecessary extra spacing */
  padding-bottom: 55px; /* remove big bottom padding */
  }
    .main-menu a {
      font-size: 1.1rem;
      color: orange;
      position: relative;
      padding-bottom: 5px;
      transition: all 0.3s ease;
    }

    .main-menu a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      left: 0;
      bottom: 0;
      background-color: orange;
      transition: width 0.3s ease;
    }

    .main-menu a:hover::after {
      width: 100%;
    }

    .menu-toggle {
      display: none;
      font-size: 2rem;
      color: var(--accent-color);
      cursor: pointer;
    }

   @media (max-width: 768px) {
      .main-heading { font-size: 2.5rem; }
      .sub-text { font-size: 1.1rem; color: #f4e61b; }

      .menu-toggle { display: block; padding-bottom: 10px; }

      .main-menu {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 50%;
        height: 100vh;
        background-color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
      }

      .main-menu.active { right: 0; }

      .main-menu ul {
        flex-direction: column;
        gap: 30px;
        font-size:small;
      }

      .main-menu a { color: var(--accent-color); font-size: 1.1rem; }
    }

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 20px;
  /* background: linear-gradient(135deg, #0a1b24, #0d2125); */
  color: white;
  padding-top: 150px;
  background-color: #000;
}

.hero .btn {
  margin-top: 20px;
  background: #fff;
  color: #0077b6;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.hero .btn:hover {
  background: #023e8a;
  color: #fff;
}



/* Internship Section */
.internships {
  padding: 60px 40px;
  background: #fff;
}

.internship-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 100px;
}

.internship-card {
  background: #f1f1f1;
  border-radius: 12px;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
  transition: 0.3s;
}

.internship-card:hover {
  transform: translateY(-8px);
}

.internship-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.section-title {
  position: relative;
  display: inline-block;
  font-size: 32px;
  font-weight: 600;
  color: orange; /* Same purple shade */
  margin-bottom: 30px;
  text-align: center;
  
}
#internships {
  text-align: center;
}

.section-title::before,
.section-title::after {
  content: "";
  position: absolute;
  border: 2px solid orange;
  width: 20px;
  height: 20px;
}

.section-title::before {
  top: -8px;
  left: -18px;
  border-right: none;
  border-bottom: none;
  border-radius: 2px;
}

.section-title::after {
  bottom: -8px;
  right: -18px;
  border-left: none;
  border-top: none;
  border-radius: 2px;
}


.apply-btn {
  background:orange;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 15px 0;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.apply-btn:hover {
 background: #023e8a; 

}

/* Certificates Section */
.certificates {
  text-align: center;
  background: #e9f7f9;
  padding: 60px 20px;
}

.certificate-img {
  margin-top: 20px;
  width: 60%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Projects Section */
.projects {
  padding: 60px 40px;
  text-align: center;
}

.project-gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.project-gallery img {
  width: 280px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: 0.3s;
}

.project-gallery img:hover {
  transform: scale(1.05);
}

/* Footer */
  footer { 
      border-top: 1px solid #eef2f7;
       padding: 20px 5%;
       text-align: center; 
       color: var(--muted); 
      color: #0b0b0b;
      background-color: white;
      }

