/* ===== Global Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== Base Styles ===== */
body {
  background-color: #fffdf5;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  scroll-behavior: smooth;
}

/* ===== Navbar ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10%;
  background-color: #F1C338;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 50px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text .main-name {
  font-size: 1.6rem;
  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: #333;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background-color: #222;
  color: #fff;
}

.hamburger {
  display: none;
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

/* ===== Content Wrapper ===== */
.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

/* ===== HERO SECTION ===== */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 120px 10%;
  background: linear-gradient(135deg, #fffef8, #fdf6de);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(241, 195, 56, 0.15);
  border-radius: 50%;
  filter: blur(80px);
}

.hero-text {
  flex: 1;
  animation: fadeInLeft 1.2s ease forwards;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #222;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #555;
  max-width: 500px;
}

.cta-btn {
  display: inline-block;
  background: #222;
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.05rem;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
  background: #0056c9;
  transform: translateY(-3px);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  animation: fadeInRight 1.2s ease forwards;
}

.hero-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease;
}

.hero-image img:hover {
  transform: scale(1.05) rotate(1deg);
}

/* ===== ABOUT SECTION ===== */
.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 100px 10%;
  background: linear-gradient(135deg, #fffdf5, #fcf3d6);
}

.about-text {
  flex: 1;
  animation: fadeInLeft 1.2s ease forwards;
}

.about-text h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  position: relative;
}

.about-text h2::after {
  content: "";
  width: 50px;
  height: 4px;
  background: #F1C338;
  display: block;
  margin-top: 8px;
  border-radius: 2px;
}

.about-text p {
  font-size: 1.15rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-highlights li {
  list-style: none;
  font-size: 1.05rem;
  color: #333;
  position: relative;
  padding-left: 25px;
}

.about-highlights li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #007bff;
  font-weight: bold;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  animation: fadeInRight 1.2s ease forwards;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

/* ===== MISSION SECTION ===== */
.mission-section {
  text-align: center;
  padding: 100px 10%;
  background: #fffdf5;
  animation: fadeInUp 1.2s ease forwards;
}

.mission-section h2 {
  font-size: 2.6rem;
  margin-bottom: 50px;
  position: relative;
}

.mission-section h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #F1C338;
  display: block;
  margin: 15px auto 0;
  border-radius: 2px;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.mission-card {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: zoomIn 1.2s ease forwards;
}

.mission-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.mission-card i {
  font-size: 2.8rem;
  color: #007bff;
  margin-bottom: 20px;
}

/* ===== Why Choose Us ===== */
.why-choose {
  text-align: center;
}

.why-choose h3 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.why-choose-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.why-choose-item {
  background: #f8f8f8;
  padding: 20px 30px;
  border-radius: 12px;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.why-choose-item:hover {
  transform: translateY(-5px);
}

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center;
  padding: 100px 10%;
  background: linear-gradient(to right, #f1c338, #f5d357);
  color: #222;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1.3rem;
  margin-bottom: 25px;
}

.cta-section .cta-btn {
  background: #fff;
  color: #222;
}

.cta-section .cta-btn:hover {
  background: #222;
  color: #fff;
}

/* ===== 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 fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-text h1 {
    font-size: 2.4rem;
  }

  .about-text p {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 75px;
    right: 25px;
    background-color: #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;
  }

  .nav-links a {
    padding: 14px 0;
    margin: 6px 0;
    text-align: center;
    font-size: 1.1rem;
  }

  .hero-section,
  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .why-choose-list {
    flex-direction: column;
    gap: 15px;
  }
}
