/* ===== Global Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== Base Styles ===== */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #333;
  background: #f9f9f9;
  line-height: 1.7;
}

/* ===== Navbar ===== */
.navbar {
  background: #F1C338;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  height: 50px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .main-name {
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-text .tagline {
  font-size: 0.9rem;
  color: #444;
}

.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  padding: 8px 14px;
  transition: 0.3s;
  border-radius: 6px;
}

.nav-links a:hover,
.nav-links a.active {
  background: #222;
  color: #fff;
}

.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #222;
}

/* ===== Hero Section ===== */
.about-hero {
  text-align: center;
  padding: 100px 8%;
  background: linear-gradient(to right, #fffbe8, #fdf4d4);
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #222;
  animation: fadeInDown 1s ease forwards;
}

.about-hero p {
  font-size: 1.2rem;
  color: #555;
  animation: fadeInUp 1.2s ease forwards;
}

/* ===== About Intro ===== */
.about-intro {
  padding: 100px 8%;
  background: #fff;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  animation: fadeInLeft 1s ease forwards;
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #222;
}

.about-text p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.9;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  animation: fadeInRight 1s ease forwards;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

/* ===== Mission Section ===== */
.mission-section {
  text-align: center;
  padding: 100px 8%;
  background: #fdf8e9;
}

.mission-section h2 {
  font-size: 2.4rem;
  margin-bottom: 50px;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.mission-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
}

.mission-card:hover {
  transform: translateY(-10px);
}

.mission-card i {
  font-size: 2.8rem;
  color: #F1C338;
  margin-bottom: 15px;
}

.mission-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #222;
}

.mission-card p {
  font-size: 1rem;
  color: #555;
}

/* ===== Why Choose Us ===== */
.why-us {
  padding: 100px 8%;
  text-align: center;
  background: #fff;
}

.why-us h2 {
  font-size: 2.4rem;
  margin-bottom: 50px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.why-card {
  background: #fffbe8;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
}

.why-card:hover {
  background: #F1C338;
  color: #222;
  transform: translateY(-10px);
}

.why-card i {
  font-size: 2.8rem;
  color: #F1C338;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.why-card:hover i {
  color: #222;
}

.why-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 1rem;
}

/* ===== Footer ===== */
.footer-grid {
  background: #F1C338;
  padding: 60px 8%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  color: #222;
}

.footer-column h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
  position: relative;
}

.footer-column h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #222;
  margin-top: 8px;
  border-radius: 2px;
}

.footer-column p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column a {
  text-decoration: none;
  color: #222;
  transition: 0.3s;
}

.footer-column a:hover {
  color: #000;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.social-links a:hover {
  transform: translateX(5px);
}

.footer-bottom {
  background: #e2b92e;
  padding: 18px 8%;
  text-align: center;
  font-size: 0.95rem;
  color: #222;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* ===== Animations ===== */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .about-hero h1 {
    font-size: 2.4rem;
  }
  .about-text h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 75px;
    right: 20px;
    background: #F1C338;
    flex-direction: column;
    width: 220px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .nav-links.active {
    display: flex;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    max-width: 90%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    align-items: center;
  }
}
