*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    background-color: var(--back-ground);
    color: #222;
    overflow-x: hidden;
    width: 100%;
}

.mission {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 70%;
    margin: 2rem auto;
}

.mission h1 {
    font-size: var(--fs-h2);
    color: teal;
}

.mission p {
    font-size: var(--fs-ui);
    font-weight: 500;
    color: var(--navy-blue);
    text-align: justify;
    line-height: 2rem;
}

/* =========================
         FOUNDER SECTION (MOBILE)
      ========================= */

.founder {
    width: 100%;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    gap: 1rem;
    height: auto;
}

.founder img {
    width: 90%;
    margin: 0.5rem auto;
    min-height: 300px;
    height: auto;
    /* border-radius: 1.5rem; */
    object-fit: cover;
    background-color: rgb(241, 241, 241);
    /* box-shadow: 0px 5px 15px grey; */
}

/* Title */
.content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
}

.content h1 {
    color: rgb(1, 85, 85);
}

/* Main Content */
.main_content {
    padding: 1.5rem;
    line-height: clamp(1.4, 1.2 + 0.5vw, 1.7);
    text-align: justify;
}

.main_content p {
    font-size: var(--fs-ui);
    font-weight: 500;
    color: var(--navy-blue);
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    background-color: rgba(0, 128, 0, 0.708);
    margin: 2rem auto;
    /* padding: auto 2rem; */
}

.wrapper h1 {
    text-align: center;
    color: white;
    margin-top: 2rem;
    font-size: var(--fs-h1);
}

.about_spl {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    gap: 2rem;
    color: rgb(31, 33, 33);
    padding: 1.5rem 1rem;
    font-size: var(--fs-p);
}

.para1,
.para2 {
    width: 90%;
    margin: auto;
    padding: 1.5rem;
    text-align: justify;
    align-content: center;
    border-radius: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.para1 {
    background-image: linear-gradient(135deg, #4fa3a5, #2e8b8b);
}

.para2 {
    background: rgb(215, 206, 83);
}

/* =========================
       ACHIEVMENTS PAGE CSS
       ========================= */
/* =========================
       SECTION 1 – HEADING (MOBILE)
       ========================= */
.sect1 {
    text-align: center;
    margin: 6vh auto 3vh;
    padding: 0 1rem;
    line-height: 2.4rem;
    color: #043344;
}

h3 {
    font-size: var(--fs-p);
    line-height: 1.2rem;
    color: #0b5566;
}

/* =========================
   SECTION 2 – LIST (MOBILE)
========================= */
.sect2 {
    display: grid;
    grid-template-columns: 1fr;
    /* SINGLE COLUMN */
    gap: 1rem;
    width: 100%;
    padding: 0 1rem;
}

.inside_sect2 {
    padding: 1rem;
    border-radius: 0.75rem;
    line-height: 1.5rem;
    font-size: var(--fs-ui);
    color: #052834;
    font-weight: 500;
    letter-spacing: 0.4px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    position: relative;
    text-align: justify;
}

/* underline accent */
.inside_sect2::after {
    content: "";
    display: block;
    height: 3px;
    width: 40px;
    background: #4cf04c;
    margin-top: 8px;
    border-radius: 10px;
    transition: width 0.5s ease-in;
}

.inside_sect2:hover::after {
    width: 100%;
}

/* =========================
   SECTION 3 – INFO BLOCKS (MOBILE)
========================= */
.sect3 {
    display: grid;
    grid-template-columns: 1fr;
    /* SINGLE COLUMN */
    gap: 1rem;
    margin: 4vh auto;
    padding: 1.2rem;
    background: linear-gradient(135deg, #052834, #0b5566);
}

.inside-sect3 {
    background: rgba(255, 255, 255, 0.08);
    padding: 1rem;
    border-radius: 0.75rem;
    color: #ffffff;
    line-height: 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-align: justify;
}

/* =========================
   Awards intro section (MOBILE)
========================= */
.award_section {
    background-color: var(--sage-green);
    color: #ffffff;
    padding: 2rem;
    margin: 4vh auto;
    border-radius: 12px;
    max-width: 100%;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    animation: fadeInDown 1.2s ease-in-out;
}

.award_section p {
    width: 95%;
    margin: auto;
    text-align: justify;
    line-height: 1.7rem;
    font-weight: 500;
    font-size: var(--fs-ui);
}

/* =========================
   Awards images grid (MOBILE)
========================= */
.award_images {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    width: 95%;
    margin: auto;
    animation: fadeInUp 1.5s ease-in-out;
}

/* Individual image card */
.images {
    flex: 1 1 100%;
    max-width: 90%;
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: zoomIn 1s ease-in-out;
}

/* Hover effect */
.images:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
}

/* Image styling */
.images img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    border: 5px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.8rem;
    transition: transform 0.5s ease;
}

/* Image hover zoom */
.images img:hover {
    transform: rotate(2deg) scale(1.03);
}

/* Caption styling */
.images .caption {
    font-size: var(--fs-p);
    color: #2c5f2d;
    font-weight: 500;
    line-height: 1.4;
    /* opacity: 0; */
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
   /* =========================
   CONTACT FORM (MOBILE FIRST)
========================= */
 .body {
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
      }
      .contact-btn {
        background: #ffffff;
        width: 100%;
        padding: 18px;
        border-radius: 8px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        animation: slideUp 0.8s ease;
      }

      /* Animation */
      @keyframes slideUp {
        from {
          transform: translateY(30px);
          opacity: 0;
        }
        to {
          transform: translateY(0);
          opacity: 1;
        }
      }

      /* Heading */
      .contact-form h1 {
        text-align: center;
        margin-bottom: 16px;
        color: #3a7bd5;
        font-size: 1.4rem;
      }

      /* Form groups */
      .form-group {
        margin-bottom: 14px;
      }

      /* Labels */
      label {
        display: block;
        margin-bottom: 4px;
        font-weight: 600;
        font-size: 0.9rem;
        color: #333;
      }

      /* Inputs */
      input,
      textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        background-color: #e1e0e0;
        border-radius: 6px;
        font-size: 0.9rem;
        transition: border-color 0.3s, box-shadow 0.3s;
      }

      input:focus,
      textarea:focus {
        outline: none;
        border-color: #f9d423;
        box-shadow: 0 0 4px rgba(249, 212, 35, 0.6);
      }

      textarea {
        resize: none;
        min-height: 100px;
      }

      /* Error text */
      .error {
        color: red;
        font-size: 0.75rem;
        margin-top: 3px;
      }

      /* Button */
      button {
        width: 100%;
        padding: 12px;
        background: #f9d423;
        border: none;
        border-radius: 6px;
        font-size: 1rem;
        font-weight: 600;
        color: #333;
        cursor: pointer;
        transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
      }
      
    /* =========================
      EXPOSURE VISIT PAGE CSS
       ========================= */
       /* MAIN SECTION */
.expo_visit {
 background: var(--bubblegum-pink);
  border-radius: 16px;
  padding: 25px;
  margin: 40px auto;
  max-width: 1200px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);

  display: flex;
  flex-direction: column;   /* Mobile default */
  gap: 25px;
}

/* IMAGE */
.expo_visit img {
  width: 100%;
  max-width: 500px;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
  margin: auto;
  transition: transform 0.4s ease;
}

.expo_visit img:hover {
  transform: scale(1.05);
}

/* TEXT */
.expo_visit p {
  font-size: var(--fs-ui);
  font-weight: 500;
  color: #060606;
  line-height: 1.7;
  text-align: justify;
}

/* FIRST INTRO SECTION */
.expo_visit:first-of-type {
  background: var(--bubblegum-pink);
  text-align: justify;
}

/* SPECIAL PINK SECTION */
.visit {
  background: var(--bubblegum-pink);
}

#visit_p {
  color: black;
}
@media (min-width: 768px) {
    .founder {
        align-items: center;
    }

    .about_spl {
        flex-direction: row;
    }

    .wrapper h1 {
        font-size: 2.5rem;
    }

    /* =========================
       ACHIEVMENTS PAGE CSS
       ========================= */
    .sect1 {
        margin: 7vh auto 4vh;
        line-height: 2.8rem;
    }

    .sect2 {
        grid-template-columns: repeat(2, 1fr);
        width: 90%;
        margin: 0 auto;
        gap: 1.2rem;
    }

    .sect3 {
        grid-template-columns: repeat(2, 1fr);
        padding: 1.5rem;
    }

    /* =========================
   Awards intro section (MOBILE)
========================= */
    .award_section {
        margin: 5vh auto;
        max-width: 1000px;
    }

    .award_section p {
        width: 80%;
        font-size: var(--fs-p);
    }

    .images {
        flex: 1 1 280px;
        max-width: 300px;
    }
     /* =========================
   CONTACT FORM (MOBILE FIRST)
========================= */
 .contact-btn {
          max-width: 600px;
          padding: 22px;
          margin: auto;
        }

        .contact-form h1 {
          font-size: 1.6rem;
        }

        input,
        textarea {
          font-size: 1rem;
        }
          /* =========================
      EXPOSURE VISIT PAGE CSS
       ========================= */ 
       .expo_visit {
    flex-direction: row;     /* Image & text side by side */
    align-items: center;
    justify-content: space-between;
  }

  /* Reverse layout for alternate sections (optional) */
  .expo_visit:nth-child(even) {
    flex-direction: row-reverse;
  }

  .expo_visit p {
    width: 55%;
    font-size: 17px;
  }

  .expo_visit img {
    width: 40%;
  }
}

@media (min-width: 1024px) {
    .content {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 2rem;
    }

    .founder {
        width: 100%;
        margin: 2rem auto;
        min-height: 70vh;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        background-color: rgba(241, 241, 241, 0.374);
        border-radius: 10px;
        gap: 2rem;
        padding: 0 2rem;
    }

    .founder img {
        width: 30%;
        margin: 2rem 0px;
        height: 500px;
        /* height: auto; */
        border-radius: 7px;
        object-fit: cover;
        background-color: rgb(241, 241, 241);
        /* border: 0.4rem solid white; */
        /* box-shadow: 0px 5px 15px grey; */
    }

    .main_content {
        width: 65%;
        /* line-height: 1.4rem; */
        /* background-color: #51add14c; */
        /* padding: 1.3rem; */
        /* border-radius: 1.5rem;
          box-shadow: 0px 5px 15px grey; */
    }

    .main_content p {
        font-size: var(--fs-ui);
    }

    .about_spl {
        flex-direction: row;
        height: auto;
    }

    .para1 {
        background: linear-gradient(to bottom right,
                rgb(244, 132, 91),
                rgb(244, 151, 117));
    }

    .para2 {
        line-height: 1.8rem;
        background: rgb(215, 206, 83);
    }

    .para1,
    .para2 {
        font-size: var(--fs-ui);
        width: 50%;
    }

    .about_spl h1 {
        font-size: var(--fs-h1);
    }

    /* =========================
       ACHIEVMENTS PAGE CSS
       ========================= */
    .sect1 {
        margin: 8vh auto 5vh;
        line-height: 3.2rem;
    }

    h3 {
        font-size: var(--fs-p);
    }

    .sect2 {
        width: 80%;
        gap: 1.5rem;
    }

    .inside_sect2 {
        font-size: 1rem;
    }

    .sect3 {
        gap: 1.5rem;
        padding: 2rem;
    }

    .inside-sect3 {
        line-height: 1.7rem;
    }
     /* =========================
   CONTACT FORM (MOBILE FIRST)
========================= */
.contact-btn {
          max-width: 720px;
          padding: 25px;
        }

        .contact-form h1 {
          font-size: 1.8rem;
        }
    
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}