/* ----------------------
   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;
}

.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;
  padding-top: 120px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.aboutOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(0, 132, 255, 0.25), rgba(0, 0, 0, 0.5));
  backdrop-filter: blur(15px);
  z-index: 1;
}

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

.aboutContainer {
  text-align: center;
  color: #ffffff;
  padding: 30px 30px;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 24px rgba(0, 132, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 3;
}

.aboutSmallText {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 7px 15px;
  width: fit-content;
  margin-inline: auto;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.aboutBigText {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.1;
}

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

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

.imageStack {
  position: relative;
  display: flex;
  align-items: center;
}

.stackedImage {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: -15px;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stackedImage:first-child {
  margin-left: 0;
}

.stackedImage:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 20px rgba(0, 132, 255, 0.3);
  z-index: 2;
}

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

  .aboutContainer {
    padding: 25px;
  }

  .aboutBigText {
    font-size: 28px;
  }

  .aboutShortText {
    font-size: 16px;
  }

  .aboutImages {
    flex-direction: column;
  }

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

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

  .aboutShortText {
    font-size: 15px;
  }

  .aboutSmallText {
    font-size: 12px;
    padding: 6px 12px;
  }

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









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

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

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

  .textSection {
    max-width: 800px;
    background: rgba(255 255 255 / 0.12);
    border-radius: 16px;
    border: 1px solid rgba(0, 132, 255, 0.3);
    padding: 30px 40px;
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 24px rgba(0, 132, 255, 0.15);
    color: #17233d;
    line-height: 1.6;
  }

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

  .textSection strong {
    color: #007bff;
  }

  .imageSlider {
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 132, 255, 0.15);
  }

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

  .sliderImage {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }

  .sliderImage:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
  }

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

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

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

    .textSection {
      padding: 25px 20px;
    }

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

    .sliderImage {
      height: 250px;
      border-radius: 12px;
    }
  }

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

    .sliderImage {
      height: 200px;
      border-radius: 10px;
    }
  }









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

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

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

  .aboutUsCard {
    position: relative;
    width: 300px;
    min-height: 260px;
    padding: 30px 25px 35px;
    border-radius: 18px;
    background: rgba(255 255 255 / 0.22);
    border: 1.5px solid rgba(0, 123, 255, 0.25);
    box-shadow:
      0 8px 24px rgba(0, 123, 255, 0.06),
      inset 0 0 40px rgba(255 255 255 / 0.3);
    backdrop-filter: blur(15px);
    color: #1e2a44;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: default;
  }

  .aboutUsCard:hover,
  .aboutUsCard:focus-visible {
    transform: translateY(-12px) scale(1.07);
    box-shadow:
      0 20px 40px rgba(0, 123, 255, 0.102),
      inset 0 0 50px rgba(255 255 255 / 0.4);
    outline: none;
    z-index: 5;
  }

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

  .cardTitle {
    font-size: 20px;
    font-weight: 700;
    color: #004aad;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
  }

  .cardDescription {
    font-size: 16px;
    color: #3a4a69;
    line-height: 1.55;
    margin-bottom: 25px;
    font-weight: 400;
  }

  .cardIcon {
    font-size: 44px;
    color: #007bff;
    margin-top: 12px;
    transition: color 0.3s ease;
  }

  .goalCard {
    background: rgba(14, 115, 151, 0.15);
    border-color: rgba(14, 115, 151, 0.35);
  }

  .valuesCard {
    background: rgba(253, 176, 162, 0.2);
    border-color: rgba(253, 176, 162, 0.45);
  }

  .visionCard {
    background: rgba(14, 115, 151, 0.15);
    border-color: rgba(14, 115, 151, 0.35);
  }

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

    .aboutUsCard {
      width: 85%;
      max-width: 400px;
      min-height: 220px;
      padding: 25px 20px 30px;
    }

    .cardTitle {
      font-size: 22px;
    }

    .cardDescription {
      font-size: 15px;
    }

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

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

    .cardDescription {
      font-size: 15px;
    }

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







/* ----------------------
   TEAM SECTION
------------------------- */
/* Base Styles */
.teamSection {
  background-color: #f4f4f9;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

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

.teamHeader h2 {
  font-size: 34px;
  font-weight: 700;
  color: #222;
  line-height: 1.2;
  margin-bottom: 16px;
}

.teamHeader p {
  font-size: 17px;
  color: #555;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
}

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

.teamCard {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.teamCard:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

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

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

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

.teamName {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background-color: rgba(255, 255, 255, 0.85);
  color: #111;
  padding: 8px 15px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 30px;
  border: 1px solid #ccc;
  backdrop-filter: blur(4px);
}

.teamRole {
  background-color: #f0f7f7;
  padding: 16px 18px;
}

.teamRole h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.teamRole p {
  font-size: 15px;
  color: #444;
  margin: 0;
}

.teamDescription {
  padding: 16px 18px;
  flex-grow: 1;
}

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


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

  .teamHeader h2 {
    font-size: 30px;
  }

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

@media (max-width: 768px) {
  .teamCards {
    gap: 20px;
  }

  .teamHeader h2 {
    font-size: 26px;
  }

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

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

  .teamHeader h2 {
    font-size: 22px;
  }

  .teamHeader p {
    font-size: 15px;
  }
  
  .teamDescription p {
  font-size: 15px;
  }

  .teamDescription,
  .teamRole {
    padding: 15px;
  }

  .teamName {
    font-size: 12px;
    padding: 6px 12px;
  }
}
