:root {
    --nav-gap: 1.76rem;
    --font-title-1: clamp(1.6rem, 2.4vw, 2rem);
    --font-2ndary: clamp(0.96rem, 1.6vw, 1.2rem);
    --font-body: clamp(0.8rem, 1.2vw, 0.96rem);
    --font-title-large: clamp(1.76rem, 4vw, 3.2rem);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
  }
  
  .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
  }
  
  /* Header */
  .header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  
  .header-content {
    display: flex;
    align-items: center;
    height: 8vh;
    width: 100%;
  }
  
  .logo-left {
    display: flex;
    align-items: center;
  }
  
  .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }
  
  .logo-link:hover {
    opacity: 0.8;
  }
  
  .logo {
    height: 64px;
    max-width: 2400px;
    width: auto;
    padding-top: 0;
  }
  
  .nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  
  .nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: var(--nav-gap);
    transition: all 0.3s;
  }
  
  .nav-link {
    text-decoration: none;
    color: #1e293b;
    font-weight: 700;
    font-size: 1.12rem;
    border-radius: 12px;
    padding: .48rem 2rem;
    justify-content: center;
    background: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
  }
  
  .nav-link.get-involved {
    background: linear-gradient(120deg, #189dac 0%, #43c6db 100%);
    color: #fff;
    border: 2px solid rgba(24,157,172,0.3);
  }
  
  .nav-link:hover {
    color: #189dac;
    background: rgba(24,157,172,0.1);
    transform: translateY(-2px);
  }
  
  .nav-link.get-involved:hover {
    color: #fff;
    background: linear-gradient(120deg, #43c6db 0%, #189dac 100%);
    border: 2px solid #43c6db;
  }
  
  /* Dropdown styles */
  .nav-item.dropdown {
    position: relative;
  }
  
  .dropdown-arrow {
    margin-left: 0.6em;
    font-size: .8em;
  }
  
  .nav-item.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
  }
  
  .dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    min-width: 100%;
    box-shadow: 0 8px 24px rgba(24,157,172,0.10);
    border-radius: 0 0 12px 12px;
    z-index: 1001;
    list-style: none;
  }
  
  .nav-item.dropdown:hover .dropdown-menu,
  .nav-item.dropdown:focus-within .dropdown-menu {
    display: block;
  }
  
  .dropdown-link {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    color: #189dac;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.88rem;
    background: none;
    border: none;
    transition: background 0.2s, color 0.2s;
  }
  
  .dropdown-link:hover {
    background: rgba(24,157,172,0.08);
    color: #12707c;
  }
  
  .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 8px;
    padding: 0.75rem;
    border-radius: 12px;
    transition: all 0.3s;
    background: none;
    border: none;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1100;
  }
  
  .mobile-menu-toggle span {
    width: 36px;
    height: 5px;
    background: #1e293b;
    border-radius: 3px;
    transition: all 0.3s;
    display: block;
    transform-origin: left center;
  }

.team-hero {
    padding: 4rem 0 1.6rem 0;
    text-align: center;
  }
  
  .team-title {
      font-size: var(--font-title-large);
      font-weight: 800;
      background: linear-gradient(110deg,  #1294a8 1%, #43c6db 66%, #c9f2f8 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
      margin-bottom: 0.8rem;
      letter-spacing: 1px;
  }
  
  .team-content-section {
      margin: 0.8rem 0 4.8rem 0;
  }
  
  .team-content {
    font-size: 1.2rem;
    color: #333;
    max-width: 720px;
    margin: 0;
    line-height: 1.36;
    text-align: left;
} 
  
  .member-div {
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 14.4px;
    margin: 2rem 0;
    padding: 0 1.2rem;
    box-shadow: 0 8px 24px rgba(24,157,172,0.07);
}
  
  .member-title {
    font-size: 1.6rem;
    font-weight: 900;
    background: linear-gradient(110deg,  #1294a8 1%, #43c6db 66%, #a2ebf7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
    letter-spacing: 1px;
}
  
  .member-img {
      width: 176px;
      height: auto;
      object-fit: unset;
      background: none;
      border-radius: 0 !important;
      box-shadow: 0 2px 12px rgba(24,157,172,0.08);
      flex-shrink: 0;
      display: block;
      margin-bottom: 16px;
      margin-top: -3rem;
  }
  
  .member-content {
    display: flex;
    align-items: flex-start;
    gap: 1.6rem;
    flex-wrap: wrap;
}

.member-p {
    flex: 1;
    font-size: 1.04rem;
    line-height: 1.7;
    color: #333;
    margin: 0;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
  
  /* Responsive Styles for Nav Bar */
  @media (max-width: 1900px) {
    :root {
      --nav-gap: 1.5rem;
    }
    .container {
      max-width: 1400px;
      padding: 0 24px;
    }
    .logo {
      max-width: 150px;
      height: 50px;
    }  
    .nav-link, .dropdown-link {
      font-size: 1.1rem;
      padding: 0.7rem 1.1rem;
    }
  }

  @media (max-width: 1700px) and (min-width: 1201px) {
    .container {
      max-width: 1400px;
      padding: 0 20px;
    }
  }

  @media (max-width: 1440px) and (min-width: 1201px) {
    .container {
      max-width: 1200px;
      padding: 0 20px;
    }
    .nav-link {
      font-size: 0.95rem;
      padding: 0.5rem 1.7rem;
    }
    .dropdown-link {
      font-size: 0.85rem;
      padding: 0.8rem 1.2rem;
    }
  }
  
  @media (max-width: 1199px) {
    :root {
      --nav-gap: 1rem;
    }
    .container {
      max-width: 100vw;
      padding: 0 12px;
    }
    .logo {
      max-width: 110px;
      height: 40px;
    }
    .nav-link, .dropdown-link {
      font-size: 1rem;
      padding: 0.6rem 0.8rem;
    }
  }
  
  @media (max-width: 780px) {
    .header-content {
      flex-wrap: wrap;
      min-height: unset;
    }
    .nav {
      width: 100%;
      justify-content: flex-end;
    }
      .nav {
    width: 100%;
    justify-content: flex-end;
    display: none;
  }
  .nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    animation: slideDown 0.3s ease;
    z-index: 1001;
  }
  .nav-list {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
      .nav.active .nav-link {
    font-size: 1.2rem;
    padding: 1rem 1.5rem;
    width: 100%;
    text-align: center;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.05);
    transition: all 0.3s ease;
  }
  .nav.active .nav-link.get-involved {
    background: linear-gradient(120deg, #1294a8 0%, #43c6db 100%) !important;
    color: #fff !important;
    border: 2px solid rgba(18,148,168,0.3);
    box-shadow: none;
  }
  .nav.active .nav-link.get-involved:hover {
    background: linear-gradient(120deg, #0f7a8a 0%, #189dac 100%) !important;
    color: #fff !important;
    border: 2px solid #0f7a8a;
  }
  .nav.active .nav-link:hover {
    background: rgba(37, 99, 235, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
  }
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
  }
  .logo {
    max-width: 100px;
    height: 36px;
  }
    .nav-link, .dropdown-link {
      font-size: 0.95rem;
      padding: 0.5rem 0.7rem;
    }
  }
  
  @media (min-width: 781px) {
    .mobile-menu-toggle {
      display: none !important;
    }
  }

.team-banner {
  background: linear-gradient(5deg, #dcf4f8 0%, #43c6db 20%, #118b9e 50%, #43c6db 80%, #dcf4f8 100%);
  color: #fff !important;
  padding: 2.2rem 0;
  border-radius: 0;
  display: block;
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-shadow: 0 4px 18px rgba(24,157,172,0.10);
  text-align: center;
  margin-top: 0;
}

.team-title.team-banner {
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  color: #fff !important;
} 

/* Quote Block Styles */
.quote-block {
  font-style: italic;
  font-size: 1.2rem;
  color: #189dac;
  border-left: 4px solid #189dac;
  padding: 1rem 0 1rem 2rem;
  margin: 2rem 0;
  background: linear-gradient(135deg, rgba(24, 157, 172, 0.05) 0%, rgba(67, 198, 219, 0.05) 100%);
  border-radius: 0 8px 8px 0;
  position: relative;
}

.quote-block::before {
  content: '"';
  font-size: 3rem;
  color: #189dac;
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  font-family: serif;
}

.quote-block::after {
  content: '"';
  font-size: 3rem;
  color: #189dac;
  position: relative;
  display: inline;
  font-family: serif;
  margin-left: 0.2rem;
  line-height: 0;
  vertical-align: middle;
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .quote-block {
    font-size: 1.1rem;
    padding: 0.8rem 0 0.8rem 1.5rem;
    margin: 1.5rem 0;
  }
  
  .quote-block::before {
    font-size: 2.5rem;
    top: -0.3rem;
    left: 0.8rem;
  }
  
  .quote-block::after {
    font-size: 2.5rem;
    margin-left: 0.15rem;
    line-height: 0;
    vertical-align: top;
  }
}

@media (max-width: 900px) {
  .member-content {
    flex-direction: column;
    gap: 1rem;
  }
  
  .member-p {
    min-height: auto;
    order: 2;
  }
  
  .member-img {
    order: 3;
    margin-top: 1rem;
    margin-bottom: 0;
    align-self: center;
  }
}

@media (max-width: 480px) {
  .quote-block {
    font-size: 1rem;
    padding: 0.6rem 0 0.6rem 1.2rem;
    margin: 1rem 0;
  }
  
  .quote-block::before {
    font-size: 2rem;
    top: -0.2rem;
    left: 0.6rem;
  }
  
  .quote-block::after {
    font-size: 2rem;
    margin-left: 0.1rem;
    line-height: 0;
    vertical-align: top;
  }
  
  .member-content {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .member-p {
    min-height: auto;
    order: 2;
    font-size: 0.95rem;
  }
  
  .member-img {
    order: 3;
    margin-top: 1rem;
    margin-bottom: 0;
    align-self: center;
    width: 140px;
  }
  
  .member-title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer Styles */
.footer {
  background: #1e293b;
  color: white;
  padding: 2.4rem 0 0.8rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 1.6rem;
}

.footer-section h4 {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  color: #f1f5f9;
}

.footer-section p {
  color: #94a3b8;
  line-height: 1.28;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.4rem;
}

.footer-section ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #f1f5f9;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 1rem;
  text-align: center;
  color: #94a3b8;
}

.partner-logos {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: center;
}

.partner-logo {
  height: 80px;
  width: auto;
  max-width: 208px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  background: white;
  padding: 6px;
  border-radius: 6px;
}

.partner-logo:hover {
  opacity: 1;
}

/* Footer Resp Styles */
@media (max-width: 780px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .partner-logos {
    gap: 1rem;
  }
  
  .partner-logo {
    height: 55px;
    max-width: 150px;
    padding: 5px;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .partner-logos {
    gap: 0.8rem;
  }
  
  .partner-logo {
    height: 50px;
    max-width: 130px;
    padding: 4px;
  }
} 