:root {
  --background2: #fff;
  --background3: #ebe4f4;
  --accent: #ff9800;
  --headings: #333;
  --cta: #4a148c;
  --text1: #fff;
  --text2: #333;
  --general-padding: 20px 80px;
  --border: 5px 200px 200px 50px;
  --heading-font-size-desktop: 48px;
  --heading-font-size-tablet: 38px;
  --heading-font-size-mobile: 28px;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #000;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4 {
  font-family: "Merriweather Sans",
    sans-serif;
  font-weight: 500;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-label {
  display: inline-block;
  font-size: 15px;
  color: var(--cta);
  font-weight: 600;
  margin-bottom: 0px;
  position: relative;
}

.section-label::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 10px;
  margin-right: 6px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpolygon points='0,10 10,10 10,0' fill='%23ff9800'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  color: var(--accent);
}


@media (min-width: 1024px) {
  /* header starts here */

  header {
    display: block;
    width: 100%;
    background: transparent;
  }

  .nav .nav-wrapper {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    position: sticky;
    z-index: 999;
  }

  .nav-logo {
    display: flex;
    align-items: center;
  }

  .nav-logo img {
    height: 40px;
    width: auto;
  }

  .menu-items {
    justify-self: center;
    justify-content: center;
    gap: 36px;
    margin: 0;
    padding: 0;
  }

  .btn-cta {
    justify-self: end;
  }

  .site-header {
    /* position: ; */
    top: 0;
    z-index: 50;
    padding: 18px 0px;
  }

  .nav .nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--background3);
    border-radius: 9999px;
    padding: 12px 20px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    box-shadow: 0 18px 30px -20px var(--ring),
      0 2px 6px -2px var(--ring);
  }

  .nav-logo img {
    height: 36px;
    width: auto;
    display: block;
  }

  .menu-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 36px;
  }

  .menu-items a {
    text-decoration: none;
    color: var(--ink);
    font-weight: 600;
    padding: 8px 6px;
    border-radius: 8px;
    transition: transform .18s ease, color .18s ease, background-color .18s ease;
  }

  .menu-items a:hover {
    color: #4a148c;
    transform: translateY(-1px);
    background: rgba(0, 0, 0, .065);
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 9999px;
    font-weight: 700;
    text-decoration: none;
  }

  .btn-cta {
    background: var(--cta-bg);
    color: var(--cta-ink);
    box-shadow: 0 6px 18px -8px rgba(0, 0, 0, .5);
  }

  .btn-cta:hover {
    transform: translateY(-1px);
    color: var(--cta);
  }

  /* --Mobile styles-- */
  #menu-toggle {
    display: none;
  }

  .menu-icon {
    display: none;
    cursor: pointer;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    color: var(--ink);
  }

  .hide-mobile {
    display: inline-flex;
  }

  .hide-desktop {
    display: none;
  }

  @media (max-width: 900px) {
    .nav .nav-wrapper {
      grid-template-columns: auto auto;
    }

    .menu-icon {
      display: inline-flex;
      justify-self: end;
    }

    .hide-mobile {
      display: none !important;
    }

    .menu-items {
      position: relative;
      grid-column: 1 / -1;
      width: 100%;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height .28s ease;
      margin-top: 6px;
      border-radius: 18px;
      background: var(--surface);
    }

    .menu-items li {
      border-top: 1px solid rgba(0, 0, 0, .06);
    }

    .menu-items li:first-child {
      border-top: 0;
    }

    .menu-items a {
      padding: 14px 14px;
      border-radius: 0;
      font-weight: 600;
    }

    #menu-toggle:checked~.menu-items {
      max-height: 420px;
    }

    .hide-desktop {
      display: block;
      padding: 10px 14px;
    }
  }

  a:focus-visible,
  .menu-icon:focus-visible {
    outline: 3px solid rgba(79, 70, 229, .5);
    outline-offset: 3px;
  }

  /* header ends here */






  /* sec1 starts here */

  .sec1.about-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    background: url("/img/teaem.jpg") center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
  }

  .sec1.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
  }

  .about-container {
    position: relative;
    z-index: 2;
    color: var(--text1);
    padding: 0 40px;
    max-width: 1000px;
    width: 100%;
  }

  .about-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
  }

  .about-title {
    font-size: var(--heading-font-size-desktop);
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    color: var(--text1);
  }

  .breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    color: var(--text1);
  }

  .breadcrumb-link {
    color: var(--text1);
    text-decoration: none;
    opacity: 0.9;
    transition: color 0.3s ease;
  }

  .breadcrumb-link:hover {
    color: var(--accent);
  }

  .breadcrumb-separator {
    color: rgba(255, 255, 255, 0.7);
  }

  .breadcrumb-current {
    color: var(--text1);
    opacity: 0.9;
  }


  /* sec3 starts here */

  .sec3 {
    background: var(--background2);
    padding: 50px 80px;
    display: flex;
    margin: 0 auto;
    max-width: 1200px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .container-head {
    font-size: var(--heading-font-size-desktop);
    line-height: 1;
    padding: 90px 0 0;
    margin: 0;
  }

  .sec3-head {
    font-size: var(--heading-font-size-desktop);
    line-height: 1;
    padding: 15px 0 0;
    margin: 0;
  }

  .meet-the-team p {
    font-size: 16px;
    line-height: 1.5;
    padding: 0 0 60px;
    margin: 10px 0;
    max-width: 800px;
  }

  .sec3 .container {
    text-align: center;
    margin: 0 auto;
    padding: 30px 0px;
  }

  .sec3 .container h2 {
    font-size: var(--heading-font-size-tablet);
    color: var(--headings);
    font-weight: 700;
    margin-bottom: 10px;
    margin: -68px 0 10px;
  }

  .sec3 .container p {
    font-size: 16px;
    color: var(--text2);
    max-width: 650px;
    margin: 0 auto 0px;
    line-height: 1.5;
  }

  .team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    margin-top: 8px;
  }

  .team-card {
    flex: 0 0 calc(33.333% - 28px);
  }

  .team-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .team-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 16px;
    overflow: hidden;
    background: var(--background3);
  }

  .team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .team-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .team-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
  }

  .team-meta h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--headings);
    margin: 10px 0;;
  }

  .team-title {
    font-size: 14px;
    color: var(--text2);
    opacity: 0.85;
  }

  .team-org {
    font-size: 13px;
    color: var(--text2);
    opacity: 0.8;
    text-align: left;
    padding: 5px 0;
  }

  .team-text {
    text-align: left;
  }

  .linkedin-icon {
    flex-shrink: 0;
    background: #fff;
    border-radius: 50%;
    padding: 6px;
    transition: transform 0.25s ease;
    margin-top: 18px;
  }

  .linkedin-icon:hover {
    transform: translateY(-2px);
  }

  /* === RESPONSIVE === */

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

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

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



  /* sec2 starts here */

  .sec2.management-section {
    background: var(--background2);
    padding: 50px 0;
    display: flex;
    margin: 0 auto;
    max-width: 1200px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: var(--background3);
  }

  .management-container {
    width: auto;
    padding: 30px 80px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
  }

  .management-section h2 {
    font-size: var(--heading-font-size-desktop);
    color: var(--headings);
    margin: 6px 0 12px;
  }

  .management-section p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text2);
    max-width: 720px;
    margin: 10px auto;
  }

  .management-card {
    background: var(--background2);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex: 1;
    flex-direction: column;
    position: relative;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.35s ease;
    cursor: default;
    padding: 20px 0;?
  }

  .pad-more {
    padding: 30px 0;
  }

  .management-image {
    margin: 0;
    padding: 0;
  }

  .management-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    transition: transform 0.35s ease;
    margin: 0;
  }

  .management-content {
    padding: 10px 15px;
    transition: all 0.35s ease;
  }

  .management-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--headings);
    margin-bottom: 6px;
    line-height: 1;
  }

  .management-role {
    font-size: 15px;
    color: var(--text2);
    margin-bottom: 20px;
  }

  .management-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all 0.35s ease;
  }

  .management-social-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
  }

  .management-social-icon:hover {
    transform: scale(1.1);
  }

  .management-social-icon img {
    width: 20px;
    height: 20px;
  }

  .management-card:hover {
    transform: translateY(-8px);
  }

  .management-card:hover .management-name,
  .management-card:hover .management-role {
    color: var(--text2);
  }

  .management-card:hover .management-image img {
    transform: scale(1.05);
  }

  .management-card:hover .management-socials {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }

  .mg-social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.55);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: var(--cta);
    cursor: pointer;
    margin-right: 8px;
    transition: transform .25s ease, opacity .25s ease;
  }

  .mg-social:hover {
    transform: scale(1.12);
    opacity: 0.9;
  }

  .mg-social--linkedin {
    color: #0a66c2;
  }

  .mg-social--x {
    color: #000;
  }





  /* sec4 starts here */

  .team-showcase {
    padding: 50px 80px;
    text-align: center;
    background: var(--background2);
  }

  .team-showcase__title {
    font-size: var(--heading-font-size-desktop);
    color: var(--headings);
    margin: 10px 0 5px;
  }

  .team-showcase__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1400px;
    margin: 0px auto;
  }

  .team-showcase p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text2);
    max-width: 720px;
    margin: 10px auto 50px;
  }

  /* CARD */
  .team-card {
    text-align: left;
  }

  .team-card__image {
    position: relative;
    background: var(--background3);
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
  }

  .team-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-top: 15px;
  }

  .team-card__social {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    gap: 12px;
    opacity: 0;
    transition: all 0.35s ease;
  }

  .team-card:hover .team-card__social {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  .team-card__social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--background2);
    color: var(--cta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  }

  .team-card h4 {
    margin: 10px 0 2px;
    font-size: 16px;
    color: var(--headings);
  }

  .team-card span {
    font-size: 13px;
    color: var(--text2);
    opacity: 0.75;
    margin: -5px 0 0;
  }

  .team-showcase__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent);
    color: var(--text1);
    font-weight: 700;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: var(--border);
    border-color: var(--accent);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    width: max-content;
    max-width: 100%;
    justify-self: center;
    grid-column: 1 / -1;
    transition: background-color 0.3s ease;
    margin: 50px 0 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .team-showcase__btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
    background-color: var(--accent);
    color: var(--cta);
  }

  .team-showcase__btn svg {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    transform: translateX(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .team-showcase__btn:hover svg {
    transform: translateX(0);
    opacity: 1;
  }

  /* === MODAL === */
  .team-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 40px 20px;
  }

  .team-modal.active {
    display: flex;
  }

  .team-modal__content {
    background: var(--background2);
    width: 100%;
    max-width: 1000px;
    max-height: 70vh;
    overflow-y: auto;
    padding: 70px 40px;
    border-radius: 20px;
    position: relative;
  }

  .team-modal__close {
    position: absolute;
    top: 10px;
    right: 6px;
    background: none;
    border: none;
    font-size: 36px;
    cursor: pointer;
  }

  .team-modal .team-card__image {
    aspect-ratio: 3 / 3.8;
  }

  .team-modal .team-card h4 {
    font-size: 15px;
  }

  .team-modal .team-card span {
    font-size: 12px;
  }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .team-showcase__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 480px) {
    .team-showcase__grid {
      grid-template-columns: 1fr;
    }
  }

  .team-modal-cta {
    text-align: center;
    margin-top: 20px;
    padding-top: 40px;
  }

  .team-modal-cta h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--headings);
    margin-bottom: 12px;
  }

  .team-modal-cta h3 span {
    color: var(--cta);
  }

  .team-modal-cta p {
    max-width: 640px;
    margin: 0 auto 24px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text2);
    opacity: 0.85;
  }

  .team-modal-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent);
    color: var(--text1);
    font-weight: 700;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: var(--border);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    width: auto;
    max-width: 100%;
    justify-self: center;
    grid-column: 1 / -1;
    transition: background-color 0.3s ease;
    margin: 0px 0 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .team-modal-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
    background-color: var(--accent);
    color: var(--cta);
  }

  .team-modal-cta__btn svg {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    transform: translateX(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .team-modal-cta__btn:hover svg {
    transform: translateX(0);
    opacity: 1;
  }

  @media (max-width: 480px) {
    .team-modal-cta h3 {
      font-size: 24px;
    }
  }






  /* Footer starts here */

  .footer {
    background: var(--cta);
    color: var(--text1);
    padding: 60px 80px 30px;
  }

  .footer-wrap {
    max-width: 1200px;
    margin: 0 auto;
  }

  .newsletter {
    text-align: center;
    margin-bottom: 60px;
  }

  .newsletter h3 {
    color: var(--text1);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
  }

  .newsletter p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
  }

  .newsletter form {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--background2);
    padding: 6px 8px;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
  }

  .newsletter input[type="email"] {
    border: none;
    outline: none;
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 50px;
    color: var(--text2);
    width: 280px;
  }

  .newsletter button {
    background: var(--accent);
    color: var(--text1);
    border: none;
    outline: none;
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .newsletter button:hover {
    background: #ffab33;
  }

  .links-container {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 40px;
  }

  .links-container h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--accent);
  }

  .links-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .links-container li {
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 15px;
  }

  .links-container a {
    color: var(--text1);
    text-decoration: none;
    transition: opacity 0.3s ease;
  }

  .links-container a:hover {
    opacity: 0.75;
  }

  .footer hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 40px 0 25px;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
  }

  .social-icons img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease, filter 0.3s ease;
  }

  .social-icons img:hover {
    transform: scale(1.1);
    /* filter: brightness(1) invert(0) sepia(1) hue-rotate(320deg) saturate(8); */
  }

  .copyright {
    text-align: center;
    font-size: 14px;
    opacity: 0.9;
  }
}


@media (min-width: 768px) and (max-width: 1024px) {

  /* Header starts here */

  header {
    width: 100%;
    background: var(--background3);
    display: block;
    margin: 0;
    padding: 0;
  }

  .site-header {
    padding: 2px 20px;
    position: sticky;
    top: 0;
    z-index: 50;
  }

  .nav .nav-wrapper {
    max-width: 100%;
    margin: 0;
    background: var(--background3);
    border-radius: 0;
    padding: 32px 0 30px 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    box-sizing: border-box;
  }

  .nav-logo img {
    height: 42px;
    width: 100%;
    display: block;
  }

  .menu-icon {
    display: inline-flex;
    justify-self: end;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    width: 42px;
    height: 42px;
    border-radius: 0px;
    cursor: pointer;
    color: var(--cta);
  }

  .hide-mobile {
    display: none !important;
  }

  .menu-items {
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-top: 30px;
    border-radius: 18px;
    background: var(--background3);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 85%;
    max-width: 700px;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    max-height: none;
    overflow-y: auto;
    z-index: 60;
  }

  #menu-toggle:checked ~ .menu-items {
    transform: translateX(0);
  }

  body:has(#menu-toggle:checked) {
    overflow: hidden;
  }

  .menu-items li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    margin: 22px 0 0 -20px;
    list-style: none;
    padding: 12px 0;
  }

  .menu-items li:first-child {
    border-top: none;
  }

  .menu-items a {
    padding: 14px 0px;
    text-align: center;
    color: var(--headings);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 0;
    transition: background-color 0.2s ease;
  }

  .menu-items a:hover {
    background: none;
    color: var(--cta);
  }

  #menu-toggle {
    display: none;
  }

  .icon-menu,
  .icon-close {
    width: 50px;
    height: 50px;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .icon-close {
    display: none;
  }

  #menu-toggle:checked + label .icon-menu {
    display: none;
  }

  #menu-toggle:checked + label .icon-close {
    display: inline-block;
    margin-right: 0px
  }


  .btn-cta {
    padding: 9px 16px;
    font-size: 0.95rem;
  }

  .hide-desktop {
    display: block;
    padding: 10px 14px;
  }

  a:focus-visible,
  .menu-icon:focus-visible {
    outline: 3px solid rgba(79, 70, 229, 0.5);
    outline-offset: 3px;
  }




  /* sec 1 starts here */

  .sec1.about-hero {
    position: relative;
    width: 100%;
    height: 50vh; 
    background: url("/img/teaem.jpg") center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
  }

  .sec1.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
  }

  .about-container {
    position: relative;
    z-index: 2;
    color: var(--text1);
    padding: 0 20px; 
    max-width: 900px; 
    width: 100%;
  }

  .about-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: transparent;
  }

  .about-title {
    font-size: var(--heading-font-size-tablet);
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    color: var(--text1);
  }

  .breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px; 
    color: var(--text1);
  }

  .breadcrumb-link {
    color: var(--text1);
    text-decoration: none;
    opacity: 0.9;
    transition: color 0.3s ease;
  }

  .breadcrumb-link:hover {
    color: var(--accent);
  }

  .breadcrumb-separator {
    color: rgba(255, 255, 255, 0.7);
  }

  .breadcrumb-current {
    color: var(--text1);
    opacity: 0.9;
  }


  
  /* sec3 starts here */

  .sec3 {
    background: var(--background2);
    padding: 50px 40px;
    display: flex;
    margin: 0 auto;
    max-width: 1200px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .container-head {
    font-size: var(--heading-font-size-tablet);
    line-height: 1;
    padding: 90px 0 0;
    margin: 0;
  }

  .sec3-head {
    font-size: var(--heading-font-size-tablet);
    line-height: 1;
    padding: 15px 0 0;
    margin: 0;
  }

  .meet-the-team p {
    font-size: 16px;
    line-height: 1.5;
    padding: 0 0 60px;
    margin: 10px 0;
    max-width: 800px;
  }

  .sec3 .container {
    text-align: center;
    margin: 0 auto;
    padding: 30px 0px;
  }

  .sec3 .container h2 {
    font-size: var(--heading-font-size-tablet);
    color: var(--headings);
    font-weight: 700;
    margin-bottom: 10px;
    margin: -68px 0 10px;
  }

  .sec3 .container p {
    font-size: 16px;
    color: var(--text2);
    max-width: 650px;
    margin: 0 auto 0px;
    line-height: 1.5;
  }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 28px;
    margin-top: 8px;
  }

    .team-grid> :nth-child(1) {
      grid-column: 1 / span 2;
    }
  
    .team-grid> :nth-child(2) {
      grid-column: 3 / span 2;
    }
  
    .team-grid> :nth-child(3) {
      grid-column: 5 / span 2;
    }
  
    .team-grid> :nth-child(4) {
      grid-column: 2 / span 2;
    }
  
    .team-grid> :nth-child(5) {
      grid-column: 4 / span 2;
    }

  .team-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .team-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 16px;
    overflow: hidden;
    background: var(--background3);
  }

  .team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .team-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .team-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
  }

  .team-meta h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--headings);
    margin: 10px 0;
  }

  .team-title {
    font-size: 14px;
    color: var(--text2);
    opacity: 0.85;
  }

  .team-org {
    font-size: 13px;
    color: var(--text2);
    opacity: 0.8;
    padding: 5px 0;
    text-align: left;
  }

  .team-text {
    text-align: left;
  }

  .linkedin-icon {
    flex-shrink: 0;
    background: #fff;
    border-radius: 50%;
    padding: 6px;
    transition: transform 0.25s ease;
  }

  .linkedin-icon:hover {
    transform: translateY(-2px);
  }


  /* sec2 starts here */

  .sec2.management-section {
    background: var(--background2);
    padding: 50px 0;
    display: flex;
    margin: 0 auto;
    max-width: 1200px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: var(--background3);
  }

  .management-container {
    width: auto;
    padding: 30px 40px;
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 20px;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
  }

  .management-section h2 {
    font-size: var(--heading-font-size-tablet);
    color: var(--headings);
    margin: 6px 0 12px;
  }

  .management-section p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text2);
    max-width: 620px;
    margin: 10px auto;
  }

  .management-card {
    background: var(--background2);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.35s ease;
    cursor: default;
    padding: 20px 0;
  }

  .management-image {
    margin: 0;
    padding: 0;
  }

  .management-image img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    transition: transform 0.35s ease;
    margin: 0;
  }

  .management-content {
    padding: 10px 15px;
    transition: all 0.35s ease;
  }

  .management-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--headings);
    margin-bottom: 6px;
    line-height: 1;
  }

  .management-role {
    font-size: 15px;
    color: var(--text2);
    margin-bottom: 20px;
  }

  .management-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all 0.35s ease;
  }

  .management-social-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
  }

  .management-social-icon:hover {
    transform: scale(1.1);
  }

  .management-social-icon img {
    width: 20px;
    height: 20px;
  }

  .management-card:hover {
    transform: translateY(-8px);
  }

  .management-card:hover .management-name,
  .management-card:hover .management-role {
    color: var(--headings);
  }

  .management-card:hover .management-image img {
    transform: scale(1.05);
  }

  .management-card:hover .management-socials {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }

  .mg-social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.55);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: var(--cta);
    cursor: pointer;
    margin-right: 8px;
    transition: transform .25s ease, opacity .25s ease;
  }

  .mg-social:hover {
    transform: scale(1.12);
    opacity: 0.9;
  }

  .mg-social--linkedin {
    color: #0a66c2;
  }

  .mg-social--x {
    color: #000;
  }


  
  /* sec4 starts here */

  .team-showcase {
    padding: 50px 40px;
    text-align: center;
    background: var(--background2);
  }

  .team-showcase__title {
    font-size: var(--heading-font-size-tablet);
    color: var(--headings);
    margin: 10px 0 5px;
  }

  .team-showcase__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1400px;
    margin: 0px auto;
  }

  .team-showcase p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text2);
    max-width: 720px;
    margin: 10px auto 50px;
  }

  .team-card {
    text-align: left;
  }

  .team-card__image {
    position: relative;
    background: var(--background3);
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
  }

  .team-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .team-card__social {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    gap: 12px;
    opacity: 0;
    transition: all 0.35s ease;
  }

  .team-card:hover .team-card__social {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  .team-card__social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--background2);
    color: var(--cta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  }

  .team-card h4 {
    margin: 10px 0 2px;
    font-size: 16px;
    color: var(--headings);
  }

  .team-card span {
    font-size: 13px;
    color: var(--text2);
    opacity: 0.75;
    margin: -5px 0 0;
  }

  .team-showcase__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent);
    color: var(--text1);
    font-weight: 700;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: var(--border);
    border-color: var(--accent);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    width: max-content;
    max-width: 100%;
    justify-self: center;
    grid-column: 1 / -1;
    transition: background-color 0.3s ease;
    margin: 50px 0 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .team-showcase__btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
    background-color: var(--accent);
    color: var(--cta);
  }

  .team-showcase__btn svg {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    transform: translateX(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .team-showcase__btn:hover svg {
    transform: translateX(0);
    opacity: 1;
  }

  /* === MODAL === */
  .team-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 40px 20px;
  }

  .team-modal.active {
    display: flex;
  }

  .team-modal__content {
    background: var(--background2);
    width: 100%;
    max-width: 1000px;
    max-height: 70vh;
    overflow-y: auto;
    padding: 70px 40px;
    border-radius: 20px;
    position: relative;
  }

  .team-modal__close {
    position: absolute;
    top: 10px;
    right: 6px;
    background: none;
    border: none;
    font-size: 36px;
    cursor: pointer;
  }

  .team-modal .team-card__image {
    aspect-ratio: 3 / 3.8;
  }

  .team-modal .team-card h4 {
    font-size: 15px;
  }

  .team-modal .team-card span {
    font-size: 12px;
  }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .team-showcase__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 480px) {
    .team-showcase__grid {
      grid-template-columns: 1fr;
    }
  }

  .team-modal-cta {
    text-align: center;
    margin-top: 20px;
    padding-top: 40px;
  }

  .team-modal-cta h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--headings);
    margin-bottom: 12px;
  }

  .team-modal-cta h3 span {
    color: var(--cta);
  }

  .team-modal-cta p {
    max-width: 640px;
    margin: 0 auto 24px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text2);
    opacity: 0.85;
  }

  .team-modal-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent);
    color: var(--text1);
    font-weight: 700;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: var(--border);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    width: auto;
    max-width: 100%;
    justify-self: center;
    grid-column: 1 / -1;
    transition: background-color 0.3s ease;
    margin: 0px 0 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .team-modal-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
    background-color: var(--accent);
    color: var(--cta);
  }

  .team-modal-cta__btn svg {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    transform: translateX(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .team-modal-cta__btn:hover svg {
    transform: translateX(0);
    opacity: 1;
  }

  @media (max-width: 480px) {
    .team-modal-cta h3 {
      font-size: 24px;
    }
  }






  /* Footer starts here */

  .footer {
    background: var(--cta);
    color: var(--text1);
    padding: 60px 80px 30px;
  }

  .footer-wrap {
    max-width: 1200px;
    margin: 0 auto;
  }

  .newsletter {
    text-align: center;
    margin-bottom: 60px;
  }

  .newsletter h3 {
    color: var(--text1);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
  }

  .newsletter p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
  }

  .newsletter form {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--background2);
    padding: 6px 8px;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
  }

  .newsletter input[type="email"] {
    border: none;
    outline: none;
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 50px;
    color: var(--text2);
    width: 280px;
  }

  .newsletter button {
    background: var(--accent);
    color: var(--text1);
    border: none;
    outline: none;
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .newsletter button:hover {
    background: #ffab33;
  }

  .links-container {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 40px;
  }

  .links-container h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--accent);
  }

  .links-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .links-container li {
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 15px;
  }

  .links-container a {
    color: var(--text1);
    text-decoration: none;
    transition: opacity 0.3s ease;
  }

  .links-container a:hover {
    opacity: 0.75;
  }

  .footer hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 40px 0 25px;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
  }

  .social-icons img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease, filter 0.3s ease;
  }

  .social-icons img:hover {
    transform: scale(1.1);
    /* filter: brightness(1) invert(0) sepia(1) hue-rotate(320deg) saturate(8); */
  }

  .copyright {
    text-align: center;
    font-size: 14px;
    opacity: 0.9;
  }


}


@media (max-width: 767px) {
  :root {
    --general-padding: 20px 16px;
  }

  html,
  body {
    width: 100%;
    overflow-x: hidden ;
  }



  /* Navigation starts here */

  header {
    width: 100%;
    background: var(--background3);
    display: block;
    margin: 0;
    padding: 22px 0 0 0;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
  }

  .nav .nav-wrapper {
    max-width: inherit;
    margin: 0;
    background: var(--background3);
    border-radius: 0;
    padding: 0px 10px 20px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    box-sizing: border-box;
  }

  .nav-logo img {
    height: 25px;
    width: 100%;
    display: block;
  }

  .menu-icon {
    display: inline-flex;
    justify-self: end;
    align-items: center;
    justify-content: center;
    margin-right: 0px;
    width: auto;
    height: auto;
    border-radius: 0px;
    cursor: pointer;
    color: var(--cta);
  }

  .hide-mobile {
    display: none !important;
  }

  .menu-items {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    margin-top: 10px;
    border-radius: 18px;
    background: var(--background3);
    position: fixed;
    top: 0;
    left: 0;
    height: 100dvh;
    width: 100%;
    max-width: 320px;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    max-height: none;
    overflow-y: auto;
    z-index: 60;
  }

  #menu-toggle:checked ~ .menu-items {
    transform: translateX(0);
  }

  body:has(#menu-toggle:checked) {
    overflow: hidden;
  }

  .menu-items li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    margin: 22px 0 0 -20px;
    list-style: none;
    padding: 12px 0;
  }

  .menu-items li:first-child {
    border-top: none;
  }

  .menu-items a {
    padding: 14px 5px;
    text-align: center;
    color: var(--headings);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    border-radius: 0;
    transition: background-color 0.2s ease;
  }

  .menu-items a:hover {
    background: none;
    color: var(--cta);
  }

  #menu-toggle {
    display: none;
  }

  .btn-cta {
    padding: 9px 16px;
    font-size: 0.95rem;
  }

  .hide-desktop {
    display: block;
    padding: 10px 14px;
  }

  a:focus-visible,
  .menu-icon:focus-visible {
    outline: 3px solid rgba(79, 70, 229, 0.5);
    outline-offset: 3px;
  }

  .icon-menu,
  .icon-close {
    width: 30px;
    height: 30px;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .icon-close {
    display: none;
  }

  #menu-toggle:checked + label .icon-menu {
    display: none;
  }

  #menu-toggle:checked + label .icon-close {
    display: inline-block;
    margin-right: 0px
  }

  #menu-toggle:checked ~ .menu-items {
    position: fixed;
    inset: 0;
    height: 120vh;
    width: 100%;
    background: var(--background3);
    padding-top: 70px;
    overflow-y: auto;
    margin: 0;
    z-index: -1;
    transition: all 0.4s ease;
  }

  #menu-toggle:checked~.menu-items::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
  }

  #menu-toggle:checked~.menu-items,
  #menu-toggle:checked~.menu-items * {
    touch-action: none;
  }

  body:has(#menu-toggle:checked) {
    overflow: hidden;
  }

  /* header ends here */

  /* main section starts here */

  .sec1.about-hero {
    position: relative;
    width: 100%;
    height: 50vh; 
    background: url("/img/teaem.jpg") center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
  }

  .sec1.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
  }

  .about-container {
    position: relative;
    z-index: 2;
    color: var(--text1);
    padding: 0 20px; 
    max-width: 100%;
    width: 100%;
  }

  .about-header {
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: transparent;
    margin-top: 20px;
  }

  .about-title {
    font-size: var(--heading-font-size-mobile);
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    color: var(--text1);
  }

  .breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    color: var(--text1);
  }

  .breadcrumb-link {
    color: var(--text1);
    text-decoration: none;
    opacity: 0.9;
    transition: color 0.3s ease;
  }

  .breadcrumb-link:hover {
    color: var(--accent);
  }

  .breadcrumb-separator {
    color: rgba(255, 255, 255, 0.7);
  }

  .breadcrumb-current {
    color: var(--text1);
    opacity: 0.9;
  }

  
  /* sec3 starts here */

  .sec3 {
    background: var(--background2);
    padding: 30px 30px;
    display: flex;
    margin: 0 auto;
    max-width: 1200px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .container-head {
    font-size: var(--heading-font-size-mobile);
    line-height: 1;
    padding: 90px 0 0;
    margin: 0;
  }

  .sec3-head {
    font-size: var(--heading-font-size-mobile);
    line-height: 1;
    padding: 15px 0 0;
    margin: 0;
  }

  .meet-the-team p {
    font-size: 16px;
    line-height: 1.5;
    padding: 0 0 60px;
    margin: 10px 0;
    max-width: 800px;
  }

  .sec3 .container {
    text-align: center;
    margin: 0 auto;
    padding: 30px 0px;
  }

  .sec3 .container h2 {
    font-size: var(--heading-font-size-mobile);
    color: var(--headings);
    font-weight: 700;
    margin-bottom: 10px;
    margin: -68px 0 10px;
  }

  .sec3 .container p {
    font-size: 16px;
    color: var(--text2);
    max-width: 650px;
    margin: 0 auto 0px;
    line-height: 1.5;
  }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(1fr);
    gap: 28px;
    margin-top: 8px;
  }


  .team-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .team-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 16px;
    overflow: hidden;
    background: var(--background3);
  }

  .team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .team-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .team-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .team-meta h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--headings);
    margin: 10px 0;
  }

  .team-title {
    font-size: 14px;
    color: var(--text2);
    opacity: 0.85;
  }

  .team-org {
    font-size: 13px;
    color: var(--text2);
    opacity: 0.8;
    text-align: left;
    padding: 5px 0;
  }

  .team-text {
    text-align: left;
  }

  .linkedin-icon {
    flex-shrink: 0;
    background: #fff;
    border-radius: 50%;
    padding: 6px;
    transition: transform 0.25s ease;
  }

  .linkedin-icon:hover {
    transform: translateY(-2px);
  }

  /* sec2 starts here */

  .sec2.management-section {
    background: var(--background2);
    padding: 50px 0;
    display: flex;
    margin: 0 auto;
    max-width: 1200px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: var(--background3);
  }

  .management-container {
    width: auto;
    padding: 30px 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
  }

  .management-section h2 {
    font-size: var(--heading-font-size-mobile);
    color: var(--headings);
    margin: 6px 0 12px;
  }

  .management-section p {
    font-size: 16px;
    line-height: 1.4;
    color: var(--text2);
    max-width: 420px;
    margin: 10px 20px;
  }

  .management-card {
    background: var(--background2);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.35s ease;
    cursor: default;
    padding: 20px 0;
  }

  .management-image {
    margin: 0;
    padding: 0;
  }

  .management-image img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    transition: transform 0.35s ease;
    margin: 0;
  }

  .management-content {
    padding: 10px 15px;
    transition: all 0.35s ease;
  }

  .management-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--headings);
    margin-bottom: 6px;
    line-height: 1;
  }

  .management-role {
    font-size: 15px;
    color: var(--text2);
    margin-bottom: 20px;
  }

  .management-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    opacity: 1;
    transform: translateY(10px);
    pointer-events: none;
    transition: all 0.35s ease;
  }

  .management-social-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
  }

  .management-social-icon:hover {
    transform: scale(1.1);
  }

  .management-social-icon img {
    width: 20px;
    height: 20px;
  }

  .management-card:hover {
    transform: translateY(-8px);
  }

  .management-card:hover .management-name,
  .management-card:hover .management-role {
    color: var(--headings);
  }

  .management-card:hover .management-image img {
    transform: none;
  }

  .management-card:hover .management-socials {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }

  .mg-social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.55);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: var(--cta);
    cursor: pointer;
    margin-right: 8px;
    transition: transform .25s ease, opacity .25s ease;
  }

  .mg-social:hover {
    transform: scale(1.12);
    opacity: 0.9;
  }

  .mg-social--linkedin {
    color: #0a66c2;
  }

  .mg-social--x {
    color: #000;
  }


  /* sec4 starts here */

  .team-showcase {
    padding: 50px 30px;
    text-align: center;
    background: var(--background2);
  }

  .team-showcase__title {
    font-size: var(--heading-font-size-mobile);
    color: var(--headings);
    margin: 10px 0 5px;
  }

  .team-showcase__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1400px;
    margin: 0px auto;
  }

  .team-showcase p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text2);
    max-width: 720px;
    margin: 10px auto 50px;
  }

  .team-card {
    text-align: left;
  }

  .team-card__image {
    position: relative;
    background: var(--background3);
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
  }

  .team-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .team-card__social {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(0px);
    display: flex;
    gap: 12px;
    opacity: 1;
    transition: all 0.35s ease;
  }

  .team-card:hover .team-card__social {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  .team-card__social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--background2);
    color: var(--cta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  }

  .team-card h4 {
    margin: 10px 0 2px;
    font-size: 16px;
    color: var(--headings);
  }

  .team-card span {
    font-size: 13px;
    color: var(--text2);
    opacity: 0.75;
    margin: -5px 0 0;
  }

  .team-showcase__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent);
    color: var(--text1);
    font-weight: 700;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: var(--border);
    border-color: var(--accent);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    width: max-content;
    max-width: 100%;
    justify-self: center;
    grid-column: 1 / -1;
    transition: background-color 0.3s ease;
    margin: 50px 0 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .team-showcase__btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
    background-color: var(--accent);
    color: var(--cta);
  }

  .team-showcase__btn svg {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    transform: translateX(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .team-showcase__btn:hover svg {
    transform: translateX(0);
    opacity: 1;
  }

  /* === MODAL === */
  .team-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 40px 20px;
  }

  .team-modal.active {
    display: flex;
  }

  .team-modal__content {
    background: var(--background2);
    width: 100%;
    max-width: 1000px;
    max-height: 70vh;
    overflow-y: auto;
    padding: 70px 40px;
    border-radius: 20px;
    position: relative;
  }

  .team-modal__close {
    position: absolute;
    top: 10px;
    right: 6px;
    background: none;
    border: none;
    font-size: 36px;
    cursor: pointer;
  }

  .team-modal .team-card__image {
    aspect-ratio: 3 / 3.8;
  }

  .team-modal .team-card h4 {
    font-size: 15px;
  }

  .team-modal .team-card span {
    font-size: 12px;
  }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .team-showcase__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 480px) {
    .team-showcase__grid {
      grid-template-columns: 1fr;
    }
  }

  .team-modal-cta {
    text-align: center;
    margin-top: 20px;
    padding-top: 40px;
  }

  .team-modal-cta h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--headings);
    margin-bottom: 12px;
  }

  .team-modal-cta h3 span {
    color: var(--cta);
  }

  .team-modal-cta p {
    max-width: 640px;
    margin: 0 auto 24px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text2);
    opacity: 0.85;
  }

  .team-modal-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent);
    color: var(--text1);
    font-weight: 700;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: var(--border);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    width: auto;
    max-width: 100%;
    justify-self: center;
    grid-column: 1 / -1;
    transition: background-color 0.3s ease;
    margin: 0px 0 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .team-modal-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
    background-color: var(--accent);
    color: var(--cta);
  }

  .team-modal-cta__btn svg {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    transform: translateX(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .team-modal-cta__btn:hover svg {
    transform: translateX(0);
    opacity: 1;
  }

  @media (max-width: 480px) {
    .team-modal-cta h3 {
      font-size: 24px;
    }
  }




  
  /* Footer starts here */

  .footer {
    background: var(--cta);
    color: var(--text1);
    padding: 40px 18px 24px;
  }

  .footer-wrap {
    max-width: 100%;
    margin: 0 auto;
  }

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

  .newsletter h3 {
    color: var(--text1);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.2;
  }

  .newsletter p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    padding: 0 6px;
    line-height: 1.5;
  }

  .newsletter form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    background: var(--background2);
    padding: 25px 15px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  }

  .newsletter input[type="email"] {
    border: none;
    outline: none;
    padding: 15px 14px;
    font-size: 14px;
    border-radius: 15px;
    color: var(--text2);
    width: 100%;
    margin-bottom: 5px;
    box-sizing: border-box;
    background: var(--background3)
  }

  .newsletter button {
    background: var(--accent);
    color: var(--text1);
    border: none;
    outline: none;
    padding: 10px 20px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
  }

  .newsletter button:hover {
    background: #ffab33;
  }

  .links-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    margin-bottom: 30px;
    text-align: left;
  }

  .links-container h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--accent);
  }

  .links-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .links-container li {
    margin-bottom: 8px;
    line-height: 1.5;
    font-size: 14px;
  }

  .links-container a {
    color: var(--text1);
    text-decoration: none;
    transition: opacity 0.3s ease;
  }

  .links-container a:hover {
    opacity: 0.75;
  }

  .footer hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    margin: 24px 0 18px;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 16px;
    flex-wrap: wrap;
  }

  .social-icons img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease, filter 0.3s ease;
  }

  .social-icons img:hover {
    transform: scale(1.05);
    /* filter: brightness(1) invert(0) sepia(1) hue-rotate(320deg) saturate(8); */
  }

  .copyright {
    text-align: center;
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.5;
    padding: 0 10px;
  }





}