/* Stats Section */
.stats-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.stat-card {
  text-align: center;
  padding: 28px 20px;
  background: rgba(20, 16, 48, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  transition: all 0.35s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-card h3 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 5px;
  background: linear-gradient(135deg, #6366f1, #00f0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card p {
  color: #94a3b8;
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
}

/* Internship Tips Section */
.tips-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.tips-header {
  text-align: center;
  margin-bottom: 50px;
}

.tips-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}

.tips-header p {
  color: #94a3b8;
  font-size: 1.1rem;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.tip-card {
  position: relative;
  background: rgba(20, 16, 48, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 28px 24px;
  transition: all 0.35s ease;
  overflow: hidden;
}

.tip-card:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.tip-icon {
  width: 50px;
  height: 50px;
  background: rgba(99, 102, 241, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #a5b4fc;
  margin-bottom: 20px;
}

.tip-card h3 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.tip-card p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* FAQ Section */
.faq-section {
  padding: 80px 20px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(20, 16, 48, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  color: #94a3b8;
  transition: transform 0.3s ease;
}

.faq-item.active {
  background: rgba(20, 16, 48, 0.9);
  border-color: rgba(99, 102, 241, 0.3);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: #a5b4fc;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 200px; /* Adjust based on content */
  padding-bottom: 20px;
}

.faq-answer p {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
