/* ========================= Admissions Page Styles ========================= */

/* Page Banner */
.page-banner {
  background: linear-gradient(135deg, rgba(11, 109, 170, 0.95), rgba(205, 26, 34, 0.85)), url('../img/hero/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 180px 0 100px;
  text-align: center;
  position: relative;
}

.page-banner::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, #fff, transparent);
}

.page-banner h1 {
  color: #fff;
  font-size: 48px;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-banner p {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

/* Overview Section */
.overview-section {
  padding: 100px 0;
  background: #fff;
}

.overview-content .sub-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0b6daa;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 15px;
}

.overview-content h2 {
  color: #313450;
  font-size: 36px;
  margin-bottom: 20px;
}

.overview-content > p {
  color: #6B6F92;
  line-height: 1.8;
  margin-bottom: 30px;
}

.feature-list {
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.feature-item .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(11, 109, 170, 0.1), rgba(11, 109, 170, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b6daa;
  font-size: 18px;
  flex-shrink: 0;
}

.feature-item .text h5 {
  color: #313450;
  margin-bottom: 5px;
  font-size: 16px;
}

.feature-item .text p {
  color: #6B6F92;
  font-size: 14px;
  margin-bottom: 0;
}

.overview-image {
  position: relative;
}

.overview-image img {
  border-radius: 20px;
  width: 100%;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.overview-image .stats-card {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 15px;
  padding: 20px 40px;
  display: flex;
  gap: 40px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.overview-image .stats-card .stat {
  text-align: center;
}

.overview-image .stats-card .number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(90deg, #0b6daa, #cd1a22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.overview-image .stats-card .label {
  color: #6B6F92;
  font-size: 13px;
}

/* Eligibility Section */
.eligibility-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.section-title {
  margin-bottom: 60px;
}

.section-title h1 {
  color: #313450;
  margin-bottom: 15px;
}

.section-title p {
  color: #6B6F92;
  max-width: 600px;
  margin: 0 auto;
}

.eligibility-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.eligibility-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0b6daa, #cd1a22);
}

.eligibility-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(11, 109, 170, 0.15);
}

.eligibility-card .icon {
  width: 70px;
  height: 70px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  margin-bottom: 25px;
}

.eligibility-card .icon.certificate {
  background: linear-gradient(135deg, #4caf50, #81c784);
}

.eligibility-card .icon.diploma {
  background: linear-gradient(135deg, #0b6daa, #1565c0);
}

.eligibility-card .icon.masters {
  background: linear-gradient(135deg, #cd1a22, #e53935);
}

.eligibility-card h4 {
  color: #313450;
  margin-bottom: 20px;
  font-size: 20px;
}

.eligibility-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.eligibility-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6B6F92;
  font-size: 14px;
  margin-bottom: 12px;
}

.eligibility-card ul li i {
  color: #4caf50;
  font-size: 12px;
}

/* Process Section */
.process-section {
  padding: 100px 0;
  background: #fff;
}

.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #0b6daa, #cd1a22);
}

.process-step {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b6daa, #1565c0);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 25px rgba(11, 109, 170, 0.3);
}

.step-content {
  background: #fff;
  padding: 25px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  flex: 1;
  transition: all 0.3s ease;
}

.step-content:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 40px rgba(11, 109, 170, 0.12);
}

.step-content h4 {
  color: #313450;
  margin-bottom: 10px;
  font-size: 18px;
}

.step-content p {
  color: #6B6F92;
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1.7;
}

/* Dates Section */
.dates-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(11, 109, 170, 0.03), rgba(205, 26, 34, 0.03));
}

.date-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  height: 100%;
}

.date-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(11, 109, 170, 0.15);
}

.date-card .date-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b6daa, #1565c0);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: #fff;
}

.date-card .date {
  display: block;
  color: #cd1a22;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
}

.date-card h5 {
  color: #313450;
  margin-bottom: 10px;
  font-size: 18px;
}

.date-card p {
  color: #6B6F92;
  font-size: 14px;
  margin-bottom: 0;
}

/* Application Form Section */
.application-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.application-wrapper {
  background: #fff;
  border-radius: 25px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  max-width: 1000px;
  margin: 0 auto;
}

.form-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #f0f0f0;
}

.form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 30px;
  padding-bottom: 0;
}

.form-section h3 {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #313450;
  font-size: 20px;
  margin-bottom: 25px;
}

.section-number {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b6daa, #1565c0);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
}

.section-desc {
  color: #6B6F92;
  font-size: 14px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: #313450;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 14px;
}

.required {
  color: #cd1a22;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 18px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  font-size: 14px;
  color: #313450;
  transition: all 0.3s ease;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0b6daa;
  box-shadow: 0 0 0 3px rgba(11, 109, 170, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Radio Groups */
.radio-group {
  display: flex;
  gap: 20px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 15px 25px;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  transition: all 0.3s ease;
  flex: 1;
}

.radio-option:hover {
  border-color: #0b6daa;
}

.radio-option input[type="radio"] {
  display: none;
}

.radio-option input[type="radio"]:checked + .radio-custom + .radio-label {
  color: #0b6daa;
}

.radio-option input[type="radio"]:checked ~ .radio-custom::after {
  opacity: 1;
  transform: scale(1);
}

.radio-option:has(input:checked) {
  border-color: #0b6daa;
  background: rgba(11, 109, 170, 0.05);
}

.radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.radio-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0b6daa;
  opacity: 0;
  transition: all 0.3s ease;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: #6B6F92;
}

.radio-label i {
  font-size: 18px;
}

/* Radio Inline */
.radio-inline {
  display: flex;
  gap: 25px;
}

.radio-inline label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #6B6F92;
}

.radio-inline input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #0b6daa;
}

/* Course Grid */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.course-option {
  cursor: pointer;
}

.course-option input[type="radio"] {
  display: none;
}

.course-card {
  display: block;
  padding: 20px;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-align: center;
}

.course-option:hover .course-card {
  border-color: #0b6daa;
}

.course-option input:checked + .course-card {
  border-color: #0b6daa;
  background: linear-gradient(135deg, rgba(11, 109, 170, 0.05), rgba(205, 26, 34, 0.02));
  box-shadow: 0 5px 20px rgba(11, 109, 170, 0.15);
}

.course-name {
  display: block;
  color: #313450;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 5px;
}

.course-duration {
  display: block;
  color: #0b6daa;
  font-size: 12px;
  font-weight: 500;
}

/* Checkbox */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: #0b6daa;
}

/* Declaration */
.declaration-box {
  background: linear-gradient(135deg, rgba(11, 109, 170, 0.05), rgba(205, 26, 34, 0.03));
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 25px;
  border-left: 4px solid #0b6daa;
}

.declaration-box p {
  color: #313450;
  margin-bottom: 15px;
  font-style: italic;
}

.declaration-box ol {
  margin: 0;
  padding-left: 20px;
}

.declaration-box ol li {
  color: #6B6F92;
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.7;
}

/* Form Submit */
.form-submit {
  text-align: center;
  padding-top: 20px;
}

.form-submit .note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff8e1;
  padding: 15px 20px;
  border-radius: 10px;
  color: #856404;
  font-size: 13px;
  margin-bottom: 25px;
  text-align: left;
}

.form-submit .note i {
  font-size: 18px;
  margin-top: 2px;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 50px;
  background: linear-gradient(90deg, #0b6daa, #cd1a22);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(11, 109, 170, 0.3);
}

/* Resources Section */
.resources-section {
  padding: 100px 0;
  background: #fff;
}

.resource-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid #f0f0f0;
}

.resource-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(11, 109, 170, 0.15);
  border-color: transparent;
}

.resource-card .icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(11, 109, 170, 0.1), rgba(11, 109, 170, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 35px;
  color: #0b6daa;
}

.resource-card h4 {
  color: #313450;
  margin-bottom: 15px;
  font-size: 18px;
}

.resource-card p {
  color: #6B6F92;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 25px;
  border: 2px solid #0b6daa;
  border-radius: 25px;
  color: #0b6daa;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.download-btn:hover {
  background: #0b6daa;
  color: #fff;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 15px;
  margin-bottom: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  overflow: hidden;
  border: 1px solid #f0f0f0;
}

.faq-item .faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  transition: all 0.3s ease;
}

.faq-item .faq-question:hover {
  background: rgba(11, 109, 170, 0.02);
}

.faq-item .faq-question h5 {
  color: #313450;
  margin-bottom: 0;
  font-size: 17px;
  flex: 1;
}

.faq-item .faq-question .icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b6daa, #1565c0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question .icon {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item .faq-answer p {
  padding: 0 30px 25px;
  color: #6B6F92;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 0;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: #fff;
}

.cta-box {
  background: linear-gradient(135deg, #0b6daa 0%, #1565c0 50%, #cd1a22 100%);
  border-radius: 25px;
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.cta-box h2 {
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-box p {
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 1;
}

.cta-box .main-btn {
  background: #fff;
  color: #0b6daa;
  position: relative;
  z-index: 1;
}

.cta-box .main-btn:hover {
  background: #f5f5f5;
  color: #cd1a22;
}

/* Responsive */
@media (max-width: 991px) {
  .page-banner h1 {
    font-size: 36px;
  }
  
  .overview-content h2 {
    font-size: 28px;
  }
  
  .overview-image .stats-card {
    position: relative;
    bottom: 0;
    transform: none;
    margin-top: 30px;
    justify-content: center;
  }
  
  .process-timeline::before {
    left: 20px;
  }
  
  .step-number {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  
  .application-wrapper {
    padding: 30px;
  }
  
  .radio-group {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .page-banner {
    padding: 140px 0 80px;
  }
  
  .page-banner h1 {
    font-size: 28px;
  }
  
  .overview-section,
  .eligibility-section,
  .process-section,
  .dates-section,
  .application-section,
  .resources-section,
  .faq-section {
    padding: 60px 0;
  }
  
  .application-wrapper {
    padding: 20px;
    border-radius: 15px;
  }
  
  .form-section h3 {
    font-size: 18px;
  }
  
  .course-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-box {
    padding: 40px 20px;
  }
}
