@keyframes textSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes textFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes textSlideRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes textSlideLeft {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}







.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 30px;
  background: #121212;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

/* Left side: Logo image + text inside rounded container */
.header-left {
  display: flex;
  align-items: center;
  background: #1E1E1E;
  padding: 8px 16px;
  border-radius: 40px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-link img {
  width: 36px;
  height: auto;
  margin-right: 10px;
}

.logo-link .nav-middle-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
  text-transform: uppercase;
}

/* Right side: nav links inside curved pill */
.header-right {
  display: flex;
  gap: 20px;
  background: #1E1E1E;
  padding: 10px 24px;
  border-radius: 40px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.header-right a {
  text-decoration: none;
  color: #f0f0f0;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.header-right a:hover {
  color: #007aff;
}

/* Mobile Header */
.mobile-header {
  display: none;
  justify-content: space-between;
  align-items: center;
  background: #121212;
  padding: 14px 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Mobile logo wrapper with text */
.mobile-logo-link {
  text-decoration: none;
}

.mobile-logo {
  background: #1E1E1E;
  padding: 6px 12px;
  border-radius: 40px;
  display: flex;
  align-items: center;
}
.mobile-logo img {
  width: 33px;
  height: 12px;
  margin-right: 5px;
}

.mobile-text-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #f0f0f0;
}

/* Mobile menu icon */
.mobile-menu-icon {
  font-size: 26px;
  cursor: pointer;
  color: #f0f0f0;
  padding: 6px 12px;
  background: #1E1E1E;
  border-radius: 40px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: linear-gradient(135deg, #1E1E1E, #2a2a2a);
  padding: 16px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 20px 20px;
}

.mobile-menu a {
  text-decoration: none;
  color: #f0f0f0;
  font-size: 16px;
  margin: 12px 0;
  font-weight: 500;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: #007aff;
}

/* Responsive display for mobile header */
@media (max-width: 768px) {
  .main-header {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
}
/* Hero About Section */
.hero-about {
  padding: 80px 20px 60px;
  text-align: center;
  background: #121212;
}

.hero-about h1 {
  font-size: 52px;
  color: #fff;
  margin-bottom: 20px;
}
.hero-about h1,
.hero-about p {
  animation: textSlideDown 1s ease-out;
}

.hero-about p {
  font-size: 18px;
  color: #dcdcdc;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Values Section */
.about-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  background: #1A1A1A;
}

.value-card {
  max-width: 400px;
  text-align: left;
}

.value-card h2 {
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 12px;
  animation: textSlideLeft 1s ease-out forwards;
}

.value-card p {
  color: #ccc;
  line-height: 1.7;
  font-size: 16px;
  animation: textFadeIn 1.2s ease-out forwards;
}

/* Highlights Section */
.about-highlights {
  padding: 60px 20px;
  text-align: center;
  background: #121212;
}

.about-highlights h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #fff;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.highlight-card {
  background: #1A1A1A;
  padding: 30px 20px;
  border-radius: 14px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.highlight-card h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 14px;
  animation: textSlideLeft 1s ease-out;
}


.highlight-card p {
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
  animation: textSlideRight 1.2s ease-out;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(90deg, #0f0f0f, #1A1A1A);
}

.cta-section h2 {
  font-size: 40px;
  color: #fff;
  margin-bottom: 20px;
}


.cta-section p {
  color: #ccc;
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 30px;
}

.cta-button {
  display: inline-block;
  padding: 14px 28px;
  background: #FFFFFF;
  color: #121212;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #f2f2f2;
}

/* Footer */
.footer {
  background: #1E1E1E;
  padding: 40px 20px 20px;
  color: #f0f0f0;
  border-top: 1px solid #2a2a2a;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links a {
  text-decoration: none;
  color: #ccc;
  font-size: 14px;
}

.social-icons a img {
  width: 20px;
  background-color: white;
  height: 20px;
  margin-right: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #2a2a2a;
  margin-top: 30px;
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
  .hero-about h1 {
    font-size: 36px;
  }

  .about-highlights h2,
  .cta-section h2 {
    font-size: 30px;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-brand h2 {
    font-size: 22px;
  }

  .social-icons a img {
    width: 18px;
    height: 18px;
  }
}