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

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f9f9;
}

/* Header */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2575fc;
}

.nav-links ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #2575fc;
}

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

.bar {
  width: 25px;
  height: 3px;
  background: #333;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 5rem 2rem;
  text-align: center;
  background: linear-gradient(45deg, #6a11cb, #2575fc);
  color: #fff;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 1.5rem;
  font-weight: 400;
}

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

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.get-start {
  padding: 0.8rem 2rem;
  background: #fff;
  color: #2575fc;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.get-start:hover {
  background: #2575fc;
  color: #fff;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
  animation: moveBackground 10s infinite alternate;
}

/* Areas of Expertise */
.area-container {
  padding: 4rem 2rem;
  text-align: center;
}

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

.area-container p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

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

.card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.card h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.card a {
  text-decoration: none;
  color: #2575fc;
  font-weight: 500;
  transition: color 0.3s ease;
}

.card a:hover {
  color: #6a11cb;
}

/* Tagline Section */
.tag-container {
  padding: 4rem 2rem;
  text-align: center;
  background: #f1f1f1;
}

.logo-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.logo-tagline h1 {
  font-size: 2.5rem;
  color: #2575fc;
}

.divider {
  width: 2px;
  height: 40px;
  background: #333;
}

.tagline {
  font-size: 1.5rem;
  font-weight: 600;
}

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

.btn {
  padding: 0.8rem 2rem;
  background: #2575fc;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #6a11cb;
}

/* Testimonials Section */
.testimonials {
  padding: 4rem 2rem;
  text-align: center;
  background: #fff;
}

.testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

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

.testimonial {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

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

/* About Page */
/* Hero Section */
.hero {
  position: relative;
  padding: 6rem 2rem;
  text-align: center;
  background: linear-gradient(45deg, #6a11cb, #2575fc);
  color: #fff;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 1.5rem;
  font-weight: 400;
}

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

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
  animation: moveBackground 10s infinite alternate;
}

/* Purpose Section */
.purpose-container {
  padding: 4rem 2rem;
  text-align: center;
}

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

.purpose-container h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.purpose-container .content {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.purpose-container img {
  padding: 80px;
  width: 50%;
  border-radius: 10px;
}

.purpose-container .quote {
  text-align: left;
}

.purpose-container .quote p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.purpose-container .quote strong {
  font-size: 1.2rem;
  color: #2575fc;
}

/* Timeline Section */
.timeline-container {
  padding: 4rem 2rem;
  text-align: center;
}

.timeline-container h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: #2575fc;
}

.timeline-item {
  padding: 20px 40px;
  position: relative;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-content {
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.timeline-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.timeline-content p {
  font-size: 1rem;
}

/* Call to Action Section */
.cta {
  background: #f1f1f1;
  padding: 4rem 2rem;
  text-align: center;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

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

.cta-button {
  padding: 0.8rem 2rem;
  background: #2575fc;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #6a11cb;
}

/* Contact Page */
/* Hero Section */
.hero {
  position: relative;
  padding: 6rem 2rem;
  text-align: center;
  background: linear-gradient(45deg, #6a11cb, #2575fc);
  color: #fff;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 1.5rem;
  font-weight: 400;
}

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

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
  animation: moveBackground 10s infinite alternate;
}

/* Contact Form Section */
.contact-form-container {
  padding: 4rem 2rem;
  text-align: center;
}

.contact-form-container h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  text-align: left;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #2575fc;
  outline: none;
}

.submit-button {
  padding: 0.8rem 2rem;
  background: #2575fc;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background: #6a11cb;
}

/* Contact Info Section */
.contact-info-container {
  padding: 4rem 2rem;
  text-align: center;
  background: #f1f1f1;
}

.contact-info-container h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.info-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 1; /* Ensure cards are visible by default */
  visibility: visible; /* Ensure cards are visible by default */
  transform: translateY(0); /* Reset transform */
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.info-card .icon {
  font-size: 2rem;
  color: #2575fc;
  margin-bottom: 1rem;
}

.info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.info-card p {
  font-size: 1rem;
  color: #666;
}

/* Footer */
.footer {
  background: #333;
  color: #fff;
  padding: 4rem 2rem;
}

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

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

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

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section ul li a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #2575fc;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #444;
}

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

  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

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

  .hero p {
    font-size: 1rem;
  }

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

  .purpose-container .content {
    flex-direction: column;
  }

  .purpose-container img {
    width: 100%;
    padding: 20px;
  }

  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding: 20px;
  }

  .timeline::before {
    left: 20px;
  }

  .contact-info {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .logo-tagline h1 {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1.2rem;
  }

  .buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .testimonial-cards {
    grid-template-columns: 1fr;
  }
}
