.text-white, .info ul, .info ul li {
  color: white;
}

.about-container {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.get-started-container {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}



.card-grid {
    padding: 3%;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .card {
    padding: 1.5rem;
    border-radius: 8px;
    background: #1a1a1a; /* Black background */
    color: #f1c40f; /* Gold text */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid #f1c40f;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(241, 196, 15, 0.4);
  }
  
  .card h3 {
    font-size: 1.25rem;
    color: #f1c40f; /* Gold color for headings */
    margin-bottom: 0.5rem;
    font-family: 'Georgia', serif;
  }
  
  .card p {
    font-size: 1rem;
    color: #d1d1d1; /* Light gray for description */
    line-height: 1.5;
  }
  
  .btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: #f1c40f; /* Gold button */
    color: #1a1a1a; /* Black text on button */
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .btn:hover {
    background-color: #ffcc29; /* Lighter gold on hover */
    color: #000;
  }
  
  .btn-icon-only{
    border-radius: 0%;
  }

  .card-grid:first-of-type .card {
    background-image: url('/images/cards/Mecca1.webp'); /* Replace with actual path for Mecca */
    background-size: cover;
    background-position: center;
    color: #f1c40f; /* Adjust text color if needed for readability */
    position: relative;
  }
  
  .card-grid:first-of-type .card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for readability */
    border-radius: 8px;
    z-index: 1;
  }
  
  .card-grid:first-of-type .card h3, .card-grid:first-of-type .card p, .card-grid:first-of-type .btn {
    position: relative;
    z-index: 2;
  }
  
  /* Umrah Packages Background */
  .card-grid:nth-of-type(2) .card {
    background-image: url('/images/cards/Medina5.webp'); /* Replace with actual path for Medina */
    background-size: cover;
    background-position: center;
    color: #f1c40f;
    position: relative;
  }
  
  .card-grid:nth-of-type(2) .card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    z-index: 1;
  }
  
  .card-grid:nth-of-type(2) .card h3, .card-grid:nth-of-type(2) .card p, .card-grid:nth-of-type(2) .btn {
    position: relative;
    z-index: 2;
  }
  


  .card ul {
    list-style-type: disc; /* Ensures proper bullet points */
    margin: 1rem 0;
    padding-left: 1.5rem; /* Adds space for the bullets */
    position: relative;
    z-index: 2; /* Places it above the overlay */
    color: #d1d1d1; /* Use light gray for better readability */
}

.card ul li {
    font-size: 1rem; /* Keep the font size consistent with the card */
    line-height: 1.5; /* Improve readability */
    color: #ffffff; /* Switch to white for strong contrast */
}

.card-grid:first-of-type .card ul li,
.card-grid:nth-of-type(2) .card ul li {
    color: #ffffff; /* Ensures white text specifically for the first and second card grids */
}






  
  #timeTable {
    max-width: 70vw;
    margin: 0px auto;
  }
  #timeTable h2 {
      font-size: 2rem;
      font-weight: 300;
      line-height: 1.875rem;
      margin-bottom: 1.5rem;
      padding: 0;
  }  
  .accordion {
    display: block;
  }
  
  .accordion details {
    position: relative;
    margin: 10px 0;
    border: 1px solid var(--accent);
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .accordion summary {
    font-size: 1rem;
    font-weight: bold;
    background-color: var(--accent);
    color: var(--accent-txt);
    padding: 10px 15px;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease;
  }
  
  .accordion summary:hover {
    background-color: var(--accent-txt);
    color: var(--primary-txt);
  }
  
  .accordion details[open] summary {
    background-color: var(--primary-txt);
    color: var(--base);
  }
  
  .accordion div {
    background-color: var(--base);
    color: var(--primary-txt);
    padding: 15px;
    border-top: 1px solid var(--accent);
  }
  
  .time-row {
    display: flex;
    flex-direction: column;
  }
  
  .time-row .time {
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  .time-row .subject {
    margin: 0;
    color: white;
  }
  
/* Desktop Stepped Layout */
@media (min-width: 768px) {
  .accordion details:nth-child(1) { margin-left: 120px; }
  .accordion details:nth-child(2) { margin-left: 100px; }
  .accordion details:nth-child(3) { margin-left: 80px; }
  .accordion details:nth-child(4) { margin-left: 60px; }
  .accordion details:nth-child(5) { margin-left: 40px; }
  .accordion details:nth-child(6) { margin-left: 20px; }
  .accordion details:nth-child(7) { margin-left: 0; }
}
  
  /* Mobile View */
  @media (max-width: 767px) {
    .accordion details {
      margin-left: 0;
    }
  }
  
