@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');

    <style>

    .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;
}
/* Section spacing */
#industries {
  padding: 40px 0;
}

/* Heading styles */
#industries .fancy-head h5 {
  font-size: 16px;
  font-weight: 600;
  color: #00a19e;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#industries .fancy-head h1 {
  font-size: 32px;
  font-weight: 700;
  color: #0b2252;
}

/* Industries grid item */
.Industries-row {
  text-align: center;
  padding: 10px 5px;       /* Reduced padding */
  margin-bottom: 15px;     /* Less space between rows */
  transition: 0.3s ease;
}

/* ONLY Image — NO box, NO border */
.Industries-img {
  margin: 0 auto 8px auto;   /* Reduced spacing under icon */
}

.Industries-img img {
  width: 48px;               /* Slightly larger */
  height: auto;
  transition: 0.3s ease;
}

/* Title */
.industries-icon {
  font-size: 15px;
  font-weight: 600;
  color: #0b2252;
  margin-top: 5px;
}

/* Hover effect only on icon */
.Industries-row:hover img {
  transform: translateY(-4px);
}

.Industries-row:hover .industries-icon {
  color: #00a19e;
}

/* Perfect alignment with less space */
.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 0;               /* Very tight spacing like screenshot */
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .Industries-row {
    padding: 10px 0;
  }
  .Industries-img img {
    width: 42px;
  }
}
