/* RESET CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  font-size: 16px;
  letter-spacing: -0.02em;
  font-weight: 500;
}
img {
  display: block;
  max-width: 100%;
}
/* END RESET CSS */
body {
  font-family: "Manrope", sans-serif;
}
/* comon css */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
:root {
  --primary-color: #144d56;
  --secondary-color: #5baaa5;
  --secondary-light-color: #cbf8ff;
  --light-bg-color: #e7edee;
  --black-color: #000;
  --white-color: #fff;
}
p {
  font-size: clamp(16px, 1.5vw, 20px);
  opacity: 0.8;
}
h2 {
  font-size: clamp(28px, 4vw, 45px);
  font-weight: 500;
  line-height: 1.1;
}
/* header */
header {
  padding: 20px 0;

  .container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    .Logo {
      width: 170px;

      @media (max-width: 991px) {
        width: 150px;
      }
    }

    /* ------------------- MENU ------------------- */
    .menu {
      ul {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 24px;

        li {
          color: var(--black-color);

          &:hover {
            color: var(--secondary-color);
          }
        }
      }

      /* MOBILE MENU */
      @media (max-width: 991px) {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #fff;
        padding: 20px 0;
        z-index: 999;
        display: none; /* hidden by default */

        ul {
          flex-direction: column;
          gap: 18px;

          li {
            padding: 10px 0;
          }
        }
      }
    }

    /* ------------------- MENU RIGHT BUTTON ------------------- */
    .menu-right {
      display: flex;
      align-items: center;
      gap: 10px;
      border: 1px solid #000;
      background-color: var(--primary-color);
      color: var(--white-color);
      padding: 10px 20px;
      transition: 0.3s ease;

      &:hover {
        background-color: var(--white-color);
        color: var(--primary-color);
        border: 1px solid var(--primary-color);
      }

      @media (max-width: 991px) {
        display: none;
      }
    }

    /* ------------------- TOGGLE BUTTON ------------------- */
    .toggle-btn {
      width: 30px;
      height: 25px;
      display: none;
      flex-direction: column;
      justify-content: space-between;
      cursor: pointer;

      span {
        height: 3px;
        background-color: var(--black-color);
        border-radius: 2px;
        transition: 0.3s ease;
      }

      @media (max-width: 991px) {
        display: flex;
      }
    }
  }

  /* ------------------- ACTIVE STATE (MENU OPEN) ------------------- */
  &.active {
    .container {
      .menu {
        @media (max-width: 991px) {
          display: block; /* show menu */
        }
      }

      .toggle-btn {
        span:nth-child(1) {
          transform: translateY(9px) rotate(45deg);
        }

        span:nth-child(2) {
          opacity: 0;
        }

        span:nth-child(3) {
          transform: translateY(-13px) rotate(-45deg);
        }
      }
    }
  }
}
/* BANNER */
.banner {
  .banner-slider {
    .slide {
      height: 100vh;
      width: 100%;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: end;
      position: relative;
      @media (max-width: 575px) {
        height: 85vh;
      }

      &:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          to bottom,
          rgba(20, 77, 86, 0) 0%,
          rgba(20, 77, 86, 0.9) 100%
        );
      }

      .Banner-Cnt {
        width: 100%;
        position: relative;
        z-index: 2;

        h1 {
          color: var(--white-color);
          font-size: 68px;
          max-width: 570px;
          font-weight: 500;
          letter-spacing: -2px;
          line-height: 78px;
          margin-bottom: 67px;
          position: relative;
          z-index: 99;

          /* Large desktops */
          @media (max-width: 1400px) {
            font-size: 70px;
            line-height: 80px;
          }

          /* Laptop / Tablet */
          @media (max-width: 991px) {
            font-size: 55px;
            line-height: 63px;
            margin-bottom: 120px;
          }

          /* Small tablets */
          @media (max-width: 768px) {
            font-size: 48px;
            line-height: 56px;
            margin-bottom: 110px;
          }

          /* Mobile */
          @media (max-width: 575px) {
            font-size: 42px;
            line-height: 48px;
            margin-bottom: 10px;
            text-align: center;
            width: 100%;
            padding: 0 15px;
          }

          /* Extra small screens */
          @media (max-width: 400px) {
            font-size: 36px;
            line-height: 44px;
            margin-bottom: 10px;
          }
        }

        .Bottom-content {
          display: flex;
          align-items: center;
          justify-content: space-between;
          margin-bottom: 50px;
          position: relative;
          z-index: 999;

          p {
            max-width: 530px;
            color: var(--white-color);
            font-size: 18px;
            line-height: 26px;

            @media (max-width: 991px) {
              max-width: 70%;
            }

            @media (max-width: 575px) {
              max-width: 100%;
              text-align: center;
            }
          }

          a {
            display: flex;
            align-items: center;
            gap: 10px;
            background-color: var(--white-color);
            color: var(--primary-color);
            padding: 10px 20px;
            transition: 0.3s ease;
            border: none;

            &:hover {
              background-color: var(--primary-color);
              color: var(--white-color);
            }

            @media (max-width: 991px) {
              margin-left: 20px;
            }

            @media (max-width: 575px) {
              margin: 20px auto 0 auto;
              justify-content: center;
            }
          }

          /* Column layout on mobile */
          @media (max-width: 575px) {
            flex-direction: column;
            text-align: center;
            gap: 0px;
            margin-bottom: 20px;
          }
        }
      }
    }
  }
}
/* HOME ABOUT */
.HomeAbbout {
  margin: 90px 0;

  @media (max-width: 991px) {
    margin: 60px 0;
  }
  @media (max-width: 576px) {
    margin: 40px 0;
  }

  .FlexWrap {
    display: flex;
    align-items: start;
    gap: 35px;

    @media (max-width: 991px) {
      flex-direction: column;
      gap: 50px;
    }

    @media (max-width: 576px) {
      gap: 35px;
    }

    /* ------------------ */
    /* FIRST COLUMN        */
    /* ------------------ */
    .FirstColumn {
      width: calc(20% - 16px);

      @media (max-width: 991px) {
        width: 100%;
        text-align: center;
      }

      h4 {
        font-weight: 400;
        text-decoration: underline;
        color: var(--primary-color);
        font-size: 20px;
        margin-bottom: 70px;
        text-transform: capitalize;

        @media (max-width: 576px) {
          font-size: 18px;
          margin-bottom: 20px;
        }
      }

      img {
        width: 100%;
        height: auto;
      }

      p {
        margin-top: 18px;
      }
    }

    /* ------------------ */
    /* SECOND COLUMN       */
    /* ------------------ */
    .SecondColumn {
      width: calc(60% - 16px);
      padding: 0px 50px;

      @media (max-width: 991px) {
        width: 100%;
        padding: 0 25px;
        text-align: center;
      }

      @media (max-width: 576px) {
        padding: 0 10px;
      }

      h2 {
        margin-bottom: 30px;
      }

      p {
        margin-bottom: 35px;

        @media (max-width: 576px) {
          margin-bottom: 25px;
        }
      }

      .Buttons {
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: space-between;

        @media (max-width: 991px) {
          justify-content: center;
        }

        @media (max-width: 576px) {
          flex-direction: column;
          gap: 15px;
        }

        span {
          display: inline-block;
          background-color: var(--black-color);
          height: 1px;
          width: 65%;
          opacity: 0.6;
          @media (max-width: 1040px) {
            width: 60%;
          }

          @media (max-width: 576px) {
            width: 100%;
          }
        }

        a {
          display: inline-flex;
          align-items: center;
          gap: 10px;
          background-color: var(--white-color);
          color: var(--primary-color);
          padding: 10px 20px;
          transition: 0.3s ease;
          border: 1px solid var(--primary-color);

          &:hover {
            background-color: var(--primary-color);
            color: var(--white-color);
          }
        }
      }
    }

    /* ------------------ */
    /* LAST COLUMN         */
    /* ------------------ */
    .LastColumn {
      width: calc(20% - 16px);

      @media (max-width: 991px) {
        width: 100%;
        text-align: center;
      }

      h4 {
        font-size: 15px;
        text-align: end;
        margin-bottom: 70px;
        font-weight: 400;
        text-transform: capitalize;

        @media (max-width: 991px) {
          text-align: center;
          margin-bottom: 20px;
        }

        @media (max-width: 576px) {
          font-size: 14px;
        }
      }

      img {
        width: 100%;
        height: auto;
      }
    }
  }
}
/* OUR ACTVITIES HOME */
.HomeActivities {
  margin: 70px 0;
  background-color: var(--light-bg-color);
  padding: 55px 0;

  @media (max-width: 991px) {
    margin: 50px 0;
    padding: 40px 0;
  }

  @media (max-width: 576px) {
    margin: 35px 0;
    padding: 30px 0;
  }

  .ActivitesSlider {
    width: 95%;
    margin: 0 auto;
    margin-top: 40px;

    @media (max-width: 991px) {
      width: 100%;
      margin-top: 30px;
    }

    @media (max-width: 576px) {
      margin-top: 20px;
      .slick-list {
        padding: 0 10% 0 0 !important;
      }
    }

    li {
      margin: 0px 10px;

      @media (max-width: 576px) {
        margin: 0px 5px;
      }

      img {
        border-radius: 18px;
        width: 100%;
        height: auto;

        @media (max-width: 576px) {
          border-radius: 8px;
        }
      }
      .Bottom-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 12px;

        h3 {
          font-size: 26px;
          font-weight: 500;
        }

        i {
          transform: rotate(-40deg);
          font-size: 20px;
        }

        /* ---------- Responsive ---------- */
        @media (max-width: 768px) {
          h3 {
            margin-bottom: 8px;
            font-size: 20px;
          }

          i {
            font-size: 22px;
          }
        }
      }
    }
  }
}
/* OUR APPROACH */
.OurApproch {
  h2 {
    text-align: center;
    margin-bottom: 50px;

    @media (max-width: 576px) {
      margin-bottom: 30px;
      font-size: 24px;
    }
  }

  .FlexWrap {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-flow: row wrap;

    @media (max-width: 576px) {
      gap: 16px;
    }

    li {
      border-radius: 12px;
      width: calc(33.333% - 16px);
      background-color: var(--secondary-light-color);
      padding: 40px;
      transition: cubic-bezier(0.075, 0.82, 0.165, 1) 1s;

      /* RESPONSIVE CENTER ALIGN */
      @media (max-width: 991px) {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      @media (max-width: 991px) {
        width: calc(50% - 16px);
        padding: 30px;
      }

      @media (max-width: 576px) {
        width: 100%;
        padding: 25px;
      }

      &:hover {
        background-color: var(--primary-color);

        i,
        h3 {
          color: var(--white-color);
        }
      }

      i {
        font-size: 40px;
        color: var(--primary-color);

        @media (max-width: 576px) {
          font-size: 32px;
        }
      }

      h3 {
        font-size: 20px;
        font-weight: 500;
        color: var(--primary-color);
        margin-top: 28px;

        @media (max-width: 576px) {
          font-size: 18px;
        }
      }
    }
  }
}
/* WHY CHOOSE US */
.WhyChooses {
  margin: 80px 0px;
  @media (max-width: 575px) {
    margin: 40px 0px;
  }

  .Flexwrap {
    display: flex;
    align-items: start;
    gap: 35px;

    @media (max-width: 991px) {
      flex-direction: column;
      gap: 25px;
    }

    .Image {
      width: 50%;

      @media (max-width: 991px) {
        width: 100%;
      }

      img {
        width: 100%;
        border-radius: 12px;
      }
    }

    .Content {
      width: 50%;

      @media (max-width: 991px) {
        width: 100%;
        text-align: center;
      }

      h4 {
        font-size: 20px;
        color: var(--primary-color);
        margin-bottom: 10px;

        @media (max-width: 576px) {
          font-size: 18px;
        }
      }

      h2 {
        font-size: 34px;
        margin-bottom: 18px;

        @media (max-width: 576px) {
          font-size: 26px;
        }
      }

      p {
        margin-bottom: 35px;

        @media (max-width: 576px) {
          margin-bottom: 25px;
        }
      }

      /* Accordion */
      .Accordion {
        .Accordion-item {
          border-bottom: 1px solid #ddd;
          padding: 18px 0;

          &.active {
            .Accordion-header i {
              transform: rotate(-35deg);
              color: var(--primary-color);
            }

            .Accordion-content {
              max-height: 300px;
              opacity: 1;
              margin-top: 10px;
            }
          }

          .Accordion-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            gap: 10px;

            @media (max-width: 991px) {
              text-align: left;
            }

            h3 {
              font-size: 18px;
              font-weight: 500;
            }

            i {
              font-size: 20px;
              transition: 0.3s ease;

              @media (max-width: 576px) {
                font-size: 18px;
              }
            }
          }

          .Accordion-content {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: all 0.4s ease;
            padding-right: 10px;
            text-align: left;

            p {
              margin-top: 10px;
            }
          }
        }
      }
    }
  }
}
/* HIGLATE AND IMPACT FULL WORK */
.Highligt {
  margin-top: 85px;
  @media (max-width: 575px) {
    margin-top: 40px;
  }

  .Title {
    text-align: center;
    margin-bottom: 60px;

    h2 {
      margin-bottom: 13px;
    }

    p {
      width: 90%;
      margin: 0 auto;

      @media (max-width: 575px) {
        width: 100%;
      }
    }
  }

  ul {
    display: flex;
    align-items: start;
    gap: 30px;

    @media (max-width: 991px) {
      flex-wrap: wrap;
      gap: 20px;
    }

    @media (max-width: 575px) {
      flex-direction: column;
      gap: 25px;
    }

    li {
      width: calc(33.333% - 12px);
      display: flex;
      flex-direction: column;
      gap: 25px;

      /* TABLET 2 COLUMNS */
      @media (max-width: 991px) {
        width: 100%;
        flex-direction: row;
        gap: 24px;
      }

      /* MOBILE 1 COLUMN */
      @media (max-width: 575px) {
        width: 100%;
        text-align: center;
        flex-direction: column;
      }

      img {
        border-radius: 20px;
        width: 100%;
        @media (max-width: 991px) {
          width: calc(50% - 12px);
          height: auto;
        }
        @media (max-width: 575px) {
          width: 100%;
        }
      }

      .content {
        padding: 60px 40px;
        @media (max-width: 991px) {
          width: calc(59% - 12px);
        }
        @media (max-width: 767px) {
          padding: 40px 25px;
        }

        @media (max-width: 575px) {
          padding: 25px 20px;
          width: 100%;
        }

        h3 {
          margin: 10px 0;
          font-size: 26px;
          font-weight: 500;

          @media (max-width: 575px) {
            font-size: 22px;
          }
        }

        h1 {
          font-size: 50px;
          color: var(--secondary-color);
          font-weight: 700;
          line-height: 44px;

          @media (max-width: 575px) {
            font-size: 40px;
            line-height: 38px;
          }
        }
      }
    }
  }
}
/* PAYMENT SECTION */
/* .Upisection {
  margin: clamp(40px, 8vw, 85px) 0;

  .FlexWrap {
    display: flex;
    align-items: stretch;
    gap: 24px;
    flex-wrap: wrap;

    .QrCode,
    .AccountDetails {
      width: calc(50% - 12px);
      background-color: #f9fffe;
      border-radius: 18px;
      border: 1px solid #b8b8b8;
      padding: clamp(20px, 4vw, 40px);
      display: flex;
      flex-direction: column;
    }
    .QrCode {
      text-align: center;

      .qr {
        width: clamp(120px, 40%, 220px);
        margin: 0 auto;
      }

      h4 {
        font-size: clamp(18px, 2.5vw, 25px);
        font-weight: 600;
        margin-bottom: clamp(10px, 2vw, 20px);
      }

      ul {
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: center;
        margin-top: 20px;

        li {
          background-color: var(--secondary-color);
          border-radius: 20px;
          padding: 4px 15px;
          font-size: clamp(12px, 1.6vw, 16px);
          color: var(--white-color);
          font-weight: 600;
        }
      }

      p {
        font-size: clamp(12px, 1.4vw, 14px);
        margin-top: 10px;
      }
    }

    .AccountDetails {
      h4 {
        font-size: clamp(18px, 2.5vw, 25px);
        font-weight: 600;
        margin-bottom: clamp(20px, 3vw, 40px);
        text-align: center;
      }

      ul {
        li {
          display: flex;
          align-items: center;
          justify-content: space-between;
          background-color: var(--secondary-light-color);
          margin-bottom: 10px;
          padding: clamp(6px, 1.2vw, 10px) clamp(10px, 2vw, 15px);
          border-radius: 8px;
          border-left: 2px solid var(--primary-color);
          color: var(--primary-color);
          font-weight: 500;
          font-size: clamp(13px, 1.5vw, 16px);

          span {
            font-weight: 600;
          }
        }
      }
    }
    @media (max-width: 768px) {
      .QrCode,
      .AccountDetails {
        width: 100%;
      }
    }

    @media (max-width: 480px) {
      gap: 18px;

      .QrCode,
      .AccountDetails {
        padding: 20px;
      }
    }
  }

  .Usp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
    flex-wrap: wrap;

    li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: clamp(14px, 1.6vw, 18px);

      i {
        font-size: clamp(18px, 2vw, 25px);
        color: var(--secondary-color);
      }
    }

    @media (max-width: 768px) {
      justify-content: center;
      text-align: center;

      li {
        justify-content: center;
      }
    }

    @media (max-width: 480px) {
      gap: 15px;

      li {
        font-size: 14px;

        i {
          font-size: 18px;
        }
      }
    }
  }
} */

.Upisection {
  margin: clamp(40px, 8vw, 85px) 0;

  .FlexWrap {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;

    .QrCode,
    .AccountDetails {
      width: 100%;
      background-color: #f9fffe;
      border-radius: 18px;
      border: 1px solid #b8b8b8;
      padding: clamp(20px, 4vw, 40px);
      display: flex;
      flex-direction: column;
    }

    .AccountDetails {
      h4 {
        font-size: clamp(18px, 2.5vw, 25px);
        font-weight: 600;
        margin-bottom: clamp(20px, 3vw, 40px);
        text-align: center;
      }

      ul {
        li {
          display: flex;
          align-items: center;
          justify-content: space-between;
          background-color: var(--secondary-light-color);
          margin-bottom: 10px;
          padding: clamp(6px, 1.2vw, 10px) clamp(10px, 2vw, 15px);
          border-radius: 8px;
          border-left: 2px solid var(--primary-color);
          color: var(--primary-color);
          font-weight: 500;
          font-size: clamp(13px, 1.5vw, 16px);

          span {
            font-weight: 600;
          }
        }
      }
    }

    @media (max-width: 768px) {
      gap: 20px;

      .QrCode,
      .AccountDetails {
        width: 100%;
      }
    }

    @media (max-width: 480px) {
      gap: 18px;

      .QrCode,
      .AccountDetails {
        padding: 20px;
      }
    }
  }

  .Usp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
    flex-wrap: wrap;

    li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: clamp(14px, 1.6vw, 18px);

      i {
        font-size: clamp(18px, 2vw, 25px);
        color: var(--secondary-color);
      }
    }

    @media (max-width: 768px) {
      justify-content: center;
      text-align: center;

      li {
        justify-content: center;
      }
    }

    @media (max-width: 480px) {
      gap: 15px;

      li {
        font-size: 14px;

        i {
          font-size: 18px;
        }
      }
    }
  }
}

/* FOOTER */
.Footer {
  position: relative;
  background-color: var(--primary-color);
  padding: 60px 0 0;
  @media (max-width: 768px) {
    padding: 37px 0 0;
  }
  @media (max-width: 575px) {
    padding: 30px 0 0;
  }

  /* LEFT WHITE PANEL */
  &::after {
    content: "";
    background-color: var(--white-color);
    width: 32%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9;
    border-top: 2px solid var(--primary-color);
    @media (max-width: 768px) {
      width: 100%;
      height: 165px;
    }
    @media (max-width: 991px) {
      width: 100%;
      height: 165px;
    }
    @media (max-width: 575px) {
      width: 100%;
      height: 170px;
    }
    @media (max-width: 400px) {
      width: 100%;
      height: 180px;
    }
  }
  .QuickLink {
    @media (max-width: 991px) {
      margin-top: 20px;
    }
    @media (max-width: 768px) {
      margin-top: 20px;
    }
    @media (max-width: 575px) {
      margin-top: 35px;
    }
  }
  .FooterWrap {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
    z-index: 99;

    /* --- RESPONSIVE GRID FIX --- */
    @media (max-width: 991px) {
      gap: 30px;
    }
  }

  .FooterCol {
    width: calc(23% - 18px);
    position: relative;

    /* First Column larger */
    &:nth-child(1) {
      width: calc(30% - 18px);
      p {
        color: var(--black-color);
        margin-top: 15px;
      }

      @media (max-width: 991px) {
        width: 100%;
      }
    }

    /* Tablet (2 columns) */
    @media (max-width: 991px) {
      width: calc(50% - 20px);
      text-align: left;
    }

    /* Mobile (1 column) */
    @media (max-width: 576px) {
      width: 100%;
      text-align: left;
    }

    h4 {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 20px;
      color: var(--white-color);
    }
    p {
      font-size: 16px;
      color: var(--white-color);
    }

    ul {
      li {
        margin-bottom: 10px;
        line-height: 22px;
        color: var(--white-color);
        opacity: 0.9;

        i {
          margin-right: 8px;
          color: #f8cc6d;
          font-size: 18px;
        }

        a {
          color: inherit;
          transition: 0.3s;

          &:hover {
            color: var(--secondary-color);
          }
        }
      }
    }
  }

  /* ABOUT SECTION */
  .FooterAbout {
    p {
      margin-top: 15px;
      line-height: 22px;
      width: 85%;

      @media (max-width: 991px) {
        width: 100%;
      }

      @media (max-width: 576px) {
        margin: 0 auto;
      }
    }

    .footer-logo {
      width: 160px;
    }
  }

  /* SOCIAL ICONS */
  .Social {
    display: flex;
    align-items: center;
    gap: 12px;
    li {
      width: 35px;
      height: 35px;
      border-radius: 50%;
      background-color: var(--secondary-color);
      display: flex;
      align-items: center;
      justify-content: center;

      i {
        margin-right: 0 !important;
        font-size: 16px;
      }

      a {
        color: var(--white-color);
        font-size: 16px;
        line-height: 0;
      }
    }
  }

  /* BOTTOM FOOTER */
  .BottomFooter {
    border-top: 1px solid #808080;
    margin-top: 40px;
    padding: 15px 0;
    background-color: var(--white-color);
    position: relative;
    z-index: 999;

    .Flex {
      display: flex;
      justify-content: space-between;
      align-items: center;

      @media (max-width: 576px) {
        flex-direction: column;
        gap: 10px;
        text-align: center;
      }
    }

    p {
      font-size: 17px;
      color: var(--primary-color);
      @media (max-width: 576px) {
        font-size: 16px;
      }
    }

    .developed {
      display: flex;
      align-items: center;
      gap: 5px;

      img {
        width: 100px;
        @media (max-width: 576px) {
          width: 80px;
        }
      }
    }
  }
}

/* INNER BANNER */
.InnerBanner {
  width: 100%;
  height: 65vh;
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  @media (max-width: 991px) {
    height: 40vh;
  }

  &::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to left,
      rgba(20, 77, 86, 0) 0%,
      rgba(20, 77, 86, 0.9) 100%
    );
  }

  .BannerCnt {
    position: relative;
    z-index: 99;

    h1 {
      font-size: 45px;
      font-weight: 500;
      color: var(--white-color);

      @media (max-width: 1200px) {
        font-size: 40px;
      }
      @media (max-width: 991px) {
        font-size: 34px;
      }
      @media (max-width: 575px) {
        font-size: 28px;
        margin-bottom: 0px;
      }
    }

    ul {
      display: flex;
      align-items: center;
      gap: 8px;

      li {
        font-size: 16px;
        color: var(--light-bg-color);

        @media (max-width: 575px) {
          font-size: 14px;
        }

        &:last-child {
          color: var(--secondary-color);
        }

        &:not(:last-child)::after {
          content: ">";
          margin-left: 6px;
          opacity: 0.7;
        }

        a {
          color: var(--light-bg-color);

          &:hover {
            color: var(--white-color);
          }
        }
      }
    }
  }

  /* Reduce height on small screens */
  @media (max-width: 575px) {
    aspect-ratio: 1920/350;
  }
}

/* ABOUT PAGE */
.About {
  margin: 85px 0;

  .FlexWrap {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;

    .Image {
      width: calc(50% - 12px);

      img {
        width: 100%;
        display: block;
        border-radius: 30px;
      }
    }

    .Cnt {
      width: calc(50% - 12px);
      padding-left: 35px;

      h2 {
        width: 80%;
        margin-bottom: 25px;
        font-size: 40px;
        line-height: 1.3;
      }
      h2:not(:first-of-type) {
        margin-top: 40px;
      }
      ul {
        padding-left: 20px;
        li {
          list-style: disc;
          margin: 10px 0;
          opacity: 0.7;
          font-size: clamp(16px, 1.5vw, 20px);
        }
      }
      p + p {
        margin-top: 20px;
      }
    }
  }

  /* Tablet (max-width: 992px) */
  @media (max-width: 992px) {
    .FlexWrap {
      .Cnt {
        padding-left: 10px;

        h2 {
          width: 100%;
          font-size: 32px;
        }
      }
    }
  }

  /* Mobile (max-width: 768px) */
  @media (max-width: 768px) {
    .FlexWrap {
      flex-direction: column;

      .Image,
      .Cnt {
        width: 100%;
      }

      .Cnt {
        padding-left: 0px;

        h2 {
          font-size: 30px;
        }
      }
    }
  }

  /* Small Mobile (max-width: 575px) */
  @media (max-width: 575px) {
    margin: 40px 0;

    .FlexWrap {
      gap: 20px;

      .Cnt {
        h2 {
          font-size: 26px;
        }

        p {
          font-size: 15px;
          line-height: 26px;
        }
      }
    }
  }
}

/* MISION AND VISION */
.VisionMission {
  margin: 90px 0;

  @media (max-width: 575px) {
    margin: 45px 0;
  }

  .Tag {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--secondary-color);
  }

  h2 {
    font-size: 36px;
    margin-bottom: 18px;
    color: var(--primary-color);

    @media (max-width: 575px) {
      font-size: 26px;
    }
  }

  /* Vision */
  .VisionBox {
    max-width: 100%;
    padding: 55px;
    margin-bottom: 70px;
    border-radius: 24px;
    background: linear-gradient(
      135deg,
      var(--secondary-light-color),
      var(--light-bg-color)
    );
    box-shadow: 0 18px 40px rgba(20, 77, 86, 0.12);
    border-left: 6px solid var(--primary-color);
    @media (max-width: 575px) {
      padding: 30px;
    }

    p {
      font-size: 20px;
      line-height: 32px;
      color: var(--black-color);

      @media (max-width: 575px) {
        font-size: 16px;
        line-height: 26px;
      }
    }
  }

  /* Mission */
  .MissionBox {
    max-width: 100%;
    padding: 55px;
    margin-bottom: 90px;
    border-radius: 24px;
    background: var(--light-bg-color);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
    border-left: 6px solid var(--secondary-color);

    @media (max-width: 575px) {
      padding: 30px;
      margin-bottom: 50px;
    }

    .Intro {
      font-size: 18px;
      margin-bottom: 25px;
      color: var(--black-color);
    }

    .MissionList {
      list-style: none;
      padding-left: 0;

      li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 16px;
        line-height: 28px;
        color: var(--black-color);

        &::before {
          content: "✔";
          position: absolute;
          left: 0;
          top: 2px;
          color: var(--secondary-color);
          font-size: 14px;
        }
      }
    }
  }

  /* Core Programmes */
  .ProgrammeWrap {
    .SectionHeader {
      max-width: 600px;
      margin-bottom: 45px;
      @media (max-width: 575px) {
        margin-bottom: 25px;
      }
      .Title {
        text-align: center;
      }
    }

    .ProgrammeGrid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;

      @media (max-width: 991px) {
        grid-template-columns: repeat(2, 1fr);
      }

      @media (max-width: 575px) {
        grid-template-columns: 1fr;
      }

      .ProgrammeCard {
        padding: 35px;
        border-radius: 22px;
        background: var(--white-color);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
        transition: 0.35s ease;

        &:hover {
          transform: translateY(-6px);
          box-shadow: 0 20px 45px rgba(20, 77, 86, 0.15);
        }
        .Icon {
          width: 60px;
          height: 60px;
          margin: 0 0 18px;
          border-radius: 12px;
          background: rgba(0, 0, 0, 0.05);
          display: flex;
          align-items: center;
          justify-content: center;

          i {
            font-size: 24px;
            color: var(--secondary-color);
          }
        }
        h3 {
          font-size: 22px;
          margin-bottom: 14px;
          color: var(--primary-color);
        }

        p {
          font-size: 16px;
          line-height: 26px;
          color: #333;
        }
      }
    }
  }
}
/* FOUNDER */

/* ADVISORY MEMBERS */
.AdvisoryMember {
  margin: 85px 0;
  .Title {
    text-align: center;
    span {
      background-color: var(--secondary-color);
      padding: 5px 20px;
      border-radius: 50px;
      margin-top: 15px;
      display: inline-block;
      color: var(--white-color);
      font-weight: 500;
      margin-bottom: 30px;
    }
  }
  .Advisor {
    margin-top: 20px;
    span {
      width: 300px;
    }
  }
  .Advisoryslider {
    max-width: 95%;
    margin: 0 auto;
  }
  ul {
    display: block;
    li {
      padding: 0 10px;
      img {
        border-radius: 14px;
        border: 1px solid var(--secondary-color);
        width: 100% !important;
      }
      .Cnt {
        margin-top: 10px;
        text-align: center;
        h3 {
          font-size: 22px;
          margin-bottom: 5px;
          font-weight: 600;
        }
        p {
          font-size: 14px;
          line-height: 22px;
          font-weight: 400;
          opacity: 0.6;
        }
      }
    }
  }
}
/* ACTIVIES PAGE */
.Activities {
  margin: 85px 0;
  @media (max-width: 575px) {
    margin: 45px 0;
  }
  ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row wrap;
    gap: 24px;
    li {
      width: calc(50% - 12px);
      aspect-ratio: 770/528;
      overflow: hidden;
      border-radius: 25px;
      position: relative;
      cursor: pointer;

      /* --- Responsive (li) --- */
      @media (max-width: 991px) {
        width: 100%;
        aspect-ratio: 600/400;
      }
      @media (max-width: 575px) {
        aspect-ratio: 500/350;
      }

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.4s ease;

        /* --- Responsive (img) --- */
        @media (max-width: 575px) {
          object-position: center;
        }
      }

      /* Overlay */
      &::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to bottom,
          rgba(0, 0, 0, 0) 0%,
          rgba(0, 0, 0, 0.9) 100%
        );
        opacity: 0;
        transition: 0.4s ease;
      }

      .cnt {
        position: absolute;
        bottom: 20px;
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0;
        transition: 0.4s ease;
        z-index: 2;

        /* --- Responsive (cnt container) --- */
        @media (max-width: 991px) {
          bottom: 18px;
        }
        @media (max-width: 575px) {
          bottom: 15px;
        }

        h4 {
          color: var(--white-color);
          font-size: 30px;
          margin-bottom: 8px;
          transition: 0.3s ease;

          display: -webkit-box;
          -webkit-line-clamp: 1; /* Only 1 line */
          -webkit-box-orient: vertical;
          overflow: hidden;

          /* Responsive */
          @media (max-width: 991px) {
            font-size: 26px;
          }
          @media (max-width: 575px) {
            font-size: 22px;
          }
        }

        p {
          color: var(--white-color);
          transition: 0.3s ease;

          display: -webkit-box;
          -webkit-line-clamp: 2; /* Only 2 lines */
          -webkit-box-orient: vertical;
          overflow: hidden;

          /* Responsive */
          @media (max-width: 575px) {
            font-size: 14px;
            line-height: 22px;
          }
        }
      }

      /* Hover Effects */
      &:hover {
        img {
          transform: scale(1.05);
        }
        &::after {
          opacity: 1;
        }
        .cnt {
          opacity: 1;
          bottom: 35px;

          /* --- Responsive hover --- */
          @media (max-width: 575px) {
            bottom: 25px;
          }
        }
      }
    }
  }
  .modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;

    &.active {
      display: flex;
    }

    .modal-box {
      width: 85%;
      max-width: 900px;
      background: #fff;
      border-radius: 14px;
      overflow: hidden;
      display: flex;
      position: relative;

      /* Responsive */
      @media (max-width: 991px) {
        flex-direction: column;
        width: 90%;
      }
      @media (max-width: 575px) {
        width: 92%;
      }

      .modal-left {
        width: 45%;

        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }

        /* Responsive */
        @media (max-width: 991px) {
          width: 100%;
          height: 280px;
        }
        @media (max-width: 575px) {
          height: 220px;
        }
      }

      .modal-right {
        width: 55%;
        padding: 24px;

        h4 {
          font-size: 28px;
          margin-bottom: 14px;

          @media (max-width: 575px) {
            font-size: 22px;
          }
        }

        p {
          font-size: 16px;
          line-height: 26px;

          @media (max-width: 575px) {
            font-size: 14px;
            line-height: 22px;
          }
        }

        /* Responsive */
        @media (max-width: 991px) {
          width: 100%;
          padding: 20px;
        }
        @media (max-width: 575px) {
          padding: 16px;
        }
      }

      .close-btn {
        position: absolute;
        top: 18px;
        right: 22px;
        font-size: 26px;
        background: rgba(0, 0, 0, 0.6);
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;

        @media (max-width: 575px) {
          top: 10px;
          right: 10px;
          width: 30px;
          height: 30px;
          font-size: 22px;
        }
      }
      .Buttons {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 15px;
      }
      .nav-btn {
        font-size: 15px;
        border: 1px solid var(--black-color);
        padding: 4px 20px;
        border-radius: 20px;
        transition: cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
        &:hover {
          background-color: var(--primary-color);
          color: var(--white-color);
        }
      }
    }
  }
}

.contact-section {
  width: 100%;
  padding: 80px 0;
  @media (max-width: 575px) {
    padding: 45px 0;
  }
  .container {
    width: 88%;
    max-width: 1320px;
    margin: auto;
  }

  .title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 60px;
    color: var(--primary-color);
    @media (max-width: 575px) {
      margin-bottom: 40px;
    }
  }

  .contact-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;

    /* LEFT SIDE */
    .contact-left {
      width: 35%;
      min-width: 300px;

      h2 {
        font-weight: 500;
        line-height: 1.1;
        font-size: clamp(24px, 3vw, 35px);
        margin-bottom: 15px;
        color: var(--primary-color);
      }

      p {
        font-size: 14px;
        color: #555;
        margin-bottom: 25px;
        line-height: 1.6;
      }
      .Flex {
        display: flex;
        justify-content: space-between;
      }

      .block {
        margin-bottom: 25px;

        strong {
          color: var(--primary-color);
          display: block;
          margin-bottom: 5px;
          font-weight: 600;
        }

        span {
          display: block;
          font-size: 14px;
          line-height: 1.6;
          color: var(--black-color);
        }
      }
    }

    .contact-form {
      width: 50%;
      min-width: 300px;

      form {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;

        input,
        textarea,
        select {
          width: 100% !important;
          padding: 14px;
          font-size: 14px;
          border: 1px solid #b5bfc1;
          border-radius: 4px;
          background-color: var(--white-color);

          &:focus {
            border-color: var(--secondary-color);
            outline: none;
          }
        }

        textarea {
          grid-column: 1 / 3;
          height: 130px;
          resize: none;
          width: 100% !important;
          font-family: "Manrope", sans-serif;
        }

        .submit-btn {
          grid-column: 1 / 3;

          input {
            padding: 10px 24px;
            border: 1px solid var(--primary-color);
            background: transparent;
            cursor: pointer;
            color: var(--primary-color);
            transition: 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
            width: auto !important;
            border-radius: 0 !important;

            &:hover {
              background: var(--primary-color);
              color: var(--white-color);
            }
          }
        }
      }
    }
  }
  .contact-form form p:has(textarea) {
    grid-column: 1 / 3;
  }

  .contact-form form p {
    width: 100%;
  }

  .contact-form form p textarea {
    width: 100%;
  }

  .contact-form form p:last-of-type {
    grid-column: 1 / 3;
  }

  /* MAP */
  .map-area {
    margin-top: 60px;

    iframe {
      width: 100%;
      height: 350px;
      border: none;
      border-radius: 20px;
    }
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .contact-content {
      flex-direction: column;

      .contact-left,
      .contact-form {
        width: 100%;
      }

      .contact-form form {
        grid-template-columns: 1fr;

        textarea,
        .submit-btn {
          grid-column: 1;
        }
      }
    }
  }
}
/* RENAL Health Overview */
.Renalpdf {
  margin: 85px 0;

  @media (max-width: 575px) {
    margin: 50px 0;
  }

  .FlexWrap {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-flow: row wrap;

    @media (max-width: 991px) {
      gap: 20px;
    }

    .Text {
      width: calc(50% - 12px);

      @media (max-width: 991px) {
        width: 100%;
      }

      h2 {
        margin-bottom: 20px;
        font-size: clamp(26px, 3vw, 35px);

        @media (max-width: 575px) {
          margin-bottom: 15px;
        }
      }

      p {
        font-size: 16px;
        line-height: 26px;

        @media (max-width: 575px) {
          font-size: 15px;
          line-height: 24px;
        }
      }
    }

    .Donloadcard {
      width: calc(50% - 12px);

      @media (max-width: 991px) {
        width: 100%;
      }

      ul {
        display: flex;
        align-items: center;
        gap: 24px;
        flex-wrap: wrap;

        @media (max-width: 575px) {
          gap: 15px;
        }

        li {
          background-color: var(--secondary-color);
          padding: 25px;
          border-radius: 18px;
          width: calc(50% - 12px);

          @media (max-width: 991px) {
            width: calc(50% - 12px);
          }

          @media (max-width: 575px) {
            width: 100%;
            padding: 20px;
          }

          i {
            font-size: 42px;
            color: var(--white-color);

            @media (max-width: 575px) {
              font-size: 36px;
            }
          }

          h3 {
            color: var(--white-color);
            font-size: 25px;
            font-weight: 500;
            margin: 7px 0;

            @media (max-width: 991px) {
              font-size: 22px;
            }

            @media (max-width: 575px) {
              font-size: 20px;
            }
          }

          p {
            color: var(--white-color);
            font-size: 18px;
            line-height: 26px;

            @media (max-width: 991px) {
              font-size: 16px;
            }

            @media (max-width: 575px) {
              font-size: 15px;
              line-height: 22px;
            }
          }

          a {
            background-color: var(--white-color);
            display: inline-flex;
            align-items: center;
            color: var(--primary-color);
            gap: 20px;
            padding: 10px 20px;
            margin-top: 12px;
            border-radius: 0;
            font-size: 15px;

            @media (max-width: 575px) {
              padding: 10px 16px;
              font-size: 14px;
              gap: 12px;
            }

            i {
              color: var(--primary-color);
              font-size: 18px;

              @media (max-width: 575px) {
                font-size: 16px;
              }
            }
          }
        }
      }
    }
  }
}
/* USP */
.UspFeature {
  margin: 85px 0;

  @media (max-width: 575px) {
    margin: 50px 0;
  }

  h2 {
    text-align: center;
    font-size: clamp(26px, 3vw, 35px);

    @media (max-width: 575px) {
      margin-bottom: 10px;
    }
  }

  ul {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-flow: row wrap;

    @media (max-width: 575px) {
      margin-top: 30px;
      gap: 15px;
    }

    li {
      width: calc(33.33% - 16px);
      background-color: var(--secondary-light-color);
      border-radius: 12px;
      padding: 25px;

      @media (max-width: 991px) {
        width: calc(50% - 12px);
      }

      @media (max-width: 575px) {
        width: 100%;
        padding: 20px;
      }

      h1 {
        font-size: 50px;
        font-weight: 800;
        color: var(--primary-color);

        @media (max-width: 991px) {
          font-size: 42px;
        }

        @media (max-width: 575px) {
          font-size: 36px;
        }
      }

      h3 {
        margin: 10px 0;
        font-size: 22px;
        font-weight: 600;

        @media (max-width: 991px) {
          font-size: 20px;
        }

        @media (max-width: 575px) {
          font-size: 18px;
        }
      }

      p {
        opacity: 0.6;
        font-size: 16px;
        line-height: 26px;

        @media (max-width: 575px) {
          font-size: 15px;
          line-height: 22px;
        }
      }
    }
  }
}

.pagination-wrapper ul.page-numbers {
  display: inline-flex;
  list-style: none;
  gap: 8px;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.pagination-wrapper ul.page-numbers li {
  display: inline-block;
}

.pagination-wrapper .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 15px;
  text-decoration: none;
  color: var(--primary-color);
  background: var(--white-color);
  border: 2px solid var(--primary-color);
  transition: all 0.3s ease;
}

/* Current Page */
.pagination-wrapper .page-numbers.current {
  background: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
}

/* Hover Effect */
.pagination-wrapper .page-numbers:hover {
  background: var(--secondary-color);
  color: var(--white-color);
  border-color: var(--secondary-color);
}

/* Prev / Next Icons */
.pagination-wrapper .page-numbers.prev,
.pagination-wrapper .page-numbers.next {
  font-size: 14px;
  padding: 0 12px;
  min-width: unset;
  border-radius: 50%;
}

/* Disable Click when not available */
.pagination-wrapper .page-numbers.prev.disabled,
.pagination-wrapper .page-numbers.next.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* AWARNESS */
.AwarnessPre {
  margin: 70px 0;
  background-color: var(--light-bg-color);
  padding: 55px 0;
  h2 {
    text-transform: capitalize;
    margin-top: 14px;
  }
  .Title {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-flow: row wrap;

    h2,
    p,
    .Cnt {
      width: calc(33.3% - 16px);
    }
    h2 {
      span {
        font-size: 30px;
      }
    }
    .Cnt {
      p {
        width: 100%;
      }
      .DownloadCArd {
        width: 100% !important;
      }
    }

    /* Laptop / Small Desktop */
    @media (max-width: 1199px) {
      gap: 20px;

      h2,
      p,
      .Cnt {
        width: calc(33.33% - 14px);
      }
    }

    /* Tablet */
    @media (max-width: 991px) {
      gap: 18px;

      h2,
      p,
      .Cnt {
        width: calc(50% - 12px);
      }

      h2 {
        width: 100%;
      }
    }

    /* Mobile Large */
    @media (max-width: 767px) {
      gap: 16px;
      text-align: center;

      h2,
      p,
      .Cnt {
        width: 100%;
      }
    }

    /* Mobile Small */
    @media (max-width: 480px) {
      gap: 12px;
    }
  }

  .CalcGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;

    .CalcCard {
      background: var(--white-color);
      border: 1px solid var(--secondary-color);
      border-radius: 18px;
      padding: 28px;
      display: flex;
      flex-direction: column;
      gap: 14px;

      h3 {
        font-size: 20px;
        color: var(--primary-color);
        margin-bottom: 6px;
        font-weight: 600;
      }

      input,
      select {
        padding: 12px 14px;
        border-radius: 8px;
        border: 1px solid var(--secondary-color);
        background: var(--secondary-light-color);
        color: var(--black-color);
        font-size: 14px;

        &:focus {
          outline: none;
          border-color: var(--primary-color);
        }
      }

      button {
        margin-top: 10px;
        padding: 12px;
        border-radius: 10px;
        border: none;
        background: var(--primary-color);
        color: var(--white-color);
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s ease;

        &:hover {
          background: var(--secondary-color);
        }
      }

      .result {
        margin-top: 6px;
        font-weight: 600;
        color: var(--secondary-color);
        font-size: 14px;
      }
    }

    /* Responsive */
    @media (max-width: 992px) {
      grid-template-columns: repeat(2, 1fr);
    }

    @media (max-width: 576px) {
      grid-template-columns: 1fr;
    }
  }
  ul {
    margin-top: 50px;
    display: flex;
    align-items: stretch;
    gap: 24px;
    flex-flow: row wrap;
  }
}

.DownloadCArd {
  background-color: var(--secondary-color);
  padding: 25px;
  border-radius: 18px;

  /* 3 cards – Desktop */
  width: calc(33.333% - 16px);

  /* 2 cards – Tablet */
  @media (max-width: 991px) {
    width: calc(50% - 12px);
  }

  /* 1 card – Mobile */
  @media (max-width: 575px) {
    width: 100%;
    padding: 20px;
  }

  i {
    font-size: 42px;
    color: var(--white-color);

    @media (max-width: 575px) {
      font-size: 36px;
    }
  }

  h3 {
    color: var(--white-color);
    font-size: 25px;
    font-weight: 500;
    margin: 7px 0;

    @media (max-width: 991px) {
      font-size: 22px;
    }

    @media (max-width: 575px) {
      font-size: 20px;
    }
  }

  p {
    color: var(--white-color);
    font-size: 18px;
    line-height: 26px;

    @media (max-width: 991px) {
      font-size: 16px;
    }

    @media (max-width: 575px) {
      font-size: 15px;
      line-height: 22px;
    }
  }

  a {
    background-color: var(--white-color);
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    gap: 20px;
    padding: 10px 20px;
    margin-top: 12px;
    font-size: 15px;

    @media (max-width: 575px) {
      padding: 10px 16px;
      font-size: 14px;
      gap: 12px;
    }

    i {
      color: var(--primary-color);
      font-size: 18px;

      @media (max-width: 575px) {
        font-size: 16px;
      }
    }
  }
}
.FoundersSection {
  background: var(--light-bg-color);
  padding: 90px 0;

  @media (max-width: 575px) {
    padding: 50px 0;
  }

  .SectionHeader {
    max-width: 600px;
    margin-bottom: 50px;
    @media (max-width: 575px) {
      margin-bottom: 25px;
    }

    .Title {
      .Tag {
        display: inline-block;
        margin-bottom: 10px;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--primary-color);
      }
      @media (max-width: 575px) {
        text-align: center;
      }
    }
  }

  .FoundersGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;

    @media (max-width: 768px) {
      grid-template-columns: 1fr;
    }
  }

  .FounderCard {
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: center;
    gap: 25px;
    padding: 20px;
    border-radius: 22px;
    background: var(--white-color);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.08);
    transition: 0.35s ease;

    &:hover {
      transform: translateY(-5px);
      box-shadow: 0 26px 55px rgba(20, 77, 86, 0.15);
    }

    @media (max-width: 575px) {
      grid-template-columns: 1fr;
      text-align: center;
      padding: 25px;
      gap: 14px;
    }

    .Photo {
      width: 120px;
      height: 120px;
      border-radius: 18px;
      overflow: hidden;
      background: var(--secondary-light-color);

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      @media (max-width: 575px) {
        width: 100%;
        height: 100%;
      }
    }

    .Content {
      h3 {
        font-size: 22px;
        margin-bottom: 6px;
        color: var(--primary-color);

        @media (max-width: 575px) {
          font-size: 18px;
        }
      }
      p {
        font-size: 14px;
        margin-top: 5px;
      }
      .Role {
        font-size: 14px;
        font-weight: 600;
        color: var(--secondary-color);
      }
    }
  }
}
/*  */
.Tamilcontent {
  margin: auto;
  font-family: "Segoe UI", sans-serif;

  /* INFO CARDS */
  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-bottom: 50px;
  }

  .card {
    background: var(--white-color);
    border-radius: 18px;
    padding: 26px;
    position: relative;
    transition: transform 0.3s ease;

    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      height: 6px;
      width: 100%;
      background: var(--secondary-color);
      border-radius: 18px 18px 0 0;
    }

    &:hover {
      transform: translateY(-6px);
    }

    h3 {
      font-size: 21px;
      margin-bottom: 14px;
      color: var(--primary-color);
    }

    p,
    li {
      font-size: 15.5px;
      line-height: 1.8;
      color: #333;
      list-style: disc;
    }

    ul {
      padding-left: 18px;
      margin: 0;
    }
  }

  /* TABLE */
  .table-wrapper {
    background: var(--white-color);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 50px;
    h3 {
      margin-bottom: 20px;
      font-size: 22px;
      color: var(--primary-color);
    }

    table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0 10px;
      min-width: 600px;

      /* Header */
      thead {
        th {
          background: var(--secondary-light-color);
          padding: 16px;
          color: var(--primary-color);
          font-weight: 600;
          border: none;
          text-align: left;

          &:first-child {
            border-radius: 12px 0 0 12px;
          }

          &:last-child {
            border-radius: 0 12px 12px 0;
          }
        }
      }

      /* Body Rows */
      tbody {
        tr {
          background: #f9fefe;
          border-radius: 12px;

          td {
            padding: 16px;
            font-size: 15px;
            border-top: 1px solid var(--secondary-light-color);
            border-bottom: 1px solid var(--secondary-light-color);

            &:first-child {
              border-left: 1px solid var(--secondary-light-color);
              border-radius: 12px 0 0 12px;
            }

            &:last-child {
              border-right: 1px solid var(--secondary-light-color);
              border-radius: 0 12px 12px 0;
            }
          }
        }
      }

      /* Danger Row/Text */
      .danger {
        color: var(--danger-color);
        font-weight: 700;
      }
    }
  }

  /* PLEDGE SECTION */
  .pledge {
    background: linear-gradient(
      135deg,
      var(--primary-color),
      var(--secondary-color)
    );
    color: var(--white-color);
    border-radius: 24px;
    padding: 40px;

    h3 {
      font-size: 26px;
      margin-bottom: 18px;
    }

    ul {
      padding-left: 22px;
      display: unset;
    }

    li {
      font-size: 16px;
      line-height: 1.9;
      margin-bottom: 6px;
      list-style: disc;
    }

    .footer-note {
      text-align: center;
      margin-top: 30px;
      font-size: 14px;
      opacity: 0.9;
    }
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    padding: 20px 12px;

    .pledge {
      padding: 28px;
    }
    table {
      min-width: 100% !important;
      border-spacing: 0;

      thead {
        display: none;
      }

      tbody {
        tr {
          display: block;
          background: #f9fefe;
          border-radius: 14px;
          padding: 14px 16px;
          margin-bottom: 18px;
          box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);

          /* reset */
          td {
            display: block;
            padding: 8px 0;
            border: none;
            font-size: 14px;
          }

          /* FIRST COLUMN = TITLE */
          td:first-child {
            font-size: 16px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
            text-align: center;
          }

          /* VALUE ROWS */
          td:not(:first-child) {
            display: grid;
            text-align: center;
            gap: 10px;
            align-items: center;

            &::before {
              content: attr(data-label);
              font-weight: 600;
              color: var(--primary-color);
              white-space: nowrap;
            }
          }
        }
      }
    }
  }
}
