/* admissionprocedure.css */

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  margin-top: 120px;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.hero-section .lead {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

/* Program Cards */
.program-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.program-card-header {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  padding: 1.5rem 2rem;
}

.program-card-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.program-card-body {
  padding: 2rem;
}

.program-details {
  margin-bottom: 1.5rem;
}

.program-details h5 {
  color: #1e3c72;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Criteria Lists */
.criteria-list {
  list-style: none;
  padding-left: 0;
}

.criteria-list li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.criteria-list li:before {
  content: "•";
  color: #1e3c72;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Tables */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: left;
  border: 1px solid #e0e0e0;
}

.comparison-table th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #1e3c72;
}

.comparison-table tr:nth-child(even) {
  background-color: #f8f9fa;
}

.scholarship-table {
  margin: 1.5rem 0;
}

.scholarship-table th {
  background-color: #1e3c72;
  color: white;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline:before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #1e3c72;
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-item:before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #1e3c72;
  border: 3px solid white;
  box-shadow: 0 0 0 2px #1e3c72;
}

.timeline-content {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.timeline-content h5 {
  color: #1e3c72;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* Contact Information */
.contact-info {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-info i {
  font-size: 1.25rem;
  color: #1e3c72;
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.contact-info h6 {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #1e3c72;
}

/* FAQ Section */
.eligibility-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.accordion-button {
  font-weight: 500;
  padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
  background-color: #1e3c72;
  color: white;
}

.accordion-body {
  padding: 1.5rem;
}

/* Alerts */
.scholarship-alert {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border: 1px solid #90caf9;
  border-radius: 8px;
  padding: 1.5rem;
}

.scholarship-alert h5 {
  color: #1565c0;
  margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.25rem;
  }
  
  .program-card-header,
  .program-card-body {
    padding: 1.25rem;
  }
  
  .timeline {
    padding-left: 1.5rem;
  }
  
  .timeline-item:before {
    left: -1.5rem;
  }
  
  .contact-info {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-info i {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}