@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Ubuntu:wght@400;500;700&family=Rubik:wght@300;400;500;600&display=swap');


    .sitename {
      font-family: 'Arial Black', sans-serif;
      text-transform: uppercase;
      background: linear-gradient(90deg, #00a19e, #007f7d, #00c2be);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      padding: 15px 25px;
      display: inline-block;
      cursor: pointer;
    }

.hero {
  position: relative;
  top:75px;
  height: 40vh;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.section-badge {
  color: #0d6efd;
  font-weight: 600;
}

.overlay-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.9);
  border-radius: 10px;
  padding: 15px 20px;
  max-width: 300px;
}
section ul {
  list-style: none;         /* Removes the default bullet points */
  padding-left: 0;          /* Removes extra left space */
  margin: 0;
}

section ul li {
  margin-bottom: 10px;      /* Adds neat spacing between items */
  display: flex;
  align-items: center;
}

section ul li i {
  color: #00a19e;           /* Your brand color */
  margin-right: 10px;       /* Space between icon and text */
  font-size: 1.1rem;
}


/* Global font */
#internshipModal {
  font-family: 'Poppins', sans-serif;
}

/* Input & Textarea design (compact size) */
#internshipModal input,
#internshipModal textarea {
  border: 1px solid #d1d1d1;
  border-radius: 6px;
  padding: 6px 10px;        /* reduced height */
  font-size: 14px;          /* slightly smaller font */
  font-family: 'Poppins', sans-serif;
  background: #fafafa;
  transition: all 0.3s ease;
}

/* On focus effect */
#internshipModal input:focus,
#internshipModal textarea:focus {
  border-color: #00a19e;
  box-shadow: 0 0 0 0.15rem rgba(0, 161, 158, 0.25);
  background: #fff;
}

/* Label styling */
#internshipModal label {
  font-weight: 600;
  font-size: 13px;         /* slightly smaller label */
  color: #333;
  font-family: 'Poppins', sans-serif;
}

