@font-face {
  font-family: "noor";
  src: url("../fonts/font-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "noor";
  src: url("../fonts/font-bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "noor";
  src: url("../fonts/font-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "noor", sans-serif;
  color: #333;
  line-height: 1.5;
  overflow-x: hidden;
}

a{
  text-decoration: none !important;
}

main {
  padding-top: 120px;
  position: relative;
}

/* Primary Color Variable */
:root {
  --primary-green: #aaaf4e;
}

/* Navigation Bar Styling */
.navbar {
  padding: 1.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  background-color: var(--primary-green) !important;
  margin: 0 auto;
  margin-top: 2rem;
  border-radius: 50px;
  max-width: 95%;
  position: fixed;
  padding-top: 0;
  padding-bottom: 0;
  z-index: 1000;
  justify-content: center;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar-brand img {
  height: 70px;
  width: auto;
}

.nav-link {
  font-weight: 600;
  margin: 0 0.9rem;
  color: white !important;
  font-size: 0.6rem;
  position: relative;
}

.nav-link:hover {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Register Button */
.btn-register {
  color: var(--primary-green) !important;
  background-color: white !important;
  border: none;
  font-weight: 600;
  border-radius: 25px;
  font-size: 0.7rem;
  padding: 0.5rem 2.2rem !important;
}

.btn-register:hover {
  background-color: rgba(255, 255, 255, 0.9) !important;
  color: var(--primary-green) !important;
  transform: translateY(-1px);
}

/* Hero Section Styling */
.hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-section .hero-title {
  font-size: 10rem;
}

.hero-section .hero-subtitle {
  font-size: 4rem;
  color: var(--primary-green);
}

.vertical-line {
  background-color: #fff;
  width: 1px;
  height: 20px;
}

.hero-background-slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-section .hero-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.hero-slide .container {
  position: relative;
  z-index: 2;
}

/* Carousel Indicators Styling */
.carousel-indicators {
  bottom: 30px;
  z-index: 3;
  position: absolute;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  background-color: white;
  transform: scale(1.2);
}

/* Hero Buttons */
.hero-section .btn-hero {
  background-color: var(--primary-green) !important;
  color: white !important;
  border: none !important;
  font-weight: 600;
}

.hero-section .btn-hero:hover {
  background-color: #8a9a35 !important;
  color: white !important;
}

/* Search Icon Spacing */
.navbar .d-flex.align-items-center.me-3 {
  margin-right: 1.5rem !important;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-green);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #8a9a35;
}

/* About Us Section */
.about-us-section {
  padding: 4rem 0;
  position: relative;
}

.about-image {
  width: 800px;
  height: auto;
  top: 0;
  left: 0;
  position: absolute;
}

.about-content {
  padding: 2rem 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-title {
  font-size: 11rem;
  font-weight: bold;
  color: var(--primary-green);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.about-description {
  font-size: 2rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 4.5rem;
}

.about-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 6rem;
}

.about-btn {
  background-color: #ffd700;
  color: white;
  border: none;
  padding: 0.75rem 3rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.about-btn:hover {
  background-color: #ffed4e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* What We Offer Section */
.what-we-offer-section {
  padding: 4rem 0;
  background-color: #fafafa;
  position: relative;
  overflow: hidden;
}

.what-we-offer-section .section-title {
  font-size: 6.5rem;
  font-weight: bold;
  color: #8da04a;
  margin: 0;
  position: relative;
}

/* Service Cards */
.service-card {
  background: white;
  border-radius: 25px;
  padding: 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: visible;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 2.5rem;
  z-index: 5;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.service-category {
  background: #8da04a;
  color: white;
  padding: 0.8rem 1.5rem;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 20px;
  position: absolute;
  width: 250px;
  top: -13.5%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  box-shadow: 0 6px 20px rgba(56, 60, 44, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.pic{
  border: .5px solid #e9f3fb;
  display: block;
  height: 100%;
  overflow: hidden;
  padding-top: 56.25% !important;
  position: relative;
  width: 100%;
  border-radius: 15px;
}

.pic img{
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
  display: block;
}

.service-image {
  padding: 2rem 1.5rem 1rem 1.5rem;
  text-align: center;
}

.service-image img {
  border-radius: 15px;
  /* max-height: 180px; */
  object-fit: cover;
  width: 100%;
}

.service-description {
  padding: 0 1.5rem 1rem 1.5rem;
  flex-grow: 1;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #333;
  text-align: right;
}

.service-action {
  padding: 0 1.5rem 1.5rem 1.5rem;
  text-align: center;
}

.right-arrow {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  width: 100px;
  height: 200px;
  object-fit: contain;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.right-arrow:hover {
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.2));
}

.left-arrow {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  width: 100px;
  height: 200px;
  object-fit: contain;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.left-arrow:hover {
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.2));
}

.service-btn {
  background: #f5f5f5;
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
  border: 1px solid #e0e0e0;
}

.service-btn:hover {
  background: #8da04a;
  color: white;
  text-decoration: none;
  border-color: #8da04a;
}

/* Custom Carousel Indicators */
.custom-indicators {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.indicator-container {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.custom-indicator {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.custom-indicator:focus {
  outline: none;
}

.indicator-line {
  width: 40px;
  height: 3px;
  background: #ddd;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.custom-indicator.active .indicator-dot {
  background: linear-gradient(135deg, #7a8f42 0%, #8da04a 50%, #9bb052 100%);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(141, 160, 74, 0.4);
}

.custom-indicator.active .indicator-line {
  background: #8da04a;
  height: 4px;
}

.custom-indicator:hover .indicator-dot {
  background: linear-gradient(135deg, #7a8f42 0%, #8da04a 50%, #9bb052 100%);
  transform: scale(1.05);
  box-shadow: 0 3px 10px rgba(141, 160, 74, 0.35);
}

.custom-indicator:hover .indicator-line {
  background: #8da04a;
}

/* About Us Page Styles */
.about-hero-section {
  padding: 8rem 0 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.about-hero-title {
  font-size: 4rem;
  font-weight: bold;
  color: #8da04a;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.about-hero-description {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 3rem;
}

.about-hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.about-hero-btn {
  background-color: #8da04a;
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.about-hero-btn:hover {
  background-color: #7a8f42;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(141, 160, 74, 0.3);
}

.about-hero-image {
  text-align: center;
}

.about-hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mission Section */
.mission-section {
  padding: 4rem 0;
  background-color: white;
}

.mission-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #8da04a;
  margin-bottom: 1.5rem;
}

.mission-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 2rem;
}

.mission-list {
  list-style: none;
  padding: 0;
}

.mission-list li {
  padding: 0.5rem 0;
  font-size: 1rem;
  color: #555;
  position: relative;
  padding-right: 1.5rem;
}

.mission-list li::before {
  content: "✓";
  position: absolute;
  right: 0;
  color: #8da04a;
  font-weight: bold;
  font-size: 1.2rem;
}

.mission-image img {
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Vision Section */
.vision-section {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.vision-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #8da04a;
  margin-bottom: 1.5rem;
}

.vision-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 2rem;
}

.vision-goals {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.goal-item {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.goal-item:hover {
  transform: translateY(-3px);
}

.goal-item h4 {
  color: #8da04a;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.goal-item p {
  color: #666;
  margin: 0;
}

.vision-image img {
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Values Detailed Section */
.values-detailed-section {
  padding: 4rem 0;
  background-color: white;
}

.value-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border-color: #8da04a;
}

.value-icon {
  margin-bottom: 1.5rem;
}

.value-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #8da04a;
  margin-bottom: 1rem;
}

.value-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Team Section */
.team-section {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.team-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.team-image {
  height: 250px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  padding: 1.5rem;
}

.team-name {
  font-size: 1.3rem;
  font-weight: bold;
  color: #8da04a;
  margin-bottom: 0.5rem;
}

.team-position {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1rem;
  font-weight: 500;
}

.team-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* Section Titles */
/* .section-title {
  font-size: 3rem;
  font-weight: bold;
  color: #8da04a;
  margin-bottom: 1rem;
} */

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 0;
}
/* About Us Page Styles */
.who-we-are-section {
  padding: 4rem 0;
  position: relative;
}

.who-we-are-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  z-index: 1;
}

.who-we-are-image img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.who-we-are-content {
  padding: 2rem 0;
}

.who-we-are-title {
  font-size: 10rem;
  font-weight: bold;
  color: #8da04a;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.who-we-are-description {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

/* Elements Section */
.elements-section {
  padding: 4rem 0;
  background-color: white;
}

.elements-diagram {
  max-width: 100%;
  margin: 0 auto;
}

.elements-diagram img {
  border-radius: 15px;
}

/* Vision Section */
.vision-section {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.section-header-image {
  margin-bottom: 2rem;
}

.section-header-image img {
  max-width: 300px;
  height: auto;
  border-radius: 15px;
}

.vision-content,
.message-content,
.values-content {
  margin-bottom: 2rem;
}

.vision-description,
.message-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin: 0;
  text-align: center;
}

/* Message Section */
.message-section {
  padding: 4rem 0;
  background-color: white;
}

/* Values Section */
.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.value-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: white;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-3px);
}

.value-icon {
  color: #ffd700;
  font-size: 1.5rem;
  margin-left: 1rem;
  font-weight: bold;
}

.value-text {
  font-size: 1.2rem;
  color: #333;
  font-weight: 500;
}
/* FAQ Page Styles */
.faq-hero-section {
  padding: 4rem 0;
  background-color: #fafafa;
  position: relative;
}

.faq-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="leaves" width="50" height="50" patternUnits="userSpaceOnUse"><polygon points="10,10 20,5 15,15" fill="rgba(141,160,74,0.05)"/><polygon points="30,20 40,15 35,25" fill="rgba(141,160,74,0.03)"/><polygon points="20,35 30,30 25,40" fill="rgba(141,160,74,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23leaves)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.faq-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  z-index: 2;
}

.faq-hero-image img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
}

.faq-hero-title {
  font-size: 5rem;
  font-weight: bold;
  color: #8da04a;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.faq-hero-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

/* FAQ Questions Section */
.faq-questions-section {
  padding: 4rem 0;
  background-color: white;
  position: relative;
}

.faq-questions-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="leaves" width="50" height="50" patternUnits="userSpaceOnUse"><polygon points="10,10 20,5 15,15" fill="rgba(141,160,74,0.05)"/><polygon points="30,20 40,15 35,25" fill="rgba(141,160,74,0.03)"/><polygon points="20,35 30,30 25,40" fill="rgba(141,160,74,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23leaves)"/></svg>');
  opacity: 0.2;
  z-index: 1;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.faq-item {
  margin-bottom: 1.5rem;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #8da04a;
}

.faq-question {
  background: #f8f9fa;
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  border-radius: 15px;
}

.faq-question:hover {
  background: #e9ecef;
}

.faq-question[aria-expanded="true"] {
  background: #8da04a;
  color: white;
  border-radius: 15px 15px 0 0;
}

.faq-question h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.faq-question[aria-expanded="true"] h3 {
  color: white;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: bold;
  color: #8da04a;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  color: white;
  transform: rotate(90deg);
}

.faq-answer {
  padding: 1.5rem;
  background: white;
  border-radius: 0 0 15px 15px;
  border: 1px solid #8da04a;
  border-top: none;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Contact Page Styles */
.contact-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  z-index: 2;
}

.contact-hero-image img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-section {
  padding: 4rem 0;
  background-color: white;
  position: relative;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="leaves" width="50" height="50" patternUnits="userSpaceOnUse"><polygon points="10,10 20,5 15,15" fill="rgba(141,160,74,0.05)"/><polygon points="30,20 40,15 35,25" fill="rgba(141,160,74,0.03)"/><polygon points="20,35 30,30 25,40" fill="rgba(141,160,74,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23leaves)"/></svg>');
  opacity: 0.2;
  z-index: 1;
}

.contact-content {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-title {
  font-size: 8rem;
  font-weight: bold;
  color: #8da04a;
  margin-bottom: 2rem;
  line-height: 1.2;
  text-align: center;
}

.contact-form {
  max-width: 500px;
  width: 100%;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}

.message-textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: #8da04a;
  color: white;
  border: none;
  border-radius: 15px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(141, 160, 74, 0.2);
}

.contact-submit-btn:hover {
  background: #7a8a42;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(141, 160, 74, 0.3);
}

/* Contact Social Section */
.contact-social-section {
  margin-top: 3rem;
  text-align: center;
}

.social-icons-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  color: white;
}

.social-icon.whatsapp {
  background: #25d366;
  color: white;
}

.social-icon.globe {
  background: #8da04a;
  color: white;
}

.social-icon.instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  color: white;
}

.social-icon.email {
  background: #8da04a;
  color: white;
}

.social-icon.facebook {
  background: #1877f2;
  color: white;
}

.social-icon:hover {
  transform: translateY(-3px);
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); */
}

.contact-email p {
  color: #8da04a;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
}

/* Stats Section */
.stats-section {
  padding: 4rem 0;
  background-color: white;
  position: relative;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="leaves" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="%23f0f0f0" opacity="0.3"/><circle cx="30" cy="20" r="1.5" fill="%23f0f0f0" opacity="0.2"/><circle cx="20" cy="35" r="1" fill="%23f0f0f0" opacity="0.3"/><circle cx="40" cy="15" r="1" fill="%23f0f0f0" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23leaves)"/></svg>');
  opacity: 0.1;
  z-index: 1;
}

.stats-content {
  padding: 2rem 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.main-stat {
  margin-bottom: 3rem;
}

.main-stat-number {
  font-size: 20rem;
  font-weight: bold;
  color: #ffd700;
  line-height: 0.8;
  margin-bottom: 1rem;
  position: relative;
  left: 30%;
}

.main-stat-text {
  margin-top: 1rem;
  font-size: 3rem;
  color: #666;
}

.bottom-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.stat-number {
  font-size: 4.5rem;
  font-weight: bold;
  color: #ffd700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.5rem;
  color: #666;
  margin: 0;
  font-weight: 500;
}

.stats-image-container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-image {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  position: relative;
  z-index: 100;
}

/* Follow Our New Section */
.follow-new-section {
  padding: 4rem 0;
  background-color: white;
}

.follow-new-section .section-header {
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
}

.follow-new-section .section-title {
  font-size: 6rem;
  font-weight: bold;
  color: var(--primary-green);
  margin: 0;
  text-align: center;
}

.banners-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.promo-banner {
  position: relative;
  border-radius: 45px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
}

.promo-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0.9;
}

.promo-banner:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.line {
  width: 50%;
  height: 1px;
  background-color: #666;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  z-index: 2;
}

.banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  z-index: 0;
  border-radius: 25px 0 0 25px;
  overflow: hidden;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 45%;
}

.banner-text {
  flex: 1;
  padding-right: 3rem;
  margin-right: 30px;
}

.banner-title {
  font-size: 4rem;
  font-weight: bold;
  margin: 0 0 0.8rem 0;
  line-height: 1.2;
  color: white;
}

.banner-subtitle {
  font-size: 2rem;
  margin: 0;
  opacity: 0.95;
  color: white;
}

.banner-category {
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  background-color: #fff;
  backdrop-filter: blur(10px);
  margin-right: 20px;
  margin-top: 25px;
  border-radius: 10px 50px 50px 10px;
}

.banner-category .category-subtitle {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  color: #666;
}

.banner-category .category-title {
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
}

.banner-category .category-title1 {
  color: var(--primary-green) !important;
}

.banner-category .category-title2 {
  color: #ffd700 !important;
}

.banner-category .category-title3 {
  color: #c7a963 !important;
}

.banner-btn {
  border: none;
  border-radius: 10px;
  padding: 0.5rem 4.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.banner-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.services-btn {
  background-color: #c7a963;
}
.courses-btn {
  background-color: var(--primary-green);
}
.activities-btn {
  background-color: #ffd700;
}

.courses-banner .banner-title,
.courses-banner .banner-subtitle {
  color: white;
}
.activities-banner .banner-title,
.activities-banner .banner-subtitle {
  color: white;
}

.banner1-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to left,
    rgb(161 178 60) 0%,
    rgb(161 178 60) 55%,
    rgba(182, 179, 40, 0) 70%,
    rgba(182, 179, 40, 0) 100%
  );
  z-index: 1;
}

.banner2-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to left,
    #ffd700 0%,
    #ffd700 55%,
    rgba(182, 179, 40, 0) 70%,
    rgba(182, 179, 40, 0) 100%
  );
  z-index: 1;
}

.banner3-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to left,
    #c7a963 0%,
    #c7a963 55%,
    rgba(182, 179, 40, 0) 70%,
    rgba(182, 179, 40, 0) 100%
  );
  z-index: 1;
}

.services-banner .banner-title,
.services-banner .banner-subtitle {
  color: white;
}

/* Hide all table content by default */
.table-content {
  display: none;
}

/* Show only the active tab content */
.table-content[data-tab="services"] {
  display: block;
}

/* Hide all buttons by default */
.subscription-btn {
  display: none;
}

/* Show only the active tab button */
.subscription-btn[data-tab="services"] {
  display: block;
}

/* Button styling */
.subscription-buttons {
  margin-top: 20px;
  text-align: center;
}

.subscription-btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin: 0 10px;
}

.subscription-btn:hover {
  background: #0056b3;
}
  
/* Subscription Plans Section */
.subscription-plans-section {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.plan-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  transform: translateY(-5px);
}

.plan-background {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  bottom: 0;
  z-index: 1;
  border-radius: 25px;
  width: 90%;
  overflow: hidden;
}

.plan-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.plan-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.plan-header {
  position: relative;
  z-index: 3;
  padding: 1.2rem 2rem;
  border-radius: 25px;
  margin-bottom: 0;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0;
  color: white;
  text-align: center;
  line-height: 1.2;
}

.plan-content {
  position: relative;
  z-index: 3;
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.plan-duration {
  margin-bottom: 1.5rem;
}

.duration-label {
  display: block;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.duration-value {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.plan-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  margin: 1.5rem 0;
}

.plan-pricing {
  width: 100%;
}

.original-price {
  margin-bottom: 0.5rem;
}

.original-price .price-text {
  font-size: 1.5rem;
  color: white;
  text-decoration: line-through;
  text-decoration-color: #dc3545;
  text-decoration-thickness: 4px;
  text-underline-offset: 4px;
  font-weight: bold;
  opacity: 0.9;
}

.current-price .price-text {
  font-size: 2rem;
  font-weight: bold;
  color: white;
}

.plan-footer {
  position: relative;
  z-index: 2;
  padding: 1.5rem 2rem;
  text-align: center;
}

.subscribe-btn {
  color: #dc3545;
  border: none;
  border-radius: 15px;
  padding: 0.75rem 2rem;
  font-weight: bold;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.subscribe-btn:hover {
  background-color: #c82333;
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

/* Plan Color Themes */
.diamond-plan .plan-header {
  background: #4a5d96;
}

.diamond-plan .plan-overlay {
  background-color: rgba(74, 93, 150, 0.6);
}

.gold-plan .plan-header {
  background: #f1c924;
}

.gold-plan .plan-overlay {
  background-color: rgba(241, 201, 36, 0.6);
}

.silver-plan .plan-header {
  background: #c38f60;
}

.silver-plan .plan-overlay {
  background-color: rgba(195, 143, 96, 0.6);
}

/* Footer Styling */
.footer {
  background-color: var(--primary-green);
  color: white;
  padding: 3rem 0 0 0;
  position: relative;
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-btn {
  background-color: #f8f9fa;
  color: var(--primary-green);
  border: none;
  padding: 0.2rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-btn:hover {
  background-color: #e9ecef;
  transform: translateY(-1px);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  position: relative;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Footer Logo */
.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  height: 80px;
  width: auto;
  margin-left: 1rem;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.logo-arabic {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  line-height: 1;
}

.logo-english {
  font-size: 0.9rem;
  color: white;
  font-weight: 500;
  margin-top: 0.25rem;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

footer .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 8px;
  transition: all 0.3s ease;
}

footer .social-icon i {
  color: var(--primary-green);
  font-size: 1.5rem;
  font-weight: bold;
}

footer .social-icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

footer .social-icon:hover i {
  color: #fff;
}

.footer-website {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Yellow Strip */
.footer-yellow-strip {
  height: 25px;
  background-color: #ffd700;
  width: 100%;
  margin-top: 2rem;
}

/* Training Hero Section Styles */
.training-hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4rem 0;
  border-radius: 50px;
  min-height: 50vh;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(144, 164, 124, 0.7); /* Light olive-green overlay */
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text-content {
  text-align: center;
  color: white;
  padding: 3rem 2rem;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  backdrop-filter: blur(5px);
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.hero-main-title-ar {
  font-size: 7rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
}

.hero-main-title-en {
  font-size: 5rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 3px;
}

.hero-description {
  font-size: 2rem;
  line-height: 1.8;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  margin: 0 auto;
}

/* Courses Content Section Styles */
.courses-content-section {
  padding: 4rem 0;
  position: relative;
  z-index: 5;
}

/* Search Bar Styles */
.search-container {
  margin-bottom: 2rem;
}

.search-bar {
  position: relative;
  display: flex;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 3px solid var(--primary-green);
}

.courses-content-section .search-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  outline: none;
  font-size: 1rem;
  background: transparent;
  color: #333;
}

.courses-content-section .search-input::placeholder {
  color: #999;
  font-size: 1rem;
}

.courses-content-section .search-btn {
  background: var(--primary-green);
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
}

.left-courses-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  z-index: 1;
}

.left-courses {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Course Cards Styles */
.course-card {
  background: white;
  border-radius: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 1rem;
  z-index: 2;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.course-image {
  position: relative;
  overflow: hidden;
}

.course-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
}

.course-meta {
  padding: 1rem 1.5rem 0.5rem;
  display: flex;
  gap: 1rem;
  color: #999;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.course-title {
  padding: 0 1.5rem;
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--primary-green);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.course-price {
  padding: 0 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.current-price {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
}

.old-price {
  font-size: 1.4rem;
  color: #dc3545;
  text-decoration: line-through;
  font-weight: bolder;
}

.course-details-btn {
  margin: 0 1.5rem 1.5rem;
  padding: 0.8rem 1.5rem;
  background: var(--primary-green);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-grow: 1;
  margin-top: auto;
}

.course-details-btn:hover {
  background: linear-gradient(135deg, #7a8b6b, #6a7a5b);
  transform: translateY(-2px);
}

/* Call to Action Button */
.cta-container {
  text-align: center;
  margin-top: 2rem;
}

.cta-button {
  background: var(--primary-green);
  color: white;
  border: none;
  padding: 1.2rem 4rem;
  border-radius: 15px;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(144, 164, 124, 0.3);
}

.cta-button:hover {
  background: linear-gradient(135deg, #7a8b6b, #6a7a5b);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(144, 164, 124, 0.4);
}

.course-details-main {
  position: relative;
}

/* Course Details Section Styles */
.course-details-section {
  padding: 4rem 0;
  background-color: #f8f9fa;
  min-height: 60vh;
}

.course-details-content {
  text-align: center;
  padding: 2rem;
}

.course-details-title {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.course-details-description {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Course Details Content Section Styles */
.course-details-content-section {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

/* Course Information Card */
.course-info-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 0;
  height: fit-content;
}

.course-info-image {
  position: relative;
  overflow: hidden;
}

.course-info-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.course-info-details {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border: 1px solid #666;
  border-radius: 15px;
}

.info-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem !important;
}

.current-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

.info-item .info-content span {
  font-size: 1rem;
  font-weight: bold;
}

.old-price {
  font-size: 1.2rem;
  color: #dc3545;
  text-decoration: line-through;
  font-weight: bold;
}

.info-icon {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: #000;
}

.info-icon svg {
  width: 24px;
  height: 24px;
}

.info-label {
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.2;
}

.buy-now-btn {
  padding: 1rem 2rem;
  background: var(--primary-green);
  color: white;
  border: none;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0;
}

.buy-now-btn:hover {
  background: #7a8b6b;
  transform: translateY(-2px);
}

/* Course Tabs Container */
.course-tabs-container {
  border-radius: 20px;
  overflow: hidden;
}

.course-tabs {
  border-bottom: none;
  margin: 0;
  padding: 0;
}

.course-tabs .nav-link {
  border-radius: 0;
  padding: 0.5rem 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: black !important;
  background: #f8f9fa;
  border: 2px solid var(--primary-green);
  text-align: center;
  transition: all 0.3s ease;
  border-radius: 15px;
  font-weight: bold;
  margin: 0 0.5rem;
}

.course-tabs .nav-link.active {
  background: var(--primary-green);
  color: white !important;
  border: none !important;
}

.course-tabs .nav-link:hover {
  background: #e9ecef;
  color: #333;
}

.course-tabs .nav-link.active:hover {
  background: var(--primary-green);
  color: white;
}

.course-tab-content {
  padding: 0;
}

.tab-content-wrapper {
  padding: 2rem 0 0 2rem;
}

/* Description Boxes */
.description-box {
  padding: 1.5rem;
  border-radius: 15px;
}

.description-box:last-child {
  margin-bottom: 0;
}

.green-box {
  background: var(--primary-green);
  color: white;
  border-radius: 15px;
  padding: 3rem;
}

.white-box {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-top: -1rem;
}

.description-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: inherit;
}

.description-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: inherit;
}

.description-list {
  margin: 0;
  padding-right: 1.5rem;
}

.description-list li {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.description-list li:last-child {
  margin-bottom: 0;
}

/* Discussions Container Styles */
.discussions-container {
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 3rem 2rem;
  text-align: center;
  min-height: 300px;
}

.discussions-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: center;
}

.discussions-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.discussions-icon svg {
  width: 32px;
  height: 32px;
  color: #aaaf4e;
}

.discussions-title {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin: 0;
  text-align: right;
}

.no-comments-message {
  margin-top: 1rem;
}

.no-comments-message p {
  font-size: 1.5rem;
  color: #666;
  margin: 0;
  font-weight: 400;
}
/* Course Sections Container Styles */
.course-sections-container {
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.course-section {
  margin-bottom: 2rem;
}

.course-section:last-child {
  margin-bottom: 0;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eee;
}

/* .section-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
  margin: 0;
} */

.section-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-icon svg {
  width: 24px;
  height: 24px;
  color: #aaaf4e;
}

.lessons-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.lesson-item {
  background: var(--primary-green);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.lesson-item:hover {
  background: #7a8b6b;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(144, 164, 124, 0.3);
}

.lesson-access-label {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
  z-index: 2;
}

.lesson-access-label.free {
  background: #28a745;
}

.lesson-access-label.subscriber {
  background: #dc3545;
}

.lesson-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  padding-left: 6rem;
}

.lesson-title {
  font-size: 1.7rem;
  font-weight: 500;
  color: white;
  flex: 1;
}

.lesson-play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.lesson-play-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.lesson-play-btn svg {
  width: 20px;
  height: 20px;
  color: white;
}
/* Privacy Policy Styles */
.privacy-policy-main {
  padding-top: 100px;
  padding-bottom: 4rem;
  background-color: white;
  min-height: 100vh;
}

.privacy-policy-main *{
  font-family: "noor"
}

.privacy-policy-image {
  text-align: center;
  margin-bottom: 2rem;
}

.privacy-policy-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.privacy-policy-content {
  margin: 2rem auto 0 auto;
  padding: 2rem;
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
  max-width: 900px;
}

.privacy-intro {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--primary-green);
}

.privacy-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
  text-align: center;
}

.privacy-section {
  margin-bottom: 2.5rem;
}

.privacy-section:last-child {
  margin-bottom: 0;
}

.privacy-section h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-green);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eee;
}

.privacy-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1rem;
}

.privacy-section p:last-child {
  margin-bottom: 0;
}

.subsection {
  margin-bottom: 1.5rem;
}

.subsection:last-child {
  margin-bottom: 0;
}

.subsection h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.5rem;
}

.last-review {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
  border-left: 4px solid var(--primary-green);
}

.last-review strong {
  color: var(--primary-green);
}

.contact-info {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid #e9ecef;
}

.contact-item {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item strong {
  color: var(--primary-green);
  display: inline-block;
  min-width: 120px;
}

.search-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
}

.privacy-policy-main {
  min-height: 60vh;
}

.privacy-policy-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Profile Information Section Styles */
.profile-info-section {
  position: relative;
  padding: 4rem 0;
  background: #f8f9fa;
}

.profile-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.profile-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-info-section .container {
  position: relative;
  z-index: 2;
}

.profile-info-blocks {
  margin-bottom: 2rem;
}

.profile-info-blocks .info-block {
  background: #a0b364;
  border-radius: 15px;
  padding: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 15px rgba(160, 179, 100, 0.2);
  transition: all 0.3s ease;
}

.info-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(160, 179, 100, 0.3);
}

.profile-info-blocks .info-content {
  flex: 1;
  justify-content: center;
}

.profile-info-blocks .info-text {
  color: white;
  font-size: 1.5rem;
  font-weight: 500;
}

.profile-info-blocks .info-icon {
  width: 50px;
  height: 50px;
  background: white;
  border: 2px solid #a0b364;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.profile-info-blocks .info-icon i {
  color: #aaaf4e;
  font-size: 24px;
}

.edit-info-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.edit-info-link:hover {
  transform: scale(1.05);
}

.edit-icon {
  color: #a0b364;
  margin-left: 0.5rem;
  font-size: 16px;
}

.edit-text {
  color: #a0b364;
  font-size: 1rem;
  font-weight: 500;
}

.profile-info-section .action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  width: 100%;
}

.action-btn {
  background: #a0b364;
  color: white;
  border: none;
  border-radius: 15px;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  max-width: 250px;
}

.action-btn:hover {
  background: #8fa055;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(160, 179, 100, 0.3);
}

.last-login-block {
  background: white;
  border: 1px solid rgba(160, 179, 100, 0.3);
  padding: 1.5rem 6rem;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.last-login-text {
  font-size: 0.95rem;
}

.subscriptions-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.subscriptions-btn {
  background: #f9be32;
  color: white;
  border: none;
  border-radius: 15px;
  padding: 1.2rem 7rem;
  font-size: 3rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(249, 190, 50, 0.3);
}

.subscriptions-btn:hover {
  background: #e6a829;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 190, 50, 0.4);
}

.heart-icon {
  margin-left: 0.5rem;
  font-size: 65px;
}

/* Newsletter Subscription Section Styles */
.newsletter-subscription-section {
  background: #6c7b95;
  border-radius: 15px;
  padding: 2rem;
  margin-top: 2rem;
  box-shadow: 0 4px 15px rgba(108, 123, 149, 0.2);
}

.newsletter-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.newsletter-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.newsletter-icon i {
  color: white;
  font-size: 32px;
}

.newsletter-title {
  color: white;
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  text-align: right;
  flex: 1;
}

.newsletter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

.newsletter-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 120px;
}

.newsletter-checkbox {
  width: 18px;
  height: 18px;
  background: white;
  border: 2px solid white;
  border-radius: 3px;
  appearance: none;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.newsletter-checkbox:checked {
  background: #6c7b95;
  border-color: white;
}

.newsletter-checkbox:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.newsletter-label {
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-align: right;
  flex: 1;
}

.newsletter-checkbox:hover {
  transform: scale(1.1);
}

.newsletter-label:hover {
  color: #f0f0f0;
}

/* Personal Information Modal Styles */
.personal-info-modal {
  background: #f8f9fa;
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.personal-info-header {
  border-bottom: 1px solid #6c757d;
  padding: 1.5rem 2rem 1rem 2rem;
  background: transparent;
  position: relative;
}

.personal-info-close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #6c757d;
  padding: 0;
  width: auto;
  height: auto;
}

.personal-info-close:hover {
  color: #495057;
}

.personal-info-title {
  color: #495057;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  text-align: right;
}

.personal-info-body {
  padding: 2rem;
  background: transparent;
}

.personal-info-field {
  display: flex;
  align-items: center;
  background: #6c757d;
  border-radius: 25px;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.field-icon {
  width: 40px;
  height: 40px;
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
  flex-shrink: 0;
}

.field-icon i {
  color: #6c757d;
  font-size: 16px;
}

.personal-info-input {
  background: transparent;
  border: none;
  color: #e9ecef;
  font-size: 1rem;
  padding: 0;
  flex: 1;
  background: #6c757d !important;
  border: none !important;
}

.login-container .personal-info-field {
  background: #93979b !important;
  border: none !important;
  width: 100% !important;
}

.login-container .personal-info-input {
  background: #93979b !important;
  border: none !important;
}

.login-container .personal-info-input::placeholder {
  color: #fff !important;
  text-align: right !important;
}

.login-container .field-icon {
  background: #dbdbdb !important;
  border: none !important;
  font-size: 2rem !important;
  width: 70px !important;
  height: 70px !important;
}

.login-container .field-icon i {
  color: var(--primary-green) !important;
  font-size: 2rem !important;
}

.personal-info-input::placeholder {
  color: #adb5bd;
}

.personal-info-input:focus {
  background: transparent;
  border: none;
  box-shadow: none;
  color: #e9ecef;
}

.personal-info-footer {
  border-top: none;
  padding: 1.5rem 2rem 2rem 2rem;
  background: transparent;
  justify-content: space-between;
}

.personal-info-btn {
  background: #6c757d;
  border: none;
  border-radius: 8px;
  color: #e9ecef;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
  flex: 1;
  max-width: 120px;
}

.personal-info-btn:hover {
  background: #5a6268;
  color: #e9ecef;
}
/* User Subscriptions Section */
.user-subscriptions-section {
  background: #f8f9fa;
  min-height: 60vh;
  padding: 3rem 0;
}

.subscription-section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.subscription-section-title h2 {
  background: linear-gradient(135deg, #aaaf4e 0%, #8a9a35 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(161, 178, 60, 0.3);
}

.subscription-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 0;
  background: white;
  padding: 0;
  border-bottom: none;
}

.subscription-tabs .tab-item {
  flex: 1;
  padding: 1.2rem 1rem;
  text-align: center;
  cursor: pointer;
  border-radius: 15px;
  transition: all 0.3s ease;
  background: white;
  color: #aaaf4e;
  font-weight: bold;
  font-size: 1rem;
  position: relative;
  border: 2px solid #aaaf4e;
}

.tab-item:hover {
  background: #f8f9fa;
  color: #8a9a35;
}

.tab-item.active {
  background: #aaaf4e;
  color: white;
  z-index: 2;
}

.subscription-table-container {
  overflow: hidden;
  margin-top: 0;
  border-radius: 30px;
}

.table-header {
  color: #aaaf4e;
  padding: 0;
  border-radius: 30px;
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0;
  border-radius: 30px;
  border: 2px solid #aaaf4e;
}

.table-cell {
  padding: 1.2rem 1rem;
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
}

.table-cell:last-child {
  border-right: none;
}

.table-content {
  min-height: 200px;
  padding: 2rem;
}

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
}

.empty-state p {
  color: #dc3545;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0;
}

/* Login Page Styles */
.login-main {
  min-height: 100vh;
  background-image: url("../img/profile-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
}

.login-section {
  padding: 7.5rem 0;
  width: 100%;
}

.user-icon-container {
  text-align: center;
  position: absolute;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
}

.user-icon {
  width: 120px;
  height: 120px;
  background: #aaaf4e;
  border: 3px solid #aaaf4e;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -40px;
  position: relative;
  z-index: 10;
}

.user-icon i {
  font-size: 4rem;
  color: white;
}

.login-container {
  background: white;
  border-radius: 20px;
  padding: 4rem 2rem 2rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid #aaaf4e;
  position: relative;
}

.input-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.input-group-text {
  background: #aaaf4e;
  border: none;
  border-radius: 25px 0 0 25px;
  color: white;
  padding: 0.75rem 1rem;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.input-group-text i {
  font-size: 1rem;
  color: white;
}

.form-control {
  border: 2px solid #e9ecef;
  border-radius: 0 25px 25px 0;
  border-left: none;
  padding: 0.75rem 1rem;
  background: #f8f9fa;
  font-size: 1rem;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-control:focus {
  border-color: #aaaf4e;
  border-left: none;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1),
    0 0 0 0.2rem rgba(161, 178, 60, 0.25);
  background: white;
  outline: none;
}

.form-control::placeholder {
  color: #6c757d;
  font-weight: 400;
}

.options-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.form-check {
  margin: 0;
}

.form-check-input {
  border: 2px solid #6c757d;
  border-radius: 4px;
  width: 18px;
  height: 18px;
}

.form-check-input:checked {
  background-color: #aaaf4e;
  border-color: #aaaf4e;
}

.form-check-label {
  color: #333;
  font-size: 0.9rem;
  margin-right: 0.5rem;
}

.forgot-password {
  color: #6c757d;
  text-decoration: none;
  font-size: 0.9rem;
}

.forgot-password:hover {
  color: #aaaf4e;
  text-decoration: underline;
}

.btn-login {
  width: 100%;
  background: #aaaf4e;
  border: none;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: white;
  transition: all 0.3s ease;
}

.btn-login:hover {
  background: #8a9a35;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(161, 178, 60, 0.3);
}

.new-user-container {
  text-align: center;
  margin-top: 2rem;
}

.new-user-link {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 2px solid #6c757d;
  border-radius: 10px;
  color: #6c757d;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.new-user-link:hover {
  border-color: #aaaf4e;
  color: #aaaf4e;
  background: rgba(161, 178, 60, 0.1);
}

/* Register Page Styles */
.register-main {
  padding-top: 80px;
  min-height: 100vh;
  background-image: url("../img/profile-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
}

.register-section {
  padding: 2rem 0;
  width: 100%;
}

.register-container {
  background: #aaaf4e;
  border-radius: 20px;
  padding: 3rem 2rem 2rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

.register-container .form-title {
  text-align: center;
  margin-bottom: 2rem;
}

.register-container .form-title h1 {
  color: white;
  font-size: 4rem;
  font-weight: bold;
  margin: 0;
}

.form-group {
  margin-bottom: 1.5rem;
}

.register-container .register-input {
  border: 2px solid white;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  background: transparent;
  font-size: 1rem;
  width: 100%;
  transition: all 0.3s ease;
}

.register-input:focus {
  border-color: white;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
  background: white;
  outline: none;
}

.register-container .register-input:focus::placeholder {
  color: #000 !important;
}

.register-input::placeholder {
  color: #fff;
  font-weight: 400;
  text-align: right;
}

.terms-checkbox {
  text-align: center;
}

.register-container .form-check {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.register-container .form-check-input {
  border: 2px solid white;
  border-radius: 4px;
  width: 18px;
  height: 18px;
  margin-left: 0.5rem;
  background-color: transparent;
}

.register-container .form-check-input:checked {
  background-color: white;
  border-color: white;
}

.register-container .form-check-input:checked[type="checkbox"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='%23aaaf4e' d='m6.26 9.64 2.83 2.83 8.49-8.49'/%3e%3c/svg%3e");
}

.register-container .form-check-label {
  color: white;
  font-size: 0.9rem;
  margin: 0;
}

.btn-register-submit {
  width: 100%;
  background: white;
  border: none;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: #aaaf4e;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.btn-register-submit:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.login-link-container {
  text-align: center;
}

.login-link-container p {
  color: white;
  font-size: 0.9rem;
  margin: 0;
}

.login-link {
  color: white;
  text-decoration: underline;
  font-weight: bold;
}

.login-link:hover {
  color: #f8f9fa;
  text-decoration: none;
}

/* Verification Code Page Styles */
.verification-main {
  padding-top: 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.forget-password-section {
  padding: 2rem 0;
  width: 100%;
}

.verification-section {
  padding: 2rem 0;
  width: 100%;
}

.verification-container {
  background: #f9be32;
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
}

.verification-title {
  margin-bottom: 3rem;
}

.verification-title h1 {
  color: white;
  font-size: 3rem;
  font-weight: bold;
  margin: 0;
}

.code-inputs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.code-input {
  width: 60px;
  height: 60px;
  border: 2px solid white;
  border-radius: 10px;
  background: #f9be32;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
}

.code-input:focus {
  outline: none;
  background: white;
  color: #f9be32;
  border-color: white;
}

.code-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.btn-confirm {
  background: white;
  border: none;
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: #6c757d;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  min-width: 200px;
}

.btn-confirm:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.resend-container {
  text-align: center;
}

.resend-link {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
}

.resend-link:hover {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
}

.forget-password-container {
  background-color: #f9be32 !important;
}

/* Success Icon Styles */
.success-container {
  background-color: #f9be32 !important;
  text-align: center;
}

.success-icon-container {
  text-align: center;
  margin-bottom: 2rem;
}

.success-icon {
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.success-icon::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  background: #f9be32;
  border-radius: 50%;
  z-index: -1;
  top: -10px;
  left: -10px;
}

.success-icon i {
  font-size: 3rem;
  color: #f9be32;
  font-weight: bold;
}

.success-container .verification-title h1 {
  color: white !important;
  font-size: 2rem !important;
  margin-bottom: 2rem;
}

/* Newsletters Page Styles */
.newsletters-main {
  padding-top: 80px;
  min-height: 100vh;
  background: #f8f9fa;
  position: relative;
}

.newsletters-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../img/profile-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: 0;
}

.newsletters-section {
  padding: 4rem 0;
  position: relative;
  z-index: 1;
}

.newsletters-visual-container {
  position: relative;
  background: white;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
  min-height: 400px;
}

.speaker-section {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.speaker-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.speaker-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.yellow-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to left,
    #ffd700 0%,
    #ffd700 25%,
    rgba(182, 179, 40, 0) 40%,
    rgba(182, 179, 40, 0) 100%
  );
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 2rem;
  z-index: 2;
}

.panel-text {
  color: white;
  font-size: 5rem;
  font-weight: bold;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.newsletters-description {
  background: white;
  border-radius: 15px;
  padding: 2rem;
}

.newsletters-description p {
  color: #333;
  font-size: 2rem;
  line-height: 1.8;
  margin: 0;
  text-align: right;
}

/* Newsletter Search and Filter Section */
.newsletter-search-section {
  margin: 3rem 0;
}

.search-container {
  width: 100%;
}

.newsletter-search-section .search-input-group {
  position: relative;
  display: flex;
  width: 100%;
}

.newsletter-search-section .search-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 2px solid #f9be32;
  border-radius: 25px 0 0 25px;
  background: white;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.newsletter-search-section .search-input:focus {
  border-color: #aaaf4e;
  box-shadow: 0 0 0 3px rgba(161, 178, 60, 0.1);
}

.newsletter-search-section .search-btn {
  background: #f9be32;
  border: 2px solid #f9be32;
  border-radius: 0 25px 25px 0;
  padding: 1rem 1.5rem;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 60px;
}

.newsletter-search-section .search-btn:hover {
  background: #aaaf4e;
  border-color: #aaaf4e;
}

.filter-container {
  width: 100%;
}

.filter-group {
  display: flex;
  gap: 1rem;
  width: 100%;
}

.filter-select {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 2px solid #f9be32;
  border-radius: 25px;
  background: white;
  font-size: 1rem;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 1rem center;
  background-repeat: no-repeat;
  background-size: 1rem;
  padding-right: 3rem;
}

.filter-select:focus {
  border-color: #aaaf4e;
  box-shadow: 0 0 0 3px rgba(161, 178, 60, 0.1);
}

/* Newsletter Cards Section */
.newsletter-cards-section {
  margin-top: 3rem;
}

.newsletter-card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  min-height: 660px;
  position: relative;
}

.newsletter-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.category-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  color: #e6c200;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  z-index: 3;
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(
    180deg,
    rgba(255, 204, 0, 0) 0%,
    #ffcc00 74%,
    #ffcc00 100%
  );
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.card-title {
  color: #fff;
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.card-description {
  color: #fff;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.card-dates {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.date-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  color: #fff;
  font-size: 0.7rem;
}

.date-item i {
  margin-left: 0.5rem;
  color: #fff;
}

.newsletter-card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.read-btn {
  background: #ffd700;
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: auto;
  margin: 0 auto;
  display: block;
}

.read-btn:hover {
  background: #aaaf4e;
  transform: translateY(-2px);
}

.forget-password-container h1 {
  font-size: 2.5rem !important;
  color: white !important;
}

.forget-password-container p {
  font-size: 1rem !important;
  color: white !important;
  font-weight: 500 !important;
}

.forget-password-container .form-group {
  margin-bottom: 1rem !important;
}

/* Services Hero Section Styles */
.services-hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 60px;
}

.services-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.services-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.services-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(161, 178, 60, 0.7) 0%,
    rgba(161, 178, 60, 0.5) 50%,
    rgba(161, 178, 60, 0.8) 100%
  );
  z-index: 2;
}

.services-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-hero-title {
  font-size: 8.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-family: "noor", sans-serif;
}

.services-hero-subtitle {
  font-size: 2.5rem;
  color: white;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  font-family: "noor", sans-serif;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Services Section Styles */
.services-section {
  padding: 4rem 0;
  background-color: #fafafa;
  position: relative;
  overflow: hidden;
}

.services-section .service-image {
  padding: 1rem;
  text-align: center;
  border-radius: 35px;
  border: 3px solid var(--primary-green);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  position: relative;
  width: 30%;
}

.services-section .service-image img {
  border-radius: 15px;
  object-fit: cover;
  max-height: 350px;
  width: 100%;
}

.services-section .service-content-container {
  width: 70%;
  max-width: 70%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  border-radius: 15px;
  padding: 2rem;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.services-section .service-description {
  padding: 0 1.5rem 1rem 1.5rem;
  flex-grow: 1;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.services-section .service-content-container .service-title {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.services-section .service-image .service-btn {
  background: var(--primary-green);
  color: white;
  padding: 0.5rem 2rem;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: bold;
  position: absolute;
  bottom: 25px;
  right: 50%;
  transform: translateX(50%);
  text-align: center;
  border: none;
}

.services-section .service-action {
  padding: 0 1.5rem 1.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.services-section .service-action-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}

.services-section .service-action-icon i {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--primary-green);
}

.services-section .service-action-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  background: var(--primary-green);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: bold;
}

.service-details-content-section {
  padding: 4rem 0;
  background-color: #fafafa;
  position: relative;
  overflow: hidden;
}

.service-details-content-section .service-image-bg {
  border-radius: 35px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 1;
}

.service-details-content-section .service-details-description {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  border-radius: 15px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 100;
  margin-top: -30px;
  background-color: white;
}

.service-details-content-section .service-image-bg img {
  border-radius: 35px;
  object-fit: cover;
  max-height: 80vh;
  width: 100%;
}

.service-details-content-section .service-image-bg .service-name {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  background: var(--primary-green);
  color: white;
  padding: 1rem 2rem 3rem 1rem;
  border-radius: 15px;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
}
.service-details-content-section .service-details-purchase-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 50%;
}

.service-details-content-section
  .service-details-description
  .service-details-text {
  max-width: 100%;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

.service-details-content-section
  .service-details-description
  .service-details-buy-btn {
  border: none;
  background-color: var(--primary-green);
  padding: 0.5rem 4rem;
  color: #fff;
  display: flex;
  justify-content: center;
  width: 100%;
  font-weight: bold;
  font-size: 1.6rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.service-details-content-section
  .service-details-description
  .price-input-field {
  display: flex;
  justify-content: center;
  border: 1px #333 solid;
  padding: 10px;
  display: flex;
  border-radius: 15px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.service-details-content-section
  .service-details-description
  .price-input-field
  i {
  color: var(--primary-green);
  font-size: 1rem;
}

.service-details-content-section .service-details-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.service-details-content-section .service-details-date i {
  color: var(--primary-green);
  font-size: 1rem;
}

.service-details-content-section .vertical-line {
  width: 1.5px;
  height: 200px;
  background-color: var(--primary-green);
  margin: 0 2rem;
}
/* Lecture Page Styles */
.lecture-content-section {
  padding: 4rem 0;
  background-color: #fafafa;
  min-height: 100vh;
}

.lecture-content-section .lecture-main-content {
  padding-right: 2rem;
}

.lecture-content-section .lecture-main-content .lecture-video-player {
  background-color: var(--primary-green);
  margin-bottom: 2rem;
  border-radius: 15px;
}

.lecture-content-section
  .lecture-main-content
  .lecture-video-player
  .lecture-video {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
}

.lecture-content-section
  .lecture-main-content
  .lecture-video-player
  .video-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.lecture-content-section
  .lecture-main-content
  .lecture-video-player
  .video-placeholder
  i {
  font-size: 4rem;
  color: white;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.lecture-content-section
  .lecture-main-content
  .lecture-video-player
  .video-placeholder
  i:hover {
  transform: scale(1.1);
}

.lecture-content-section .lecture-main-content .lecture-title h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 2rem;
  font-family: "noor", sans-serif;
}

.lecture-content-section .lecture-main-content .lecture-description,
.lecture-content-section .lecture-main-content .lecture-content-details {
  margin-bottom: 2rem;
}

.lecture-content-section .lecture-main-content .lecture-description {
  padding: 1rem;
  background-color: #dbdbdb;
  border-radius: 15px;
}

.lecture-content-section .lecture-main-content .lecture-description h3,
.lecture-content-section .lecture-main-content .lecture-content-details h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1rem;
  font-family: "noor", sans-serif;
}

.lecture-content-section .lecture-main-content .lecture-description p,
.lecture-content-section
  .lecture-main-content
  .lecture-content-details
  .content-items
  p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
  text-align: right;
  font-family: "noor", sans-serif;
  margin-bottom: 1rem;
}

.lecture-content-section .lecture-sidebar .lecture-discussions-card,
.lecture-content-section .lecture-sidebar .lecture-sections-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  overflow: hidden;
}

.lecture-content-section
  .lecture-sidebar
  .lecture-discussions-card
  .lecture-card-header,
.lecture-content-section
  .lecture-sidebar
  .lecture-sections-card
  .lecture-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem;
  border-bottom: 2px solid var(--primary-green);
  margin-left: 1rem;
  margin-right: 1rem;
}

.lecture-content-section
  .lecture-sidebar
  .lecture-discussions-card
  .lecture-card-header
  i,
.lecture-content-section
  .lecture-sidebar
  .lecture-sections-card
  .lecture-card-header
  i {
  font-size: 1.8rem;
  color: var(--primary-green);
}

.lecture-content-section
  .lecture-sidebar
  .lecture-discussions-card
  .lecture-card-header
  h3,
.lecture-content-section
  .lecture-sidebar
  .lecture-sections-card
  .lecture-card-header
  h3 {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin: 0;
}

.lecture-content-section
  .lecture-sidebar
  .lecture-discussions-card
  .lecture-card-content,
.lecture-content-section
  .lecture-sidebar
  .lecture-sections-card
  .lecture-card-content {
  padding: 1.5rem;
}

.lecture-content-section
  .lecture-sidebar
  .lecture-discussions-card
  .lecture-card-content
  .lecture-comments-toggle {
  margin-bottom: 1rem;
}

.lecture-content-section
  .lecture-sidebar
  .lecture-discussions-card
  .lecture-card-content
  .lecture-comments-toggle
  span {
  font-size: 1.2rem;
  color: #666;
  font-weight: bold;
  display: block;
  margin-bottom: 0.5rem;
  text-align: center;
}

.lecture-content-section
  .lecture-sidebar
  .lecture-discussions-card
  .lecture-card-content
  .lecture-comments-toggle
  .lecture-toggle-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.lecture-content-section
  .lecture-toggle-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  border: 1px solid var(--primary-green);
  cursor: pointer;
  transition: all 0.3s ease;
}

.lecture-content-section
  .lecture-toggle-btn.active {
  background-color: var(--primary-green);
  color: white;
}

.lecture-content-section
  .lecture-toggle-btn:not(.active) {
  background-color: #f8f9fa;
  color: #666;
}

.lecture-content-section
  .lecture-sidebar
  .lecture-discussions-card
  .lecture-card-content
  .lecture-no-comments {
  margin-bottom: 1rem;
}

.lecture-content-section
  .lecture-sidebar
  .lecture-discussions-card
  .lecture-card-content
  .lecture-no-comments
  p {
  font-size: 1.2rem;
  font-weight: bold;
  color: #dc3545;
  text-align: center;
  margin: 0;
}

.lecture-content-section
  .lecture-comment-form {
  position: relative;
}

.lecture-content-section
  .lecture-comment-input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: "noor", sans-serif;
  background-color: #f8f9fa;
  resize: none;
}

.lecture-content-section
  .lecture-comment-input:focus {
  outline: none;
  border-color: var(--primary-green);
  background-color: white;
}

.lecture-content-section
  .lecture-send-btn {
  position: absolute;
  left: 1.5rem;
  bottom: 2rem;
  padding: 0.5rem 0.8rem;
  background-color: var(--primary-green);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: background-color 0.3s ease;
  font-family: "noor", sans-serif;
}

.lecture-content-section
  .lecture-send-btn:hover {
  background-color: #8a9a35;
}

/* Lesson List */
.lecture-content-section
  .lecture-sidebar
  .lecture-sections-card
  .lecture-card-content
  .lecture-lesson-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lecture-content-section
  .lecture-sidebar
  .lecture-sections-card
  .lecture-card-content
  .lecture-lesson-list
  .lecture-lesson-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: "noor", sans-serif;
}

.lecture-content-section
  .lecture-sidebar
  .lecture-sections-card
  .lecture-card-content
  .lecture-lesson-list
  .lecture-lesson-item:hover {
  background-color: #f8f9fa;
}

.lecture-content-section
  .lecture-sidebar
  .lecture-sections-card
  .lecture-card-content
  .lecture-lesson-list
  .lecture-lesson-item.active {
  background-color: var(--primary-green);
  color: white;
}

.lecture-content-section
  .lecture-sidebar
  .lecture-sections-card
  .lecture-card-content
  .lecture-lesson-list
  .lecture-lesson-item
  i {
  font-size: 1rem;
  color: var(--primary-green);
}

.lecture-content-section
  .lecture-sidebar
  .lecture-sections-card
  .lecture-card-content
  .lecture-lesson-list
  .lecture-lesson-item.active
  i {
  color: white;
}

.lecture-content-section
  .lecture-sidebar
  .lecture-sections-card
  .lecture-card-content
  .lecture-lesson-list
  .lecture-lesson-item
  span:first-of-type {
  flex: 1;
  font-size: 1rem;
}

.lecture-content-section
  .lecture-sidebar
  .lecture-sections-card
  .lecture-card-content
  .lecture-lesson-list
  .lecture-lesson-item
  .lecture-lesson-badge {
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
}

.lecture-content-section
  .lecture-sidebar
  .lecture-sections-card
  .lecture-card-content
  .lecture-lesson-list
  .lecture-lesson-item
  .lecture-lesson-badge.free {
  background-color: #28a745;
  color: white;
}

.lecture-content-section
  .lecture-sidebar
  .lecture-sections-card
  .lecture-card-content
  .lecture-lesson-list
  .lecture-lesson-item
  .lecture-lesson-badge.premium {
  background-color: #dc3545;
  color: white;
}

/* Social Media Icons */
.lecture-content-section .lecture-sidebar .lecture-social-media-icons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.lecture-content-section
  .lecture-sidebar
  .lecture-social-media-icons
  .lecture-social-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-green);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.lecture-content-section
  .lecture-sidebar
  .lecture-social-media-icons
  .lecture-social-icon:hover {
  background-color: #8a9a35;
}

.lecture-content-section
  .lecture-sidebar
  .lecture-social-media-icons
  .lecture-social-icon
  i {
  font-size: 1.2rem;
}

/* Newsletter Details Page Styles */
.newsletter-details-section {
  padding: 4rem 0;
}

.newsletter-details-section .newsletter-details-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
}

.newsletter-details-section
  .newsletter-details-card
  .newsletter-details-card-top {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.newsletter-details-section
  .newsletter-details-card
  .newsletter-details-card-top
  .newsletter-details-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.newsletter-details-section
  .newsletter-details-card
  .newsletter-details-card-top
  .newsletter-details-image-container
  .newsletter-details-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.newsletter-details-section
  .newsletter-details-card
  .newsletter-details-card-top
  .newsletter-details-image-container
  .newsletter-details-yellow-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(
    to top,
    #ffd700 0%,
    rgba(255, 215, 0, 0.1) 40%,
    rgba(255, 215, 0, 0.3) 70%,
    transparent 100%
  );
  pointer-events: none;
}

.newsletter-details-section
  .newsletter-details-card
  .newsletter-details-card-top
  .newsletter-details-category-tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.newsletter-details-section
  .newsletter-details-card
  .newsletter-details-card-top
  .newsletter-details-category-tag
  .newsletter-details-category-text {
  font-size: 0.9rem;
  font-weight: bold;
  color: #333;
  font-family: "noor", sans-serif;
}

.newsletter-details-section
  .newsletter-details-card
  .newsletter-details-card-bottom {
  background: #ffd700;
  padding: 2rem;
  position: relative;
}

.newsletter-details-section
  .newsletter-details-card
  .newsletter-details-card-bottom
  .newsletter-details-title-container {
  margin-bottom: 2rem;
}

.newsletter-details-section
  .newsletter-details-card
  .newsletter-details-card-bottom
  .newsletter-details-title-container
  .newsletter-details-title {
  font-size: 3rem;
  font-weight: bold;
  color: white;
  margin: 0;
  line-height: 1.4;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.newsletter-details-section .newsletter-details-dates-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  margin-top: 1rem;
}

.newsletter-details-section
  .newsletter-details-dates-container
  .newsletter-details-date-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.newsletter-details-section
  .newsletter-details-dates-container
  .newsletter-details-date-item
  i {
  font-size: 1.7rem;
  color: #e6a829;
}

.newsletter-details-section
  .newsletter-details-dates-container
  .newsletter-details-date-item
  .newsletter-details-date-text {
  font-size: 0.95rem;
  color: #333;
  font-weight: bold;
}

/* Newsletter Content Section Styles */
.newsletter-content-section {
  padding: 4rem 0;
}

.newsletter-content-section .newsletter-description-card {
  border-radius: 20px;
  padding: 2rem 2rem 3rem 2rem;
  position: relative;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
  background-color: #ffd700;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.newsletter-content-section
  .newsletter-description-card
  .newsletter-description-content {
  position: relative;
  z-index: 2;
}

.newsletter-content-section
  .newsletter-description-card
  .newsletter-description-content
  .newsletter-description-text {
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  margin: 0;
  line-height: 1.6;
}

.newsletter-content-section .newsletter-content-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
  margin-top: -1rem;
}

.newsletter-content-section .newsletter-content-card .newsletter-content-text {
  text-align: right;
}

.newsletter-content-section
  .newsletter-content-card
  .newsletter-content-text
  p {
  font-size: 1rem;
  color: #000;
  line-height: 1.8;
  font-weight: bold;
}

.newsletter-content-section
  .newsletter-content-card
  .newsletter-content-text
  p:last-child {
  margin-bottom: 0;
}
/* Newsletter Additional Info Section Styles */
.newsletter-additional-info-section {
  background-color: white;
  padding: 4rem 0;
}

.newsletter-additional-info-section .newsletter-info-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 35px rgba(0, 0, 0, 0.6);
}

.newsletter-additional-info-section .newsletter-info-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.newsletter-additional-info-section .newsletter-keywords-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 1.5rem;
  margin-top: 3rem;
}

.newsletter-additional-info-section .newsletter-social-share-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 1.5rem;
  margin-top: 3rem;
  text-align: center;
}

.newsletter-additional-info-section
  .newsletter-info-card
  .newsletter-info-content {
  text-align: right;
}

.newsletter-additional-info-section
  .newsletter-info-card
  .newsletter-attachment-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #333;
}

.newsletter-additional-info-section
  .newsletter-info-card
  .newsletter-attachment-item:last-child {
  border-bottom: none;
}

.newsletter-additional-info-section
  .newsletter-info-card
  .newsletter-attachment-item
  .newsletter-attachment-text {
  font-size: 2rem;
  color: #333;
  font-weight: bold;
}

.newsletter-additional-info-section
  .newsletter-info-card
  .newsletter-attachment-item
  .newsletter-attachment-badge {
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  color: white;
}

.newsletter-additional-info-section
  .newsletter-info-card
  .newsletter-attachment-item
  .newsletter-attachment-badge.free {
  background-color: #28a745;
}

.newsletter-additional-info-section
  .newsletter-info-card
  .newsletter-attachment-item
  .newsletter-attachment-badge.premium {
  background-color: #dc3545;
}

.newsletter-additional-info-section
  .newsletter-info-card
  .newsletter-section-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #333;
  cursor: pointer;
}

.newsletter-additional-info-section
  .newsletter-info-card
  .newsletter-section-item:last-child {
  border-bottom: none;
}

.newsletter-additional-info-section
  .newsletter-info-card
  .newsletter-section-item
  .newsletter-section-content {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.newsletter-additional-info-section
  .newsletter-info-card
  .newsletter-section-item
  .newsletter-section-content
  .newsletter-section-text {
  font-size: 2rem;
  color: #333;
  font-weight: bold;
}

.newsletter-additional-info-section
  .newsletter-info-card
  .newsletter-section-item
  .newsletter-section-content
  .newsletter-section-date {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: bold;
}

.newsletter-additional-info-section
  .newsletter-info-card
  .newsletter-section-item
  .newsletter-section-content
  .newsletter-section-date
  .newsletter-section-date-icon {
  font-size: 0.8rem;
  color: #999;
}

.newsletter-additional-info-section
  .newsletter-info-card
  .newsletter-section-item
  .newsletter-section-content
  .newsletter-section-date
  .newsletter-section-date-text {
  font-size: 0.8rem;
  color: #999;
  font-family: "noor", sans-serif;
}

.newsletter-additional-info-section
  .newsletter-info-card
  .newsletter-section-item
  .newsletter-section-badge {
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  color: white;
  font-family: "noor", sans-serif;
}

.newsletter-additional-info-section
  .newsletter-info-card
  .newsletter-section-item
  .newsletter-section-badge.free {
  background-color: #28a745;
}

.newsletter-additional-info-section
  .newsletter-info-card
  .newsletter-section-item
  .newsletter-section-badge.premium {
  background-color: #dc3545;
}

.newsletter-additional-info-section .newsletter-social-share {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.newsletter-additional-info-section
  .newsletter-social-share
  .newsletter-social-icon {
  width: 50px;
  height: 50px;
  background-color: #ffd700;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.newsletter-additional-info-section
  .newsletter-social-share
  .newsletter-social-icon:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  color: white;
}

.newsletter-additional-info-section .newsletter-info-card .newsletter-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.newsletter-additional-info-section .newsletter-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.newsletter-additional-info-section
  .newsletter-keywords
  .newsletter-keyword-tag {
  background-color: #ffd700;
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  font-family: "noor", sans-serif;
}

/* Newsletter Contact Banner Styles */
.newsletter-contact-banner {
  background-color: #28a745;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding: 0.5rem 0;
  border-radius: 40px;
}

.newsletter-contact-banner .newsletter-contact-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.newsletter-contact-banner
  .newsletter-contact-content
  .newsletter-contact-icon {
  width: 80px;
  height: 80px;
  background-color: white;
  border: 3px solid #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #28a745;
  font-size: 2.2rem;
}

.newsletter-contact-banner
  .newsletter-contact-content
  .newsletter-contact-text a {
  color: white;
  font-size: 3rem;
  font-weight: bold;
  margin: 0;
}

/* Practical Applications Modal Styles */
.practical-applications-clickable {
  cursor: pointer;
  transition: all 0.3s ease;
}

.practical-applications-clickable:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
}

.practical-applications-modal {
  border-radius: 20px;
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

.practical-applications-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: none;
  padding: 2rem 2rem 1rem 2rem;
  position: relative;
}

.practical-applications-close-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #000;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 10;
  font-weight: bolder;
}

.practical-applications-title-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.practical-applications-badge {
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  color: white;
}

.practical-applications-badge.free {
  background-color: #28a745;
}

.practical-applications-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
  margin: 0;
}

.practical-applications-separator {
  width: 100%;
  height: 1px;
  background-color: #ddd;
  margin-bottom: 1rem;
}

.practical-applications-dates {
  display: flex;
  width: 100%;
  gap: 1rem;
  margin-bottom: 1rem;
}

.practical-applications-date-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.practical-applications-date-icon {
  font-size: 0.9rem;
  color: #e6c200;
}

.practical-applications-date-text {
  font-size: 0.9rem;
  color: #666;
}

.practical-applications-modal-body {
  padding: 2rem;
  background-color: #f5f5f5;
}

.practical-applications-description-box {
  background-color: #ffd700;
  border-radius: 15px 15px 0 0;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.practical-applications-description-text {
  font-size: 1rem;
  color: #fff;
  margin: 0;
  font-weight: bold;
  line-height: 1.6;
}

.practical-applications-content-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.practical-applications-content-text {
  font-size: 1rem;
  color: #000;
  margin: 0;
  line-height: 1.6;
  font-weight: bold;
}

.practical-applications-modal-footer {
  border-top: none;
  padding: 1rem 2rem 2rem 2rem;
}

.practical-applications-close-button {
  background-color: #e9ecef;
  color: #333;
  border: none;
  border-radius: 10px;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: bold;
  font-family: "noor", sans-serif;
  transition: all 0.3s ease;
}

.practical-applications-close-button:hover {
  background-color: #dee2e6;
  transform: translateY(-2px);
}

/* Login Required Modal Styles */
.premium-clickable {
  cursor: pointer;
  transition: all 0.3s ease;
}

.premium-clickable:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
}
.login-required-error-text {
  font-size: 1.1rem;
  color: #dc3545;
  margin: 0;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}

.clickable {
  cursor: pointer;
  transition: all 0.3s ease;
}

.clickable:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
}

/* Image Attachment Modal Styles */
.practical-applications-view-attachment-btn {
  background-color: #ffd700;
  color: white;
  border: none;
  border-radius: 15px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  width: 100%;
  max-width: 300px;
}

.practical-applications-view-attachment-btn a{
  color: white;
}

.image-attachment-view-btn:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  color: white;
}

.image-attachment-close-button {
  background-color: #e9ecef;
  color: #333;
  border: none;
  border-radius: 10px;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: bold;
  font-family: "noor", sans-serif;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 200px;
}

.image-attachment-close-button:hover {
  background-color: #dee2e6;
  transform: translateY(-2px);
}

.user-subscriptions-section .subscription-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}

.user-subscriptions-section .subscription-buttons .subscription-btn {
  background-color: #f1c924;
  color: white;
  border: none;
  border-radius: 40px;
  padding: 1rem 3rem;
  font-size: 1.6rem;
  font-weight: bold;
  box-shadow: 0 6px 20px rgba(249, 190, 50, 0.4);
}

.user-subscriptions-section .subscription-buttons .subscription-btn:hover {
  background-color: #e6a829;
  transform: translateY(-2px);
}

/* Course Details Icons */
.course-details-content-section .section-icon i {
  color: #aaaf4e;
  font-size: 24px;
}

.course-details-content-section .lesson-play-btn i {
  color: white;
  font-size: 20px;
}

.course-details-content-section .discussions-icon i {
  color: #aaaf4e;
  font-size: 32px;
}

.course-details-content-section .info-icon i {
  color: #aaaf4e;
  font-size: 24px;
}

.contact-form .form-control {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control:focus {
  outline: none;
  border-color: #8da04a;
  box-shadow: 0 4px 12px rgba(141, 160, 74, 0.15);
}

/* @media (min-width: 768px) and (max-width: 1024px) {
  .navbar-nav .nav-link {
    font-size: 0.5rem !important;
    margin: 0 1rem !important;
  }

  .btn-register {
    font-size: 0.9rem !important;
    padding: 0.5rem 1.2rem !important;
  }
} */

/* Responsive Design for Image Attachment Modal */
@media (max-width: 992px) {
  .about-us-section {
    padding: 3rem 0;
  }

  .about-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .about-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .about-content {
    padding: 1rem 0;
    text-align: center;
  }

  .about-buttons {
    justify-content: center;
  }

  .what-we-offer-section {
    padding: 3rem 0;
  }

  .what-we-offer-section .section-title {
    font-size: 3rem;
  }

  .about-hero-title {
    font-size: 3rem;
  }

  .about-hero-description {
    font-size: 1.1rem;
  }

  .mission-title,
  .vision-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .image-attachment-title {
    font-size: 1.6rem;
  }

  .who-we-are-description {
    font-size: 1.1rem;
  }

  .section-header-image img {
    max-width: 250px;
  }

  .vision-description,
  .message-description {
    font-size: 1rem;
  }

  .value-text {
    font-size: 1.1rem;
  }

  .faq-hero-title {
    font-size: 3rem;
  }

  .faq-hero-description {
    font-size: 1.1rem;
  }

  .contact-title {
    font-size: 3rem;
  }

  .contact-hero-image {
    width: 50%;
  }

  .stats-section {
    padding: 3rem 0;
  }

  .main-stat-number {
    font-size: 6rem;
  }

  .stat-line {
    font-size: 1.3rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stats-content {
    text-align: center;
    padding: 1rem 0;
  }

  .bottom-stats {
    justify-content: center;
    gap: 1.5rem;
  }

  .follow-new-section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .banner-content {
    height: 200px;
    padding: 2rem;
    margin-left: 45%;
  }

  .banner-title {
    font-size: 2rem;
  }

  .banner-subtitle {
    font-size: 1.2rem;
  }

  .banner-text {
    padding-right: 2rem;
  }

  .banner-category {
    width: 70px;
  }

  .banner-category span {
    font-size: 1rem;
  }

  .banner-category .category-subtitle {
    font-size: 0.75rem;
  }

  .banner-btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }

  .hero-main-title-ar {
    font-size: 3rem;
  }

  .hero-text-content {
    padding: 2rem 1.5rem;
    max-width: 700px;
  }

  .courses-content-section {
    padding: 3rem 0;
  }

  .search-btn {
    border-radius: 0 12px 12px 0;
    padding: 0.8rem 1.2rem;
  }

  .course-card {
    border-radius: 15px;
  }

  .course-image img {
    border-radius: 15px 15px 0 0;
  }

  .course-details-content-section {
    padding: 3rem 0;
  }

  .course-info-card {
    border-radius: 15px;
  }

  .course-info-image img {
    height: 200px;
  }

  .course-tabs-container {
    border-radius: 15px;
  }

  .description-box {
    border-radius: 12px;
  }

  .green-box {
    border-radius: 12px 12px 0 0;
  }

  .white-box {
    border-radius: 0 0 12px 12px;
  }

  .services-hero-title {
    font-size: 3rem;
  }

  .services-hero-subtitle {
    font-size: 1.2rem;
  }

  .lecture-content-section .lecture-main-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .lecture-content-section .lecture-sidebar {
    padding-left: 0;
  }

  .lecture-content-section .lecture-main-content .lecture-title h1 {
    font-size: 2rem;
  }

  .lecture-content-section
    .lecture-main-content
    .lecture-video-player
    .lecture-video {
    height: 100%;
  }

  .newsletter-details-section
    .newsletter-details-card
    .newsletter-details-card-top {
    height: 350px;
  }

  .newsletter-details-section
    .newsletter-details-card
    .newsletter-details-card-bottom
    .newsletter-details-title-container
    .newsletter-details-title {
    font-size: 1.8rem;
  }

  .newsletter-content-section {
    padding: 3rem 0;
  }

  .newsletter-content-section .newsletter-description-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .newsletter-content-section
    .newsletter-description-card
    .newsletter-description-content
    .newsletter-description-text {
    font-size: 1rem;
  }

  .newsletter-content-section .newsletter-content-card {
    padding: 2rem;
  }

  .newsletter-additional-info-section {
    padding: 3rem 0;
  }

  .newsletter-additional-info-section .newsletter-info-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }

  .newsletter-additional-info-section .newsletter-info-title,
  .newsletter-additional-info-section .newsletter-keywords-title,
  .newsletter-additional-info-section .newsletter-social-share-title {
    font-size: 1.2rem;
  }

  .newsletter-additional-info-section .newsletter-keywords-title,
  .newsletter-additional-info-section .newsletter-social-share-title {
    margin-top: 2rem;
  }

  .practical-applications-modal-header {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
  }

  .practical-applications-modal-body {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }

  .practical-applications-modal-footer {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
  }

  .practical-applications-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  footer {
    font-weight: bold;
  }

  .contact-hero-image {
    display: none;
  }

  .navbar {
    margin-top: 0.7rem;
    border-radius: 30px;
    max-width: 95%;
    padding: 1rem 1.5rem;
  }

  .navbar-toggler {
    color: white !important;
    font-size: 2rem;
    padding: 0;
    border: none;
  }

  .navbar-nav .vertical-line {
    display: none;
  }

  .navbar-nav {
    align-items: unset !important;
  }

  .navbar .search-icon {
    display: none !important;
  }

  .navbar .btn-register {
    display: none;
  }

  .navbar-nav .nav-item {
    margin: 0.5rem 0rem;
    border-bottom: 1px solid white;
  }

  .navbar-brand {
    font-size: 1.2rem;
  }

  .navbar-brand img {
    height: 50px;
  }

  .nav-link {
    margin: 0 0.5rem;
    font-size: 0.9rem;
  }

  .btn-register {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
  .display-3 {
    font-size: 2.5rem;
  }

  .fs-4 {
    font-size: 1.2rem !important;
  }

  .btn-lg {
    padding: 0.75rem 2rem !important;
    font-size: 1rem;
  }

  .hero-slide {
    height: 80vh;
  }

  .about-us-section {
    padding: 2rem 0;
  }

  .about-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .about-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .about-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }

  .about-buttons {
    gap: 0.75rem;
  }

  .what-we-offer-section {
    padding: 2rem 0;
  }

  .what-we-offer-section .section-title {
    font-size: 2.5rem;
  }

  .service-category {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    width: 160px;
    top: -18px;
    box-shadow: 0 5px 18px rgba(141, 160, 74, 0.4);
  }

  .service-image {
    padding: 1.5rem 1rem 0.8rem 1rem;
  }

  .service-image img {
    /* max-height: 150px; */
  }

  .service-description {
    font-size: 0.85rem;
    padding: 0 1rem 0.8rem 1rem;
  }

  .service-action {
    padding: 0 1rem 1rem 1rem;
  }

  .service-btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
  }

  .right-arrow,
  .left-arrow {
    width: 80px;
    height: 160px;
  }

  .right-arrow {
    right: 8%;
  }

  .left-arrow {
    left: 8%;
  }

  .about-hero-section {
    padding: 6rem 0 3rem 0;
  }

  .about-hero-title {
    font-size: 2.5rem;
    text-align: center;
  }

  .about-hero-description {
    font-size: 1rem;
    text-align: center;
  }

  .about-hero-buttons {
    justify-content: center;
  }

  .mission-title,
  .vision-title {
    font-size: 1.8rem;
    text-align: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .value-card,
  .team-card {
    margin-bottom: 2rem;
  }

  .who-we-are-section,
  .elements-section,
  .vision-section,
  .message-section {
    padding: 3rem 0;
  }

  .who-we-are-description {
    font-size: 1rem;
    text-align: center;
  }

  .section-header-image img {
    max-width: 200px;
  }

  .vision-description,
  .message-description {
    font-size: 0.95rem;
  }

  .value-item {
    margin-bottom: 1rem;
    padding: 0.8rem;
  }

  .value-text {
    font-size: 1rem;
  }

  .value-icon {
    font-size: 1.3rem;
    margin-left: 0.8rem;
  }

  .faq-hero-section,
  .faq-questions-section {
    padding: 3rem 0;
  }

  .faq-hero-title {
    font-size: 2.5rem;
    text-align: center;
  }

  .faq-hero-description {
    font-size: 1rem;
    text-align: center;
  }

  .faq-question {
    padding: 1.2rem;
  }

  .faq-question h3 {
    font-size: 1.1rem;
  }

  .faq-answer {
    padding: 1.2rem;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }

  .contact-section {
    padding: 3rem 0;
  }

  .contact-title {
    font-size: 2.5rem;
    text-align: center;
  }

  .contact-content {
    align-items: center;
  }

  .contact-hero-image {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
  }

  .contact-hero-image img {
    max-height: 300px;
    object-fit: contain;
  }

  .contact-form {
    max-width: 100%;
  }

  .form-control {
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
  }

  .contact-submit-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }

  .social-icons-row {
    gap: 1rem;
  }

  .social-icon {
    width: 45px;
    height: 45px;
  }

  .contact-email p {
    font-size: 1rem;
  }

  .stats-section {
    padding: 2rem 0;
  }

  .main-stat {
    margin-bottom: 2rem;
  }

  .main-stat-number {
    font-size: 5rem;
  }

  .stat-line {
    font-size: 1.1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  .bottom-stats {
    gap: 1rem;
  }

  .stat-item {
    min-width: 100px;
  }

  .follow-new-section {
    padding: 2rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .banners-container {
    gap: 1.5rem;
  }

  .banner-image {
    width: 40%;
  }

  .banner-content {
    height: 180px;
    padding: 1.5rem;
    margin-left: 40%;
  }

  .banner-title {
    font-size: 1.8rem;
  }

  .banner-subtitle {
    font-size: 1.1rem;
  }

  .banner-text {
    padding-right: 1.5rem;
  }

  .banner-category {
    width: 60px;
  }

  .banner-category span {
    font-size: 0.9rem;
  }

  .banner-category .category-subtitle {
    font-size: 0.7rem;
  }

  .banner-btn {
    padding: 0.7rem 1.8rem;
    font-size: 0.95rem;
  }

  .subscription-plans-section {
    padding: 2rem 0;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .plan-card {
    min-height: 350px;
  }

  .plan-content {
    padding: 1.5rem;
  }

  .duration-value {
    font-size: 1.3rem;
  }

  .current-price .price-text {
    font-size: 1.8rem;
  }

  .footer {
    padding: 2rem 0 0 0;
  }

  .footer-section {
    margin-bottom: 2rem;
  }

  .footer-title {
    font-size: 1.1rem;
  }

  .footer-description {
    font-size: 0.9rem;
  }

  .logo-arabic {
    font-size: 1.3rem;
  }

  .logo-english {
    font-size: 0.8rem;
  }
  .hero-text-content {
    padding: 1.5rem;
    border-radius: 20px;
    max-width: 600px;
  }

  .courses-content-section {
    padding: 2rem 0;
  }

  .search-input {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  .search-input::placeholder {
    font-size: 0.9rem;
  }

  .search-btn {
    padding: 0.8rem 1rem;
    min-width: 50px;
  }

  .course-image img {
    height: 180px;
  }

  .course-title {
    padding: 0 1rem;
    font-size: 1.1rem;
  }

  .course-price {
    padding: 0 1rem;
  }

  .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  .course-details-content-section {
    padding: 2rem 0;
  }

  .course-info-image img {
    height: 180px;
  }

  .course-info-details {
    padding: 1rem;
  }

  .current-price {
    font-size: 1.3rem;
  }

  .old-price {
    font-size: 1.1rem;
  }

  .info-value {
    font-size: 1.2rem;
  }

  .info-label {
    font-size: 0.8rem;
  }

  .buy-now-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    margin: 1rem;
    margin-top: 0;
  }

  .course-tabs .nav-link {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  .tab-content-wrapper {
    padding: 1.5rem;
  }

  .description-box {
    padding: 1rem;
  }

  .description-title {
    font-size: 1.1rem;
  }

  .description-text {
    font-size: 0.9rem;
  }

  .course-details-section {
    padding: 3rem 0;
  }

  .course-details-title {
    font-size: 2.5rem;
  }

  .course-details-description {
    font-size: 1.1rem;
  }

  .discussions-container {
    padding: 2rem 1.5rem;
    min-height: 250px;
  }

  .discussions-title {
    font-size: 1.8rem;
  }

  .discussions-icon svg {
    width: 28px;
    height: 28px;
  }

  .no-comments-message p {
    font-size: 1rem;
  }

  .course-sections-container {
    padding: 1.5rem;
  }

  .section-title {
    font-size: 1.2rem;
  }

  .lesson-item {
    padding: 0.8rem 1rem;
  }

  .lesson-content {
    padding-left: 5rem;
    gap: 0.8rem;
  }

  .lesson-title {
    font-size: 0.9rem;
  }

  .lesson-play-btn {
    width: 35px;
    height: 35px;
  }

  .lesson-play-btn svg {
    width: 18px;
    height: 18px;
  }

  .lesson-access-label {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
  }

  .privacy-policy-main {
    padding-top: 80px;
    padding-bottom: 3rem;
  }

  .privacy-policy-content {
    padding: 2rem;
    margin: 0 1rem;
  }

  .privacy-intro p {
    font-size: 1rem;
  }

  .privacy-section h2 {
    font-size: 1.3rem;
  }

  .privacy-section p {
    font-size: 0.95rem;
  }

  .subsection h3 {
    font-size: 1.1rem;
  }

  .contact-item strong {
    min-width: 100px;
  }

  .profile-info-section {
    padding: 3rem 0;
  }

  .info-block {
    padding: 1.2rem 1.5rem;
    margin-bottom: 0.8rem;
  }

  .info-text {
    font-size: 1rem;
  }

  .action-btn {
    max-width: none;
    padding: 1rem 1.5rem;
  }

  .subscriptions-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .last-login-block {
    padding: 1.2rem;
  }

  .last-login-text {
    font-size: 0.9rem;
  }

  .newsletter-subscription-section {
    padding: 1.5rem;
    margin-top: 1.5rem;
  }

  .newsletter-title {
    font-size: 1.2rem;
  }

  .newsletter-options {
    gap: 0.8rem;
  }

  .newsletter-option {
    min-width: 100px;
  }

  .newsletter-label {
    font-size: 0.9rem;
  }

  .personal-info-modal {
    margin: 1rem;
  }

  .personal-info-header {
    padding: 1rem 1.5rem 0.5rem 1.5rem;
  }

  .personal-info-title {
    font-size: 1.3rem;
  }

  .personal-info-close {
    right: 1rem;
    top: 1rem;
    font-size: 1rem;
  }

  .personal-info-body {
    padding: 1.5rem;
  }

  .personal-info-field {
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
  }

  .field-icon {
    width: 35px;
    height: 35px;
    margin-left: 0.8rem;
  }

  .field-icon i {
    font-size: 14px;
  }

  .personal-info-input {
    font-size: 0.9rem;
  }

  .personal-info-save {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }

  .subscription-section-title h2 {
    font-size: 1.3rem;
    padding: 0.8rem 1.5rem;
  }

  .subscription-tabs {
    flex-direction: column;
  }

  .table-cell {
    border-right: none;
    padding: 0.8rem 1rem;
  }

  .table-cell:last-child {
    border-bottom: none;
  }

  .table-content {
    padding: 1.5rem;
  }

  .empty-state {
    padding: 2rem 1rem;
  }

  .empty-state p {
    font-size: 1.1rem;
  }

  .login-container {
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    margin: 0 1rem;
  }

  .options-row {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .forgot-password {
    align-self: flex-end;
  }
  .register-main {
    padding-top: 70px;
  }

  .register-container {
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    margin: 0 1rem;
  }

  .form-title h2 {
    font-size: 1.5rem;
  }

  .register-container .input-group-text {
    width: 45px;
    padding: 0.6rem 0.8rem;
  }

  .register-input {
    font-size: 0.9rem;
    padding: 0.6rem 0.8rem;
  }
  .verification-main {
    padding-top: 70px;
  }

  .verification-container {
    padding: 2.5rem 1.5rem;
    margin: 0 1rem;
  }

  .verification-title h1 {
    font-size: 2.5rem;
  }

  .code-inputs {
    gap: 0.8rem;
    margin-bottom: 2.5rem;
  }

  .code-input {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .btn-confirm {
    font-size: 1rem;
    min-width: 180px;
  }

  .success-icon {
    width: 100px;
    height: 100px;
  }

  .success-icon::before {
    width: 120px;
    height: 120px;
    top: -10px;
    left: -10px;
  }

  .success-icon i {
    font-size: 2.5rem;
  }

  .success-container .verification-title h1 {
    font-size: 1.5rem !important;
  }

  .newsletters-visual-container {
    min-height: auto;
  }

  .speaker-section {
    height: 300px;
  }

  .speaker-image {
    min-height: 300px;
  }

  .newsletters-description {
    padding: 1.5rem;
  }

  .newsletters-description p {
    font-size: 1rem;
  }

  /* Newsletter Search and Filter Responsive */
  .newsletter-search-section {
    margin: 2rem 0;
  }

  .search-input {
    border-radius: 25px;
    text-align: center;
  }

  .search-btn {
    border-radius: 25px;
    width: 100%;
  }

  .filter-select {
    width: 100%;
  }

  .newsletter-cards-section {
    margin-top: 2rem;
  }

  .newsletter-card-wrapper {
    gap: 0.8rem;
  }

  .newsletter-card {
    height: 350px;
  }

  .card-content {
    padding: 1.5rem;
    height: 50%;
  }

  .card-title {
    font-size: 1.3rem;
  }

  .card-description {
    font-size: 0.9rem;
  }

  .services-hero-section {
    min-height: 80vh;
    margin-top: 70px;
    padding: 3rem 0;
  }

  .services-hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .services-hero-subtitle {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  .lecture-content-section {
    padding: 3rem 0;
  }

  .lecture-content-section .lecture-main-content .lecture-title h1 {
    font-size: 1.8rem;
  }

  .lecture-content-section .lecture-main-content .lecture-description h3,
  .lecture-content-section .lecture-main-content .lecture-content-details h3 {
    font-size: 1.3rem;
  }

  .lecture-content-section
    .lecture-main-content
    .lecture-video-player
    .lecture-video {
    height: 100%;
  }

  .lecture-content-section
    .lecture-main-content
    .lecture-video-player
    .video-placeholder
    i {
    font-size: 3rem;
  }

  .lecture-content-section
    .lecture-sidebar
    .lecture-discussions-card
    .lecture-card-header,
  .lecture-content-section
    .lecture-sidebar
    .lecture-sections-card
    .lecture-card-header {
    padding: 1rem;
  }

  .lecture-content-section
    .lecture-sidebar
    .lecture-discussions-card
    .lecture-card-content,
  .lecture-content-section
    .lecture-sidebar
    .lecture-sections-card
    .lecture-card-content {
    padding: 1rem;
  }

  .newsletter-details-section {
    padding: 3rem 0;
  }

  .newsletter-details-section
    .newsletter-details-card
    .newsletter-details-card-top {
    height: 300px;
  }

  .newsletter-details-section
    .newsletter-details-card
    .newsletter-details-card-bottom {
    padding: 1.5rem;
  }

  .newsletter-details-section
    .newsletter-details-card
    .newsletter-details-card-bottom
    .newsletter-details-title-container
    .newsletter-details-title {
    font-size: 1.6rem;
  }

  .newsletter-details-section .newsletter-details-dates-container {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: 500px;
  }
  .newsletter-content-section {
    padding: 2.5rem 0;
  }

  .newsletter-content-section .newsletter-description-card {
    padding: 1.2rem;
    margin-bottom: 1.2rem;
  }

  .newsletter-content-section
    .newsletter-description-card
    .newsletter-description-content
    .newsletter-description-text {
    font-size: 0.95rem;
  }

  .newsletter-content-section .newsletter-content-card {
    padding: 1.5rem;
  }

  .newsletter-content-section
    .newsletter-content-card
    .newsletter-content-text
    p {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
  }

  .newsletter-additional-info-section {
    padding: 2.5rem 0;
  }

  .newsletter-additional-info-section .newsletter-info-card {
    padding: 1.2rem;
  }

  .newsletter-additional-info-section .newsletter-info-title,
  .newsletter-additional-info-section .newsletter-keywords-title,
  .newsletter-additional-info-section .newsletter-social-share-title {
    font-size: 1.1rem;
  }

  .newsletter-additional-info-section .newsletter-keywords-title,
  .newsletter-additional-info-section .newsletter-social-share-title {
    margin-top: 1.5rem;
  }

  .newsletter-additional-info-section .newsletter-social-share {
    gap: 0.8rem;
  }

  .newsletter-additional-info-section
    .newsletter-social-share
    .newsletter-social-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .newsletter-contact-banner {
    padding: 1.5rem 0;
  }

  .newsletter-contact-banner
    .newsletter-contact-content
    .newsletter-contact-text a {
    font-size: 1rem;
  }

  .practical-applications-modal-header {
    padding: 1.2rem 1.2rem 0.8rem 1.2rem;
  }

  .practical-applications-modal-body {
    padding: 0 1.2rem 1.2rem 1.2rem;
  }

  .practical-applications-modal-footer {
    padding: 0.8rem 1.2rem 1.2rem 1.2rem;
  }

  .practical-applications-title {
    font-size: 1.1rem;
  }

  .practical-applications-description-box {
    padding: 1.2rem;
  }

  .practical-applications-content-block {
    padding: 1.2rem;
  }

  .practical-applications-description-text,
  .practical-applications-content-text {
    font-size: 0.9rem;
  }
  .login-required-modal-body {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
  }

  .login-required-modal-footer {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }

  .login-required-error-text {
    font-size: 1rem;
  }

  .login-required-action-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }

  .login-required-login-btn,
  .login-required-register-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }

  .hero-section .hero-title {
    font-size: 4.2rem;
  }

  .hero-section .hero-subtitle {
    font-size: 1.5rem;
    color: #fff;
  }

  .who-we-are-image {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: -1;
  }

  .who-we-are-content {
    padding-top: 17rem;
  }

  .who-we-are-title {
    font-size: 5rem;
    text-align: center;
  }

  .section-header-image {
    margin-bottom: 0;
  }
}

@media (max-width: 576px) {
  .profile-info-blocks .info-text {
    font-size: 1rem;
  }

  .values-section {
    margin-top: 0 !important;
  }

  .what-we-offer-section .section-header {
    justify-content: center;
  }

  .what-we-offer-section .carousel-inner {
    padding: 0;
  }

  .what-we-offer-section .service-category {
    top: -33px;
    font-size: 0.6rem;
  }

  .what-we-offer-section .row {
    gap: 20px;
  }

  .display-3 {
    font-size: 2rem;
  }

  .fs-4 {
    font-size: 1rem !important;
  }

  .btn-lg {
    padding: 0.6rem 1.5rem !important;
    font-size: 0.9rem;
  }

  .navbar-brand {
    font-size: 1.2rem;
  }

  .hero-slide {
    height: 70vh;
  }

  .about-us-section .about-image {
    width: 100%;
    position: relative;
    z-index: -1;
  }

  .about-us-section {
    padding: 0;
  }

  .about-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .about-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .about-btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
  }

  .about-image {
    border-radius: 8px;
  }
  .what-we-offer-section .section-title {
    font-size: 2rem;
  }

  .service-category {
    font-size: 0.8rem;
    padding: 0.5rem 0.8rem;
    width: 140px;
    top: -16px;
    box-shadow: 0 4px 16px rgba(141, 160, 74, 0.4);
  }

  .service-image {
    padding: 1.2rem 0.8rem 0.6rem 0.8rem;
  }

  .service-image img {
    /* max-height: 120px; */
  }

  .service-description {
    font-size: 0.8rem;
    padding: 0 0.8rem 0.6rem 0.8rem;
  }

  .service-action {
    padding: 0 0.8rem 0.8rem 0.8rem;
  }

  .service-btn {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
  }

  .right-arrow,
  .left-arrow {
    width: 60px;
    height: 120px;
  }

  .right-arrow {
    right: 5%;
  }

  .left-arrow {
    left: 5%;
  }
  .about-hero-title {
    font-size: 2rem;
  }

  .about-hero-description {
    font-size: 0.95rem;
  }

  .about-hero-btn {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
  }

  .mission-title,
  .vision-title {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .value-card,
  .team-card {
    padding: 1.5rem;
  }

  .filter-container {
    margin-bottom: 1rem;
  }

  .who-we-are-description {
    font-size: 0.9rem;
  }

  .section-header-image img {
    max-width: 180px;
  }

  .vision-description,
  .message-description {
    font-size: 0.9rem;
  }

  .value-item {
    padding: 0.6rem;
  }

  .value-text {
    font-size: 0.9rem;
  }

  .value-icon {
    font-size: 1.2rem;
    margin-left: 0.6rem;
  }
  .faq-hero-title {
    font-size: 2rem;
  }

  .faq-hero-description {
    font-size: 0.9rem;
  }

  .faq-question {
    padding: 1rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-answer {
    padding: 1rem;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }

  .contact-title {
    font-size: 2rem;
  }

  .form-control {
    padding: 0.7rem 0.8rem;
    font-size: 0.9rem;
  }

  .contact-submit-btn {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }

  .social-icons-row {
    gap: 0.8rem;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }

  .contact-email p {
    font-size: 0.9rem;
  }

  .stats-section {
    padding: 1.5rem 0;
  }

  .main-stat-number {
    font-size: 7rem;
    text-align: center;
    left: 0;
  }

  .stat-line {
    font-size: 1rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .follow-new-section .section-title {
    font-size: 4rem;
  }

  .follow-new-section .banner-image {
    width: 60%;
  }

  .follow-new-section .category-title {
    font-size: 1rem;
  }

  .follow-new-section .banner-category {
    height: 110px;
    margin-right: 5px;
  }

  .stat-item {
    min-width: auto;
  }

  .follow-new-section {
    padding: 1.5rem 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .banners-container {
    gap: 1rem;
  }

  .banner-image {
    width: 35%;
  }

  .banner-content {
    height: 160px;
    padding: 1rem;
    margin-left: 35%;
  }

  .banner-title {
    font-size: 1.5rem;
  }

  .banner-subtitle {
    font-size: 1rem;
  }

  .banner-text {
    padding-right: 1rem;
  }

  .banner-category {
    width: 50px;
  }

  .banner-category span {
    font-size: 0.8rem;
  }

  .banner-category .category-subtitle {
    font-size: 0.65rem;
  }

  .banner-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }

  .plans-grid {
    padding: 0 0.5rem;
  }

  .plan-content {
    padding: 1rem;
  }

  .duration-value {
    font-size: 1.2rem;
  }

  .current-price .price-text {
    font-size: 1.6rem;
  }

  .plan-footer {
    padding: 0.8rem 1rem;
  }

  .footer {
    padding: 1.5rem 0 0 0;
  }

  .footer-section {
    margin-bottom: 1.5rem;
  }

  .footer-title {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .footer-description {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    text-align: center;
    padding: 0 1rem;
  }

  .footer-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    display: block;
    margin: 0 auto;
    width: fit-content;
  }

  .footer-links a {
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 0.5rem;
  }

  footer .social-icons {
    margin-bottom: 1rem;
  }

  .social-icon {
    width: 35px;
    height: 35px;
  }

  footer .footer-website {
    font-size: 0.8rem;
    margin-top: 0.5rem;
  }

  .footer .col-lg-3:nth-child(4) {
    order: -1;
  }

  .footer .col-lg-3:nth-child(1) {
    order: 4;
  }

  .footer .col-lg-3:nth-child(2) {
    order: 2;
  }

  .footer .col-lg-3:nth-child(3) {
    order: 3;
  }

  .footer-links li {
    margin-bottom: 0.5rem;
  }

  .footer .container {
    padding: 0 1rem;
  }

  .hero-description {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .hero-text-content {
    padding: 1rem;
    border-radius: 15px;
    max-width: 500px;
  }

  .search-btn {
    border-radius: 0 10px 10px 0;
  }

  .course-card {
    border-radius: 12px;
  }

  .course-image img {
    border-radius: 12px 12px 0 0;
    height: 160px;
  }

  .course-title {
    font-size: 1rem;
  }

  .current-price {
    font-size: 1.1rem;
  }

  .course-details-section {
    padding: 2rem 0;
  }

  .course-details-title {
    font-size: 2rem;
  }

  .course-details-description {
    font-size: 1rem;
  }

  .course-info-image img {
    height: 160px;
  }

  .course-info-details {
    padding: 0.8rem;
  }

  .info-content {
    justify-content: center;
  }

  .current-price {
    font-size: 1.2rem;
  }

  .old-price {
    font-size: 1rem;
  }

  .info-value {
    font-size: 1.1rem;
  }

  .buy-now-btn {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    margin: 0.8rem;
    margin-top: 0;
  }

  .course-tabs .nav-link {
    padding: 0.7rem 0.5rem;
    font-size: 0.8rem;
  }

  .tab-content-wrapper {
    padding: 1rem;
  }

  .description-box {
    padding: 0.8rem;
  }

  .description-title {
    font-size: 1rem;
  }

  .description-text {
    font-size: 0.85rem;
  }

  .description-list {
    padding-right: 1rem;
  }

  .discussions-container {
    padding: 1.5rem 1rem;
    min-height: 200px;
  }

  .discussions-header {
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .discussions-title {
    font-size: 1.6rem;
  }

  .discussions-icon svg {
    width: 24px;
    height: 24px;
  }

  .course-sections-container {
    padding: 1rem;
  }

  .course-section {
    margin-bottom: 1.5rem;
  }

  .section-header {
    margin-bottom: 0.8rem;
  }

  .section-title {
    font-size: 1.1rem;
  }

  .section-icon svg {
    width: 20px;
    height: 20px;
  }

  .lessons-list {
    gap: 0.6rem;
  }

  .lesson-item {
    padding: 0.7rem 0.8rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .lesson-access-label {
    position: static;
    transform: none;
    align-self: flex-start;
    margin-bottom: 0.5rem;
  }

  .lesson-content {
    padding-left: 0;
    justify-content: space-between;
  }

  .lesson-title {
    font-size: 0.85rem;
  }

  .lesson-play-btn {
    width: 30px;
    height: 30px;
  }

  .lesson-play-btn svg {
    width: 16px;
    height: 16px;
  }

  .privacy-policy-main {
    padding-top: 70px;
    padding-bottom: 2rem;
  }

  .privacy-policy-content {
    padding: 1.5rem;
    margin: 0 0.5rem;
  }

  .privacy-intro {
    margin-bottom: 2rem;
  }

  .privacy-section {
    margin-bottom: 2rem;
  }

  .privacy-section h2 {
    font-size: 1.2rem;
  }

  .privacy-section p {
    font-size: 0.9rem;
  }

  .subsection h3 {
    font-size: 1rem;
  }

  .contact-info {
    padding: 1rem;
  }

  .contact-item {
    font-size: 0.9rem;
  }

  .contact-item strong {
    min-width: 80px;
    display: block;
    margin-bottom: 0.3rem;
  }

  .profile-info-section {
    padding: 2rem 0;
  }

  .info-block {
    padding: 1rem 1.2rem;
    margin-bottom: 0.6rem;
  }

  .info-text {
    font-size: 0.95rem;
  }

  .edit-text {
    font-size: 0.95rem;
  }

  .action-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
  }

  .subscriptions-btn {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
  }

  .last-login-block {
    padding: 1rem;
  }

  .last-login-text {
    font-size: 0.85rem;
  }

  .newsletter-subscription-section {
    padding: 1.2rem;
    margin-top: 1.2rem;
  }

  .newsletter-header {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }

  .newsletter-title {
    font-size: 1.1rem;
    text-align: center;
  }

  .newsletter-option {
    justify-content: flex-start;
    min-width: auto;
  }

  .newsletter-label {
    font-size: 0.85rem;
    text-align: right;
  }

  .newsletter-checkbox {
    width: 16px;
    height: 16px;
  }

  .personal-info-modal {
    margin: 0.5rem;
  }

  .personal-info-header {
    padding: 0.8rem 1rem 0.3rem 1rem;
  }

  .personal-info-title {
    font-size: 1.2rem;
  }

  .personal-info-body {
    padding: 1rem;
  }

  .personal-info-field {
    padding: 0.6rem 0.8rem;
    margin-bottom: 0.8rem;
  }

  .field-icon {
    width: 30px;
    height: 30px;
    margin-left: 0.6rem;
  }

  .field-icon i {
    font-size: 12px;
  }

  .personal-info-input {
    font-size: 0.85rem;
  }

  .personal-info-footer {
    padding: 0.8rem 1rem 1rem 1rem;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
  }

  .personal-info-footer .personal-info-save {
    background-color: var(--primary-green);
    color: white;
  }

  .personal-info-btn {
    font-size: 0.9rem;
  }
  .user-subscriptions-section {
    padding: 2rem 0;
  }

  .subscription-section-title {
    margin-bottom: 1.5rem;
  }

  .subscription-section-title h2 {
    font-size: 1.1rem;
    padding: 0.7rem 1.2rem;
  }

  .subscription-tabs {
    margin-bottom: 1.5rem;
  }

  .tab-item {
    padding: 1rem 0.8rem;
    font-size: 0.9rem;
  }

  .table-content {
    padding: 1rem;
  }

  .empty-state {
    padding: 1.5rem 0.5rem;
  }

  .user-icon {
    width: 70px;
    height: 70px;
  }

  .user-icon-container {
    top: -10%;
  }

  .user-icon i {
    font-size: 1.7rem;
  }

  .login-container {
    padding: 2rem 1rem 1rem 1rem;
    margin: 0 0.5rem;
  }

  .input-group-text {
    width: 45px;
    padding: 0.6rem 0.8rem;
  }

  .form-control {
    font-size: 0.9rem;
    padding: 0.6rem 0.8rem;
  }

  .btn-login {
    font-size: 1rem;
  }

  .new-user-link {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
  }

  .register-main {
    padding-top: 60px;
  }

  .register-container {
    padding: 2rem 1rem 1rem 1rem;
    margin: 0 0.5rem;
  }

  .form-title h2 {
    font-size: 1.3rem;
  }

  .register-input {
    font-size: 0.9rem;
  }

  .btn-register-submit {
    font-size: 1rem;
  }

  .login-link-container p {
    font-size: 0.8rem;
  }

  .verification-main {
    padding-top: 60px;
  }

  .verification-container {
    padding: 2rem 1rem;
    margin: 0 0.5rem;
  }

  .verification-title h1 {
    font-size: 2rem;
  }

  .code-inputs {
    gap: 0.6rem;
    margin-bottom: 2rem;
  }

  .code-input {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .btn-confirm {
    font-size: 0.9rem;
    min-width: 160px;
    padding: 0.6rem 1.5rem;
  }

  .resend-link {
    font-size: 0.9rem;
  }
  .success-icon {
    width: 80px;
    height: 80px;
  }

  .success-icon::before {
    width: 100px;
    height: 100px;
    top: -10px;
    left: -10px;
  }

  .success-icon i {
    font-size: 2rem;
  }

  .success-container .verification-title h1 {
    font-size: 1.3rem !important;
  }

  .newsletters-main {
    padding-top: 70px;
  }

  .newsletters-section {
    padding: 2rem 0;
  }

  .newsletters-visual-container {
    margin-bottom: 2rem;
  }

  .speaker-section {
    height: 250px;
  }

  .speaker-image {
    min-height: 250px;
  }

  .yellow-panel {
    background: linear-gradient(
      to top,
      #ffd700 0%,
      #ffd700 25%,
      rgba(182, 179, 40, 0) 40%,
      rgba(182, 179, 40, 0) 100%
    );
  }

  .panel-text {
    font-size: 4rem;
    writing-mode: horizontal-tb;
    transform: none;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
  }

  .newsletters-description {
    padding: 1rem;
  }

  .newsletters-description p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .newsletter-search-section {
    margin: 1.5rem 0;
  }

  .search-input {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  .search-btn {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
    min-width: 40px;
    width: auto;
  }

  .courses-content-section .search-btn {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
    min-width: 50px;
    width: auto;
  }

  .filter-select {
    font-size: 0.8rem;
  }

  .newsletter-cards-section {
    margin-top: 1.5rem;
  }

  .newsletter-card-wrapper {
    gap: 0.6rem;
  }

  .newsletter-card {
    height: 300px;
  }

  .card-content {
    padding: 1rem;
    height: 50%;
  }

  .card-title {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .card-description {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  .date-item {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
  }

  .category-tag {
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    top: 10px;
    right: 10px;
  }

  .services-hero-section {
    min-height: 70vh;
    margin-top: 60px;
    padding: 2rem 0;
  }

  .services-hero-title {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

  .services-hero-subtitle {
    font-size: 1rem;
    padding: 0 1.5rem;
  }

  .lecture-content-section .lecture-main-content .lecture-title h1 {
    font-size: 1.5rem;
  }

  .lecture-content-section
    .lecture-main-content
    .lecture-video-player
    .lecture-video {
    height: 100%;
  }

  .lecture-content-section
    .lecture-main-content
    .lecture-video-player
    .video-placeholder
    i {
    font-size: 2.5rem;
  }

  .lecture-content-section
    .lecture-sidebar
    .lecture-discussions-card
    .lecture-card-content
    .lecture-comments-toggle
    .lecture-toggle-buttons {
    flex-direction: column;
  }

  .lecture-content-section
    .lecture-comment-form {
    flex-direction: column;
  }

  .lecture-content-section
    .lecture-comment-input {
    width: 100%;
  }

  .newsletter-details-section
    .newsletter-details-card
    .newsletter-details-card-top {
    height: 250px;
  }

  .newsletter-details-section
    .newsletter-details-card
    .newsletter-details-card-bottom {
    padding: 1rem;
  }

  .newsletter-details-section
    .newsletter-details-card
    .newsletter-details-card-bottom
    .newsletter-details-title-container
    .newsletter-details-title {
    font-size: 1.4rem;
  }

  .newsletter-details-section
    .newsletter-details-card
    .newsletter-details-card-top
    .newsletter-details-category-tag {
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 0.8rem;
    color: #e6c200;
    font-weight: bold;
  }

  .newsletter-details-section
    .newsletter-details-card
    .newsletter-details-card-top
    .newsletter-details-category-tag
    .newsletter-details-category-text {
    font-size: 0.8rem;
  }

  .newsletter-details-section .newsletter-details-dates-container {
    padding: 1rem;
    max-width: 100%;
    margin-top: 1.5rem;
  }

  .newsletter-details-section
    .newsletter-details-dates-container
    .newsletter-details-date-item
    .newsletter-details-date-text {
    font-size: 0.85rem;
  }

  .newsletter-details-section
    .newsletter-details-dates-container
    .newsletter-details-date-item
    .newsletter-details-date-icon {
    width: 20px;
    height: 20px;
    font-size: 1rem;
  }

  .newsletter-content-section {
    padding: 2rem 0;
  }

  .newsletter-content-section .newsletter-description-card {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .newsletter-content-section
    .newsletter-description-card
    .newsletter-description-content
    .newsletter-description-text {
    font-size: 0.9rem;
  }

  .newsletter-content-section .newsletter-content-card {
    padding: 1.2rem;
  }

  .newsletter-content-section
    .newsletter-content-card
    .newsletter-content-text
    p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .newsletter-content-section
    .newsletter-description-card
    .newsletter-description-corner {
    border-top: 20px solid white;
    border-left: 20px solid transparent;
  }

  .newsletter-additional-info-section {
    padding: 2rem 0;
  }

  .newsletter-additional-info-section .newsletter-info-card {
    padding: 1rem;
  }

  .newsletter-additional-info-section .newsletter-info-title,
  .newsletter-additional-info-section .newsletter-keywords-title,
  .newsletter-additional-info-section .newsletter-social-share-title {
    font-size: 1rem;
  }

  .newsletter-additional-info-section .newsletter-keywords-title,
  .newsletter-additional-info-section .newsletter-social-share-title {
    margin-top: 1rem;
  }

  .newsletter-additional-info-section
    .newsletter-info-card
    .newsletter-attachment-item
    .newsletter-attachment-text {
    font-size: 0.9rem;
  }

  .newsletter-additional-info-section
    .newsletter-info-card
    .newsletter-section-item
    .newsletter-section-content
    .newsletter-section-text {
    font-size: 0.9rem;
  }

  .newsletter-additional-info-section .newsletter-social-share {
    gap: 0.6rem;
  }

  .newsletter-additional-info-section
    .newsletter-social-share
    .newsletter-social-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .newsletter-additional-info-section
    .newsletter-keywords
    .newsletter-keyword-tag {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
  }

  .newsletter-contact-banner {
    padding: 1rem 0;
  }

  .newsletter-contact-banner .newsletter-contact-content {
    flex-direction: column;
    gap: 0.8rem;
  }

  .newsletter-contact-banner
    .newsletter-contact-content
    .newsletter-contact-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .newsletter-contact-banner
    .newsletter-contact-content
    .newsletter-contact-text a {
    font-size: 0.9rem;
    text-align: center;
  }

  .practical-applications-modal-header {
    padding: 1rem 1rem 0.6rem 1rem;
  }

  .practical-applications-modal-body {
    padding: 0 1rem 1rem 1rem;
  }

  .practical-applications-modal-footer {
    padding: 0.6rem 1rem 1rem 1rem;
  }

  .practical-applications-title {
    font-size: 1rem;
  }

  .practical-applications-title-section {
    gap: 0.8rem;
  }

  .practical-applications-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
  }

  .practical-applications-description-box {
    padding: 1rem;
  }

  .practical-applications-content-block {
    padding: 1rem;
  }

  .practical-applications-description-text,
  .practical-applications-content-text {
    font-size: 0.85rem;
  }

  .practical-applications-close-button {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }

  .login-required-modal-body {
    padding: 1.2rem 1.2rem 0.8rem 1.2rem;
  }

  .login-required-modal-footer {
    padding: 0 1.2rem 1.2rem 1.2rem;
  }

  .login-required-error-text {
    font-size: 0.9rem;
  }

  .login-required-login-btn,
  .login-required-register-btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .login-required-close-button {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }

  .faq-hero-image {
    display: none;
  }
  .faq-hero-content {
    padding: 0;
  }

  .training-hero-section .hero-main-title-ar {
    font-size: 2.5rem;
  }

  .hero-main-title-en {
    font-size: 1.3rem;
  }

  .login-main {
    background-image: url("../img/auth-mobile-bg.png");
  }

  .left-courses-image {
    display: none;
  }

  .courses-content-section .search-input {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
  }

  .services-section .service-item-wrapper {
    flex-direction: column-reverse;
  }

  .services-section .service-image {
    width: 100%;
  }

  .services-section .service-content-container {
    width: 90%;
    max-width: 90%;
    margin-top: -20px;
    border-radius: 20px;
  }

  .services-section .service-action {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .services-section .service-content-container .service-title {
    font-size: 2rem;
  }

  .services-section .service-content-container .service-description {
    font-size: 1rem;
  }

  .services-section .service-action-icon span {
    font-size: 0.7rem;
  }

  .service-details-content-section .service-image-bg .service-name {
    right: 50%;
    transform: translateX(50%);
    width: 80%;
    font-size: 1.2rem;
  }

  .service-details-content-section .service-details-description {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  .service-details-content-section .vertical-line {
    width: 100%;
    height: 1px;
  }

  .service-details-content-section .service-details-purchase-card {
    width: 100%;
  }
  .service-details-content-section
    .service-details-description
    .service-details-text {
    font-size: 1.1rem;
  }

  .plan-footer .subscribe-btn {
    width: 80%;
  }

  .practical-applications-dates,
  .practical-applications-date-text span {
    font-size: 0.8rem;
  }
}

@media (min-width: 1320px) {
  .navbar-nav .nav-link {
    font-size: 1rem !important;
    margin: 0 1.5rem !important;
  }

  .btn-register {
    color: var(--primary-green) !important;
    background-color: white !important;
    border: none;
    font-weight: 600;
    border-radius: 25px;
    font-size: 1rem !important;
    padding: 0.75rem 6rem !important;
  }

  .about-btn {
    padding: 0.75rem 3rem !important;
  }
  .main-stat-number {
    font-size: 25rem;
  }
  .navbar {
    max-width: 90%;
  }

  .login-section {
    padding: 2rem 0;
  }
}
