/* =========================
   ABOUT SECTION
========================= */

.about-section {
  width: 100%;

  padding: 40px 18px;

  background: #fffdf7;

  overflow: hidden;
}

/* =========================
   CONTAINER
========================= */

.about-container {
  max-width: 1250px;

  margin: auto;

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 45px;

  align-items: center;
}

/* =========================
   IMAGE
========================= */

.about-image {
  position: relative;
}

.about-image::before {
  content: "";

  position: absolute;

  top: -10px;
  left: -10px;

  width: 100%;
  height: 100%;

  background: rgba(237, 206, 23, 0.15);

  border-radius: 30px;

  filter: blur(25px);
}

.about-image img {
  width: 100%;

  height: 420px;

  object-fit: cover;

  border-radius: 10px;

  position: relative;

  z-index: 2;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);

  transition: 0.4s;
}

.about-image img:hover {
  transform: scale(1.02);
}

/* =========================
   CONTENT
========================= */

.small-title {
  color: #edce17;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 3px;

  margin-bottom: 10px;
}

.about-content h2 {
  font-size: 42px;

  line-height: 1.2;

  color: #906e0c;

  margin-bottom: 16px;
}

.about-text {
  font-size: 15px;

  line-height: 1.9;

  color: #666;

  margin-bottom: 24px;
}

/* =========================
   ACCORDION
========================= */

.accordion-item {
  background: #fff;

  border-radius: 18px;

  border: 1px solid rgba(237, 206, 23, 0.2);

  overflow: hidden;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.accordion-btn {
  width: 100%;

  border: none;

  background: transparent;

  padding: 18px 22px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  cursor: pointer;

  font-size: 18px;

  font-weight: 600;

  color: #906e0c;
}

.accordion-btn span {
  font-size: 24px;

  transition: 0.3s;
}

.accordion-content {
  max-height: 0;

  overflow: hidden;

  transition: 0.4s ease;
}

.accordion-content p {
  padding: 0 22px 20px;

  color: #666;

  line-height: 1.8;

  font-size: 14px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;

    gap: 35px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 30px 16px;
  }

  .about-image img {
    height: 320px;
  }

  .about-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 520px) {
  .about-content h2 {
    font-size: 25px;
  }

  .accordion-btn {
    font-size: 16px;

    padding: 16px 18px;
  }
}

/* Normal Section */

/* =========================
   IMPACT SLIDER SECTION
========================= */

.impact-slider-section {
  width: 100%;
  padding: 0;

  overflow: hidden;

  position: relative;
}

/* =========================
   CONTAINER
========================= */

.impact-slider-container {
  width: 100%;

  position: relative;
}

/* =========================
   SLIDES
========================= */

.impact-slide {
  display: none;

  grid-template-columns: 1fr 1fr;

  align-items: center;

  min-height: 700px;

  position: relative;

  overflow: hidden;
}

/* ACTIVE SLIDE */

.impact-slide.active {
  display: grid;
}

/* =========================
   BACKGROUND IMAGE
========================= */
.impact-slide::before {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    135deg,
    rgba(144, 110, 12, 0.28),
    rgba(237, 206, 23, 0.12)
  );

  z-index: 1;
}

/* =========================
   LEFT CONTENT
========================= */

.impact-content {
  position: relative;

  z-index: 3;

  padding: 70px;

  display: flex;

  justify-content: center;
}

.impact-card {
  background: rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.15);

  padding: 50px;

  border-radius: 35px;

  max-width: 520px;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

.impact-icon {
  font-size: 52px;

  margin-bottom: 18px;
}

.impact-card h4 {
  font-size: 18px;

  color: #000000;

  letter-spacing: 1px;

  margin-bottom: 20px;
}

.impact-card h2 {
  font-size: 72px;

  color: #edce17;

  margin-bottom: 20px;

  line-height: 1;
}

.impact-card p {
  color: rgba(0, 0, 0, 0.92);

  line-height: 1.9;

  font-size: 16px;

  margin-bottom: 28px;
}

.impact-card a {
  display: inline-block;

  text-decoration: none;

  background: linear-gradient(135deg, #906e0c, #edce17);

  color: white;

  padding: 16px 28px;

  border-radius: 14px;

  font-weight: 600;

  transition: 0.3s;
}

.impact-card a:hover {
  transform: translateY(-3px);
}

/* =========================
   IMAGE SIDE
========================= */

.impact-image {
  position: relative;

  height: 100%;

  z-index: 0;
}

.impact-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

/* =========================
   BOTTOM BOX
========================= */

.impact-bottom-box {
  position: absolute;

  left: 0;

  bottom: 0;

  width: 75%;

  background: rgba(255, 255, 255, 0.92);

  backdrop-filter: blur(10px);

  padding: 40px;

  border-top-right-radius: 35px;

  z-index: 4;
}

.impact-bottom-box h3 {
  font-size: 42px;

  line-height: 1.1;

  color: #906e0c;

  margin-bottom: 18px;
}

.impact-bottom-box p {
  color: #555;

  line-height: 1.8;
}

/* =========================
   ARROWS
========================= */

.impact-arrows {
  position: absolute;

  right: 35px;

  bottom: 35px;

  display: flex;

  flex-direction: column;

  gap: 18px;

  z-index: 20;
}

.impact-arrows button {
  width: 68px;
  height: 68px;

  border: none;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.92);

  backdrop-filter: blur(10px);

  color: #906e0c;

  font-size: 28px;

  cursor: pointer;

  transition: 0.3s;

  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.impact-arrows button:hover {
  background: #edce17;

  color: white;
}

/* =========================
   ANIMATION
========================= */

@keyframes fade {
  from {
    opacity: 0;

    transform: translateY(15px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

.impact-slide.active {
  animation: fade 0.5s ease;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .impact-slide {
    grid-template-columns: 1fr;
  }

  .impact-content {
    padding: 50px 25px 20px;
  }

  .impact-image {
    min-height: 450px;
  }

  .impact-bottom-box {
    width: 88%;
  }
}

@media (max-width: 768px) {
  .impact-slide {
    min-height: auto;
  }

  .impact-card {
    padding: 35px;

    border-radius: 25px;
  }

  .impact-card h2 {
    font-size: 52px;
  }

  .impact-bottom-box {
    width: 92%;

    padding: 25px;
  }

  .impact-bottom-box h3 {
    font-size: 28px;
  }

  .impact-arrows {
    right: 18px;

    bottom: 18px;
  }

  .impact-arrows button {
    width: 56px;
    height: 56px;

    font-size: 22px;
  }
}

@media (max-width: 520px) {
  .impact-content {
    padding: 30px 16px 15px;
  }

  .impact-card {
    padding: 28px;
  }

  .impact-card h2 {
    font-size: 42px;
  }

  .impact-card a {
    width: 100%;

    text-align: center;
  }

  .impact-bottom-box h3 {
    font-size: 22px;
  }
}

/* Certificate Section */
/* =========================
   CERTIFICATE SECTION
========================= */

.certificate-section {
  width: 100%;

  padding: 70px 20px;

  background: #fffdf7;

  text-align: center;
}

/* =========================
   CONTAINER
========================= */

.certificate-container {
  max-width: 850px;

  margin: auto;
}

/* =========================
   SUBTITLE
========================= */

.certificate-subtitle {
  color: #edce17;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 4px;

  margin-bottom: 15px;
}

/* =========================
   TITLE
========================= */

.certificate-container h2 {
  font-size: 48px;

  color: #906e0c;

  line-height: 1.2;

  margin-bottom: 22px;
}

/* =========================
   PARAGRAPH
========================= */

.certificate-text {
  font-size: 16px;

  line-height: 1.9;

  color: #666;

  margin-bottom: 35px;
}

/* =========================
   BUTTON
========================= */

.certificate-btn {
  border: none;

  background: linear-gradient(135deg, #906e0c, #edce17);

  color: white;

  padding: 16px 34px;

  border-radius: 14px;

  font-size: 15px;

  font-weight: 600;

  cursor: pointer;

  transition: 0.3s;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.certificate-btn:hover {
  transform: translateY(-3px);
}

/* =========================
   POPUP
========================= */

.certificate-popup {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.55);

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 20px;

  opacity: 0;

  visibility: hidden;

  transition: 0.3s;

  z-index: 9999;
}

.certificate-popup.active {
  opacity: 1;

  visibility: visible;
}

/* =========================
   POPUP BOX
========================= */

.certificate-popup-box {
  width: 100%;

  max-width: 520px;

  background: white;

  border-radius: 28px;

  padding: 40px 35px;

  position: relative;

  animation: popupShow 0.35s ease;
}

/* =========================
   CLOSE BUTTON
========================= */

.close-popup {
  position: absolute;

  top: 15px;
  right: 18px;

  border: none;

  background: transparent;

  font-size: 34px;

  color: #906e0c;

  cursor: pointer;
}

/* =========================
   POPUP TITLE
========================= */

.certificate-popup-box h3 {
  font-size: 32px;

  color: #906e0c;

  margin-bottom: 28px;
}

/* =========================
   LIST
========================= */

.certificate-list {
  display: flex;

  flex-direction: column;

  gap: 16px;
}

.certificate-list a {
  text-decoration: none;

  background: #fff8d7;

  color: #906e0c;

  padding: 16px 20px;

  border-radius: 14px;

  font-weight: 500;

  transition: 0.3s;

  border: 1px solid rgba(237, 206, 23, 0.35);
}

.certificate-list a:hover {
  background: #edce17;

  color: white;
}

/* =========================
   ANIMATION
========================= */

@keyframes popupShow {
  from {
    opacity: 0;

    transform: scale(0.9);
  }

  to {
    opacity: 1;

    transform: scale(1);
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .certificate-section {
    padding: 55px 18px;
  }

  .certificate-container h2 {
    font-size: 34px;
  }

  .certificate-popup-box {
    padding: 35px 24px;
  }
}

@media (max-width: 520px) {
  .certificate-container h2 {
    font-size: 28px;
  }

  .certificate-text {
    font-size: 15px;
  }

  .certificate-btn {
    width: 100%;
  }
}

/* Director Message */
```css
/* =========================
   FOUNDER / DIRECTOR SECTION
========================= */

.director-section{
    width:100%;
    padding:60px 20px;
    background:#fffdf7;
    overflow:hidden;
}

.director-container{
    max-width:1250px;
    margin:auto;
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    align-items:center;
    gap:50px;
}

/* CONTENT */

.director-subtitle{
    color:#edce17;
    font-size:13px;
    font-weight:700;
    letter-spacing:3px;
    margin-bottom:14px;
}

.director-content h2{
    font-size:42px;
    color:#906e0c;
    line-height:1.2;
    margin-bottom:10px;
}

.director-content h3{
    font-size:22px;
    color:#555;
    margin-bottom:20px;
    font-weight:600;
}

.director-message{
    color:#666;
    font-size:15px;
    line-height:1.9;
    text-align:justify;
}

.director-quote{
    margin-top:25px;
    padding-left:18px;
    border-left:4px solid #edce17;
    color:#906e0c;
    font-size:16px;
    line-height:1.8;
    font-style:italic;
    font-weight:600;
}

/* IMAGE */

.director-image-box{
    display:flex;
    justify-content:center;
    align-items:center;
}

.director-image-circle{
    width:320px;
    height:320px;
    border-radius:50%;
    padding:8px;
    background:linear-gradient(135deg,#906e0c,#edce17);
    box-shadow:0 18px 40px rgba(0,0,0,.10);
    position:relative;
}

.director-image-circle::before{
    content:"";
    position:absolute;
    inset:8px;
    border-radius:50%;
    border:2px solid rgba(255,255,255,.4);
}

.director-image-circle img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
}

/* RESPONSIVE */

@media(max-width:992px){

    .director-container{
        grid-template-columns:1fr;
        text-align:center;
        gap:35px;
    }

    .director-message{
        text-align:left;
    }

    .director-quote{
        text-align:left;
    }
}

@media(max-width:768px){

    .director-section{
        padding:40px 18px;
    }

    .director-content h2{
        font-size:34px;
    }

    .director-content h3{
        font-size:20px;
    }

    .director-image-circle{
        width:240px;
        height:240px;
    }
}

@media(max-width:520px){

    .director-content h2{
        font-size:28px;
    }

    .director-subtitle{
        font-size:12px;
        letter-spacing:2px;
    }

    .director-message{
        font-size:14px;
        line-height:1.8;
    }

    .director-quote{
        font-size:14px;
    }

    .director-image-circle{
        width:200px;
        height:200px;
        padding:6px;
    }
}
```

/*  */
/* =========================
   WORK SECTION
========================= */

.work-section {
  width: 100%;

  padding: 65px 20px;

  background: #fffdf7;

  overflow: hidden;
}

/* =========================
   CONTAINER
========================= */

.work-container {
  max-width: 1300px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 55px;

  align-items: start;
}

/* =========================
   LEFT CONTENT
========================= */

.work-subtitle {
  color: #edce17;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 4px;

  margin-bottom: 14px;
}

.work-content h2 {
  font-size: 46px;

  color: #906e0c;

  line-height: 1.2;

  margin-bottom: 20px;
}

.work-text {
  color: #666;

  line-height: 1.9;

  font-size: 16px;

  max-width: 620px;
}

/* =========================
   SIDEBAR
========================= */

.work-sidebar {
  display: flex;

  flex-direction: column;
}

/* =========================
   WORK BOX
========================= */

.work-box {
  display: flex;

  align-items: flex-start;

  gap: 18px;

  padding: 22px;

  background: white;

  border-radius: 24px;

  border: 1px solid rgba(237, 206, 23, 0.18);

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);

  margin-bottom: 20px;

  transition: 0.3s;
}

.work-box:hover {
  transform: translateY(-4px);

  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

/* =========================
   NUMBER
========================= */

.work-box span {
  min-width: 58px;
  height: 58px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 16px;

  background: linear-gradient(135deg, #906e0c, #edce17);

  color: white;

  font-size: 19px;

  font-weight: 700;
}

/* =========================
   TEXT
========================= */

.work-box h3 {
  color: #906e0c;

  font-size: 23px;

  margin-bottom: 6px;
}

.work-box p {
  color: #666;

  line-height: 1.8;

  font-size: 15px;
}

/* =========================
   EXTRA WORK
========================= */

.extra-work {
  max-height: 0;

  overflow: hidden;

  transition: 0.5s ease;
}

/* ACTIVE */

.extra-work.active {
  max-height: 600px;
}

/* =========================
   BUTTON
========================= */

.work-toggle-btn {
  border: none;

  background: linear-gradient(135deg, #906e0c, #edce17);

  color: white;

  padding: 15px 24px;

  border-radius: 14px;

  font-size: 15px;

  font-weight: 600;

  cursor: pointer;

  transition: 0.3s;

  width: fit-content;

  margin-top: 6px;
}

.work-toggle-btn:hover {
  transform: translateY(-3px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .work-container {
    grid-template-columns: 1fr;

    gap: 40px;
  }
}

@media (max-width: 768px) {
  .work-section {
    padding: 55px 18px;
  }

  .work-content h2 {
    font-size: 36px;
  }

  .work-box {
    padding: 20px;

    border-radius: 20px;
  }
}

@media (max-width: 520px) {
  .work-content h2 {
    font-size: 28px;
  }

  .work-text {
    font-size: 15px;
  }

  .work-box {
    gap: 14px;
  }

  .work-box span {
    min-width: 50px;
    height: 50px;

    font-size: 16px;

    border-radius: 14px;
  }

  .work-box h3 {
    font-size: 20px;
  }

  .work-toggle-btn {
    width: 100%;

    text-align: center;
  }
}
