body {
  font-family: "Tajawal", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: #fff;
}
.hero {
  background: #b30038;
  color: #fff;
  width: 90%;
  border-radius: 20px;
  height: 80vh;
}
.hero-title {
  font-size: 3rem;
  font-weight: bold;
  color: #ffd600;
}
.hero-subtitle {
  font-size: 2rem;
  font-weight: bold;
}
.class-card {
  background: #b30038;
  color: #ffd600;
  border-radius: 12px;
  padding: 32px 0;
  font-size: 2rem;
  font-weight: bold;
  margin: 12px;
  cursor: pointer;
  transition: transform 0.2s;
}
.class-card:hover {
  transform: scale(1.05);
}
.about-section {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  margin-top: 32px;
  direction: rtl;
}
.footerText {
  font-size: 1rem;
  color: #333;
}
.social-icons a {
  color: #b30038;
  margin: 0 8px;
  font-size: 1.5rem;
}
.navbar-nav .nav-link {
  font-size: 1.05rem;
}
 .navbar {
    direction: rtl;
  }
  
  /* Adjust the toggler icon position for RTL */
  .navbar-toggler {
    margin-left: auto;
    margin-right: unset;
  }
  
  /* Ensure nav items stack properly in mobile view */
  @media (max-width: 991.98px) {
    .navbar-nav {
      padding: 10px 0;
    }
    .nav-item {
      margin: 5px 0 !important;
    }
  }
.purple-text {
  color: #6c2eb3;
}

.fit img {
  width: 100%; /* Image takes full width of parent div */
  height: auto; /* Maintains aspect ratio */
  object-fit: contain; /* Ensures entire image is visible */
}
