/* 🔴 RESET + BACKGROUND */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  position: relative;
  z-index: 1;
}

/* 🔥 BACKGROUND IMAGE (LOW OPACITY) */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("assets/bg.jpeg") no-repeat center center;
  background-size: cover;
  opacity: 0.15;
  z-index: -1;
}

/* 🔴 NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: linear-gradient(90deg, #FF9933, #CC3300);
  color: white;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.navbar a:hover {
  color: #FFD700;
}

/* 🔵 HERO */
.hero {
  height: 100vh;
  background: url("assets/hero.jpeg") center/cover no-repeat;
}

.overlay {
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(255,153,51,0.4));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

/* 🔘 BUTTON */
button {
  margin-top: 20px;
  padding: 12px 25px;
  background: gold;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  transform: scale(1.05);
}

/* 🟡 ABOUT */
.about {
  padding: 100px 20px;
  text-align: center;
}

.about-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.card {
  background: white;
  padding: 30px;
  width: 350px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

/* 🔴 SERVICES */
.services {
  padding: 80px 20px;
  text-align: center;
}

.service-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-card {
  background: #f5efe6;
  padding: 30px;
  width: 250px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
}

/* 🔵 IMPACT */
.impact {
  background: linear-gradient(135deg, #ff9933, #cc3300);
  color: white;
  text-align: center;
  padding: 80px 20px;
  border-radius: 40px 40px 0 0;
}

.impact-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* 🔵 LEADER */
.leader-hero {
  height: 50vh;
  background: url("assets/bg.jpg") center/cover no-repeat;
}

.leader-hero-overlay {
  height: 100%;
  background: rgba(0,0,0,0.6);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.leader-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 60px;
  background: rgba(255,255,255,0.9);
  border-radius: 20px;
  margin: 40px;
}

.leader-container img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #ff9933;
}

.leader-content {
  max-width: 500px;
}

.fb-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: linear-gradient(135deg, #1877f2, #3b82f6);
  color: white;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.fb-btn:hover {
  transform: translateY(-3px);
}

/* 🟣 EXTRA */
.extra {
  padding: 80px 20px;
  text-align: center;
}

.extra-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.extra-card {
  background: white;
  padding: 25px;
  width: 250px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.extra-card:hover {
  transform: translateY(-10px);
}

/* 🔵 CONTACT */
.contact-hero {
  height: 50vh;
  background: url("assets/contact.jpg") center/cover no-repeat;
}

.contact {
  padding: 80px 20px;
  text-align: center;
}

.contact-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-info,
.contact-form {
  background: white;
  padding: 30px;
  width: 320px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 10px;
  border: 1px solid #ccc;
}

.contact-form button {
  background: linear-gradient(135deg, #ff9933, #cc3300);
  color: white;
}

/* 🔴 FOOTER */
.footer {
  background: #0a0a0a;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 20px 0;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.footer-links a:hover {
  color: #FFD700;
}

/* 🔥 ANIMATION */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 🔵 ABOUT HERO */
.about-hero {
  height: 50vh;
  background: url("assets/bg.jpg") center/cover no-repeat;
}

/* 🔴 INTRO */
.about-intro {
  text-align: center;
  padding: 80px 20px;
  max-width: 800px;
  margin: auto;
}

/* 🔴 CARDS */
.about-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  flex-wrap: wrap;
}

/* 🔴 CULTURE */
.culture {
  text-align: center;
  padding: 80px 20px;
}

/* 🔴 TIMELINE */
.timeline {
  padding: 80px 20px;
  text-align: center;
}

.timeline-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.timeline-box {
  background: white;
  padding: 30px;
  width: 200px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.timeline-box:hover {
  transform: translateY(-10px);
}
/* 🔥 QUOTE SECTION FIX */
.quote {
  display: flex;
  justify-content: center;   /* horizontal center */
  align-items: center;       /* vertical center */
  text-align: center;        /* text center */

  height: 200px;             /* adjust height if needed */
  padding: 40px 20px;

  font-size: 22px;
  font-style: italic;
  color: #222;
}
.quote p {
  max-width: 800px;
  line-height: 1.6;
}
.quote {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  margin: 40px;
}