/* Base Styles */
:root {
  --primary-color: #2E7D32;
  --secondary-color: #43A047;
  --accent-color: #81C784;
  --text-color: #333;
  --light-text: #fff;
  --dark-bg: #1A1A1A;
  --card-bg: #1C2B1F;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(28, 43, 31, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(129, 199, 132, 0.1);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 0.7rem 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--light-text);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo svg {
  width: 2rem;
  height: 2rem;
  fill: var(--accent-color);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--light-text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--accent-color);
}

.consultation-btn {
  background: var(--primary-color);
  color: var(--light-text);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid var(--accent-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.consultation-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(67, 160, 71, 0.3);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 30px;
  height: 2px;
  background: var(--light-text);
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -6px);
}

/* Hero Section */
.hero {
  height: 100vh;

  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--light-text);
  padding: 0 2rem;
  overflow: hidden;
}



@media (max-width: 768px) {
    .hero {
          background: url('/images/ifagbaiye.webp') center/cover;
        background-position: 36% 100px;
        background-repeat: no-repeat;
    }
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 43, 31, 0.4);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(28, 43, 31, 0.7), rgba(28, 43, 31, 0.8));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

.highlight {
  color: var(--accent-color);
  display: block;
  font-size: 5rem;
  margin-top: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s 0.3s forwards;
}

.cta-container {
  display: flex;
  gap: 1rem;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s 0.6s forwards;
}

.primary-btn,
.secondary-btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.primary-btn {
  background: var(--primary-color);
  color: var(--light-text);
  border: none;
  border: 2px solid var(--accent-color);
}

.secondary-btn {
  background: transparent;
  color: var(--light-text);
  border: 2px solid var(--accent-color);
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(67, 160, 71, 0.3);
}

.primary-btn:hover {
  background: var(--secondary-color);
}

.secondary-btn:hover {
  background: rgba(67, 160, 71, 0.1);
}

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(67, 160, 71, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(67, 160, 71, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(67, 160, 71, 0);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeIn 1s 1s forwards;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--accent-color);
  border-radius: 20px;
  position: relative;
  margin: 0 auto 1rem;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--accent-color);
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
  animation: scroll 1.5s infinite;
}

.arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.arrows span {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--accent-color);
  border-bottom: 2px solid var(--accent-color);
  transform: rotate(45deg);
  animation: arrows 1.5s infinite;
}

.arrows span:nth-child(2) {
  animation-delay: 0.2s;
}

.arrows span:nth-child(3) {
  animation-delay: 0.4s;
}

/* Stats Section */
.stats-section {
  padding: 4rem 2rem;
  background: var(--card-bg);
  color: var(--light-text);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  box-sizing: border-box;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  background: rgba(46, 125, 50, 0.1);
  border: 1px solid rgba(129, 199, 132, 0.2);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(46, 125, 50, 0.2);
  border-color: var(--accent-color);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
  margin-bottom: 0.5rem;
  font-family: 'Cormorant Garamond', serif;
}

/* Services Section */
.services {
  padding: 8rem 2rem;
  background: var(--dark-bg);
  color: var(--light-text);
  background: linear-gradient(135deg, #1C2B1F 0%, #2E7D32 100%);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  box-sizing: border-box;
}

.services-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-subtitle {
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 1rem;
}

.services-header h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

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

.service-card {
  background: rgba(28, 43, 31, 0.8);
  padding: 2rem;
  border-radius: 20px;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  border: 1px solid rgba(129, 199, 132, 0.2);
  backdrop-filter: blur(10px);
  height: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(46, 125, 50, 0.2);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  background: rgba(46, 125, 50, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent-color);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary-color);
  transform: scale(1.1);
}

.service-icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.service-card p {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  flex-grow: 1;
}

.learn-more {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  margin-top: auto;
}

.learn-more:hover {
  gap: 1rem;
  color: var(--light-text);
}

/* Lectures Section */
.lectures {
  padding: 8rem 2rem;
  background: #f5f5f5;
  background: linear-gradient(135deg, #E8F5E9 0%, #F1F8E9 100%);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  box-sizing: border-box;
}

.lectures-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.lectures-header h2 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.lectures-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.lecture-card {
  display: flex;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(46, 125, 50, 0.1);
  transition: var(--transition);
  border: 1px solid rgba(129, 199, 132, 0.2);
}

.lecture-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(46, 125, 50, 0.2);
  border-color: var(--accent-color);
}

.lecture-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color-light);
  min-width: 200px;
  border-radius: 10px 0 0 10px;
}

.logo-link {
  text-decoration: none;
  color: var(--primary-color);
}

.lecture-image i {
  font-size: 4rem;
  color: var(--primary-color);
}

.lecture-image.ifa-lecture {
  background-image: none;
}

.lecture-image.yoruba-lecture {
  background-image: none;
}

.lecture-content {
  flex: 1;
  padding: 3rem;
}

.lecture-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.lecture-details {
  list-style: none;
  margin: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.lecture-details li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
}

.lecture-details i {
  color: var(--primary-color);
}

.lecture-btn {
  background: var(--primary-color);
  color: var(--light-text);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  margin-top: 1rem;
}

.lecture-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(67, 160, 71, 0.3);
}

/* Interactive Section */
.interactive-section {
  padding: 6rem 2rem;
  background: url('https://images.unsplash.com/photo-1607631568010-a87245c0daf8?ixlib=rb-1.2.1&auto=format&fit=crop&w=2000&q=80') center/cover;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  box-sizing: border-box;
}

.interactive-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(28, 43, 31, 0.8), rgba(28, 43, 31, 0.8));
}

.interactive-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: var(--light-text);
}

.interactive-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.interactive-header p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.interactive-btn {
  background: var(--primary-color);
  color: var(--light-text);
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  border: 2px solid var(--accent-color);
}

.interactive-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(67, 160, 71, 0.3);
}

/* Testimonials Section */
.testimonials {
  padding: 8rem 2rem;
  background: #f5f5f5;
  background: linear-gradient(135deg, #E8F5E9 0%, #F1F8E9 100%);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  box-sizing: border-box;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonial-header h2 {
  font-size: 3rem;
  color: var(--primary-color);
}

.testimonials-slider {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(46, 125, 50, 0.1);
  transition: var(--transition);
  border: 1px solid rgba(129, 199, 132, 0.2);
  display: none;
}

.testimonial-card:first-child {
  display: block;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 40px rgba(46, 125, 50, 0.2);
}

.quote {
  font-size: 4rem;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 1rem;
  font-family: 'Cormorant Garamond', serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-color);
}

.testimonial-author h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--primary-color);
}

.testimonial-author span {
  color: #666;
  font-size: 0.9rem;
}

.testimonial-navigation {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.prev-btn,
.next-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--light-text);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev-btn:hover,
.next-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(67, 160, 71, 0.3);
}

/* CTA Section */
.cta-section {
  position: relative;
  padding: 8rem 2rem;
  background: url('/images/ifagbaiye.webp') center/cover;
  text-align: center;
  color: var(--light-text);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  box-sizing: border-box;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(28, 43, 31, 0.9), rgba(28, 43, 31, 0.9));
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.newsletter-btn {
  background: transparent;
  color: var(--light-text);
  padding: 1rem 2rem;
  border: 2px solid var(--accent-color);
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.newsletter-btn:hover {
  background: rgba(67, 160, 71, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(67, 160, 71, 0.3);
}

/* Updated Footer Styles */
.footer {
  background: var(--card-bg);
  color: var(--light-text);
  padding: 4rem 2rem 2rem;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  box-sizing: border-box;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
  position: relative;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--accent-color);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-section ul li i {
  color: var(--accent-color);
  margin-top: 0.25rem;
}

.footer-section a {
  color: var(--light-text);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--accent-color);
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(46, 125, 50, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 1px solid rgba(129, 199, 132, 0.2);
}

.social-icons a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.social-icons i {
  font-size: 1.2rem;
}

.footer-cta-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.footer-call-btn,
.footer-whatsapp-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.footer-call-btn {
  background: var(--primary-color);
  color: var(--light-text);
  border: 1px solid var(--accent-color);
}

.footer-whatsapp-btn {
  background: #25D366;
  color: var(--light-text);
  border: 1px solid #25D366;
}

.footer-call-btn:hover,
.footer-whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(129, 199, 132, 0.1);
}

/* Mobile responsiveness for footer */
@media (max-width: 768px) {
  .footer {
    padding: 3rem 1.5rem 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-section {
    text-align: center;
  }

  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-icons {
    justify-content: center;
  }

  .footer-cta-buttons {
    justify-content: center;
  }
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
}

@keyframes arrows {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-5px, -5px);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: rotate(45deg) translate(5px, 5px);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .lecture-card {
    flex-direction: column;
  }

  .lecture-image {
    min-height: 200px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(28, 43, 31, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem;
    clip-path: circle(0% at 100% 0);
    transition: var(--transition);
  }

  .nav-links.active {
    clip-path: circle(150% at 100% 0);
  }

  .hero h1 {
    font-size: 3rem;
  }

  .highlight {
    font-size: 3.5rem;
  }

  .cta-container {
    flex-direction: column;
  }

  .services-header h2,
  .testimonial-header h2,
  .cta-content h2,
  .lectures-header h2,
  .interactive-header h2 {
    font-size: 2.5rem;
  }
}

/* ODUN IFA Festival Section */
.odun-ifa-section {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, #1C2B1F 0%, #2E7D32 100%);
  color: var(--light-text);
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  box-sizing: border-box;
}

.odun-ifa-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1582638143056-dac41fad08ef?ixlib=rb-1.2.1&auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.odun-ifa-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.odun-ifa-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.odun-ifa-header h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.festival-date {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.festival-badge {
  display: inline-block;
  background: var(--primary-color);
  color: var(--light-text);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid var(--accent-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.odun-ifa-content {
  display: flex;
  gap: 3rem;
  margin-bottom: 5rem;
}

.odun-ifa-icon {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 125, 50, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(129, 199, 132, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  overflow: hidden;
  position: relative;
}

.odun-ifa-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(129, 199, 132, 0.2) 0%, rgba(46, 125, 50, 0.1) 70%);
  z-index: 0;
}

.odun-ifa-icon i {
  font-size: 12rem;
  color: var(--accent-color);
  opacity: 0.8;
  z-index: 1;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.odun-ifa-icon:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
}

.odun-ifa-icon:hover i {
  transform: scale(1.05);
  opacity: 1;
}

/* Remove the old image styles that are no longer needed */
.odun-ifa-image {
  display: none;
}

.odun-ifa-details {
  flex: 1;
}

.odun-ifa-details h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

.odun-ifa-details>p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.festival-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.highlight-item {
  background: rgba(46, 125, 50, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(129, 199, 132, 0.2);
  transition: var(--transition);
}

.highlight-item:hover {
  transform: translateY(-5px);
  background: rgba(46, 125, 50, 0.2);
  border-color: var(--accent-color);
}

.highlight-item i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
  display: block;
}

.highlight-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.highlight-item p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.festival-location {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(46, 125, 50, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(129, 199, 132, 0.2);
}

.festival-location i {
  font-size: 2.5rem;
  color: var(--accent-color);
}

.festival-location h4 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.festival-location p {
  color: rgba(255, 255, 255, 0.8);
}

.festival-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.festival-btn {
  background: var(--primary-color);
  color: var(--light-text);
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  border: 2px solid var(--accent-color);
}

.festival-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(67, 160, 71, 0.3);
}

.limited-spots {
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
}

.festival-schedule {
  background: rgba(28, 43, 31, 0.8);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(129, 199, 132, 0.2);
  backdrop-filter: blur(10px);
}

.festival-schedule h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--accent-color);
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.schedule-day {
  background: rgba(46, 125, 50, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(129, 199, 132, 0.2);
  transition: var(--transition);
}

.schedule-day:hover {
  transform: translateY(-5px);
  background: rgba(46, 125, 50, 0.2);
  border-color: var(--accent-color);
}

.day-header {
  margin-bottom: 1.5rem;
  text-align: center;
}

.day-number {
  display: inline-block;
  background: var(--primary-color);
  color: var(--light-text);
  padding: 0.25rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.day-header h4 {
  font-size: 1.3rem;
  color: var(--accent-color);
}

.day-activities {
  list-style: none;
}

.day-activities li {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(129, 199, 132, 0.2);
}

.day-activities li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.time {
  display: block;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 0.25rem;
}

.schedule-note {
  text-align: center;
  margin-top: 2rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive adjustments for ODUN IFA section */
@media (max-width: 992px) {
  .odun-ifa-content {
    flex-direction: column;
  }

  .odun-ifa-icon {
    min-height: 300px;
  }

  .odun-ifa-icon i {
    font-size: 8rem;
  }
}

@media (max-width: 768px) {
  .odun-ifa-header h2 {
    font-size: 2.5rem;
  }

  .festival-schedule {
    padding: 2rem;
  }

  .odun-ifa-icon {
    min-height: 200px;
  }

  .odun-ifa-icon i {
    font-size: 6rem;
  }
}

/* Mobile Responsiveness Improvements */

/* Base responsive adjustments */
@media (max-width: 768px) {

  /* Hero section fixes */
  .hero {
    height: auto;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 50px;
  }

  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .highlight {
    font-size: 3rem;
    margin-top: 0.3rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding: 0 10px;
  }

  .cta-container {
    flex-direction: column;
    width: 100%;
    gap: 0.8rem;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1.5rem;
  }

  /* Stats section fixes */
  .stats-container {
    grid-template-columns: 1fr 1fr;
    padding: 0 1rem;
  }

  .stat-item {
    padding: 1.5rem 1rem;
    min-width: unset;
  }

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

  /* Services section fixes */
  .services {
    padding: 5rem 1.5rem;
  }

  .services-header h2 {
    font-size: 2.2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Lectures section fixes */
  .lectures {
    padding: 5rem 1.5rem;
  }

  .lectures-header h2 {
    font-size: 2.2rem;
  }

  .lecture-card {
    flex-direction: column;
  }

  .lecture-image {
    min-height: 200px;
  }

  .lecture-content {
    padding: 2rem 1.5rem;
  }

  .lecture-content h3 {
    font-size: 1.8rem;
  }

  /* ODUN IFA section fixes */
  .odun-ifa-section {
    padding: 5rem 1.5rem;
  }

  .odun-ifa-header h2 {
    font-size: 2.2rem;
  }

  .festival-date {
    font-size: 1.2rem;
  }

  .odun-ifa-details h3 {
    font-size: 1.8rem;
  }

  .festival-highlights {
    grid-template-columns: 1fr;
  }

  .schedule-grid {
    grid-template-columns: 1fr;
  }

  /* Navigation fixes */
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(28, 43, 31, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem;
    clip-path: circle(0% at 100% 0);
    transition: var(--transition);
    z-index: 999;
  }

  .nav-links.active {
    clip-path: circle(150% at 100% 0);
    overflow-y: auto;
  }

  .nav-links a {
    font-size: 1.2rem;
    padding: 1rem 0;
  }

  .consultation-btn {
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
  }

  /* Footer fixes */
  .footer {
    padding: 3rem 1.5rem 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-section {
    text-align: center;
  }

  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-icons {
    justify-content: center;
  }

  .footer-form {
    max-width: 300px;
    margin: 0 auto;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .highlight {
    font-size: 2.5rem;
  }

  .stats-container {
    grid-template-columns: 1fr;
  }

  .festival-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .limited-spots {
    margin-top: 0.5rem;
  }

  .navbar .logo {
    font-size: 1.5rem;
  }

  .navbar .logo svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}

/* Fix for scroll indicator on mobile */
@media (max-width: 768px) {
  .scroll-indicator {
    display: none;
  }
}

/* Fix for hero content vertical centering on mobile */
@media (max-width: 768px) {
  .hero {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
  }
}

/* Improve button touch targets on mobile */
@media (max-width: 768px) {

  .primary-btn,
  .secondary-btn,
  .lecture-btn,
  .festival-btn,
  .interactive-btn,
  .consultation-btn {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }

  .nav-links a {
    display: block;
    padding: 0.8rem 0;
  }
}

/* Fix for testimonials on mobile */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 2rem 1.5rem;
  }

  .quote {
    font-size: 3rem;
  }

  .testimonial-author {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .testimonial-author img {
    width: 50px;
    height: 50px;
  }
}

/* Fix for interactive section on mobile */
@media (max-width: 768px) {
  .interactive-section {
    padding: 4rem 1.5rem;
  }

  .interactive-header h2 {
    font-size: 2rem;
  }

  .interactive-header p {
    font-size: 1.1rem;
  }
}

/* Fix for CTA section on mobile */
@media (max-width: 768px) {
  .cta-section {
    padding: 5rem 1.5rem;
  }

  .cta-content h2 {
    font-size: 2.2rem;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons button {
    width: 100%;
    justify-content: center;
    margin-bottom: 0.8rem;
  }
}

/* Fix for stats section layout on small screens */
@media (max-width: 768px) {
  .stats-section {
    padding: 3rem 1rem;
  }

  .stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

/* Babalawo Details Section */
.babalawo-section {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, #E8F5E9 0%, #F1F8E9 100%);
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  box-sizing: border-box;
}

.babalawo-container {
  max-width: 1200px;
  margin: 0 auto;
}

.babalawo-header {
  text-align: center;
  margin-bottom: 4rem;
}

.babalawo-header h2 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  color: #FFA000;
  font-weight: 500;
}

.rating span {
  margin-left: 0.5rem;
  color: #555;
}

.babalawo-content {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
}

.babalawo-image {
  flex: 1;
  min-height: 400px;
  border-radius: 20px;
  background-image: url('images/ifagbaiye.webp');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(46, 125, 50, 0.1);
  border: 1px solid rgba(129, 199, 132, 0.2);
}

.babalawo-image .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(28, 43, 31, 0.3), transparent);
}

.babalawo-details {
  flex: 1;
}

.babalawo-details h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.babalawo-details>p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
  color: #444;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(46, 125, 50, 0.05);
  border: 1px solid rgba(129, 199, 132, 0.2);
  transition: var(--transition);
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(46, 125, 50, 0.1);
  border-color: var(--accent-color);
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 0.25rem;
}

.contact-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  color: var(--primary-color);
}

.contact-item p {
  color: #555;
}

.contact-item a {
  color: #555;
  text-decoration: none;
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--primary-color);
}

.babalawo-cta {
  display: flex;
  gap: 1rem;
}

.direction-btn,
.call-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.direction-btn {
  background: var(--primary-color);
  color: var(--light-text);
  border: 2px solid var(--accent-color);
}

.call-btn {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.direction-btn:hover,
.call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(67, 160, 71, 0.2);
}

.direction-btn:hover {
  background: var(--secondary-color);
}

.call-btn:hover {
  background: rgba(67, 160, 71, 0.1);
}

/* Mobile responsiveness for Babalawo section */
@media (max-width: 992px) {
  .babalawo-content {
    flex-direction: column;
  }

  .babalawo-image {
    min-height: 600px;
  }
}

@media (max-width: 768px) {
  .babalawo-section {
    padding: 5rem 1.5rem;
  }

  .babalawo-header h2 {
    font-size: 2.2rem;
  }

  .babalawo-details h3 {
    font-size: 1.8rem;
  }

  .babalawo-cta {
    flex-direction: column;
  }

  .contact-item {
    padding: 1.2rem;
  }
}

@media (max-width: 480px) {
  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-item i {
    margin-bottom: 0.5rem;
  }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  text-decoration: none;
}

.whatsapp-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.whatsapp-icon i {
  font-size: 2rem;
  color: white;
}

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  color: white;
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 0.9rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.whatsapp-tooltip:after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 8px 0 8px 8px;
  border-style: solid;
  border-color: transparent transparent transparent #333;
}

.floating-whatsapp:hover .whatsapp-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 70px;
}

/* Animation for WhatsApp button */
@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-icon {
  animation: pulse-whatsapp 2s infinite;
}

/* Mobile responsiveness for floating WhatsApp */
@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-icon {
    width: 50px;
    height: 50px;
  }

  .whatsapp-icon i {
    font-size: 1.7rem;
  }

  /* Hide tooltip on mobile to save space */
  .whatsapp-tooltip {
    display: none;
  }
}

/* Hero section icon styles */
.hero-icon-top,
.hero-icon-divider,
.hero-icon-accent,
.hero-icon-bottom {
  margin: 15px auto;
  color: rgba(255, 255, 255, 0.8);
}

.hero-icon-top {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero-icon-top .fas {
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.hero-icon-divider {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 15px 0;
}

.hero-icon-divider i {
  font-size: 1.2rem;
}

.hero-icon-accent {
  font-size: 1.8rem;
  margin: 20px 0;
  transform: rotate(0deg);
  transition: transform 1s ease;
}

.hero-icon-accent:hover {
  transform: rotate(360deg);
}

.hero-icon-bottom {
  font-size: 2rem;
  margin-top: 30px;
}

/* Corner decorative icons */
.hero-corner-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.corner-icon {
  position: absolute;
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.6);
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
}

.corner-icon.top-left {
  top: 40px;
  left: 40px;
}

.corner-icon.top-right {
  top: 40px;
  right: 40px;
}

.corner-icon.bottom-left {
  bottom: 40px;
  left: 40px;
}

.corner-icon.bottom-right {
  bottom: 40px;
  right: 40px;
}

/* Add animation for the icons */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.hero-icon-top,
.hero-icon-bottom,
.corner-icon {
  animation: float 3s ease-in-out infinite;
}

.corner-icon.top-right,
.corner-icon.bottom-left {
  animation-delay: 1s;
}

/* Responsive adjustments for hero icons */
@media (max-width: 768px) {
  .hero-icon-top {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .hero-icon-divider {
    gap: 15px;
    margin: 10px 0;
  }

  .hero-icon-accent {
    font-size: 1.5rem;
    margin: 15px 0;
  }

  .hero-icon-bottom {
    font-size: 1.7rem;
    margin-top: 20px;
  }

  .corner-icon {
    font-size: 1.5rem;
  }

  .corner-icon.top-left,
  .corner-icon.top-right {
    top: 20px;
  }

  .corner-icon.top-left,
  .corner-icon.bottom-left {
    left: 20px;
  }

  .corner-icon.top-right,
  .corner-icon.bottom-right {
    right: 20px;
  }

  .corner-icon.bottom-left,
  .corner-icon.bottom-right {
    bottom: 20px;
  }
}

@media (max-width: 480px) {
  .hero-icon-divider {
    gap: 10px;
  }

  .corner-icon {
    font-size: 1.2rem;
  }

  .corner-icon.top-left,
  .corner-icon.top-right {
    top: 15px;
  }

  .corner-icon.top-left,
  .corner-icon.bottom-left {
    left: 15px;
  }

  .corner-icon.top-right,
  .corner-icon.bottom-right {
    right: 15px;
  }

  .corner-icon.bottom-left,
  .corner-icon.bottom-right {
    bottom: 15px;
  }
}

/* Fix for mobile responsiveness - prevent horizontal overflow */
html,
body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

/* Fix for background colors not extending full width */
.services,
.odun-ifa-section,
.stats-section,
.lectures,
.babalawo-section,
.interactive-section,
.testimonials,
.cta-section,
.footer {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  box-sizing: border-box;
}

/* Improve mobile padding */
@media (max-width: 768px) {

  .services,
  .odun-ifa-section,
  .stats-section,
  .lectures,
  .babalawo-section,
  .interactive-section,
  .testimonials,
  .cta-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Fix for content containers on mobile */
  .services-container,
  .odun-ifa-container,
  .stats-container,
  .lectures-container,
  .babalawo-container,
  .interactive-container,
  .testimonials-container,
  .cta-content,
  .footer-content {
    width: 100%;
    padding: 0 1rem;
  }

  /* Fix for service cards on mobile */
  .service-card {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

/* Fix for images and media that might cause overflow */
img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

/* Fix for buttons and interactive elements on mobile */
@media (max-width: 480px) {

  .primary-btn,
  .secondary-btn,
  .lecture-btn,
  .festival-btn,
  .interactive-btn,
  .consultation-btn,
  .direction-btn,
  .call-btn {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }
}

/* Contact Page Specific Styles */
.contact-hero {
  height: 60vh;
  min-height: 600px;
  background: url('/images/ifagbaiye.webp') center/cover;
}

.contact-section {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, #E8F5E9 0%, #F1F8E9 100%);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-header h2 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(46, 125, 50, 0.1);
  transition: var(--transition);
  border: 1px solid rgba(129, 199, 132, 0.2);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(46, 125, 50, 0.2);
  border-color: var(--accent-color);
}

.contact-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  background: rgba(46, 125, 50, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent-color);
  transition: var(--transition);
}

.contact-card:hover .contact-card-icon {
  background: var(--primary-color);
  transform: scale(1.1);
}

.contact-card-icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.contact-card p {
  margin-bottom: 1.5rem;
  color: #555;
}

.contact-details-list {
  margin-bottom: 1.5rem;
}

.contact-detail-item {
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-detail-item span {
  font-weight: 600;
  color: #555;
}

.contact-detail-item a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.contact-detail-item a:hover {
  color: var(--secondary-color);
}

.hours-list {
  margin-bottom: 1.5rem;
}

.hours-item {
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hours-item span:first-child {
  font-weight: 600;
  color: #555;
}

.contact-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  transition: var(--transition);
  margin-top: auto;
  border: 2px solid var(--accent-color);
}

.contact-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(67, 160, 71, 0.3);
}

.whatsapp-btn {
  background: #25D366;
  border-color: #25D366;
}

.whatsapp-btn:hover {
  background: #1da851;
}

/* Map Section */
.map-section {
  padding: 4rem 2rem;
  background: var(--card-bg);
  color: var(--light-text);
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
}

.map-container h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--accent-color);
}

.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(129, 199, 132, 0.3);
}

/* FAQ Section */
.faq-section {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, #E8F5E9 0%, #F1F8E9 100%);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-header h2 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(46, 125, 50, 0.1);
  transition: var(--transition);
  border: 1px solid rgba(129, 199, 132, 0.2);
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(46, 125, 50, 0.2);
  border-color: var(--accent-color);
}

.faq-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.faq-item p {
  color: #555;
  line-height: 1.7;
}

/* Active nav link */
.nav-links a.active {
  color: var(--accent-color);
}

.nav-links a.active::after {
  width: 100%;
}

/* Mobile responsiveness for contact page */
@media (max-width: 768px) {
  .contact-hero {
    height: 50vh;
    min-height: 531px;
  }

  .contact-section,
  .faq-section {
    padding: 5rem 1.5rem;
  }

  .contact-header h2,
  .faq-header h2,
  .map-container h2 {
    font-size: 2.2rem;
  }

  .contact-card {
    padding: 2rem 1.5rem;
  }

  .contact-card-icon {
    width: 70px;
    height: 70px;
  }

  .contact-card-icon i {
    font-size: 1.7rem;
  }

  .map-section {
    padding: 3rem 1.5rem;
  }

  .faq-item {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .contact-btn {
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  .contact-detail-item,
  .hours-item {
    flex-direction: column;
    align-items: center;
  }
}