/* ===== ABOUT PAGE STYLE ===== */

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #000;
}

/* ===== About Hero New Layout ===== */
.about-hero {
  background: linear-gradient(to right, #fff8d6, #fff);
  padding: 100px 20px;
}

.about-hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.about-hero-content {
  flex: 1;
  text-align: left;
  max-width: 600px;
}

.about-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #000;
}

.about-hero-content h1 span {
  color: #FFD700;
}

.about-hero-content p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
  margin: 20px 0 30px;
}

.btn-about {
  display: inline-block;
  padding: 12px 25px;
  background: #FFD700;
  color: #000;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-about:hover {
  background: #e6c200;
  color: #fff;
}

/* ===== Right Image ===== */
.about-hero-image {
  flex: 1;
  text-align: center;
}

.about-hero-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.about-hero-image img:hover {
  transform: scale(1.05);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .about-hero-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-hero-content {
    text-align: center;
  }

  .about-hero-content h1 {
    font-size: 2.2rem;
  }

  .about-hero-image img {
    max-width: 350px;
  }
}

}

/* ===== About Section ===== */
.about-section {
  padding: 80px 20px;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
}

.about-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}

.about-content p {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* ===== Why Choose Us ===== */
.why-choose-us {
  background: #f9f9f9;
  padding: 80px 20px;
  margin-top: -83px;
}

.why-box {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.why-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 15px rgba(219, 199, 81, 0.4);
}

.why-box i {
  font-size: 45px;
  color: #FFD700;
  margin-bottom: 20px;
}

.why-box h4 {
  font-weight: 700;
  font-size: 1.2rem;
  color: #000;
  margin-bottom: 10px;
}

.why-box p {
  font-size: 0.95rem;
  color: #555;
}

/* ===== Mission & Vision ===== */
.mission-vision {
  padding: 80px 20px;
  background: #fff;
}

.mv-content {
  padding: 30px;
  border-left: 5px solid #FFD700;
  background: #fffaf0;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.mv-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}

.mv-content p {
  color: #444;
  font-size: 12px;
  line-height: 1.8;
}

/* ===== EMPLOYEE SECTION ===== */
.employee-section {
  padding: 80px 20px;
  background: #fff;
}

.employee-section .section-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.employee-section .section-subtitle {
  color: #555;
  font-size: 1rem;
  margin-bottom: 60px;
}

/* Employee Rows */
.employee-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
  gap: 40px;
  flex-wrap: wrap;
}

.employee-row.reverse {
  flex-direction: row-reverse;
}

/* Employee Content */
.employee-content {
  flex: 1;
}

.employee-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.employee-content h5 {
  color: #FFD700;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.employee-content p {
  color: #444;
  font-size: 12px;
  line-height: 1.8;
}

/* Employee Image */
.employee-image {
  flex: 1;
  text-align: center;
}

.employee-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.employee-image img:hover {
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 992px) {
  .employee-row {
    flex-direction: column;
    text-align: center;
  }

  .employee-row.reverse {
    flex-direction: column;
  }

  .employee-content {
    margin-top: 25px;
  }

  .employee-content h3 {
    font-size: 1.6rem;
  }
}



/* ===== Responsive ===== */
@media (max-width: 992px) {
  .about-hero h1 {
    font-size: 2.2rem;
  }
  .mv-content {
    margin-bottom: 20px;
  }
}

/* newww */

.section-title{
    font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}


.section-subtitle{

color: #555;
  margin-bottom: 50px;
  font-size: 1.00rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* =======================
   WHY CHOOSE US SECTION
   ======================= */

.why-choose-us {
  padding: 80px 0;
  background-color: #ffffff;
}

.why-choose-us .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.why-choose-us .section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 60px;
}

.why-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.why-box i {
  font-size: 40px;
  color: #ffb600;
  margin-bottom: 15px;
}

.why-box h4 {
    font-size: 14px;
    font-weight: 700;
    color: #6c6c6c;
    margin-bottom: 10px;
}

.why-box p {
  font-size: 12px;
  color: #555;
  line-height: 1.6;
}

.why-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* =======================
   RESPONSIVE DESIGN
   ======================= */

/* For large desktops (≤1440px) */
@media (max-width: 1440px) {
  .why-choose-us .section-title {
    font-size: 2.2rem;
  }
  .why-box i {
    font-size: 36px;
  }
}

/* For tablets and smaller laptops (≤1024px) */
@media (max-width: 1024px) {
  .why-box {
    padding: 25px 15px;
  }
  .why-box h4 {
    font-size: 1.1rem;
  }
  .why-box p {
    font-size: 12px;
  }
}

/* For tablets and phablets (≤768px) */
@media (max-width: 768px) {
  .why-choose-us {
    padding: 60px 20px;
  }

  .why-choose-us .section-title {
    font-size: 1.8rem;
  }

  .why-choose-us .section-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .why-box {
    margin-bottom: 25px;
  }

  .why-box i {
    font-size: 32px;
  }
}

/* For small mobiles (≤576px) */
@media (max-width: 576px) {
  .why-choose-us {
    padding: 50px 15px;
  }

  .why-box {
    padding: 20px 15px;
    margin-bottom: 20px;
  }

  .why-box i {
    font-size: 30px;
  }

  .why-box h4 {
    font-size: 1rem;
  }

  .why-box p {
    font-size: 12px;
  }
}

/* For extra-small devices (≤375px) */
@media (max-width: 375px) {
  .why-choose-us {
    padding: 40px 10px;
  }

  .why-choose-us .section-title {
    font-size: 1.5rem;
  }

  .why-box i {
    font-size: 28px;
  }
}

/* For ultra-small devices (≤320px) */
@media (max-width: 320px) {
  .why-box {
    padding: 18px 10px;
  }

  .why-box p {
    font-size: 12px;
  }
}
