/* Graduation Page Styles - Converted from globals.scss */

/* Bootstrap customizations */
:root {
    --primary: #0d6efd;
    --secondary: #6c757d;
    --danger: #AD0000;
    --light: #f8f9fa;
    --dark: #212529;
    --font-arial: Arial, sans-serif;
  }
  
  body {
    font-family: var(--font-arial);
    line-height: 1.6;
  }
  
  /* Container width constraint */
  .container {
    max-width: 1200px;
  }
  
  /* Header styles */
  .logo-container {
    display: flex;
    align-items: center;
  }
  
  /* Hero section styles */
  .hero-section {
    background-color: #ffffff;
    padding: 6rem 0 3rem 0;
  }
  
  .hero-content {
    max-width: 500px;
  }
  
  .hero-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-image-container .hero-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  /* Typography adjustments */
  .display-5 {
    font-weight: 700;
    line-height: 1.2;
    font-size: 2.75rem;
  }
  
  /* Hero content specific styles */
  .hero-text .display-5 {
    color: #212529;
    margin-bottom: 1.5rem;
  }
  
  .hero-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 2rem;
  }
  
  /* Info section styles */
  .info-section {
    background-color: #ffffff;
  }
  
  .info-section h2 {
    font-size: 2.5rem;
    color: #212529;
  }
  
  .info-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  }
  
  .info-card .info-icon {
    display: inline-block;
  }
  
  .info-card .card-title {
    font-size: 1.25rem;
    color: #212529;
  }
  
  .info-card .card-text {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* Special section styles */
  .special-section {
    background-color: #f8f9fa;
  }
  
  .special-section h2 {
    font-size: 2.5rem;
    color: #212529;
  }
  
  .special-section p {
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .excellence-image-container {
    position: relative;
  }
  
  .excellence-image-container .excellence-image {
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
  }
  
  .excellence-image-container .excellence-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: linear-gradient(135deg, #8B6914 0%, #D4AF37 50%, #8B6914 100%);
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
  }
  
  .excellence-badge .badge-content .badge-icon {
    font-size: 2rem;
    color: #fff;
  }
  
  .excellence-badge .badge-content .badge-number {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
  }
  
  .excellence-badge .badge-content .badge-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 2px;
  }
  
  .excellence-badge .badge-description {
    font-size: 1rem;
    line-height: 1.4;
  }
  
  .feature-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  }
  
  .feature-card .feature-icon {
    display: inline-block;
  }
  
  .feature-card .card-title {
    font-size: 1.25rem;
    color: #212529;
  }
  
  .feature-card .card-text {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* Button customizations */
  .btn-danger {
    background-color: #AD0000;
    border-color: #AD0000;
  }
  
  .btn-danger:hover {
    background-color: #8B0000;
    border-color: #8B0000;
  }
  
  .btn-danger .bi-arrow-right {
    font-size: 1.1em;
    transition: transform 0.2s ease;
  }
  
  .btn-danger:hover .bi-arrow-right {
    transform: translateX(2px);
  }
  
  /* Schedule section styles */
  .schedule-section {
    background-color: #f8f9fa;
  }
  
  .schedule-section h2 {
    font-size: 2.5rem;
    color: #212529;
  }
  
  .schedule-section p {
    font-size: 1.1rem;
    color: #6c757d;
  }
  
  .schedule-card {
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background-color: #ffffff;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border-radius: 0.5rem;
    overflow: visible;
  }
  
  .schedule-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  }
  
  .schedule-card.main-event {
    background-color: #1a1d29;
    color: #ffffff !important;
    border-radius: 0.75rem;
  }
  
  .schedule-card.main-event * {
    color: #ffffff !important;
  }
  
  .schedule-card.main-event .schedule-title {
    color: #ffffff !important;
  }
  
  .schedule-card.main-event .activity-item,
  .schedule-card.main-event .activity-item span {
    color: #ffffff !important;
  }
  
  .schedule-card.main-event .bi-check-circle {
    color: #ffffff !important;
  }
  
  .schedule-card.main-event .schedule-day-badge {
    background-color: #ffffff !important;
    color: #1a1d29 !important;
    font-size: 0.75rem;
    font-weight: 600;
  }
  
  .main-event-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #AD0000;
    color: #ffffff;
    padding: 0.35rem 1.25rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
    z-index: 10;
  }
  
  .schedule-header .schedule-day {
    font-size: 0.75rem;
    color: #6c757d;
    letter-spacing: 0.5px;
  }
  
  .schedule-header .schedule-day-badge {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
  }
  
  .schedule-header .schedule-title {
    font-size: 1.5rem;
    color: #212529;
    line-height: 1.3;
    font-weight: 700;
  }
  
  .schedule-activities .activity-item {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #495057;
  }
  
  .schedule-activities .activity-item .bi-check-circle {
    color: #6c757d;
    font-size: 1.25rem;
    margin-top: 0.1rem;
  }
  
  /* Eligibility section styles */
  .eligibility-section {
    background-color: #ffffff;
  }
  
  .eligibility-section h2 {
    font-size: 2.5rem;
    color: #212529;
  }
  
  .eligibility-section p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .eligibility-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .eligibility-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  }
  
  .eligibility-card .eligibility-icon {
    background-color: #AD0000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
  }
  
  .eligibility-card h4 {
    font-size: 1.25rem;
    color: #212529;
  }
  
  .eligibility-list .eligibility-item {
    font-size: 1rem;
    line-height: 1.8;
    color: #495057;
    display: flex;
    align-items: center;
  }
  
  .eligibility-list .eligibility-item .bi-dot {
    font-size: 2rem;
    line-height: 1;
  }
  
  /* Fees section styles */
  .fees-section {
    background-color: #0f1419;
  }
  
  .fees-section h2 {
    font-size: 2.5rem;
  }
  
  .fees-section p {
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .fee-card {
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .fee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.3) !important;
  }
  
  .fee-card-light {
    background-color: #ffffff;
  }
  
  .fee-card-light .fee-title {
    color: #212529;
  }
  
  .fee-card-light .fee-subtitle {
    color: #6c757d;
  }
  
  .fee-card-light .fee-price {
    color: #AD0000;
  }
  
  .fee-card-light .fee-description {
    color: #495057;
  }
  
  .fee-card-dark {
    background-color: #AD0000;
  }
  
  .fee-card-dark .fee-title,
  .fee-card-dark .fee-subtitle,
  .fee-card-dark .fee-price,
  .fee-card-dark .fee-description {
    color: #ffffff;
  }
  
  .fee-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    color: #212529;
    padding: 0.35rem 1.25rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
    z-index: 10;
  }
  
  .fee-title {
    font-size: 1.5rem;
  }
  
  .fee-subtitle {
    font-size: 0.95rem;
  }
  
  .fee-price {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
  }
  
  .fee-price .price-symbol {
    font-size: 2rem;
    vertical-align: super;
  }
  
  .fee-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .included-features-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .included-features-box {
    background-color: #FFFFFF1A;
    border-radius: 0.5rem;
  }
  
  .included-features-box h3 {
    font-size: 1.75rem;
  }
  
  .included-features-box .feature-item {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .included-features-box .feature-item .bi-check-circle {
    margin-top: 0.2rem;
  }
  
  /* Register section styles */
  .register-section {
    background-color: #f8f9fa;
  }
  
  .register-section h2 {
    font-size: 2rem;
    color: #212529;
    font-weight: 700;
  }
  
  .register-section p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
  }
  
  .register-info .register-benefits {
    margin-top: 1.5rem;
  }
  
  .register-info .register-benefits li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #495057;
  }
  
  .register-info .register-benefits li .bi {
    margin-top: 0.2rem;
  }
  
  .logistics-info {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  
  .logistics-info .logistics-box {
    background-color: #1a1d29;
    border-radius: 0.75rem;
  }
  
  .logistics-info .logistics-box h4 {
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 700;
  }
  
  .logistics-info .logistics-item {
    padding: 1rem;
    background-color: #ffffff;
    border-radius: 0.5rem;
    transition: transform 0.2s ease;
    margin-bottom: 0.75rem;
    
  }
  
  .logistics-info .logistics-item:last-child {
    margin-bottom: 4px;
  }
  
  .logistics-info .logistics-item:hover {
    transform: translateX(3px);
  }
  
  .logistics-info .logistics-item h6 {
    font-size: 0.95rem;
    color: #212529;
    font-weight: 600;
    margin-bottom: 0.25rem;
  }
  
  .logistics-info .logistics-item p {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.4;
  }
  
  .logistics-info .logistics-item .bi {
    color: #AD0000;
  }
  
  .register-form-card {
    background-color: #ffffff;
    border: none;
  }
  
  .register-form-card .form-label {
    display: block;
    color: #495057;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
  }
  
  .register-form-card .form-control,
  .register-form-card .form-select {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    font-size: 0.9rem;
    background-color: #ffffff;
  }
  
  .register-form-card .form-control-lg,
  .register-form-card .form-select.form-control-lg {
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    height: auto;
  }
  
  .register-form-card .form-control:focus,
  .register-form-card .form-select:focus {
    border-color: #AD0000;
    box-shadow: 0 0 0 0.2rem rgba(173, 0, 0, 0.1);
    outline: none;
  }
  
  .register-form-card .form-control::placeholder {
    color: #adb5bd;
    font-size: 0.9rem;
  }
  
  .register-form-card .btn-danger {
    background-color: #AD0000;
    border-color: #AD0000;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.375rem;
  }
  
  .register-form-card .btn-danger:hover {
    background-color: #8B0000;
    border-color: #8B0000;
  }
  
  /* FAQ section styles */
  .faq-section {
    background-color: #ffffff;
  }
  
  .faq-section h2 {
    font-size: 2.5rem;
    color: #212529;
  }
  
  .faq-section p {
    font-size: 1.1rem;
    color: #6c757d;
  }
  
  .faq-item {
    border-color: #dee2e6 !important;
    transition: box-shadow 0.2s ease;
  }
  
  .faq-item:hover {
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
  }
  
  .faq-question {
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  
  .faq-question:hover {
    background-color: #f8f9fa !important;
  }
  
  .faq-question span {
    font-size: 1rem;
    color: #212529;
  }
  
  .faq-question .bi {
    font-size: 1.25rem;
    transition: transform 0.2s ease;
  }
  
  .faq-answer p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  /* Responsive adjustments */
  @media (max-width: 991.98px) {
    .hero-section {
      padding: 6rem 0 2.5rem 0;
    }
    
    .hero-content {
      margin-bottom: 2rem;
    }
    
    .display-5 {
      font-size: 2.25rem;
    }
    
    .hero-text p {
      font-size: 1rem;
    }
    
    .excellence-badge {
      left: 1rem !important;
      bottom: 1rem !important;
      padding: 1rem 1.5rem !important;
    }
    
    .excellence-badge .badge-number {
      font-size: 3rem !important;
    }
    
    .excellence-badge .badge-text {
      font-size: 1rem !important;
    }
    
    .excellence-badge .badge-description {
      font-size: 0.9rem !important;
    }
  }
  
  @media (max-width: 767.98px) {
    .hero-section {
      padding: 5rem 0 2rem 0;
    }
    
    .display-5 {
      font-size: 2rem;
    }
    
    .hero-content {
      text-align: center;
      max-width: 100%;
      margin-bottom: 1.5rem;
    }
    
    .hero-text p {
      font-size: 0.95rem;
    }
    
    .special-section h2 {
      font-size: 2rem;
    }
    
    .special-section p {
      font-size: 1rem;
    }
    
    .excellence-badge {
      position: static !important;
      margin-top: 1rem;
    }
    
    .excellence-badge .badge-content .badge-number {
      font-size: 2.5rem !important;
    }
  }
  