* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0a0f29; /* Midnight Navy */
  --secondary: #000000;
  --accent: #d4af37; /* Royal Gold */
  --white: #ffffff;
  --neutral: #f5f5f5; /* Soft White */
}

.about-box {
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: 15px;
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.1);
  transition: transform 0.3s ease;
}

.about-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.about-box p {
  color: var(--text);
}

/* Specific styling for the "What is the Internship Program" block */
.program-box p {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}
.program-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.12rem;
}
.program-box ul li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
}
.program-box ul li .check {
  position: absolute;
  left: 0;
  color: var(--accent);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(
    3,
    1fr
  ); /* 3 columns on desktop for 3-up / 3-down */
  grid-auto-rows: 1fr; /* make each row's tracks equal height */
  gap: 30px;
  margin-top: 40px;
  align-items: stretch;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--accent);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

/* Make step-cards equal height and vertically distribute content */
.step-card {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  height: 100%; /* fill the grid cell so all cards match row height */
}

.step-card > p,
.step-card > ul {
  flex: 1 1 auto;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.05) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-card:hover::before {
  opacity: 1;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
  border-color: var(--accent);
}

.step-number {
  font-size: 3rem;
  color: var(--accent);
  font-weight: bold;
  margin-bottom: 15px;
}

.step-card h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.step-card p {
  color: var(--text-light);
}

.step-card ul {
  list-style: none;
  color: var(--text-light);
}

.step-card ul li {
  padding: 5px 0;
  padding-left: 25px;
  position: relative;
}

.step-card ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* force 3 columns on desktop */
  gap: 25px;
  margin-top: 40px;
  align-items: stretch;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 220px; /* keep cards visually consistent */
  background: var(--white);
  border-left: 4px solid var(--accent);
  padding: 25px;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
  background: var(--bg-accent);
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.15);
}

.benefit-card h4 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.benefit-card p {
  color: var(--text-light);
}

.cities {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 40px;
}

.city-tag {
  background: var(--white);
  color: var(--primary);
  padding: 12px 25px;
  border-radius: 25px;
  border: 1px solid var(--accent);
  transition: all 0.3s ease;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.city-tag:hover {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.eligibility-list {
  max-width: 800px;
  margin: 40px auto;
}

.eligibility-item {
  background: var(--white);
  border-left: 5px solid var(--accent);
  padding: 20px 30px;
  margin-bottom: 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: var(--text);
}

.eligibility-item:hover {
  background: var(--bg-accent);
  transform: translateX(15px);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.15);
}

.location-text {
  color: var(--accent);
  font-weight: 600;
}

.vision-highlight {
  color: var(--accent);
  font-weight: bold;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive breakpoints for benefits grid */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* end hero styles */

/* WhatsApp chat button (copied from midnight.css) */
.whatsapp-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.chat-btn {
  background-color: #25d366; /* WhatsApp Green */
  color: white;
  border: none;
  padding: 15px 18px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease-in-out;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-btn:hover {
  transform: scale(1.1);
  background-color: #20b954;
}
.chat-btn i {
  margin: 0;
  padding: 0;
  font-size: 24px;
}
/* Our partner sliding  */
/* SECTION BACKGROUND */
.logo-section {
  background: #0a0f29; /* Midnight Navy */
  padding: 20px 0;
  text-align: center;
}

/* TITLE */
.logo-title {
  font-size: 32px;
  font-weight: 700;
  color: white;
  letter-spacing: 2px;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.logo-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #d4af37; /* Royal Gold */
  margin: 10px auto 0;
  border-radius: 2px;
}

/* SLIDER WRAPPER */
.logo-slider {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  position: relative;
}

/* THE TRACK */
.logo-slider .logo-track {
  display: flex;
  gap: 60px;
  animation: scroll 26s linear infinite;
  white-space: nowrap;
}

/* LOGOS (default: natural colors, bigger size) */
.logo-slider img {
  height: 150px; /* 🔥 Bigger logos */
  width: auto;
  object-fit: contain;

  opacity: 0.95;
  filter: none; /* No grayscale — natural colors */
  transition: 0.3s ease;
}

/* HOVER — scale only, NO color change */
.logo-slider img:hover {
  transform: scale(1.15); /* Smooth enlarge */
  opacity: 1;
  filter: none;
}

/* SCROLL ANIMATION */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* -----------------------------
        RESPONSIVE MEDIA
------------------------------ */

/* Tablets */
@media (max-width: 1024px) {
  .logo-slider img {
    height: 85px; /* Slightly smaller */
  }
  .logo-slider .logo-track {
    gap: 40px;
  }
}

/* Mobile Large */
@media (max-width: 768px) {
  .logo-title {
    font-size: 26px;
  }
  .logo-slider img {
    height: 70px; /* Mobile-friendly */
  }
  .logo-slider .logo-track {
    gap: 30px;
    animation-duration: 20s;
  }
}

/* Mobile Small */
@media (max-width: 480px) {
  .logo-title {
    font-size: 22px;
  }
  .logo-slider img {
    height: 55px; /* Small screens */
  }
  .logo-slider .logo-track {
    gap: 20px;
    animation-duration: 18s;
  }
}
