/* General Section Styling */
.magazine-section {
    padding: 30px;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Magazine Grid Layout */
  .magazine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-items: center;
  }
  
  /* Card Styling */
  .magazine-card {
    border-radius: 10px;
    overflow: hidden;
    text-align: end;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: end;
    max-width: 300px;
  }
  
  .magazine-card img {
    width: 300px;
    height: 400px;
   
  }
  
  .magazine-info {
    padding: 15px;
  }
  
  .magazine-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
  }
  
  .magazine-date {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 5px;
  }
  
  .magazine-details {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
  }
  
  /* Responsive Styling */
  @media (max-width: 768px) {
    .magazine-grid {
      grid-template-columns: 1fr; /* Single column on smaller screens */
    }
  }
  
  /* General Section Styling */
.testimonials-section {
    padding: 40px 20px;
    font-family: 'Cairo', sans-serif; /* Font that supports Arabic */
    direction: rtl; /* Right-to-left support for Arabic */
    text-align: right;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #fca038;
    text-align: center;
    margin-bottom: 30px;
  }
  
  /* Testimonials Grid */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  
  /* Testimonial Card */
  .testimonial-card {
    max-width: 580px;
    background: linear-gradient(to bottom right, #fff, #ffe6cc);
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: right;
  }
  
  .testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #dddcdc;
  }
  
  .info .name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin: 0;
  }
  
  .info .role {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
  }
  
  /* Testimonial Text */
  .testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .section-title {
      font-size: 1.5rem;
    }
  
    .testimonial-card {
      padding: 15px;
    }
  
    .testimonial-text {
      font-size: 0.95rem;
    }
  }
  