/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: linear-gradient(135deg, #fafafa, #fdf2e9);
  color: #333;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== HEADER / NAVBAR ===== */
header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
  background: #2c2c54;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo img {
  height: 55px;
}

/* Navbar Toggle for Mobile */
.navbar-toggle {
  display: none;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 28px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 1100;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  color: #ff9f1c;
  border-bottom: 2px solid #ff9f1c;
  padding-bottom: 3px;
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 80px 8%;
  background: linear-gradient(135deg, #fff9f4, #fdf2e9);
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #2c2c54;
  position: relative;
}

.about-text h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ff9f1c;
  margin-top: 10px;
  border-radius: 2px;
}

.about-text p {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
}

.about-image {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
  object-fit: cover;
}

.about-image img:hover {
  transform: scale(1.05);
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 20px;
  background: #2c2c54;
  color: #fff;
  margin-top: 40px;
  font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */

/* Tablets */
@media (max-width: 992px) {
  .about {
    padding: 60px 5%;
  }
  .about-text h2 {
    font-size: 1.8rem;
  }
  nav ul {
    gap: 18px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .navbar-toggle {
    display: block;
  }

  nav ul {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -250px; /* hidden by default */
    height: 100vh;
    width: 220px;
    background: #2c2c54;
    padding-top: 80px;
    gap: 20px;
    transition: right 0.3s ease;
    display: flex;
    z-index: 1000;
  }

  nav ul.active {
    right: 0; /* slide in */
  }

  nav ul li {
    text-align: center;
  }

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

  .about-text h2 {
    font-size: 1.6rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .about-image img {
    max-width: 300px;
  }
}

/* Extra Small */
@media (max-width: 480px) {
  .about {
    padding: 50px 5%;
  }
  .about-text h2 {
    font-size: 1.4rem;
  }
  .about-text p {
    font-size: 0.95rem;
  }
  .about-image img {
    max-width: 260px;
  }
}
