/* ===== Global Styles ===== */
:root {
  --primary: #2E7D32;       /* Emerald Green */
  --secondary: #212121;     /* Charcoal Black */
  --accent: #FFC107;        /* Golden Yellow */
  --background: #F9F9F9;    /* Off White */
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --dark-gray: #333333;
  --font-primary: 'Amiri', serif;
  --font-secondary: 'Open Sans', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-secondary);
  background-color: var(--background);
  color: var(--secondary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
 
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 15px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent);
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--secondary);
  border: 2px solid var(--accent);
}

.btn-accent:hover {
  background-color: transparent;
  color: var(--secondary);
}

/* ===== Header ===== */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.sticky {
  position: sticky;
  top: 0;
}

.header-logo img {
  height: 60px;
  width: auto;
}

.header-nav ul {
  display: flex;
  list-style: none;
}

.header-nav li {
  margin-left: 30px;
}

.header-nav a {
  color: var(--secondary);
  font-weight: 600;
  transition: color 0.3s;
  position: relative;
}

.header-nav a:hover {
  color: var(--primary);
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s;
}

.header-nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--secondary);
}

/* ===== Hero Section ===== */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('11hero.jpg') no-repeat center center/cover;
  height: 80vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: white;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: white;
}

/* ===== Card Styles with Hover Effects ===== */
.feature-card, .course-card, .step-card, .pricing-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card::before,
.course-card::before,
.step-card::before,
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  z-index: -1;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.feature-card:hover::before,
.course-card:hover::before,
.step-card:hover::before,
.pricing-card:hover::before {
  transform: scaleY(1);
}

.feature-card i,
.course-card i,
.step-card i,
.pricing-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.feature-card h3,
.course-card h3,
.step-card h3,
.pricing-card h3 {
  margin-bottom: 15px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.feature-card p,
.course-card p,
.step-card p,
.pricing-card p {
  transition: all 0.3s ease;
}

.feature-card:hover,
.course-card:hover,
.step-card:hover,
.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card:hover i,
.course-card:hover i,
.step-card:hover i,
.pricing-card:hover i,
.feature-card:hover h3,
.course-card:hover h3,
.step-card:hover h3,
.pricing-card:hover h3 {
  color: var(--white);
}

.feature-card:hover p,
.course-card:hover p,
.step-card:hover p,
.pricing-card:hover p {
  color: rgba(255, 255, 255, 0.9);
}

/* ===== Pricing Card Specific Styles ===== */
/* ===== Pricing Section ===== */
/* ===== Pricing Section ===== */
.pricing {

  background-color: var(--white);
}

.pricing .container {
  max-width: 1200px;
}

.pricing h2 {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 50px;
}

.pricing h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.pricing-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 1;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.pricing-card.popular {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular::before {
  height: 8px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-header {
  padding: 30px;
  text-align: center;
  background-color: rgba(46, 125, 50, 0.05);
}

.pricing-card.popular .pricing-header {
  background-color: rgba(255, 193, 7, 0.1);
}

.pricing-card h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.pricing-card.popular h3 {
  color: var(--accent);
}

.price {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  margin: 15px 0;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}

.price span {
  font-size: 1rem;
  color: var(--secondary);
  opacity: 0.8;
  transition: color 0.3s ease;
}

.pricing-card.popular .price {
  color: var(--accent);
}

.pricing-features {
  padding: 30px;
}

.pricing-features ul {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features i {
  color: var(--primary);
  margin-right: 10px;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.pricing-card.popular .pricing-features i {
  color: var(--accent);
}

/* Remove hover color changes for text elements */
.pricing-card:hover h3,
.pricing-card:hover .price,
.pricing-card:hover .price span,
.pricing-card:hover .pricing-features li,
.pricing-card:hover .pricing-features i {
  color: inherit;
}

.pricing-card.popular:hover h3,
.pricing-card.popular:hover .price,
.pricing-card.popular:hover .pricing-features i {
  color: var(--accent);
}

.pricing-footer {
  padding: 0 30px 30px;
  text-align: center;
}

.pricing-footer .btn {
  width: 100%;
  padding: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.pricing-card .btn {
  background-color: var(--primary);
  color: white;
  border: 2px solid var(--primary);
}

.pricing-card .btn:hover {
  background-color: transparent;
  color: var(--primary);
}

.pricing-card.popular .btn {
  background-color: var(--accent);
  color: var(--secondary);
  border: 2px solid var(--accent);
}

.pricing-card.popular .btn:hover {
  background-color: transparent;
  color: var(--secondary);
}

/* Ribbon for Popular Plan */
.popular-ribbon {
  position: absolute;
  top: 15px;
  right: -30px;
  background-color: var(--accent);
  color: var(--secondary);
  padding: 5px 30px;
  transform: rotate(45deg);
  font-weight: 600;
  font-size: 0.8rem;
  width: 120px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-card.popular {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.popular {
    grid-column: span 1;
  }
}
/* ===== Grid Layouts ===== */
.features-grid, .course-grid, .steps-grid, .pricing-grid {
  display: grid;
  grid-gap: 30px;
  margin: 50px 0;
}

.features-grid {
  grid-template-columns: repeat(3, 1fr);
}

.course-grid, .steps-grid {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* ===== Enroll/Get Started Buttons ===== */
/* ===== Enroll/Get Started Buttons ===== */
.enroll-button, 
.explore-button {
  text-align: center;
  margin: 30px 0;
}

.enroll-button .btn,
.explore-button .btn {
  background-color: var(--accent);
  color: var(--secondary);
  border: 2px solid var(--accent);
  transition: all 0.3s ease;
  display: inline-block; /* Ensures the button can be centered */
  margin: 0 auto; /* Centers the button horizontally */
}

.enroll-button .btn:hover,
.explore-button .btn:hover {
  background-color: transparent;
  color: var(--secondary);
}

/* ===== Section Background Images ===== */
.individual-courses {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('33hero.jpg') no-repeat center center/cover;
  color: white;
  padding: 100px 0;
  text-align: center;
}

.vision-mission {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('22hero.jpg') no-repeat center center/cover;
  color: white;
  padding: 100px 0;
  text-align: center;
}

/* ===== Testimonials ===== */
.testimonials {
  background-color: var(--white);
  padding: 80px 0;
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: var(--background);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  display: none;
}

.testimonial-card.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid var(--accent);
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-card h3 {
  color: var(--primary);
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.slider-controls button {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
  margin: 0 15px;
  transition: color 0.3s;
}

.slider-controls button:hover {
  color: var(--accent);
}

/* ===== Contact Section ===== */
/* ===== Contact Section ===== */
.contact {
  background-color: var(--background);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info {
  background-color: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.contact-info ul {
  list-style: none;
}

.contact-info li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.contact-info i {
  color: var(--primary);
  font-size: 1.2rem;
  margin-right: 15px;
  width: 24px;
  text-align: center;
}

.contact-form {
  background-color: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-secondary);
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

/* Send Message Button with Invert Hover */
.contact-form button[type="submit"] {
  background-color: var(--primary);
  color: white;
  border: 2px solid var(--primary);
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.contact-form button[type="submit"]:hover {
  background-color: transparent;
  color: var(--primary);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info,
  .contact-form {
    padding: 30px;
  }
}
/* ===== Footer ===== */
footer {
  background-color: var(--secondary);
  color: var(--white);
  padding: 30px 0;
  text-align: center;
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  color: var(--white);
  font-size: 1.5rem;
  margin: 0 10px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--accent);
}

/* ===== WhatsApp Button ===== */
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: transform 0.3s;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .features-grid, .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .header-nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: left 0.3s;
  }
  
  .header-nav.active {
    left: 0;
  }
  
  .header-nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  .header-nav li {
    margin: 15px 0;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .features-grid, .course-grid, .steps-grid, .pricing-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .hero {
    height: auto;
    padding: 100px 0;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }

  /* Disable hover effects on mobile */
  .feature-card:hover::before,
  .course-card:hover::before,
  .step-card:hover::before,
  .pricing-card:hover::before {
    transform: scaleY(0);
  }

  .feature-card:hover i,
  .course-card:hover i,
  .step-card:hover i,
  .pricing-card:hover i,
  .feature-card:hover h3,
  .course-card:hover h3,
  .step-card:hover h3,
  .pricing-card:hover h3 {
    color: var(--primary);
  }

  .feature-card:hover p,
  .course-card:hover p,
  .step-card:hover p,
  .pricing-card:hover p {
    color: var(--secondary);
  }
}

@media (max-width: 576px) {
  .container {
    width: 95%;
  }
  
  h2 {
    font-size: 1.8rem;
    
  }
}
















:root {
    --primary: #2E7D32; /* Emerald Green */
    --primary-light: rgba(46, 125, 50, 0.1);
    --secondary: #212121; /* Charcoal Black */
    --accent: #FFC107; /* Golden Yellow */
    --accent-light: rgba(255, 193, 7, 0.1);
    --background: #F9F9F9; /* Off White */
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --font-primary: 'Amiri', serif;
    --font-secondary: 'Open Sans', sans-serif;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease-in-out;
}

/* Modern Base Styles */
body {
    font-family: var(--font-secondary);
    background-color: var(--background);
    color: var(--secondary);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}




/* Modern Hero Section */
.about-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), 
                url('about\ us.jpg') center/cover no-repeat;
    padding: 180px 0 100px;
    color: var(--white);
    text-align: center;

    position: relative;
}

.about-header::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    background: url('wave.svg') center/cover no-repeat;
    z-index: 1;
}

.about-header h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-family: var(--font-primary);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.about-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Modern Content Sections */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
    position: relative;
}

.about-section:nth-child(even) {
    grid-template-areas: "image content";
}

.about-section:nth-child(even) .about-content {
    grid-area: content;
}

.about-section:nth-child(even) .about-image {
    grid-area: image;
}

.about-content {
    padding: 30px;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 400px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-content h3 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 25px;
    font-family: var(--font-primary);
    position: relative;
    display: inline-block;
}

.about-content h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--dark-gray);
}

/* Modern Team Section */
.team-section {
    padding: 100px 0;
    text-align: center;
    background: var(--white);
}

.team-section h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-family: var(--font-primary);
}

.team-section p {
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.15rem;
    color: var(--dark-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 25px;
    border: 5px solid var(--accent-light);
    transition: var(--transition);
}

.team-card:hover img {
    border-color: var(--accent);
}

.team-card h4 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-family: var(--font-primary);
}

.team-card p {
    color: var(--dark-gray);
    font-size: 1rem;
    margin-bottom: 0;
}

/* Modern Footer */
footer {
    background: var(--secondary);
    color: var(--white);
    padding: 60px 0 30px;
    text-align: center;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    background: url('wave-dark.svg') center/cover no-repeat;
}

footer p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    color: var(--secondary);
    transform: translateY(-5px);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-button:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        height: 350px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }
    
    .header-nav.active {
        left: 0;
    }
    
    .header-nav ul {
        flex-direction: column;
        gap: 30px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .about-header {
        padding: 150px 0 80px;
    }
    
    .about-header h2 {
        font-size: 2.8rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .about-header h2 {
        font-size: 2.2rem;
    }
    
    .about-content h3 {
        font-size: 1.8rem;
    }
    
    .team-section h3 {
        font-size: 2rem;
    }
}









:root {
    --primary: #2E7D32;
    --primary-light: rgba(46, 125, 50, 0.1);
    --secondary: #212121;
    --accent: #FFC107;
    --accent-light: rgba(255, 193, 7, 0.1);
    --background: #F9F9F9;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --font-primary: 'Amiri', serif;
    --font-secondary: 'Open Sans', sans-serif;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--background);
    color: var(--secondary);
    line-height: 1.7;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-logo img {
    height: 60px;
    transition: var(--transition);
}

.header-nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

.header-nav a {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    position: relative;
    padding: 5px 0;
}

.header-nav a.active {
    color: var(--primary);
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.header-nav a:hover::after,
.header-nav a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Courses Hero Section */
.courses-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), 
                url('courses.jpg') center/cover no-repeat;
    padding: 180px 0 100px;
    color: var(--white);
    text-align: center;
    position: relative;
}

.courses-header::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    background: url('wave.svg') center/cover no-repeat;
    z-index: 1;
}

.courses-header h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-family: var(--font-primary);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.courses-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Course Grid */
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding: 80px 0;
}

.course-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    border-top: 5px solid var(--primary);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.course-card i {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    transition: var(--transition);
}

.course-card:hover i {
    color: var(--accent);
    transform: scale(1.1);
}

.course-card h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-family: var(--font-primary);
}

.course-card p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--dark-gray);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.btn:hover {
    background: transparent;
    color: var(--primary);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: var(--white);
    margin: 10% auto;
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: modalopen 0.5s;
}

@keyframes modalopen {
    from {opacity: 0; transform: translateY(-50px);}
    to {opacity: 1; transform: translateY(0);}
}

.close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--secondary);
    cursor: pointer;
    transition: var(--transition);
}

.close:hover {
    color: var(--primary);
}

.modal h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
    font-family: var(--font-primary);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-secondary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

/* Footer */
footer {
    background: var(--secondary);
    color: var(--white);
    padding: 60px 0 30px;
    text-align: center;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    background: url('wave-dark.svg') center/cover no-repeat;
}

footer p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--accent);
    color: var(--secondary);
    transform: translateY(-5px);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .course-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }
    
    .header-nav.active {
        left: 0;
    }
    
    .header-nav ul {
        flex-direction: column;
        gap: 30px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .courses-header {
        padding: 150px 0 80px;
    }
    
    .courses-header h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 576px) {
    .course-grid {
        grid-template-columns: 1fr;
    }
    
    .courses-header h2 {
        font-size: 2.2rem;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
}









:root {
    --primary: #2E7D32; /* Emerald Green */
    --primary-light: rgba(46, 125, 50, 0.1);
    --secondary: #212121; /* Charcoal Black */
    --accent: #FFC107; /* Golden Yellow */
    --accent-light: rgba(255, 193, 7, 0.1);
    --background: #F9F9F9; /* Off White */
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --font-primary: 'Amiri', serif;
    --font-secondary: 'Open Sans', sans-serif;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease-in-out;
}

/* Pricing Section Styles */
.pricing-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), 
                url('pricing.jpg') center/cover no-repeat;
    padding: 180px 0 100px;
    color: var(--white);
    text-align: center;
    position: relative;
}

.pricing-header::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    background: url('wave.svg') center/cover no-repeat;
    z-index: 1;
}

.pricing-header h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-family: var(--font-primary);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.pricing-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.25rem;
    opacity: 0.9;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 80px 0;
}

.pricing-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card.popular {
    border: 2px solid var(--accent);
    transform: translateY(-10px);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-family: var(--font-primary);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin: 10px 0;
}

.price span {
    font-size: 1rem;
    color: var(--dark-gray);
    font-weight: 400;
}

.pricing-card.popular .price {
    color: var(--accent);
}

.features-list {
    list-style: none;
    margin: 30px 0;
}

.features-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.features-list i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 1.2rem;
}

.pricing-card.popular .features-list i {
    color: var(--accent);
}

.popular-tag {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--accent);
    color: var(--secondary);
    padding: 5px 30px;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.8rem;
    width: 120px;
    text-align: center;
}

.special-offers {
    background: var(--primary-light);
    border-radius: 10px;
    padding: 30px;
    margin: 50px 0;
    text-align: center;
}

.special-offers h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-family: var(--font-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.special-offers h3 i {
    margin-right: 10px;
}

.special-offers ul {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.special-offers li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.special-offers i {
    color: var(--primary);
    margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.popular {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        grid-column: span 1;
    }
    
    .pricing-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .pricing-header h2 {
        font-size: 2rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
}






:root {
    --primary: #2E7D32; /* Emerald Green */
    --primary-light: rgba(46, 125, 50, 0.1);
    --secondary: #212121; /* Charcoal Black */
    --accent: #FFC107; /* Golden Yellow */
    --accent-light: rgba(255, 193, 7, 0.1);
    --background: #F9F9F9; /* Off White */
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --font-primary: 'Amiri', serif;
    --font-secondary: 'Open Sans', sans-serif;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease-in-out;
}

/* Contact Section Styles */
.contact-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), 
                url('contact\ us.jpg') center/cover no-repeat;
    padding: 180px 0 100px;
    color: var(--white);
    text-align: center;
    position: relative;
}

.contact-header::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    background: url('wave.svg') center/cover no-repeat;
    z-index: 1;
}

.contact-header h2 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 25px;
    font-family: var(--font-primary);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.contact-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.25rem;
    opacity: 0.9;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 80px 0;
}

.contact-info {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--box-shadow);
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 25px;
    font-family: var(--font-primary);
    position: relative;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent);
}

.contact-details {
    list-style: none;
    margin: 40px 0;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-details i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 20px;
    margin-top: 5px;
}

.contact-details h4 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 5px;
}

.contact-details a, 
.contact-details span {
    color: var(--dark-gray);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--primary);
}

.contact-hours {
    background: var(--primary-light);
    padding: 20px;
    border-radius: 10px;
}

.contact-hours h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-hours p {
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.contact-form {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-secondary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.btn:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.map-section {
    margin: 80px 0;
}

.map-section h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 30px;
    font-family: var(--font-primary);
    text-align: center;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .contact-header h2 {
        font-size: 2.5rem;
    }
    
    .contact-details li {
        flex-direction: column;
    }
    
    .contact-details i {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .contact-header h2 {
        font-size: 2rem;
      
    }
    
    .contact-info,
    .contact-form {
        padding: 30px 20px;
    }
}












/* ====== NAVIGATION STYLES ====== */
/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header Container */
.main-header {
    background-color: #2c3e50; /* Dark blue background */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding: 12px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
}

/* Brand Logo */
.brand-logo img {
    height: 45px;
    transition: transform 0.3s ease;
}

.brand-logo img:hover {
    transform: scale(1.08);
}

/* Main Navigation */
.main-nav {
    transition: all 0.4s ease;
}

.nav-list {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-link {
    color: #ecf0f1; /* Light gray text */
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
}

.nav-link:hover {
    color: #f1c40f; /* Yellow on hover */
    background-color: rgba(255,255,255,0.05);
}

.nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #f1c40f; /* Yellow underline */
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link.active {
    color: #f1c40f; /* Yellow for active */
    background-color: rgba(241, 196, 15, 0.1);
}

.nav-link.active::before {
    width: 100%;
}

/* Mobile Toggle Button */
.mobile-toggle {
    background: none;
    border: none;
    color: #ecf0f1; /* Light gray */
    font-size: 24px;
    cursor: pointer;
    display: none;
    padding: 8px;
    transition: all 0.3s ease;
}

.mobile-toggle:hover {
    color: #f1c40f; /* Yellow on hover */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background-color: #2c3e50;
        padding: 30px 20px;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    }

    .main-nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
    }

    .nav-link {
        display: block;
        padding: 12px 15px;
        border-left: 3px solid transparent;
    }

    .nav-link:hover {
        border-left: 3px solid #f1c40f;
        background-color: rgba(255,255,255,0.05);
    }

    .nav-link::before {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }
}








/* ===== HEADER STYLES ===== */
/* Quran Ruhani Header - Scoped Styles */
.qr-header {
    position: sticky;
    top: 0;
    background-color: #212121;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    padding: 15px 0;
    width: 100%;
}

.qr-header__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.qr-header__logo-img {
    height: 50px;
    transition: transform 0.3s ease;
}

.qr-header__logo-img:hover {
    transform: scale(1.05);
}

.qr-header__nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.qr-header__nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
}

.qr-header__nav-link:hover {
    color: #FFC107;
}

.qr-header__nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #FFC107;
    transition: width 0.3s ease;
}

.qr-header__nav-link:hover::after {
    width: 100%;
}

.qr-header__nav-link--active {
    color: #FFC107;
}

.qr-header__nav-link--active::after {
    width: 100%;
}

.qr-header__icon {
    font-size: 14px;
}

.qr-header__toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.qr-header__toggle:hover {
    color: #FFC107;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .qr-header__nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: #212121;
        padding: 30px;
        transition: left 0.4s ease;
    }

    .qr-header__nav.active {
        left: 0;
    }

    .qr-header__nav-list {
        flex-direction: column;
        gap: 20px;
    }

    .qr-header__nav-link {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .qr-header__nav-link::after {
        display: none;
    }

    .qr-header__toggle {
        display: block;
    }
}





/* Quran Ruhani Header - Scoped Styles */
.qr-header {
    position: sticky;
    top: 0;
    background-color: #212121;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    padding: 15px 0;
    width: 100%;
}

/* ... (keep all other existing styles the same until .qr-header__nav-link:hover) ... */

.qr-header__nav-link:hover {
    color: #2E7D32; /* Emerald Green instead of Yellow */
}

.qr-header__nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #2E7D32; /* Emerald Green underline */
    transition: width 0.3s ease;
}

.qr-header__nav-link--active {
    color: #2E7D32; /* Emerald Green for active state */
}

.qr-header__toggle:hover {
    color: #2E7D32; /* Emerald Green for toggle hover */
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* ... (keep all existing mobile styles) ... */
    
    .qr-header__nav-link:hover {
        border-left: 3px solid #2E7D32; /* Emerald Green accent */
    }
}




/* Active state only for current page */
.qr-header__nav-link[href="contact.html"].qr-header__nav-link--active {
    color: #2E7D32; /* Green for active Contact page */
}

.qr-header__nav-link[href="contact.html"].qr-header__nav-link--active::after {
    width: 100%;
    background-color: #2E7D32;
}

/* Hover state for all links */
.qr-header__nav-link:hover {
    color: #2E7D32; /* Green on hover */
}

.qr-header__nav-link:hover::after {
    width: 100%;
    background-color: #2E7D32;
}







/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: 5% auto;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: modalopen 0.4s;
}

@keyframes modalopen {
    from {opacity: 0; transform: translateY(-50px);}
    to {opacity: 1; transform: translateY(0);}
}

.close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: #2E7D32;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #2E7D32;
    outline: none;
}

.btn {
    background-color: #2E7D32;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #1B5E20;
}

/* Body scroll lock when modal is open */
.body-no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Responsive Styles */
@media (max-width: 600px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 20px;
    }
}