/* ====== Modern Theme (No content change) ====== */
:root {
  --primary: #0d81ee;
  --secondary: #0a274a;
  --bg: #f4f7fc;
  --card: #ffffff;
  --text: #1f2a3a;
  --muted: #6b7a8a;
  --radius: 18px;
  --shadow: 0 10px 25px rgba(0,0,0,0.08);
  --shadow-2: 0 6px 16px rgba(0,0,0,0.10);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', sans-serif;
}

/* --- Section styling --- */
section {
  padding: 60px 20px;
}

.section-title {
  text-align: center;
  color: var(--secondary);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.15;
  margin-bottom: 1rem;
}

  

/* --- Modern card layout for hero --- */ 
.hc-hero-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 1rem;
}

.hc-hero-container img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
}

.hc-left-card,
.hc-right-card {
  padding: 0.8rem;
}

.hc-right-card h1 {
  font-size: 3.0rem;
  color: #0b2f6b;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.15;
  margin-bottom: 1rem;
}



.hc-right-card p {
  color: var(--muted);
  line-height: 1.4;
  margin-bottom: 1.2rem;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .hc-hero-container {
    grid-template-columns: 1fr;
  }
  .hc-hero-container img {
    height: auto;
  }
}

/* --- List styles (Modern) --- */
ul {
  padding-left: 1rem;
  color: var(--muted);
}

ul li {
  list-style: none;
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* --- Card Hover effect for Learning Options --- */
.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-2);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.card-content {
  padding: 1rem;
  text-align: center;
}

.card-content h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.hc-left-card h3,
.hc-right-card h3 {
  font-size: 2.0rem;
  color: #0a274a;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.hc-left-card h4,
.hc-right-card h4 {
  font-size: 1rem;
  color: #0a274a;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.hc-left-card p,
.hc-right-card p{
        color: var(--muted);
    line-height: 1.4;
    margin-bottom: 1.2rem;
}

.card-content p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

/* --- Feedback + Team --- */
.feedback-card, .team-card {
  flex: 0 0 300px;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow-2);
  background: var(--card);
}

.feedback-card:hover, .team-card:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.client-logo {
  max-width: 100px;
  height: auto;
  margin: 1rem;
}

.feedback-card p {
  color: var(--muted);
  font-style: italic;
  font-size: 1.1rem;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-image-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 4px solid #e0f0ff;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .eduarn-info{
    color: black;
    padding: 5px;
    cursor: pointer;
    border: auto;
    width: 100%;
    text-align: left;
    border-radius: 5px;
    font-size: 16px;
} */

.eduarn-item
{
    margin-bottom: 2px;
}

.eduarn-item .eduarn-info {
      color: black;
      padding: 5px;
      cursor: pointer;
      width: 100%;
      text-align: left;
      border-radius: 5px;
      font-size: 16px;
    }

    .eduarn-item .eduarn-info h4 img{
      width: 16px;
    height: 10px;
    }
    
.eduarn-item .eduarn-info-details {
      display: none;
      margin-top: 5px;
    }


    .eduarn-info.active + .eduarn-info-details {
      display: block;
    }
    /* ///testing */

/* --- Scroll Buttons (same style) --- */
#left-btn, #right-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  padding: 0.5rem 0.8rem;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

#left-btn { left: 10px; }
#right-btn { right: 10px; }

@media (max-width: 600px) {
  .feedback-card, .team-card {
    flex: 0 0 90%;
    max-width: 90%;
  }
}
