/* ----------------------
   BODY STYLE
------------------------- */

body {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box; 
  overflow-x: hidden;
  overflow-y: hidden;
}


/* ----------------------
   HERO SECTION
------------------------- */
.aboutSection {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
  margin-top: 70px;
}

.aboutBackground {
  width: 100%;
  background-image: url("/assets/images/teamimage/teamimage.jpg");
  background-size: cover;
  background-position: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.aboutOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4); 
  backdrop-filter: blur(8px);
  z-index: 1;
}

.aboutFirstRow {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  z-index: 2; 
}

.aboutContainer {
  text-align: center;
  color: white;
  padding: 30px;
  max-width: 600px;
  background-color: rgba(255,255,255,0.6);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  z-index: 3; 
}

.aboutSmallText {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
  font-family: "Poppins", sans-serif;
  border: 1px solid rgb(211, 209, 209);
  width: 30%;
  margin: 0 auto;
  border-radius: 50px;
  padding: 7px 10px;
  text-transform: uppercase;
}

.aboutBigText {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
  line-height: 1.3;
}

.aboutShortText {
  font-size: 17px;
  margin-bottom: 30px;
  color: #333;
  line-height: 1.3;
  padding: 0 20px;
}

.aboutImages {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.imageStack {
  position: relative;
}

.stackedImage {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: -15px;
  border: 3px solid white;
  transition: transform 0.3s ease;
}

.stackedImage:nth-child(2) {
  margin-left: -15px;
}

.stackedImage:nth-child(3) {
  margin-left: -15px;
}


.stackedImage:hover {
  transform: scale(1.1);
}


@media (max-width: 768px) {
  .aboutBackground {
      grid-template-columns: 1fr;
      padding: 20px;
  }

  .aboutContainer {
      padding: 20px;
  }

  .aboutBigText {
      font-size: 28px;
  }

  .aboutShortText {
      font-size: 16px;
  }

  .aboutImages {
      flex-direction: column;
  }

  .stackedImage {
      margin-left: 0;
      margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .aboutBigText {
      font-size: 24px;
  }

  .aboutShortText {
      font-size: 14px;
  }

  .aboutSmallText {
      font-size: 12px;
  }

  .stackedImage {
      width: 50px;
      height: 50px;
  }
}









/* ----------------------
   ABOUT SECTION
------------------------- */

.overviewSection {
    display: grid;
    justify-items: center;
    align-items: center;
    padding: 100px 20px;
    background-color: #ffffff;
    min-height: 80vh;
  }

  .overviewContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    align-items: center;
  }

  .textSection {
    width: 100%;
    max-width: 800px;
    border: 1px solid rgba(194, 192, 192, 0.667);
    padding: 20px;
    border-radius: 7px;
  }

  .textSection p {
    font-size: 16px;
    color: #333;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  .textSection strong {
    color: #007bff;
  }

  .imageSlider {
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    position: relative;
  }

  .sliderTrack {
    display: grid;
    grid-template-columns: repeat(3, 100%);
    grid-gap: 10px;
    animation: slide 12s infinite;
  }

  .sliderImage {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
  }

  @keyframes slide {
    0% {
      transform: translateX(0);
    }
    33% {
      transform: translateX(-100%);
    }
    66% {
      transform: translateX(-200%);
    }
    100% {
      transform: translateX(0);
    }
  }

  @media (max-width: 768px) {
    .overviewSection {
      padding-top: 70px;
    }

    .overviewContent {
      gap: 20px;
      grid-template-columns: 1fr;
    }

    .textSection p {
      font-size: 16px;
    }

    .sliderImage {
      height: 250px;
    }
  }

  @media (max-width: 480px) {
    .textSection p {
      font-size: 14px;
    }

    .sliderImage {
      height: 220px;
    }
  }









/* ----------------------
   STANDARD SECTION
------------------------- */

.aboutUsSection {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 20px;
    background-color: #ffffff;
    min-height: 50vh;
  }

  .aboutUsContainer {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
  }

  .aboutUsCard {
    position: relative;
    background-color: #ffffff;
    width: 300px;
    height: 250px;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    transform: rotateY(0deg);
    will-change: transform;
    z-index: 2;
  }

  .aboutUsCard:hover {
    transform: scale(1.05) translateY(-10px);
  }

  .cardContent {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
  }

  .cardTitle {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
  }

  .cardDescription {
    font-size: 16px;
    color: #666;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  .cardIcon {
    font-size: 40px;
    color: #007bff;
    margin-top: 8px;
  }

  .goalCard {
    background-color: #e5f5f7;
    border: 1px solid #11d1eb;
  }

  .valuesCard {
    background-color: #fff4f2d2;
    border: 1px solid #fdb0a2d2;
  }

  .visionCard {
    background-color: #e5f5f7;
    border: 1px solid #11d1eb;
  }

  .goalCard:hover {
    transform: rotateY(15deg);
  }

  @media (max-width: 768px) {
    .aboutUsContainer {
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .aboutUsCard {
      width: 80%;
      max-width: 400px;
      height: 200px;
    }

    .cardIcon {
      font-size: 40px;
      margin-top: -7px;
    }

    .cardTitle {
      font-size: 22px;
    }

    .cardDescription {
      font-size: 14px;
    }

    .cardIcon {
      font-size: 40px;
    }
  }

  @media (max-width: 480px) {
    .cardTitle {
      font-size: 18px;
    }

    .cardDescription {
      font-size: 12px;
    }

    .cardIcon {
      font-size: 35px;
    }
  }








/* ----------------------
   TEAM SECTION
------------------------- */

.teamSection {
    background-color: #f4f4f9;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
  }

  .teamHeader {
    text-align: center;
    margin-bottom: 40px;
  }

  .teamHeader h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    line-height: 1;
    margin-bottom: 20px;
  }

  .teamHeader p {
    font-size: 18px;
    color: #666;
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto;
  }

  .teamCards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: center;
    width: 80%;
    margin: auto;
  }

  .teamCard {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .teamCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .teamImage {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
  }

  .teamImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .teamImage:hover img {
    transform: scale(1.1);
  }

  .teamName {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(254, 254, 254, 0.79);
    color: #131212;
    padding: 10px 14px;
    border-radius: 330px;
    font-weight: 500;
    font-size: 13px;
    border: 1px solid rgb(131, 129, 129);
  }

  .teamRole,
  .teamDescription {
    padding: 15px;
    text-align: start;
  }

  .teamRole {
    background-color: rgb(243, 251, 251);
  }

  .teamRole h4 {
    font-size: 16px;
    color: #0a131d;
    margin-bottom: 5px;
  }

  .teamRole p {
    font-size: 14px;
    color: #333;
  }

  .teamDescription p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
  }

  @media (max-width: 1000px) {
    .teamCards {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .teamCards {
      grid-template-columns: repeat(1, 1fr);
    }

    .teamHeader p {
      font-size: 16px;
    }

    .teamCard {
      width: 280px;
    }
  }

  @media (max-width: 480px) {
    .teamHeader h2 {
      font-size: 26px;
    }

    .teamHeader p {
      font-size: 14px;
    }

    .teamCard {
      width: 100%;
    }
  }

