/* Home Page Specific Styles */

/* Hero Section */
.hero-section {
    background: url("../images/hero-bg.jpg") no-repeat center center;
    background-size: cover;
    position: relative;
    padding: 0px 0;
    color: #fff;
    text-align: center;
  }
  
  .hero-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
  }
  
  .hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }
  
  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  .hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
  }
  
  /* About Section */
  .about-section {
    padding: 80px 0;
  }
  
  .about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .about-content {
    padding: 20px;
  }
  
  .about-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
  }
  
  .about-content p {
    margin-bottom: 20px;
    color: #666;
  }
  
  .feature-item {
    margin-bottom: 30px;
  }
  
  .feature-item i {
    font-size: 36px;
    margin-bottom: 15px;
  }
  
  .feature-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
  }
  
  .feature-item p {
    color: #666;
    margin-bottom: 0;
  }
  
  /* Facilities Section */
  .facilities-section {
    padding: 80px 0;
    background-color: #f9f9f9;
  }
  
  .facility-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
  }
  
  .facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .facility-card i {
    font-size: 48px;
    color: #3498db;
    margin-bottom: 20px;
  }
  
  .facility-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
  }
  
  .facility-card p {
    color: #666;
    margin-bottom: 0;
  }
  
  /* News & Events Section */
  .news-events-section {
    padding: 80px 0;
  }
  
  .news-item {
    display: flex;
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .news-date {
    width: 80px;
    background-color: #3498db;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .news-date .day {
    font-size: 24px;
    font-weight: 700;
  }
  
  .news-date .month {
    font-size: 14px;
    text-transform: uppercase;
  }
  
  .news-content {
    padding: 20px;
    flex: 1;
  }
  
  .news-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
  }
  
  .news-content p {
    color: #666;
    margin-bottom: 15px;
  }
  
  .read-more {
    color: #3498db;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
  }
  
  .read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
  }
  
  .read-more:hover i {
    transform: translateX(5px);
  }
  
  .event-item {
    display: flex;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .event-date {
    width: 70px;
    background-color: #3498db;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .event-date .day {
    font-size: 20px;
    font-weight: 700;
  }
  
  .event-date .month {
    font-size: 12px;
    text-transform: uppercase;
  }
  
  .event-content {
    padding: 15px;
    flex: 1;
  }
  
  .event-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
  }
  
  .event-content p {
    color: #666;
    margin-bottom: 0;
    font-size: 14px;
  }
  
  /* CTA Section */
  .cta-section {
    padding: 60px 0;
  }
  
  .cta-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
  }
  
  .cta-section p {
    font-size: 18px;
    margin-bottom: 0;
    opacity: 0.9;
  }
  
  .cta-section .btn {
    padding: 12px 30px;
    font-weight: 600;
  }
  
  /* Testimonials Section */
  .testimonials-section {
    padding: 80px 0;
    background-color: #f9f9f9;
  }
  
  .testimonial-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    height: 100%;
  }
  
  .testimonial-content {
    padding: 30px;
    position: relative;
  }
  
  .testimonial-content:before {
    content: "\201C";
    font-size: 80px;
    position: absolute;
    top: 0;
    left: 20px;
    color: #f0f0f0;
    font-family: serif;
    z-index: 0;
  }
  
  .testimonial-content p {
    position: relative;
    z-index: 1;
    color: #666;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    background-color: #f9f9f9;
  }
  
  .author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
  }
  
  .author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .author-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
  }
  
  .author-info p {
    color: #666;
    margin-bottom: 0;
    font-size: 14px;
  }
  
  /* Responsive Styles */
  @media (max-width: 991.98px) {
    .hero-content h1 {
      font-size: 36px;
    }
  
    .hero-content p {
      font-size: 18px;
    }
  
    .about-image {
      margin-bottom: 30px;
    }
  
    .cta-section .text-lg-end {
      text-align: center !important;
      margin-top: 20px;
    }
  }
  
  @media (max-width: 767.98px) {
    .hero-section {
      padding: 32px 0;
    }
  
    .hero-content h1 {
      font-size: 28px;
    }
  
    .hero-content p {
      font-size: 16px;
    }
  
    .hero-buttons {
      flex-direction: column;
      gap: 10px;
    }
  
    .hero-buttons .btn {
      width: 100%;
    }
  
    .news-item,
    .event-item {
      flex-direction: column;
    }
  
    .news-date,
    .event-date {
      width: 100%;
      padding: 10px 0;
    }
  
    .news-date,
    .event-date {
      flex-direction: row;
      justify-content: center;
      gap: 10px;
    }
  }
  