:root {
      --primary: #012169;
      --secondary: #4ECDC4;
      --accent: #FF6B6B;
      --light: #F8F9FA;
      --dark: #212529;
      --gray: #6C757D;
      --gradient: #012169;
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      --transition: all 0.3s ease;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
	html {
     scroll-behavior: smooth; /* Enables smooth scrolling */
	 overflow-x: hidden;
}
    
    body {
      font-family: 'Poppins', sans-serif;
      background-color: var(--light);
      color: var(--dark);
      line-height: 1.6;
      overflow-x: hidden;
    }
    
    h1, h2, h3, h4, h5 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      margin-bottom: 1rem;
      color: #FFFFFFs;
    }
    
    h1 {
      font-size: 3.5rem;
      line-height: 1.2;
    }
    
    h2 {
      font-size: 2.5rem;
      position: relative;
      display: inline-block;
      margin-bottom: 2.5rem;
    }
    
    h2:after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 70px;
      height: 4px;
      background: var(--secondary);
      border-radius: 2px;
    }
    
    p {
      margin-bottom: 1.5rem;
      font-size: 1.05rem;
    }
    
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .btn {
      display: inline-block;
      padding: 12px 30px;
      background: var(--primary);
      color: white;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      transition: var(--transition);
      border: 2px solid var(--primary);
      text-transform: uppercase;
      font-size: 0.9rem;
      letter-spacing: 1px;
    }
    
    .btn:hover {
      background: transparent;
      color: var(--primary);
      transform: translateY(-3px);
      box-shadow: var(--shadow);
    }
    
    .btn-secondary {
      background: var(--secondary);
      border-color: var(--secondary);
    }
    
    .btn-secondary:hover {
      color: var(--secondary);
    }
    
    .btn-accent {
      background: var(--accent);
      border-color: var(--accent);
    }
    
    .btn-accent:hover {
      color: var(--accent);
    }
    
    /* Header Styles */
    header {
      background: var(--gradient);
      color: white;
      padding: 15px 0;
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      transition: var(--transition);
    }
    
    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .logo {
      display: flex;
      align-items: center;
      font-size: 1.8rem;
      font-weight: 700;
      text-decoration: none;
      color: white;
    }
	
	.logo-img {
  height: 40px; /* Matches the visual height of the menu */
  width: auto;
  display: inline-block;
  margin-right: 10px; /* spacing between image and text */
  vertical-align: middle;
}

    
    .logo i {
      margin-right: 10px;
      color: var(--secondary);
    }
    
    nav ul {
      display: flex;
      list-style: none;
    }
    
    nav ul li {
      margin-left: 30px;
    }
    
    nav ul li a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      font-size: 1.05rem;
      transition: var(--transition);
      position: relative;
      padding: 5px 0;
    }
    
    nav ul li a:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--secondary);
      transition: var(--transition);
    }
    
    nav ul li a:hover:after {
      width: 100%;
    }
    
    nav ul li a:hover {
      color: var(--secondary);
    }
	
	.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  nav ul.nav-links {
    display: none; /* Hide by default */
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--gradient);
    padding: 20px 0;
    text-align: center;
    z-index: 999;
  }

  nav ul.nav-links.active {
    display: flex; /* Show on toggle */
  }

  nav ul.nav-links li {
    margin: 15px 0;
  }
}



    
    /* Hero Section */
    .hero {
      background: var(--gradient);
      color: white;
      padding: 180px 0 100px;
      position: relative;
      overflow: hidden;
    }
    
    .hero:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxjaXJjbGUgY3g9IjEwIiBjeT0iMTAiIHI9IjEiIGZpbGw9IiNmZmZmZmYiIGZpbGwtb3BhY2l0eT0iMC4xIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIi8+PC9zdmc+');
      opacity: 0.15;
    }
    
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 700px;
    }
    
    .hero p {
      font-size: 1.25rem;
      margin-bottom: 2rem;
      opacity: 0.9;
    }
    
    .hero-btns {
      display: flex;
      gap: 15px;
      margin-top: 30px;
    }
    
    .hero-image {
      position: absolute;
      right: -50px;
      bottom: 0;
      width: 45%;
      max-width: 600px;
      z-index: 1;
      opacity: 0.9;
    }
    
    /* Sections */
    section {
      padding: 20px 0;
    }
    
    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }
  .section-header h2{
  font-size: 36px;
  color: #012169;
  margin-bottom: 10px;
  }
    
    .section-header h2:after {
      left: 50%;
      transform: translateX(-50%);
    }
    
    .section-header p {
      max-width: 700px;
      margin: 0 auto;
      color: var(--gray);
    }

/* Sections Scrolling Top Margin */
#about, #service, #values, #contact{
  scroll-margin-top: 80px;
}	

/* Sliding Animations */
.slide-left,
.slide-right {
  opacity: 0;
  transition: all 1s ease;
  will-change: transform, opacity;
  position: relative;
}

/* Slide in from left (reduced distance to avoid overflow) */
.slide-left {
  transform: translateX(-50px);
}

/* Slide in from right (reduced distance to avoid overflow) */
.slide-right {
  transform: translateX(50px);
}

/* Show when in viewport */
.slide-left.show,
.slide-right.show {
  opacity: 1;
  transform: translateX(0);
}	
	
    
    /* About Section */
    .about-content {
      display: flex;
      align-items: center;
      gap: 60px;
    }
    
    .about-text {
      flex: 1;
    }
    
.about-image {
  flex: 1;
  max-width: 500px;
  max-height: 500px; /* NEW: Prevents it from growing too tall */
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  background: #ffffff;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img {
  width: 100%;
  height: auto;
  max-height: 100%; /* Ensures full image fits within the container */
  border-radius: 20px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.about-img:hover {
  transform: scale(1.02);
}




/* Founder Section */
.founder-section {
  padding: 80px 20px;
  background-color: #f4f6fb;
  font-family: 'Segoe UI', sans-serif;
}

.founder-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.founder-section .section-header h2 {
  font-size: 34px;
  color: #012169;
  margin-bottom: 10px;
}

.founder-section .section-header p {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.founder-content {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: row;
}

.founder-image {
  flex: 1;
  max-width: 400px;
  background: #fff;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.founder-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}

.founder-text {
  flex: 1;
  max-width: 600px;
  color: #333;
}

.founder-text h3 {
  font-size: 28px;
  color: #012169;
  margin-bottom: 15px;
}

.founder-text p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.founder-btn {
  background-color: #012169;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.founder-btn:hover {
  background-color: #0137a0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .founder-content {
    flex-direction: column;
    text-align: center;
  }

  .founder-text, .founder-image {
    max-width: 100%;
  }

  .founder-text h3 {
    font-size: 24px;
  }

  .founder-text p {
    font-size: 16px;
  }
}

/* Slider Section */
.african-legends-slider-section {
  width: 100%;
  overflow: hidden;
  background: #000;
  position: relative;
}

/* Image Slider Styling */
.about-photo-slider {
    position: relative;
    width: 100%; /* Full viewport width */
    height: 600px; /* Increased height */
    overflow: hidden;
    border-radius: 0; /* Optional: full-width feel */
    margin: 0 auto;
    background-color: #000000;
}

.about-photo-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.about-photo-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fill the container and crop if needed */
    transition: transform 0.3s ease;
    border-radius: 0;
}

/* Hover effect for the images */
.about-photo-slider .slide img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .about-photo-slider {
        height: 400px; /* Adjusted height for mobile */
    }
}	
    
    /* Services Section */
    .services {
      background-color: #f8fafc;
    }
    
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }
    
    .service-card {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
      position: relative;
      z-index: 1;
    }
    
    .service-card:hover {
      transform: translateY(-10px);
    }
    
    .service-icon {
      height: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
      color: white;
      position: relative;
      overflow: hidden;
    }
    
    .service-icon:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #012169;
      z-index: -1;
    }
    
    .service-content {
      padding: 30px;
    }
    
    .service-content h3 {
      margin-bottom: 15px;
      color: var(--primary);
    }
    
    /* Values Section */
    .values-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
    }
    
    .value-card {
      background: white;
      padding: 35px 30px;
      border-radius: 15px;
      box-shadow: var(--shadow);
      text-align: center;
      transition: var(--transition);
    }
    
    .value-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }
    
    .value-icon {
      width: 70px;
      height: 70px;
      background: #012169;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 25px;
      font-size: 1.8rem;
      color: white;
    }
    
    .value-card h3 {
      font-size: 1.3rem;
      margin-bottom: 15px;
    }
	
	
	

/* Leadership Excellence Section */
.leadership-section {
  background: url('72.jpeg') no-repeat center center/cover;
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Segoe UI', sans-serif;
}
.section-title-leadership {
  position: relative;
  display: inline-block;
  font-size: 36px;
  color: #fff;
  margin-bottom: 15px;
}

.section-title-leadership::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #fff;
}

.leadership-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.leadership-content {
  color: #fff;
  max-width: 800px;
}

.leadership-content h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.leadership-content p {
  font-size: 18px;
  margin-bottom: 25px;
}

.leadership-btn {
  background-color: #012169;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.leadership-btn:hover {
  background-color: #0137a0;
}


/* Executive Leadership Section */
.executive-section {
  padding: 80px 20px;
  background-color: #f0f4f9;
  font-family: 'Segoe UI', sans-serif;
}

.executive-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.executive-section .section-header h2 {
  font-size: 34px;
  color: #012169;
  margin-bottom: 10px;
}

.executive-section .section-header p {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.executive-content {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: row;
}

.executive-text {
  flex: 1;
  max-width: 600px;
  color: #333;
}

.executive-text p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.executive-image {
  flex: 1;
  max-width: 500px;
  background: #fff;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.executive-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .executive-content {
    flex-direction: column;
    text-align: center;
  }

  .executive-text, .executive-image {
    max-width: 100%;
  }

  .executive-section .section-header h2 {
    font-size: 26px;
  }

  .executive-text p {
    font-size: 16px;
  }
}



/* Culture Shift Section */
.culture-section {
  padding: 80px 20px;
  background-color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
}

.culture-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.culture-section .section-header h2 {
  font-size: 34px;
  color: #012169;
  margin-bottom: 10px;
}

.culture-section .section-header p {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.culture-content {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: row;
}

.culture-text {
  flex: 1;
  max-width: 600px;
  color: #333;
}

.culture-text p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.culture-image {
  flex: 1;
  max-width: 500px;
  background: #fff;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.culture-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .culture-content {
    flex-direction: column;
    text-align: center;
  }

  .culture-text,
  .culture-image {
    max-width: 100%;
  }

  .culture-section .section-header h2 {
    font-size: 26px;
  }

  .culture-text p {
    font-size: 16px;
  }
}



/* Numbers Section */
.numbers-section {
  padding: 80px 20px;
  background-color: #012169;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.numbers-section .section-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color:#FFFFFF;
}

.numbers-section .section-header p {
  font-size: 18px;
  color: #dcdcdc;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.number-card h3 {
  font-size: 48px;
  font-weight: 700;
  color: #FFFFFF;;
  margin-bottom: 10px;
}

.number-card p {
  font-size: 18px;
  color: #e0e0e0;
}

/* African Legends Section */
.african-legends-section {
  padding: 80px 20px;
  background-color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
}

.african-legends-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.african-legends-section .section-header h2 {
  font-size: 34px;
  color: #012169;
  margin-bottom: 10px;
}

.african-legends-section .section-header p {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.african-legends-content {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  justify-content: center;
}

.african-legends-text {
  flex: 1;
  max-width: 600px;
  color: #333;
}

.african-legends-text p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.african-legends-btn {
  background-color: #012169; /* Dark blue */
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.african-legends-btn:hover {
  background-color: #0137a0; /* Lighter blue on hover */
}


.african-legends-image {
  flex: 1;
  max-width: 500px;
  padding: 10px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.african-legends-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .african-legends-content {
    flex-direction: column;
    text-align: center;
  }

  .african-legends-text,
  .african-legends-image {
    max-width: 100%;
  }

  .african-legends-section .section-header h2 {
    font-size: 26px;
  }

  .african-legends-text p {
    font-size: 16px;
  }

  .african-legends-btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .african-legends-img {
    max-width: 100%;
    height: auto;
  }
}



	
/* Testimonials Section */	
.testimonials-section {
  padding: 80px 20px;
  background-color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
}

.testimonials-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-section h2 {
  font-size: 36px;
  color: #012169;
  margin-bottom: 10px;
}

.testimonials-section p {
  font-size: 18px;
  color: #555;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-text {
  font-style: italic;
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}

.testimonial-author h4 {
  margin: 0;
  font-size: 18px;
  color: #012169;
}

.testimonial-author p {
  margin: 0;
  font-size: 14px;
  color: #777;
}


    
    /* Contact Section */
    .contact {
      background: #012169;
      color: white;
    }
    
    .contact h2 {
      color: white;
    }
    
    .contact h2:after {
      background: var(--secondary);
    }
    
    .contact-content {
      display: flex;
      gap: 50px;
    }
    
    .contact-info {
      flex: 1;
    }
    
    .contact-info p {
      margin-bottom: 25px;
      font-size: 1.1rem;
      max-width: 500px;
    }
    
    .contact-details {
      margin-top: 30px;
    }
    
    .contact-item {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }
    
    .contact-item i {
      width: 50px;
      height: 50px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      margin-right: 15px;
      color: var(--secondary);
    }
    
    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 30px;
    }
    
    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 45px;
      height: 45px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      color: white;
      font-size: 1.2rem;
      transition: var(--transition);
    }
    
    .social-links a:hover {
      background: var(--secondary);
      transform: translateY(-5px);
    }
    
    .contact-form {
      flex: 1;
      background: white;
      padding: 40px;
      border-radius: 15px;
      box-shadow: var(--shadow);
    }
    
    .contact-form h3 {
      color: var(--primary);
      margin-bottom: 25px;
      text-align: center;
    }
    
    .form-group {
      margin-bottom: 20px;
    }
    
    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
      color: var(--dark);
    }
    
    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 14px;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-family: 'Poppins', sans-serif;
      font-size: 1rem;
      transition: var(--transition);
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--secondary);
      box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.2);
    }
    
    .form-group textarea {
      min-height: 150px;
      resize: vertical;
    }
    
    /* Footer */
    footer {
      background: var(--dark);
      color: white;
      padding: 60px 0 30px;
    }
    
    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 50px;
    }
    
    .footer-column h3 {
      color: var(--secondary);
      font-size: 1.4rem;
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 15px;
    }
    
    .footer-column h3:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 3px;
      background: var(--secondary);
    }
    
    .footer-links {
      list-style: none;
    }
    
    .footer-links li {
      margin-bottom: 12px;
    }
    
    .footer-links a {
      color: #adb5bd;
      text-decoration: none;
      transition: var(--transition);
    }
    
    .footer-links a:hover {
      color: var(--secondary);
      padding-left: 5px;
    }
    
    .copyright {
      text-align: center;
      padding-top: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: #adb5bd;
      font-size: 0.9rem;
    }
    
    /* Responsive Design */
    @media (max-width: 992px) {
      .hero-content {
        text-align: center;
        max-width: 100%;
      }
      
      .hero-image {
        display: none;
      }
      
      .about-content {
        flex-direction: column;
      }
      
      .contact-content {
        flex-direction: column;
      }
    }
    
    @media (max-width: 768px) {
      h1 {
        font-size: 2.8rem;
      }
      
      h2 {
        font-size: 2rem;
      }
      
      nav ul {
        display: none;
      }
      
      .menu-toggle {
        display: block;
        font-size: 1.5rem;
        color: white;
        cursor: pointer;
      }
      
      .hero {
        padding: 150px 0 80px;
      }
      
      section {
        padding: 80px 0;
      }
    }
    
    @media (max-width: 480px) {
      h1 {
        font-size: 2.2rem;
      }
      
      .hero-btns {
        flex-direction: column;
      }
      
      .btn {
        width: 100%;
        text-align: center;
      }
    }
	
.nav-links {
  transition: transform 0.3s ease;
}
