/* Scholarships Page Styles */

/* General Section Styling */
.scholarships-section {
    max-width: 80%;
    margin: 0 auto;
    padding: 40px 20px;
    color: #333;
    line-height: 1.6;
  }
  
  .scholarships-section h1 {
    font-size: 2.5rem;
    color: #1347a6; /* Match the brand's color scheme */
    text-align: center;
    margin-bottom: 20px;
  }
  
  .scholarships-section h2 {
    font-size: 2rem;
    color: #1347a6;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  
  .scholarships-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .scholarships-section strong {
    color: #000;
    font-weight: bold;
  }
  
  .scholarships-section em {
    font-style: italic;
    color: #555;
  }
  
  /* Scholarship Brochure - Large featured brochure image showcasing program details */
  .scholarship-brochure {
    margin: 40px 0;
    text-align: center;
    background-color: #f0f4f8;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .scholarship-brochure img {
    max-width: 100%;
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .scholarship-brochure img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }
  
  /* Scholarship Photos Carousel */
  /* Auto-rotating carousel displaying scholarship recipients and their experiences */
  /* Images are larger and displayed one at a time with navigation controls */
  .scholarship-carousel {
    position: relative;
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
  }

  .carousel-container {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

  .carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .carousel-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
  }

  .carousel-slide img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    display: block;
    background-color: #f9f9f9;
  }

  /* Carousel navigation buttons */
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(19, 71, 166, 0.8);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    z-index: 10;
  }

  .carousel-btn:hover {
    background-color: rgba(19, 71, 166, 1);
  }

  .carousel-btn.prev {
    left: 10px;
  }

  .carousel-btn.next {
    right: 10px;
  }

  /* Carousel dot indicators */
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }

  .dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  .dot:hover {
    background-color: #999;
    transform: scale(1.2);
  }

  .dot.active {
    background-color: #1347a6;
    transform: scale(1.3);
  }
  
  /* Vendor Requirements Section */
  .vendor-requirements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
  }

  .requirement-item {
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
    border-left: 4px solid #1347a6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .requirement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .requirement-item h3 {
    color: #1347a6;
    margin-bottom: 10px;
    font-size: 1.2rem;
  }

  .requirement-item p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
  }

  .btn-requirement {
    display: inline-block;
    background-color: #1347a6;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }

  .btn-requirement:hover {
    background-color: #0d2d7a;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .scholarships-section {
      padding: 20px;
    }

    .scholarships-section h1 {
      font-size: 2rem;
    }

    .scholarships-section h2 {
      font-size: 1.6rem;
    }

    .scholarships-section p {
      font-size: 1rem;
    }

    /* Adjust brochure padding on mobile */
    .scholarship-brochure {
      padding: 20px;
      margin: 30px 0;
    }

    /* Adjust carousel for mobile */
    .scholarship-carousel {
      padding: 10px;
      margin: 30px auto;
    }

    .carousel-slide img {
      max-height: 400px;
    }

    .carousel-btn {
      font-size: 1.5rem;
      padding: 10px 15px;
    }

    .carousel-btn.prev {
      left: 5px;
    }

    .carousel-btn.next {
      right: 5px;
    }

    .dot {
      width: 12px;
      height: 12px;
    }

    .vendor-requirements {
      grid-template-columns: 1fr;
    }
  }
  