/* Reset & Basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #222;
  background: #f9fafb;
  scroll-behavior: smooth;
}
a {
  color: #015f8a;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #0077b6;
}
 .logo {
      font-weight: 700;
      font-size: 1.5rem;
      color: #015f8a;
    }
/* Navbar */
  nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: white;
      color: #015f8a;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      z-index: 1000;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    .logo {
      font-weight: 700;
      font-size: 1.5rem;
      color: #015f8a;
    }
    nav ul {
      display: flex;
      list-style: none;
      gap: 1.5rem;
    }
    nav ul li a {
      font-weight: 600;
      color: #015f8a;
      padding: 0.4rem 0.8rem;
      border-radius: 5px;
      text-decoration: none;
    }
    nav ul li a.active,
    nav ul li a:hover {
      background-color: #d0e7f7;
      color: #0077b6;
    }
    /*-----------------------------------------------------------------------------------------------------------------*/
    
    /* Hamburger Icon */
    .menu-toggle {
      display: none;
      font-size: 24px;
      cursor: pointer;
    }
    .menu-toggle::before {
      content: "\f0c9"; /* FontAwesome hamburger */
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      font-size: 24px;
      color: #015f8a;
    }

    /* Mobile */
    @media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background: white;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }

  nav.active ul {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/*--------------------------------------------------------------------------------------------------------------------*/

nav .logo {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: #015f8a;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
nav ul li a {
  font-weight: 600;
  font-size: 1rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  color: #015f8a;
}
nav ul li a.active,
nav ul li a:hover {
  background-color: #d0e7f7;
  color: #0077b6;
}
nav.open ul {
  background: white;
  border-radius: 0 0 0 10px;
}
#home {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: #e0e0e0;
text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  box-sizing: border-box;
}

#bg-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.75); /* Optional: makes text more readable */
}

.overlay-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: #e0e0e0;
text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);

}
.overlay-content h1 {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.overlay-content p {
  color: #f0f0f0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.overlay-content h1 {
  animation: fadeUp 1s ease-out forwards;
}
.overlay-content {
  backdrop-filter: blur(4px);
  background-color: rgba(0, 0, 0, 0.2); /* barely-there black tint */
  padding: 1.5rem;
  border-radius: 12px;
}


.glow-hover {
  font-size: 2.5rem;
  text-shadow: 0 0 10px rgba(208, 207, 216, 0.6);
}

.btn {
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  /* background-color: rgba(24, 19, 55, 0.9);
  color: #fff; */
  color: #007BFF; /* or your Prism brand blue */
background: #ffffff;

  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn:hover {
  background-color: rgba(24, 19, 55, 1);
}

/* Hero Section */
header {
  min-height: 100vh;
  background: 
    /* linear-gradient(rgba(24, 19, 55, 0.6), rgba(255, 255, 255, 0.2)), */
     /* linear-gradient(to bottom, rgba(40, 30, 60, 0.7), rgba(255, 255, 255, 0.15)); */
      /* linear-gradient(to bottom, rgba(15, 23, 42, 0.8), rgba(255, 255, 255, 0.1)); */
 linear-gradient(to bottom, rgba(24, 19, 55, 0.6), rgba(255, 255, 255, 0.1));


    url('87593-602317653_small.mp4') 
    no-repeat center center/cover;
  color: rgb(30, 30, 30);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  padding-top: 4rem;
}
/* .fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, rgba(230, 216, 216, 0), #dfdbdb); /* or #fff if your section is pure white */
  z-index: 2; /* make sure it's above the video but below text */
} */
#home::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #f4f4f4); /* match your next section's bg */
  z-index: 3;
  pointer-events: none;
}

header h1 {
  font-size: 3rem;
  max-width: 700px;
  margin-bottom: 1rem;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}
header p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  max-width: 600px;
  opacity: 0.85;
  font-weight: 500;
}
header .btn {
  background: white;
  color: #0077b6;
  font-weight: 700;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
}
header .btn:hover {
  background: #0077b6;
  color: white;
}
header .msme {
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.8;
  letter-spacing: 1px;
  font-style: italic;
}

/* Sections */
section {
  padding: 4rem 1rem;
  max-width: 900px;
  margin: 0 auto 3rem auto;
}
section h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #015f8a;
  text-align: center;
  font-weight: 800;
}
section p, section ul {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
section ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-top: 1rem;
}
section ul li {
  margin-bottom: 0.8rem;
}

/* Grids */
.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media(min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin: 0 auto;
  }
}
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media(min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card Styles */
.card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  cursor: default;
}
.card:hover {
  box-shadow: 0 6px 16px rgb(169, 123, 213);
}
.card h3 {
  color: #0077b6;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

/* FAQ Section */
/* .faq-question {
  cursor: pointer;
  position: relative;
  padding-right: 25px;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-weight: bold;
  transition: 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: "-";
}

.answer {
  display: none;
  padding-top: 8px;
  color: #444;
}

.faq-item.active .answer {
  display: block;
} */


/* Contact Form */
form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
input, textarea {
  padding: 0.9rem 1rem;
  border: 1.5px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  resize: vertical;
}
button {
  background: #0077b6;
  color: white;
  font-weight: 600;
  border: none;
  padding: 0.9rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
button:hover {
  background: #005f99;
}

/* Icon Boxes */
.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  font-size: 1.5rem;
  background-color: #ccc;
}
.icon-box i {
  font-size: 1.5rem;
  color: white;
}
.custom-bg-blue   { background-color: #007bff !important; }
.custom-bg-purple { background-color: #6f42c1 !important; }
.custom-bg-green  { background-color: #28a745 !important; }
.custom-bg-teal   { background-color: #20c997 !important; }

/* Responsive Tweaks */
@media (max-width: 768px) {
  .grid-3,
  .grid-2x2 {
    grid-template-columns: repeat(2, 1fr);
  }

  header h1 {
    font-size: 2.2rem;
    padding: 0 1rem;
  }

  header p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  header .btn {
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
  }

  section h2 {
    font-size: 1.8rem;
  }

  .card {
    padding: 1.2rem;
  }

  form {
    padding: 0 1rem;
  }

  input, textarea {
    font-size: 0.95rem;
    padding: 0.7rem 0.9rem;
  }

  button {
    font-size: 1rem;
    padding: 0.8rem;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  nav ul li a {
    font-size: 1rem;
  }

  section {
    padding: 2.5rem 1rem;
  }

  body {
    padding: 0;
  }
}

.glow-hover {
  color: rgb(24, 19, 55);
  /*background-color: #111;*/
  padding: 10px 20px;
  border-radius: 10px;
  transition: all 1.0s ease-in-out;
}

.glow-hover:hover {
 /*color: rgb(33, 42, 42);
   box-shadow:
    0 0 10px rgb(13, 14, 14),
    0 0 20px rgb(14, 14, 14),
    0 0 40px rgb(11, 11, 11),
    0 0 60px rgb(4, 4, 4); */
  /* text-shadow:
    0 0 5px rgb(42, 22, 200),
    0 0 10px rgb(121, 9, 9);
  cursor: pointer; */
  transform: scale(1.055); 
}



.internship-section {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap; /* stays in one row unless screen too small */
  gap: 30px;
  padding: 40px;  
  max-width: 1200px;
  margin: auto;
}

.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 20px;
  width: 350px; /* consistent size for alignment */
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
<style>
  .internship-section {
    padding-top: 20px; /* reduce top padding */
    padding-bottom: 20px; /* reduce bottom padding */
    margin-top: 0; /* ensure no margin above */
    margin-bottom: 0; /* ensure no margin below */
  }
</style>






/*----------------------------------------------------------------------------------------------------------------------------------*/
/* Responsive Navbar */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background: #1a2639;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    text-align: center;
  }

  .menu-toggle {
    display: block;
    background: url('menu-icon.png') center center no-repeat;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }

  nav.active ul {
    display: flex;
  }
}

/* Responsive Grids */
@media (max-width: 768px) {
  .grid-3, .grid-4 {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .card {
    width: 90%;
    margin: auto;
  }

  header h1 {
    font-size: 1.5rem;
    padding: 0 15px;
  }

  header p {
    font-size: 1rem;
    padding: 0 15px;
  }

  .btn, .view-all-btn {
    font-size: 1rem;
    padding: 10px 20px;
    display: inline-block;
  }
}

/* Footer Columns Stack */
@media (max-width: 768px) {
  footer > div {
    flex-direction: column !important;
    gap: 20px;
  }
}


.menu-toggle::before {
  content: "\f0c9"; /* FontAwesome bars */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 24px;
  color: white;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: #1a2639;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1001;
}

.menu-toggle::before {
  content: "\f0c9"; /* FontAwesome hamburger */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

/* Mobile nav styles */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background: white;
    z-index: 1000;
    text-align: center;
    padding: 20px 0;
  }

  #navbar.active ul {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}








