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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header - Same as main site */
header {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: white;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

header.scrolled {
  background: rgba(30, 64, 175, 0.95);
  padding: 0.5rem 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
  cursor: pointer;
}

.logo-image {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-text {
  background: linear-gradient(45deg, #fff, #e0f2fe);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo:hover .logo-image {
  transform: scale(1.1);
}

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

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 25px;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

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

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

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

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

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

/* About Hero Section - FIXED */
.about-hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
  color: white;
  padding: 150px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
  transform: none !important; /* Prevent any transform interference */
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

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

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease;
  line-height: 1.2;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.2s both;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  animation: fadeInUp 1s ease 0.4s both;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #fbbf24;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Our Story Section - FIXED */
.our-story {
  padding: 100px 0;
  background: white;
  position: relative;
  z-index: 1;
  transform: none !important; /* Prevent any transform interference */
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.story-text {
  position: relative;
  z-index: 3;
}

.story-text h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #1e293b;
  font-weight: 700;
  line-height: 1.3;
}

.story-text p {
  color: #64748b;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.story-image,
.why-image {
  position: relative;
  z-index: 3;
}

.image-placeholder {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 20px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #cbd5e1;
  position: relative;
}

.placeholder-content {
  text-align: center;
  color: #64748b;
}

.placeholder-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.placeholder-content p {
  font-size: 1.2rem;
  font-weight: 500;
}

/* Mission Vision Values */
.mission-vision {
  padding: 100px 0;
  background: #f8fafc;
}

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

.mvv-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border-left: 5px solid #3b82f6;
}

.mvv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 5px;
  background: linear-gradient(45deg, #1e40af, #3b82f6);
  transition: left 0.4s ease;
}

.mvv-card:hover::before {
  left: 0;
}

.mvv-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(30, 64, 175, 0.15);
}

.mvv-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.mvv-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #1e293b;
  font-weight: 600;
}

.mvv-card p {
  color: #64748b;
  line-height: 1.8;
  font-size: 1rem;
}

.mvv-card ul {
  list-style: none;
  text-align: left;
}

.mvv-card ul li {
  color: #64748b;
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 20px;
}

.mvv-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}

/* What Sets Us Apart */
.what-sets-apart {
  padding: 100px 0;
  background: white;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #1e293b;
  position: relative;
  font-weight: 700;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(45deg, #1e40af, #3b82f6);
  border-radius: 2px;
}

.apart-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.apart-item {
  background: #f8fafc;
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border-left: 5px solid #3b82f6;
  position: relative;
}

.apart-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  border-radius: 0 15px 0 50px;
  opacity: 0.1;
}

.apart-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  background: white;
}

.apart-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.apart-item h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #1e293b;
  font-weight: 600;
}

.apart-item p {
  color: #64748b;
  line-height: 1.7;
}

/* Our Approach */
.our-approach {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.approach-steps {
  margin-top: 4rem;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
}

.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  border-radius: 20px 0 0 20px;
}

.step:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-right: 2rem;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.2);
}

.step-content h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #1e293b;
  font-weight: 600;
}

.step-content p {
  color: #64748b;
  line-height: 1.8;
  font-size: 1rem;
}

/* Our Team */
.our-team {
  padding: 100px 0;
  background: white;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.team-member {
  background: #f8fafc;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.team-member::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 5px;
  background: linear-gradient(45deg, #1e40af, #3b82f6);
  transition: left 0.4s ease;
}

.team-member:hover::before {
  left: 0;
}

.team-member:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(30, 64, 175, 0.15);
  background: white;
}

.member-photo {
  margin-bottom: 2rem;
}

.photo-placeholder {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.2);
}

.avatar {
  color: white;
  font-size: 2rem;
  font-weight: bold;
}

.member-info h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: #1e293b;
  font-weight: 600;
}

.member-role {
  color: #3b82f6;
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.member-description {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.member-expertise {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.expertise-tag {
  background: linear-gradient(45deg, #1e40af, #3b82f6);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Why Choose Us */
.why-choose-us {
  padding: 100px 0;
  background: #f8fafc;
}

.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-text h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #1e293b;
  font-weight: 700;
  line-height: 1.3;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.point-icon {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.point-text {
  color: #64748b;
  line-height: 1.7;
  font-size: 1rem;
}

.point-text strong {
  color: #1e293b;
}

/* About CTA */
.about-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

.cta-button {
  display: inline-block;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.cta-button.primary {
  background: linear-gradient(45deg, #f59e0b, #d97706);
  color: white;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.cta-button.secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
}

.cta-button.primary:hover {
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* Footer */
footer {
  background: #0f172a;
  color: white;
  padding: 4rem 0 2rem;
}

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

.footer-section h3 {
  margin-bottom: 1.5rem;
  color: #3b82f6;
  font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
  color: #94a3b8;
  text-decoration: none;
  line-height: 1.8;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-section .translate:hover {
  color: #3b82f6;
  transform: translateX(3px);
  transition: all 0.3s ease;
}

.footer-section a.active {
    color: #3b82f6;
    font-weight: 600;
}

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

.social-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link i {
  font-size: 1.3rem;
  color: #7c91ac;
}

.social-link:hover {
  color: #3b82f6;
  transform: scale(1.1);
}

.social-link:hover i {
  transform: scale(1.3);
  transition: all 0.2s ease;
}

.social-link:hover .fa-facebook-f {
  color: #0866ff;
}
.social-link:hover .fa-youtube {
  color: #ff0033;
}
.social-link:hover .fa-linkedin-in {
  color: #0073b2;
}
.social-link:hover .fa-instagram {
  color: #f912a4;
}
.social-link:hover .fa-whatsapp {
  color: #25d366;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 2rem;
  text-align: center;
  color: #64748b;
}

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

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(30, 64, 175, 0.95);
    flex-direction: column;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
  }

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

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

  .hero-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .story-content,
  .why-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .mvv-grid,
  .apart-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .step {
    flex-direction: column;
    text-align: center;
  }

  .step-number {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .story-text h2,
  .why-text h2 {
    font-size: 2rem;
  }

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

  .image-placeholder {
    height: 300px;
  }
}
