/* 
 * About Page Specific Styles for Shraddha
 * This file contains styles specific to the About page
 * It should be included after the main style.css file
 */

/* Hero Banner Section */
.hero-banner {
    position: relative;
    background-color: #000;
    padding-top: 7rem;
    overflow: hidden;
  }
  
  .hero-banner .btn {
    transition: all 0.3s ease;
  }
  
  .hero-banner .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  /* About Story Section */
  .story-box {
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(50%);
    background-color: var(--brand-color);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(245, 78, 2, 0.3);
    max-width: 280px;
  }
  
  /* Card Hover Effects */
  .hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  /* Team Cards - UPDATED AND IMPROVED */
  .team-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0.75rem;
    overflow: hidden;
    height: 100%;
  }
  
  .team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }
  
  /* Team Image Container - NEW */
  .team-image-container {
    height: 280px;
    overflow: hidden;
    border-radius: 0.75rem 0.75rem 0 0;
    position: relative;
  }
  
  /* Team Image Styles - UPDATED */
  .team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
  }
  
  .team-card:hover .team-image {
    transform: scale(1.05);
  }
  
  /* Team Overlay - UPDATED */
  .team-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  }
  
  /* Social Icons - IMPROVED */
  .team-card .social-icons a {
    transition: all 0.3s ease;
    font-size: 1.1rem;
  }
  
  .team-card .social-icons a:hover {
    color: var(--brand-color) !important;
    transform: translateY(-2px);
  }
  
  /* Team Badge Styles - NEW */
  .team-card .badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
  }
  
  /* Background Gradient */
  .bg-gradient-to-t {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  }
  
  /* Achievement Cards */
  .achievement-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 3px solid var(--brand-color);
  }
  
  .achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }
  
  .achievement-card .rounded-circle {
    transition: transform 0.3s ease;
  }
  
  .achievement-card:hover .rounded-circle {
    transform: rotate(10deg);
  }
  
  /* Partner Logos */
  .partner-logo {
    max-height: 60px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    opacity: 0.8;
  }
  
  .partner-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
    opacity: 1;
  }
  
  /* FAQ Accordions */
  .accordion-item {
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 1rem;
  }
  
  .accordion-button {
    font-family: 'Fredoka', sans-serif;
    padding: 1.25rem;
  }
  
  .accordion-button:not(.collapsed) {
    color: var(--brand-color);
    background-color: #fff;
    box-shadow: none;
  }
  
  .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F54E02'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  }
  
  .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(245, 78, 2, 0.25);
  }
  
  .accordion-body {
    padding: 1.25rem;
    color: #555;
  }
  
  /* Contact Banner */
  .contact-banner {
    background-color: var(--brand-color);
    padding: 3rem 0;
  }
  
  .contact-banner h2 {
    margin-bottom: 0.5rem;
  }
  
  .contact-banner .btn {
    background-color: #fff;
    color: var(--brand-color);
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
  }
  
  .contact-banner .btn:hover {
    background-color: #f8f9fa;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
  }
  
  /* Values Section */
  .value-icon {
    width: 70px;
    height: 70px;
    background-color: var(--brand-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
  }
  
  .value-card:hover .value-icon {
    transform: scale(1.1);
  }
  
  /* Mission/Vision Lists */
  .mission-list li, .vision-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
  }
  
  .mission-list li i, .vision-list li i {
    color: var(--brand-color);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
  }
  
  /* Section Headers */
  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .section-header .section-line {
    display: inline-block;
    width: 50px;
    height: 3px;
    background-color: var(--brand-color);
    margin-bottom: 1rem;
  }
  
  .section-header h2 {
    font-family: 'Fredoka', sans-serif;
    margin-bottom: 0.75rem;
  }
  
  .section-header p {
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
  }
  
  /* Timeline for Story */
  .timeline-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 30px;
  }
  
  .timeline-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--brand-color);
  }
  
  .timeline-item:after {
    content: "";
    position: absolute;
    left: -8px;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--brand-color);
  }
  
  /* Media Queries */
  @media (max-width: 1199.98px) {
    /* Team section responsive adjustments */
    .col-xl-3 {
      max-width: 50%;
    }
  }
  
  @media (max-width: 991.98px) {
    .hero-banner {
      padding-top: 6rem;
    }
    
    .story-box {
      position: relative;
      transform: none;
      margin-top: 1.5rem;
      max-width: 100%;
    }
    
    .hero-section h1 {
      font-size: 2.5rem;
    }
    
    /* Team image adjustments for tablets */
    .team-image-container {
      height: 250px;
    }
  }
  
  @media (max-width: 767.98px) {
    .section-header h2 {
      font-size: 2rem;
    }
    
    .hero-banner {
      text-align: center;
    }
    
    .timeline-item {
      padding-left: 20px;
    }
    
    .mission-vision-section .card {
      margin-bottom: 2rem;
    }
    
    .team-section .team-card {
      margin-bottom: 2rem;
    }
    
    /* Team image adjustments for mobile */
    .team-image-container {
      height: 220px;
    }
    
    /* Add spacing between team cards on mobile */
    .row.g-4 {
      gap: 2rem !important;
    }
  }
  
  @media (max-width: 575.98px) {
    .hero-banner .btn {
      display: block;
      width: 100%;
      margin-bottom: 1rem;
    }
    
    .contact-banner .btn {
      display: block;
      width: 100%;
    }
    
    .contact-banner .text-lg-end {
      text-align: center !important;
      margin-top: 1.5rem;
    }
    
    .section-header h2 {
      font-size: 1.8rem;
    }
    
    /* Team cards full width on small mobile */
    .team-image-container {
      height: 200px;
    }
  }