.login-btn button {
  background-color: white !important;
  color: black !important;
  border: 1px solid var(--primary-color);
  border-radius: 25px;
  padding: 8px 25px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.dark-mode .login-btn button {
  background-color: var(--secondary-color) !important;
  color: white !important;
  border: 1px solid var(--primary-color);
  border-radius: 25px;
  padding: 8px 25px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.about-section {
  padding: 60px 5%;
  background-color: white;
  position: relative;
}

.dark-mode .about-section {
  padding: 60px 5%;
  background-color: var(--secondary-color);
  position: relative;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.about-container h1 {
  color: black;
  text-align: center;
}

.dark-mode .about-container h1 {
  color: white;
  text-align: center;
}

.owner-message {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.owner-image {
  min-width: 280px;
  position: relative;
}

.owner-image img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.owner-signature {
  margin-top: 30px;
  text-align: center;
}

.owner-signature img {
  height: 50px;
  margin-bottom: 10px;
}

.owner-signature p {
  color: var(--light-gray);
  font-style: bold;
}

.owner-content {
  flex: 1 1 560px;
  min-width: 260px;
}

.owner-content h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: black;
  position: relative;
}

.dark-mode .owner-content h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: white;
  position: relative;
}

.owner-content h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), #CF1819);
}

.owner-content p {
  color: rgba(0, 0, 0, 0.85);
  line-height: 1.7;
  margin-bottom: 18px;
  font-size: 1rem;
}

.dark-mode .owner-content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 18px;
  font-size: 1rem;
}

.owner-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  min-width: 120px;
  flex: 1;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.milestones-section {
  padding: 80px 5%;
  background: white;
  position: relative;
  min-height: auto;
}

.dark-mode .milestones-section {
  padding: 80px 5%;
  background: #100f0f;
  position: relative;
}

.milestones-section .section-header {
  margin-bottom: 60px;
  text-align: center;
}

.milestones-section .section-header h2 {
  color: black;
}

.dark-mode .milestones-section .section-header h2 {
  color: white;
}

.milestones-section .section-header p {
  color: black;
  font-size: 1.1rem;
}

.dark-mode .milestones-section .section-header p {
  color: var(--light-gray);
  font-size: 1.1rem;
}

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

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom,
      var(--primary-color),
      rgba(163, 41, 25, 0.3));
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: all 0.6s ease;
}

.timeline-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.timeline-year {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(163, 41, 25, 0.3);
}

.timeline-content {
  width: calc(50% - 40px);
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: 500px;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-right: 500px;
  transform: translateX(-25%);
}

.timeline-content h3 {
  color: black;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.dark-mode .timeline-content h3 {
  color: white;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.timeline-content p {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

.values-section {
  background: white;
  position: relative;
}

.values-section .section-header {
  text-align: center;
}

.values-section .section-header h2 {
  color: black;
}

.values-section .section-header p {
  color: black;
  font-size: 1.1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.value-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg,
      rgba(163, 41, 25, 0.2) 0%,
      transparent 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary-color);
  transition: all 0.4s ease;
}

.value-card:hover .value-icon {
  background: linear-gradient(135deg, var(--primary-color), #CF1819);
  color: white;
  transform: rotate(15deg) scale(1.1);
}

.value-card h3 {
  color: black;
  margin-bottom: 15px;
  font-size: 1.3rem;
  position: relative;
  display: inline-block;
}

.value-card h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), #CF1819);
  transition: width 0.4s;
}

.value-card:hover h3::after {
  width: 80px;
}

.value-card p {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
  margin: 0;
  font-size: 0.9rem;
  transition: color 0.4s;
}

.value-card:hover p {
  color: white;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .owner-content h2 {
    font-size: 2rem;
  }

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

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

  .value-card {
    padding: 25px 15px;
  }

  .value-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
 
  .timeline::before {
    left: 30px;
  }

  .timeline-year {
    left: 30px;
    transform: none;
  }

  .timeline-content {
    width: calc(100% - 90px);
    margin-left: 70px !important;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 70px !important;
    margin-right: 0 !important;
    transform: translateY(40%);
  }

  .owner-stats {
    gap: 15px;
  }

  .value-card h3 {
    font-size: 1.2rem;
  }

  .value-card p {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .owner-message {
    gap: 30px;
  }

  .owner-content h2 {
    font-size: 1.8rem;
  }

  .stat-item {
    min-width: calc(50% - 15px);
  }

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

  .value-card {
    padding: 20px 15px;
  }

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

@media (max-width: 480px) {
  .stat-item {
    min-width: 100%;
  }

  .owner-image,
  .owner-content {
    min-width: 100%;
  }

  .owner-stats {
    flex-direction: column;
    color: #100f0f;
  }

  .timeline-content {
    padding: 15px;
  }

  .timeline-year {
    padding: 8px 15px;
    font-size: 0.9rem;
  }

  .timeline-content h3 {
    font-size: 1.1rem;
  }

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

  .owner-image {
    min-width: 100%;
    align-items: center;
  }

  .owner-image img {
    width: 100%;
    height: auto;
    max-height: 540px;
    object-fit: contain;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  }
}