/* Enhanced Styles for Kalpavriksha */
:root {
  --primary: #48825d;
  --primary-dark: #467b5a;
  --secondary: #b8cec0;
  --background: #f6f6e5;
  --text: #333333;
  --white: #FFFFFF;
  --shadow: rgba(0, 0, 0, 0.1);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  color: var(--text);
  background-color: var(--background);
  line-height: 1.6;
}

/* Enhanced Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--secondary);
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--background);
  box-shadow: 0 2px 10px var(--shadow);
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 1rem 3rem;
  background-color: rgba(246, 246, 229, 0.95);
  backdrop-filter: blur(10px);
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: auto;
  width: 250px;
}

/* Enhanced Navigation */
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--primary);
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Enhanced Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  min-width: 200px;
  padding: 1rem 0;
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  padding: 0.5rem 1.5rem;
  margin: 0;
}

.dropdown-menu a {
  color: var(--primary);
  font-weight: normal;
}

/* Enhanced Hero Section */
#hero {
  min-height: 80vh;
  background: linear-gradient(135deg, var(--secondary) 0%, #92b3a5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  text-align: center;
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  animation: fadeInUp 1.2s ease-out;
}

.hero-content p {
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 2.5rem;
  animation: fadeInUp 1.2s ease-out 0.2s;
  opacity: 0;
  animation-fill-mode: forwards;
}

/* Enhanced CTA Button */
.cta-button {
  background-color: var(--primary);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1.2s ease-out 0.4s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.cta-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(72, 130, 93, 0.3);
}

/* Enhanced Card Grid */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  padding: 4rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.card {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 15px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card h2 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  position: relative;
}

.card p {
  color: var(--text);
  line-height: 1.8;
}


/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  header {
    padding: 1rem;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .grid-container {
    padding: 2rem 1rem;
  }
}

/* Page-specific styles */
.page-header {
  background: var(--secondary);
  padding: 4rem 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.page-header h1 {
  color: var(--primary);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text);
}

/* Form Styles */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid var(--secondary);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(72, 130, 93, 0.1);
}

/* Package Cards */
.package-card {
  border: 2px solid var(--secondary);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.package-card:hover {
  border-color: var(--primary);
}

.package-price {
  font-size: 2.5rem;
  color: var(--primary);
  margin: 1rem 0;
}

.feature-list {
  list-style: none;
  margin: 1.5rem 0;
}

.feature-list li {
  margin: 0.5rem 0;
  color: var(--text);
}

/* Home Page Specific Styles */

/* Hero Section Enhancements */
#hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  min-height: 90vh;
  padding: 4rem;
  background: linear-gradient(135deg, var(--secondary) 0%, #92b3a5 100%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.secondary-button {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.secondary-button:hover {
  background-color: var(--primary);
  color: var(--white);
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features-section {
  padding: 6rem 4rem;
  background-color: var(--white);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  padding: 2rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* Methodology Section */
.methodology-section {
  padding: 6rem 4rem;
  background-color: var(--background);
}

.methodology-content {
  max-width: 1200px;
  margin: 0 auto;
}

.methodology-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  position: relative;
  padding: 2rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 20px;
  background: var(--primary);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* director Section */
.director-section {
  padding: 6rem 4rem;
  background-color: var(--white);
}

.director-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.director-slide {
  display: none;
  padding: 2rem;
  text-align: center;
}

.director-slide.active {
  display: block;
}

.director-avatar-index {
  width: 250px;
  height: auto;
  border-radius: 35%;
  margin: 0 auto 1.5rem;
}

.director-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}

.director-text {
  font-size: 1.2rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.director-author {
  color: var(--primary);
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.director-position {
  color: var(--text);
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  padding: 6rem 4rem;
  background: linear-gradient(135deg, var(--primary) 0%, #467b5a 100%);
  color: var(--white);
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-content p {
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.cta-content .cta-button {
  background-color: var(--white);
  color: var(--primary);
}

.cta-content .cta-button:hover {
  background-color: var(--secondary);
  color: var(--primary);
}

/* Responsive Design */
@media (max-width: 768px) {
  #hero {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-image {
    order: -1;
  }

  .features-section,
  .methodology-section,
  .director-section,
  .cta-section {
    padding: 4rem 2rem;
  }

  .hero-buttons {
    flex-direction: row;
    width: 100%;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
  }
}

/* Consultation Page Styles */

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--secondary) 0%, #92b3a5 100%);
  padding: 6rem 2rem;
  text-align: center;
  margin-bottom: 4rem;
}

.page-header h1 {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  color: var(--text);
}

/* Benefits Section */
.benefits-section {
  padding: 4rem 2rem;
  background-color: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  padding: 2rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 4px 15px var(--shadow);
  transition: all 0.3s ease;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.benefit-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.benefit-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.benefit-card p {
  color: var(--text);
  line-height: 1.6;
}

/* Process Timeline */
.process-section {
  padding: 6rem 2rem;
  background-color: var(--background);
}

.process-section h2 {
  text-align: center;
  margin-bottom: 4rem;
  color: var(--primary);
}

.process-timeline {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.timeline-item {
  position: relative;
  padding: 2rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 4px 15px var(--shadow);
  margin-left: 3rem;
}

.timeline-number {
  position: absolute;
  left: -3rem;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Booking Section */
.booking-section {
  padding: 4rem 2rem;
  background-color: var(--white);
}

.booking-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.booking-info h2 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.booking-features {
  list-style: none;
  margin: 2rem 0;
}

.booking-features li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.booking-features i {
  color: var(--primary);
}

.booking-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 15px var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid var(--secondary);
  border-radius: 8px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(72, 130, 93, 0.1);
}

.submit-button {
  width: 100%;
  padding: 1rem;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

.submit-button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  transform: none;
}

/* Message Styles */
.message {
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  font-weight: bold;
}

.message-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.message-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* FAQ Section */
.faq-section {
  padding: 6rem 2rem;
  background-color: var(--background);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 4rem;
  color: var(--primary);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 15px var(--shadow);
}

.faq-item h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.faq-item p {
  color: var(--text);
  line-height: 1.6;
}

/* Animation Classes */
.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .booking-content {
    grid-template-columns: 1fr;
  }

  .page-header h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.2rem;
  }

  .benefits-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .booking-features {
    margin: 1.5rem 0;
  }

  .timeline-item {
    margin-left: 2rem;
  }

  .timeline-number {
    width: 30px;
    height: 30px;
    left: -2.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .page-header {
    padding: 4rem 1rem;
  }

  .benefits-section,
  .process-section,
  .booking-section,
  .faq-section {
    padding: 3rem 1rem;
  }
}

.site-footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 4rem 0 0;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  padding: 0 2rem;
}

.footer-section h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  position: relative;
  font-weight: bold;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background-color: var(--white);
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.contact-info a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--white);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.social-links i {
  font-size: 1.2rem;
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem;
  margin-top: 3rem;
  background: rgba(0, 0, 0, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .contact-info p {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }
}

/* Packages Page Styles */
.packages-section {
  padding: 4rem 2rem;
  background-color: var(--white);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.package-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 15px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid var(--secondary);
}

.package-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
}

.package-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
}

.package-header {
  text-align: center;
  margin-bottom: 2rem;
}

.package-header h3 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.package-price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.5rem;
}

.package-price .amount {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary);
}

.package-price .period {
  color: var(--text);
  opacity: 0.8;
}

.package-features {
  list-style: none;
  margin: 2rem 0;
}

.package-features li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.package-features i {
  color: var(--primary);
}

.package-button {
  display: block;
  width: 100%;
  padding: 1rem;
  text-align: center;
  background: var(--primary);
  color: var(--white);
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.package-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .packages-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .package-card.featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  .packages-section {
    padding: 2rem 1rem;
  }

  .package-card {
    margin-bottom: 2rem;
  }
}

/* Training & Workshops Page Styles */
.workshops-section {
  padding: 4rem 2rem;
  background-color: var(--white);
}

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.workshop-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 15px var(--shadow);
  transition: all 0.3s ease;
  display: flex;
  gap: 1.5rem;
  position: relative;
}

.workshop-card.featured {
  border: 2px solid var(--primary);
}

.workshop-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
}

.workshop-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background: var(--primary);
  border-radius: 10px;
  color: var(--white);
  min-width: 80px;
}

.workshop-date .month {
  font-size: 1.2rem;
  font-weight: bold;
}

.workshop-date .day {
  font-size: 1.8rem;
  font-weight: bold;
}

.workshop-content h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.workshop-info {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text);
  font-size: 0.9rem;
}

.workshop-info i {
  color: var(--primary);
  margin-right: 0.5rem;
}

.workshop-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.workshop-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Training Programs Styles */
.training-programs-section {
  padding: 4rem 2rem;
  background-color: var(--background);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.program-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--shadow);
  transition: all 0.3s ease;
}

.program-card:hover {
  transform: translateY(-10px);
}

.program-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.program-content {
  padding: 2rem;
}

.program-content h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.program-features {
  list-style: none;
  margin: 1.5rem 0;
}

.program-features li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.program-features i {
  color: var(--primary);
}

.program-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.program-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Training Materials Styles */
.materials-section {
  padding: 4rem 2rem;
  background-color: var(--white);
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.material-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 15px var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
}

.material-card:hover {
  transform: translateY(-5px);
}

.material-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.material-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.material-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
}

.material-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {

  .workshop-grid,
  .programs-grid,
  .materials-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {

  .workshops-section,
  .training-programs-section,
  .materials-section {
    padding: 2rem 1rem;
  }

  .workshop-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .workshop-info {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
}

/* Resources Page Styles */
.search-section {
  padding: 2rem;
  background-color: var(--white);
  border-bottom: 1px solid var(--secondary);
}

.search-box {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  display: flex;
  gap: 1rem;
}

.search-box input {
  flex: 1;
  padding: 1rem;
  border: 2px solid var(--secondary);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.search-box input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(72, 130, 93, 0.1);
}

.search-button {
  padding: 0 1.5rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-button:hover {
  background: var(--primary-dark);
}

.filter-tags {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-tag {
  padding: 0.5rem 1rem;
  background: var(--white);
  border: 2px solid var(--secondary);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-tag:hover,
.filter-tag.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Featured Resources */
.featured-resources {
  padding: 4rem 2rem;
  background-color: var(--background);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.resource-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 15px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
}

.resource-card.featured {
  border: 2px solid var(--primary);
}

.resource-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
}

.resource-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.resource-icon i {
  font-size: 1.8rem;
  color: var(--primary);
}

.resource-content h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.resource-meta {
  display: flex;
  gap: 1.5rem;
  margin: 1rem 0;
  color: var(--text);
  font-size: 0.9rem;
}

.resource-meta i {
  color: var(--primary);
  margin-right: 0.5rem;
}

/* Resource Categories */
.resource-categories {
  padding: 4rem 2rem;
  background-color: var(--white);
}

.category-section {
  margin-bottom: 3rem;
}

.category-title {
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--secondary);
}

.resources-list {
  display: grid;
  gap: 1.5rem;
}

.resource-item {
  background: var(--background);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  transition: all 0.3s ease;
}

.resource-item:hover {
  transform: translateX(10px);
}

.resource-details h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* Premium Resources */
.premium-resources {
  padding: 4rem 2rem;
  background-color: var(--background);
}

.premium-banner {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 4px 15px var(--shadow);
}

.premium-features {
  list-style: none;
  margin: 2rem 0;
}

.premium-features li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.premium-features i {
  color: var(--primary);
}

.premium-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.premium-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.premium-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .premium-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem;
  }

  .premium-features {
    display: inline-block;
    text-align: left;
  }

  .premium-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .resource-item {
    flex-direction: column;
    text-align: center;
  }

  .resource-meta {
    justify-content: center;
  }

  .search-section,
  .featured-resources,
  .resource-categories,
  .premium-resources {
    padding: 2rem 1rem;
  }
}

/* Enhanced Download Button Styles */
.download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(72, 130, 93, 0.2);
}

.download-button:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: all 0.6s ease;
}

.download-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(72, 130, 93, 0.3);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.download-button:hover:before {
  left: 100%;
}

.download-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(72, 130, 93, 0.2);
}

.download-button.downloading {
  background: var(--secondary);
  cursor: not-allowed;
}

.download-button .loading-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  border: 2px solid var(--white);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.download-button.success {
  background: #28a745;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Update the download button when inside resource cards */
.resource-card .download-button {
  width: 100%;
  margin-top: 1rem;
  gap: 0.5rem;
}

/* Update the download button when inside resource items */
.resource-item .download-button {
  min-width: 120px;
  padding: 0.7rem 1.2rem;
}

/* Additional hover states for parent containers */
.resource-card:hover .download-button,
.resource-item:hover .download-button {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(72, 130, 93, 0.3);
}

/* Contact Page Styles */
.quick-contact {
  padding: 2rem 0;
  margin-top: -2rem;
  position: relative;
  z-index: 10;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 15px var(--shadow);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.contact-icon i {
  font-size: 1.5rem;
  color: var(--primary);
}

.contact-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.contact-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--primary-dark);
}

/* Main Contact Section */
.contact-section {
  padding: 4rem 2rem;
  background-color: var(--background);
}

.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-container,
.contact-info-container {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 15px var(--shadow);
}

.contact-form-container h2,
.contact-info-container h2 {
  color: var(--primary);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

/* Enhanced Form Styles */
.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--secondary);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--background);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(72, 130, 93, 0.1);
}

.contact-form .submit-button {
  width: 100%;
  padding: 1rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.contact-form .submit-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.submit-button i {
  font-size: 1.1rem;
}

/* Contact Info Styles */
.contact-info-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-section {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--secondary);
}

.info-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-section h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.hours-list {
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.location-map {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.location-address {
  color: var(--text);
  font-style: normal;
  line-height: 1.6;
}

.location-address i {
  color: var(--primary);
  margin-right: 0.5rem;
}

/* Social Links */
.info-section .social-links {
  display: flex;
  gap: 1rem;
}

.info-section .social-link {
  width: 40px;
  height: 40px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s ease;
}

.info-section .social-link:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

/* FAQ Section */
.contact-faq {
  padding: 4rem 2rem;
  background-color: var(--white);
}

.contact-faq .faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  background: var(--background);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px var(--shadow);
}

.faq-item h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

/* Form Validation Styles */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #dc3545;
}

.error-message {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.success-message {
  background: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-container {
    order: -1;
  }
}

@media (max-width: 768px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 2rem 1rem;
  }

  .contact-form-container,
  .contact-info-container {
    padding: 1.5rem;
  }

  .hours-list li {
    flex-direction: column;
    text-align: center;
    margin-bottom: 1rem;
  }
}

/* Payment Page Styles */
.security-banner {
  background: var(--white);
  padding: 2rem 0;
  margin-top: -2rem;
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 15px var(--shadow);
}

.security-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.security-item {
  text-align: center;
}

.security-item i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.security-item h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

/* Payment Methods */
.payment-methods {
  padding: 4rem 2rem;
  background-color: var(--background);
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.payment-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 15px var(--shadow);
  transition: all 0.3s ease;
}

.payment-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.payment-icon {
  width: 70px;
  height: 70px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.payment-icon i {
  font-size: 2rem;
  color: var(--primary);
}

.payment-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.card-types,
.wallet-types {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.card-types i,
.wallet-types i {
  font-size: 2rem;
  color: var(--text);
}

.pay-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pay-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Payment Form */
.payment-form-section {
  padding: 4rem 2rem;
  background-color: var(--white);
}

.payment-form-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 15px var(--shadow);
}

.payment-form h2 {
  color: var(--primary);
  margin-bottom: 2rem;
  text-align: center;
}

.payment-form h3 {
  color: var(--primary);
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--secondary);
}

.card-details,
.billing-details {
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group.half {
  margin-bottom: 0;
}

.card-input-wrapper {
  position: relative;
}

.card-type-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text);
}

.payment-form input,
.payment-form select {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--secondary);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.payment-form input:focus,
.payment-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(72, 130, 93, 0.1);
}

.payment-summary {
  background: var(--background);
  padding: 1.5rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  color: var(--text);
}

.summary-total {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid var(--secondary);
  font-weight: bold;
  color: var(--primary);
}

.terms-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 2rem 0;
}

.terms-check input[type="checkbox"] {
  width: auto;
}

.submit-payment-button {
  width: 100%;
  padding: 1rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.submit-payment-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.submit-payment-button i {
  font-size: 1.2rem;
}

/* Form Validation Styles */
.form-group.error input,
.form-group.error select {
  border-color: #dc3545;
}

.error-message {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

/* Payment Success Modal */
.payment-success-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  z-index: 1000;
  display: none;
}

.payment-success-modal.active {
  display: block;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}

.modal-overlay.active {
  display: block;
}

.success-icon {
  font-size: 4rem;
  color: #28a745;
  margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .security-features {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .payment-form-container {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .form-group.half {
    margin-bottom: 1.5rem;
  }

  .card-types,
  .wallet-types {
    flex-wrap: wrap;
  }
}

/* Mobile Navigation Styles */
.mobile-menu-button {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  position: relative;
  z-index: 1000;
}

.hamburger {
  width: 24px;
  height: 20px;
  position: relative;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  cursor: pointer;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--primary);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 0px;
}

.hamburger span:nth-child(2) {
  top: 8px;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
  top: 8px;
  transform: rotate(135deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.hamburger.active span:nth-child(3) {
  top: 8px;
  transform: rotate(-135deg);
}

@media (max-width: 768px) {
  .mobile-menu-button {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--white);
    padding: 80px 20px 20px;
    flex-direction: column;
    gap: 1rem;
    transition: 0.3s ease-in-out;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 10px 0;
    width: 100%;
    text-align: left;
  }

  /* Overlay when menu is open */
  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
  }

  .menu-overlay.active {
    display: block;
  }
}

/* Header adjustments for mobile */
@media (max-width: 768px) {
  header {
    padding: 1rem;
    position: relative;
  }

  .logo img {
    width: 180px;
  }
}

/* Header Styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: var(--white);
  position: relative;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 60px;
  width: auto;
}

nav {
  margin-left: auto;
  /* This pushes the nav to the right */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-dark);
}

/* Mobile Menu Button */
.mobile-menu-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
  .mobile-menu-button {
    display: block;
    z-index: 1001;
  }

  nav {
    margin-left: 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  /* Hamburger Icon */
  .mobile-menu-button {
    width: 30px;
    height: 20px;
    position: relative;
  }

  .mobile-menu-button span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--primary);
    transition: 0.3s;
  }

  .mobile-menu-button span:nth-child(1) {
    top: 0;
  }

  .mobile-menu-button span:nth-child(2) {
    top: 8px;
  }

  .mobile-menu-button span:nth-child(3) {
    top: 16px;
  }

  /* Hamburger Animation */
  .mobile-menu-button.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
  }

  .mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-button.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
  }
}

/* Header Styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: var(--background);
  /* Using the original background color */
  position: fixed;
  /* Make header stick to top */
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px var(--shadow);
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 60px;
  width: auto;
}

nav {
  margin-left: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-dark);
}

/* Mobile Menu Button */
.mobile-menu-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
  header {
    padding: 1rem;
  }

  .mobile-menu-button {
    display: block;
    z-index: 1001;
  }

  nav {
    margin-left: 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    /* Start from off-screen */
    width: 70%;
    height: 100vh;
    background-color: var(--background);
    flex-direction: column;
    padding: 80px 2rem 2rem;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
    right: 0;
    /* Slide in from right */
  }

  .nav-links li {
    width: 100%;
    text-align: left;
  }

  .nav-links a {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--secondary);
  }

  /* Hamburger Icon */
  .mobile-menu-button span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary);
    margin: 5px 0;
    transition: all 0.3s ease;
  }

  /* Hamburger Animation */
  .mobile-menu-button.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-button.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  /* Overlay when menu is open */
  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .menu-overlay.active {
    display: block;
  }
}

/* Mobile Navigation Styles */
/* Base header styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: var(--background);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px var(--shadow);
  transition: all 0.3s ease;
}

/* Logo styles */
.logo img {
  height: auto;
  width: 180px;
  /* Smaller for mobile */
}

/* Mobile Menu Button */
.mobile-menu-button {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 1000;
}

.mobile-menu-button .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--primary);
  transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: var(--white);
  padding: 2rem;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 999;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu ul li {
  margin: 1rem 0;
}

.mobile-menu a {
  color: var(--primary);
  text-decoration: none;
  font-size: 1.1rem;
  display: block;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--primary-dark);
}

/* Mobile Menu Overlay */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  display: block;
}

/* Desktop Navigation */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--primary);
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-button {
    display: block;
  }

  .mobile-menu {
    display: block;
  }

  /* Animate menu button when active */
  .mobile-menu-button.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .mobile-menu-button.active .bar:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-button.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (min-width: 769px) {
  header {
    padding: 1.5rem 3rem;
  }

  .logo img {
    width: 250px;
  }
}

/* Consultation Page Specific Styles */
:root {
  --primary: #48825d;
  --primary-dark: #3a6b4a;
  --secondary: #b8cec0;
  --background: #f6f6e5;
  --text: #333333;
  --white: #FFFFFF;
  --shadow: rgba(0, 0, 0, 0.1);
}

/* Page Header Styles */
.page-header {
  background: linear-gradient(135deg, var(--secondary) 0%, #92b3a5 100%);
  padding: 4rem 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.page-header h1 {
  color: var(--primary);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  color: var(--text);
}

/* Featured Program Section */
.featured-program {
  padding: 2rem 0;
}

.featured-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 4px 15px var(--shadow);
  text-align: center;
}

.featured-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
}

.featured-content h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.featured-description {
  color: var(--text);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.price-tag {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: bold;
  margin: 1.5rem 0;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
}

.feature-list i {
  color: var(--primary);
}

.featured-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.featured-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Services Grid */
.services-section {
  padding: 4rem 0;
  background-color: var(--background);
}

.section-title {
  text-align: center;
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--shadow);
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-icon i {
  font-size: 2rem;
  color: var(--primary);
}

.service-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text);
  line-height: 1.6;
}

/* Process Timeline */
.process-section {
  padding: 4rem 0;
}

.timeline {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px var(--shadow);
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: translateX(10px);
}

.timeline-number {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.timeline-content h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--text);
  margin: 0;
}

/* Consultation Form */
.form-section {
  padding: 4rem 0;
  background-color: var(--background);
}

.form-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.form-info {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px var(--shadow);
}

.form-info h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.info-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.info-list i {
  color: var(--primary);
}

.consultation-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text);
  font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid var(--secondary);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(72, 130, 93, 0.1);
}

.submit-button {
  width: 100%;
  padding: 1rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .form-wrapper {
    grid-template-columns: 1fr;
  }

  .featured-card {
    margin: 0 2rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }

  .featured-card {
    padding: 2rem;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-header {
    padding: 3rem 1rem;
  }

  .featured-card {
    margin: 0 1rem;
    padding: 1.5rem;
  }

  .featured-badge {
    position: relative;
    top: 0;
    right: 0;
    display: inline-block;
    margin-bottom: 1rem;
  }
}

/* Enhanced Map Styles */
.map-section {
  padding: 4rem 0;
  background: var(--background);
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.map-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.map-header {
  padding: 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.map-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.map-title i {
  font-size: 1.5rem;
}

.map-title h3 {
  font-size: 1.5rem;
  font-weight: bold;
}

.map-info p {
  opacity: 0.9;
  font-size: 1.1rem;
}

.map-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.contact-item i {
  width: 20px;
  text-align: center;
}

.map-frame-container {
  position: relative;
  height: 450px;
}

#contact-map {
  width: 100%;
  height: 100%;
}

.map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}

.map-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.directions-button,
.map-zoom-button {
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.directions-button {
  background: var(--primary);
  color: white;
  border: none;
}

.map-zoom-button {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  border: none;
}

.directions-button:hover,
.map-zoom-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.map-footer {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.business-hours {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text);
}

.business-hours i {
  font-size: 1.2rem;
  color: var(--primary);
}

.hours-info {
  display: flex;
  flex-direction: column;
}

.hours-label {
  font-weight: bold;
  font-size: 0.9rem;
}

.hours-time {
  color: var(--text);
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-button.facebook {
  background: #1877f2;
}

.social-button.tiktok {
  background: #000000;
}

.social-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Enhanced Footer Map Styles */
.footer-map {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: 1.5rem;
}

#footer-map {
  width: 100%;
  height: 200px;
  filter: grayscale(20%) contrast(1.1);
}

.footer-directions-button {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: var(--primary);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-directions-button:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .map-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .map-title {
    justify-content: center;
  }

  .map-contact {
    align-items: center;
  }

  .map-frame-container {
    height: 350px;
  }

  .map-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .map-footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .business-hours {
    flex-direction: column;
    gap: 0.5rem;
  }

  .social-links {
    justify-content: center;
  }
}

.map-error {
  padding: 2rem;
  text-align: center;
  background: #f8d7da;
  color: #721c24;
  border-radius: 8px;
  margin: 1rem;
}

.map-error i {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.map-error p {
  margin: 0;
}

iframe {
  transition: opacity 0.5s ease;
}

.top-info-bar {
  background-color: var(--primary);
  color: white;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.info-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-item i {
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.info-item a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.info-item a:hover {
  opacity: 0.8;
}

/* Responsive styles */
@media (max-width: 768px) {
  .info-items {
    justify-content: center;
    text-align: center;
  }

  .info-item {
    flex-direction: column;
    gap: 0.25rem;
  }

  .info-item i {
    margin-bottom: 0.25rem;
  }
}

.top-info-bar {
  background-color: var(--primary);
  color: white;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.info-slider {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.info-slide {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.info-slide i {
  font-size: 1rem;
}

.info-slide a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.info-slide a:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .info-slider {
    animation: scroll-left 20s linear infinite;
    display: flex;
    gap: 3rem;
  }

  .container {
    overflow: hidden;
  }

  .top-info-bar {
    padding: 0.3rem 0;
  }

  .info-slide {
    flex-shrink: 0;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(100%);
    }

    100% {
      transform: translateX(-100%);
    }
  }
}

/* For very small screens */
@media (max-width: 360px) {
  .info-slide {
    font-size: 0.8rem;
  }

  .info-slide i {
    font-size: 0.9rem;
  }
}

/* First, remove any default margins between sections */
section {
  margin: 0;
  padding: 0;
}

/* Adjust the CTA section and footer spacing */
.cta-section {
  margin-bottom: 0;
  /* Remove bottom margin */
  padding: 4rem 0;
  /* Keep padding for internal spacing */
}

.site-footer {
  margin-top: 0;
  /* Remove top margin */
  background-color: var(--primary);
  padding-top: 4rem;
}

/* Ensure sections are properly connected */
.cta-section+.site-footer {
  margin-top: 0;
}

/* Remove any potential gaps in the container */
.container {
  margin: 0 auto;
  padding: 0 2rem;
}

/* Services Section Styles */
.services-section {
  padding: 4rem 2rem;
  background-color: var(--background);
}

.services-title {
  text-align: center;
  color: var(--primary);
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-number {
  background-color: var(--primary);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-number {
  background-color: var(--primary-dark);
  transform: scale(1.1);
}

.service-card h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin: 1rem 0;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--primary-dark);
}

.hover-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.service-card:hover .hover-line {
  width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 3rem 1rem;
  }

  .services-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-card h3 {
    font-size: 1.25rem;
  }
}

.features-section {
  padding: 6rem 4rem;
  background-color: var(--white);
}

.section-title {
  text-align: center;
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  padding: 2rem;
  text-align: center;
  background: var(--white);
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--background);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 2rem;
  color: var(--primary);
}

.feature-title {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-text {
  color: var(--text);
  line-height: 1.6;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 4rem 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

/* Feature Card Border Effect */
.feature-card {
  border: 1px solid var(--secondary);
}

.feature-card:hover {
  border-color: var(--primary);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
/* Update mobile menu styles */
@media (max-width: 768px) {
  .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%; /* Position off-screen to the right */
      width: 80%; /* Width of the menu */
      height: 100vh;
      background-color: #f6f6e5;
      padding: 100px 30px 30px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 1000;
      overflow-y: auto;
      box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  }

  .mobile-menu.active {
      right: 0; /* Slide in from right */
  }

  .mobile-menu ul {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .mobile-menu ul li {
      opacity: 0;
      transform: translateX(20px);
      transition: all 0.3s ease;
  }

  .mobile-menu.active ul li {
      opacity: 1;
      transform: translateX(0);
  }

  /* Stagger animation delays */
  .mobile-menu ul li:nth-child(1) { transition-delay: 0.1s; }
  .mobile-menu ul li:nth-child(2) { transition-delay: 0.2s; }
  .mobile-menu ul li:nth-child(3) { transition-delay: 0.3s; }
  .mobile-menu ul li:nth-child(4) { transition-delay: 0.4s; }
  .mobile-menu ul li:nth-child(5) { transition-delay: 0.5s; }
  .mobile-menu ul li:nth-child(6) { transition-delay: 0.6s; }

  .mobile-menu ul li a {
      color: #48825d;
      text-decoration: none;
      font-size: 1.3rem;
      font-weight: 500;
      display: block;
      padding: 15px 0;
      transition: all 0.3s ease;
  }

  /* Menu overlay */
  .menu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.5);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease;
      z-index: 999;
  }

  .menu-overlay.active {
      opacity: 1;
      visibility: visible;
  }

  /* Enhance menu button animation */
  .mobile-menu-button {
      position: relative;
      z-index: 1001;
  }

  .mobile-menu-button .bar {
      transition: transform 0.3s ease;
  }

  .mobile-menu-button.active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
  }

  .mobile-menu-button.active .bar:nth-child(2) {
      opacity: 0;
  }

  .mobile-menu-button.active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
  }

  /* Fix header positioning */
  header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background-color: #f6f6e5;
      z-index: 1001;
  }

  /* Prevent body scroll when menu is open */
  body.menu-open {
      overflow: hidden;
  }
}
/* About Page Specific Styles */
.about-page {
  --primary: #48825d;
  --primary-dark: #3a6b4a;
  --secondary: #b8cec0;
  --background: #f6f6e5;
  --text: #333333;
  --white: #ffffff;
  font-family: 'Poppins', sans-serif;
}

/* Hero Section */
.about-hero {
  position: relative;
  height: 100vh;
  background: linear-gradient(rgba(72, 130, 93, 0.8), rgba(58, 107, 74, 0.9)), url('/api/placeholder/1920/1080') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.about-hero-content {
  max-width: 800px;
  padding: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: aboutFadeUp 1s ease forwards;
}

.about-hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-hero p {
  font-size: 1.5rem;
}

/* Common Section Styles */
.about-section {
  padding: 6rem 2rem;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.about-section-title h2 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Mission Grid */
.about-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.about-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.about-card-icon {
  width: 80px;
  height: 80px;
  background: var(--background);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.about-card-icon i {
  font-size: 2rem;
  color: var(--primary);
}

.about-card h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Director Section */
.about-director {
  background: var(--white);
}

.about-director-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.about-director-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.about-director-image img:hover {
  transform: scale(1.05);
}

.about-director-content h2 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-title {
  color: var(--text);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.about-badge {
  background: var(--background);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.about-badge:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

/* Stats Section */
.about-stats {
  background: linear-gradient(45deg, var(--primary), var(--primary-dark));
  color: var(--white);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.about-stat-number {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.about-stat-text {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Timeline */
.about-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.about-timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background: var(--primary);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.about-timeline-item {
  padding: 2rem 0;
  width: 50%;
  position: relative;
}

.about-timeline-item:nth-child(even) {
  margin-left: 50%;
}

.about-timeline-content {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  position: relative;
}

.about-year {
  position: absolute;
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  top: 50%;
  transform: translateY(-50%);
}

.about-timeline-item:nth-child(odd) .about-year {
  right: -60px;
}

.about-timeline-item:nth-child(even) .about-year {
  left: -60px;
}

/* Animations */
@keyframes aboutFadeUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-mission-grid {
      grid-template-columns: repeat(2, 1fr);
  }

  .about-stats-grid {
      grid-template-columns: repeat(2, 1fr);
  }

  .about-director-grid {
      grid-template-columns: 1fr;
      text-align: center;
  }

  .about-director-image {
      max-width: 500px;
      margin: 0 auto;
  }

  .about-badges {
      justify-content: center;
  }
}

@media (max-width: 768px) {
  .about-hero h1 {
      font-size: 3rem;
  }

  .about-section {
      padding: 4rem 1rem;
  }

  .about-mission-grid {
      grid-template-columns: 1fr;
  }

  .about-timeline::after {
      left: 31px;
  }

  .about-timeline-item {
      width: 100%;
      padding-left: 80px;
  }

  .about-timeline-item:nth-child(even) {
      margin-left: 0;
  }

  .about-timeline-item:nth-child(odd) .about-year,
  .about-timeline-item:nth-child(even) .about-year {
      left: 10px;
  }

  .about-section-title h2 {
      font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .about-hero h1 {
      font-size: 2.5rem;
  }

  .about-stat-number {
      font-size: 2.5rem;
  }

  .about-stat-text {
      font-size: 1rem;
  }

  .about-badges {
      flex-direction: column;
  }
}

.about-scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  animation: aboutBounce 2s infinite;
}

@keyframes aboutBounce {
  0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
  }
  40% {
      transform: translateY(-20px);
  }
  60% {
      transform: translateY(-10px);
  }
}

/* Animation Classes */
.about-fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.about-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.about-fade-in.visible {
  opacity: 1;
}

.about-scale-up {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s ease;
}

.about-scale-up.visible {
  opacity: 1;
  transform: scale(1);
}
.top-info-bar {
  background-color: var(--primary);
  color: white;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.info-slider {
  display: flex;
  gap: 2rem;
}

@media (max-width: 768px) {
  .info-slider {
      animation: scrollLeft 20s linear infinite;
      display: flex;
      gap: 3rem;
      white-space: nowrap;
      width: max-content;
  }

  .info-slide {
      flex-shrink: 0;
      padding: 0 1rem;
  }

  @keyframes scrollLeft {
      0% {
          transform: translateX(100%);
      }
      100% {
          transform: translateX(-100%);
      }
  }
}

.info-slide {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-slide a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}

.info-slide a:hover {
  opacity: 0.8;
}
.about-team {
  padding: 6rem 0;
  background: var(--background);
}

.about-team .section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.about-team .section-title h2 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-team .section-title p {
  color: var(--text);
  max-width: 600px;
  margin: 0 auto;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-team-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.about-team-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.about-team-image {
  position: relative;
  overflow: hidden;
}

.about-team-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-team-card:hover .about-team-image img {
  transform: scale(1.1);
}

.about-team-social {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  display: flex;
  justify-content: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.about-team-card:hover .about-team-social {
  bottom: 0;
}

.about-team-social a {
  color: var(--white);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.about-team-social a:hover {
  transform: translateY(-5px);
}

.about-team-info {
  padding: 1.5rem;
  text-align: center;
}

.about-team-info h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.about-team-role {
  display: block;
  color: var(--primary-dark);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.about-team-info p {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-team-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-team {
      padding: 4rem 0;
  }
  
  .about-team-grid {
      grid-template-columns: 1fr;
      padding: 0 1rem;
  }

  .about-team-image img {
      height: 250px;
  }
}
/* Leadership Section Styles */
.about-leadership {
  padding: 6rem 0;
  background: var(--background);
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--text);
  max-width: 600px;
  margin: 0 auto;
}

/* Featured Leadership Card */
.leadership-featured {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 4rem;
}

.leadership-featured-img {
  position: relative;
  overflow: hidden;
}

.leadership-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.leadership-featured:hover .leadership-featured-img img {
  transform: scale(1.05);
}

.leadership-social {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  display: flex;
  justify-content: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.leadership-featured:hover .leadership-social {
  bottom: 0;
}

.leadership-social a {
  color: var(--white);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.leadership-social a:hover {
  transform: translateY(-5px);
}

.leadership-featured-content {
  padding: 3rem;
}

.leadership-featured-content h2 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.leadership-role {
  display: block;
  color: var(--primary-dark);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.leadership-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.badge {
  background: var(--background);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.badge:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

/* Team Grid */
.leadership-team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-card:hover .team-img img {
  transform: scale(1.1);
}

.team-social {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  display: flex;
  justify-content: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.team-card:hover .team-social {
  bottom: 0;
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-info h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.team-role {
  display: block;
  color: var(--primary-dark);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.team-info p {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Animation Classes */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .leadership-team {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .leadership-featured {
      grid-template-columns: 1fr;
  }

  .leadership-featured-img {
      height: 400px;
  }

  .leadership-featured-content {
      padding: 2rem;
      text-align: center;
  }

  .leadership-badges {
      justify-content: center;
  }
}

@media (max-width: 768px) {
  .leadership-team {
      grid-template-columns: 1fr;
  }

  .leadership-featured-img {
      height: 300px;
  }

  .leadership-featured-content h2 {
      font-size: 2rem;
  }
}
/* Career Section Styles */
.career-section {
  padding: 6rem 0;
  background: var(--background);
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.career-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
}

.career-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.career-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #ff4757;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.career-card h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.career-location {
  display: block;
  color: var(--text);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.career-location i {
  color: var(--primary);
  margin-right: 0.5rem;
}

.career-type {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.type-badge {
  background: var(--background);
  color: var(--primary);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.career-details p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.career-requirements {
  list-style: none;
  margin-bottom: 1.5rem;
}

.career-requirements li {
  color: var(--text);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
}

.career-requirements i {
  color: var(--primary);
  margin-right: 0.8rem;
  font-size: 0.8rem;
}

.apply-btn {
  width: 100%;
  padding: 1rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.apply-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* No Openings Section */
.no-openings {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--white);
  border-radius: 15px;
  margin-bottom: 4rem;
}

.no-openings i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.no-openings h3 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

/* General Application Section */
.general-application {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--white);
  border-radius: 15px;
}

.general-application h3 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.submit-resume-btn {
  padding: 1rem 2rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
}

.submit-resume-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .career-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .career-grid {
      grid-template-columns: 1fr;
  }

  .career-section {
      padding: 4rem 1rem;
  }
}

/* Animation Classes */
.career-fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.career-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.explore-careers-circle {
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 10;
}

.circle-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.explore-careers-circle i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}

.circle-text {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.9;
}

/* Hover Effects */
.explore-careers-circle:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.explore-careers-circle:hover i {
  transform: translateY(-3px);
}

.explore-careers-circle:hover .circle-content {
  transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .explore-careers-circle {
      bottom: 30px;
      left: 30px;
      width: 100px;
      height: 100px;
  }

  .explore-careers-circle i {
      font-size: 1.5rem;
  }

  .circle-text {
      font-size: 0.8rem;
  }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}

.service-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backface-visibility: hidden;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(72, 130, 93, 0.15);
}

.stat-number {
  background: linear-gradient(45deg, #48825d, #2d5a3d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* Premium button styles */
.submit-button {
  background: linear-gradient(45deg, #48825d, #2d5a3d);
  border: none;
  border-radius: 8px;
  color: white;
  padding: 1rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.submit-button:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: all 0.6s;
}

.submit-button:hover:before {
  left: 100%;
}

/* Premium form styling */
.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #48825d;
  box-shadow: 0 0 0 3px rgba(72, 130, 93, 0.1);
  outline: none;
}

/* Premium card effects */
.feature-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(72, 130, 93, 0.3);
}
/* Mobile Menu Styles */
.mobile-menu-button {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

.mobile-menu-button .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--primary);
  transition: all 0.3s ease;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: var(--white);
  padding: 80px 2rem 2rem;
  transition: right 0.3s ease;
  z-index: 999;
  overflow-y: auto;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu ul li {
  margin: 1rem 0;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
}

.mobile-menu.active ul li {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger animation delays for menu items */
.mobile-menu ul li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu ul li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu ul li:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu ul li:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu ul li:nth-child(5) { transition-delay: 0.5s; }
.mobile-menu ul li:nth-child(6) { transition-delay: 0.6s; }
.mobile-menu ul li:nth-child(7) { transition-delay: 0.7s; }

.mobile-menu a {
  color: var(--primary);
  text-decoration: none;
  font-size: 1.2rem;
  display: block;
  padding: 0.8rem 0;
  transition: all 0.3s ease;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--primary-dark);
  padding-left: 10px;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

body.menu-open {
  overflow: hidden;
}

/* Show mobile menu button only on mobile */
@media (max-width: 768px) {
  .mobile-menu-button {
      display: block;
  }

  .desktop-nav {
      display: none;
  }
}
    /* Fancy Scrollbar */
    ::-webkit-scrollbar {
      width: 10px;
    }

    ::-webkit-scrollbar-track {
      background: var(--background);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--primary);
      border-radius: 5px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--primary-dark);
    }
/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #48825d, #3a6b4a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  box-shadow:
    0 4px 12px rgba(72, 130, 93, 0.3),
    0 8px 24px rgba(72, 130, 93, 0.2);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(44, 123, 229, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1000;
}

.scroll-to-top i {
    font-size: 1.2rem;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    box-shadow: 0 8px 25px rgba(44, 123, 229, 0.4);
    transform: translateY(-5px);
}

/* Pulse animation */
@keyframes pulse {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.05);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

.scroll-to-top:hover {
    animation: pulse 1s infinite;
}