* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
  overflow-x: hidden;
  max-width: 100vw;
  background-color: #F3FBFC;
}


       body {
    font-family: 'Montserrat', sans-serif;
    background-color: transparent;
    padding-top: 30px;
}

h1, h2 {
    font-family: 'Encode Sans Expanded', sans-serif;
}

.navbar {
    background-color: transparent;
    position: relative; 
    z-index: 2000;
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    width: 160px;
    height: 31px;
    margin-left: 25px;
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-item {
    color: var(--Text-Dark, #002425);
    position: relative;
}

.nav-link {
    color: var(--Text-Dark, #002425);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    font-style: normal;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
    min-width: fit-content;
}

.nav-link:hover {
    color: var(--Text-Medium, #455E5F);
}

.dropdown-arrow {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.dropdown-arrow.active {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    min-width: 250px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1100;
    margin-top: 0.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--Text-Dark, #002425);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-item:hover {
    color: #059669;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-dropdown {
    position: relative;
}


.language-dropdown { position: relative; }

.language-dropdown .dropdown-menu{
  /* sadece dil menüsü için override */
  left: 0;                
  right: auto;
  top: calc(100% - 1px);     
  transform: none;
  margin-top: 0;
  width: 100%;              
  min-width: unset;
  border-radius: 0 0 8px 8px;      
  border: 1px solid #D0DDDD;       
  background: transparent;           
  box-shadow: none;                  
  z-index: 9999;
}


.language-dropdown:has(.dropdown-menu.active) .language-btn{
  background: transparent;
  color: var(--Text-Dark, #002425);
  border: 1px solid #D0DDDD;
  border-bottom: none;              
  border-radius: 8px 8px 0 0;
}


.mobile-controls .language-dropdown .dropdown-menu{
  left: 0;
  top: calc(100% - 1px);
  transform: none;
  margin-top: 0;
  width: 100%;
  border-radius: 0 0 8px 8px;
  box-shadow: none;
}

.mobile-controls .language-dropdown:has(.dropdown-menu.active) .mobile-language-btn{
  background: transparent;
  color: var(--Text-Dark, #002425);
  border: 1px solid #D0DDDD;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
}

.language-btn {
    background: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    color: var(--Text-Dark, #002425);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    transition: all 0.2s ease;
    font-size: 18px;
    white-space: nowrap;
    min-width: fit-content;
}

.language-btn:hover {
    color:  var(--Text-Medium, #455E5F);
}

.contact-btn {
    background-color: #003B3E;
    color:#F3FBFC;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    border: none;
    padding: 14px 28px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 16px;
    white-space: nowrap;
    min-width: fit-content;
}

.contact-btn:hover {
   background: transparent;
   color: var(--Text-Dark, #002425);
   border: 1px solid #D0DDDD;
}

.mobile-controls {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.mobile-language-btn {
    background: none;
    border: none;
    color: var(--Text-Dark, #002425);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.4rem 0.6rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 0.85rem;
    white-space: nowrap;
    min-width: fit-content;
}

.mobile-language-btn:hover {
    color:  var(--Text-Medium, #455E5F);
}

.mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--Text-Dark, #002425);
}

.mobile-menu-toggle:hover {
    color: #059669;
}

.hamburger-icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.mobile-menu {
    display: none;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 0.5rem 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-content {
    padding: 1rem;
}

.mobile-nav-item {
    margin-bottom: 0.5rem;
}

.mobile-nav-item .contact-btn {
    width: 100%;
}

.mobile-nav-link {
    color: var(--Text-Dark, #002425);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem 0;
    display: block;
    transition: color 0.2s ease;
    word-wrap: break-word;
    hyphens: auto;
}

.mobile-nav-link:hover {
    color:  var(--Text-Medium, #455E5F);
}

.mobile-dropdown-toggle {
    background: none;
    border: none;
    color: var(--Text-Dark, #002425);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    text-align: left;
    padding: 0.75rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s ease;
    font-family: 'Montserrat', sans-serif;
    word-wrap: break-word;
    hyphens: auto;
}

.mobile-dropdown-toggle:hover {
    color:  var(--Text-Medium, #455E5F);
}

.mobile-dropdown-content {
    display: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
}

.mobile-dropdown-content.active {
    display: block;
}

.mobile-dropdown-item {
    display: block;
    padding: 0.5rem 0;
    color: var(--Text-Dark, #002425);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    word-wrap: break-word;
    hyphens: auto;
    line-height: 1.4;
}

.mobile-dropdown-item:hover { 
    color: #059669;
}


.mobile-dropdown-toggle .dropdown-arrow{
  transition:transform 200ms ease;
  transform:rotate(0deg);
}
.mobile-dropdown-toggle[aria-expanded="true"] .dropdown-arrow,
.dropdown-arrow.rotated{ transform:rotate(180deg); }

        .ellipse {
  position: absolute;
  width: 500px;  
  height: 500px;
  border-radius: 50%;
  background-image: radial-gradient(50% 50% at 50% 50%, rgba(0, 178, 186, 0.60) 0%, rgba(0, 178, 186, 0.00) 100%);
  opacity: 0.2;
  z-index: 0;  
  pointer-events: none;
}

.ellipse-right {
  top: -100px;
  right: -100px;
}

        

        @media (max-width: 768px) {
            .nav-container {
                padding: 0 1rem;
            }

            .logo img {
                width: 99.10355px;
                height: 19px;
                margin-left: auto;
            }

            .nav-center {
                display: none;
            }

            .nav-actions {
                display: none;
            }

            .mobile-controls {
                display: flex;
            }

             .ellipse {
  position: absolute;
  width: 300px;  
  height: 300px;
  border-radius: 50%;
  background-image: radial-gradient(50% 50% at 50% 50%, rgba(0, 178, 186, 0.60) 0%, rgba(0, 178, 186, 0.00) 100%);
  opacity: 0.3;
  z-index: 0;  
  pointer-events: none;
}

.ellipse-right {
  top: -100px;
  right: -100px;
}
        }


        @media (max-width:1024px) {
            .nav-link {
                font-size: 14px;
            }
        }


        /*hero section styles*/
        .container {
    display: flex;
    padding: 84px 56px 56px 56px;
    max-width: 1440px;
    margin: 0 auto;
    background-color: #F3FBFC;
    overflow: hidden;
}



.content1 {
    width: 100%;
    display: flex;
    overflow: hidden;
    flex-direction: column;
}

.intro-text {
    width: 945px;
    font-size: 40px;
    font-family: 'Encode Sans Expanded', sans-serif;
    color: var(--Text-Dark, #002425);
    margin-bottom: 56px;
    font-weight: 500;
    line-height: 125%;
    font-style: normal;
}

.highlight5 {
    font-family: 'Encode Sans Expanded', sans-serif;
    font-style: normal;
    color: var(--Primary-Base, #00B2BA);
    font-weight: 500;
}

.image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    background-color: #ffffff;
}

.main-image {
    width: 100%;
    height: auto; 
    max-width: 1328.45px;
    object-fit: contain;
}

@media (max-width:1024px) {
    .intro-text {
        width: 100%;
        font-size: 32px;
        margin-bottom: 32px;
        line-height: 1.4;
    }
}

/* Tablet and Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .container {
        display: flex;
        padding: 28px 16px;
        width: 100%;
        max-width: 100%;
    }
    
    .intro-text {
        width: 100%;
        font-size: 24px;
        margin-bottom: 24px;
        line-height: 1.4;
    }
    
    .main-image {
         width: 100%;
        height: auto; 
        max-width: 100%;
        object-fit: contain;
    }
    
    .image-container {
        justify-content: center;
    }
}

/* Extra small screens */
@media screen and (max-width: 480px) {
    .intro-text {
        width: 343px;
        font-size: 28px;
    }
    
    .main-image {
        width: 100%;
        height: auto;
        background-color: #F3FBFC;
        aspect-ratio: 456.51/300.00;
    }
}

@media (max-width:360px) {
    .intro-text {
        width: 100%;
        font-size: 22px;
        margin-bottom: 16px;
    }
}



/*strategy section styles*/

.strategy-section {
    display: flex;
    max-width: 1440px;
    width: 100%;
    height: 606px;
    padding: 56px 56px 114px 56px;
    margin: 0 auto;
    align-items: flex-start;
    gap: 80px;
    background-color: #F3FBFC;
    overflow: hidden;

}

.strategy-pill {
    flex-shrink: 0;
    margin-top: 8px;
}

.insights-badge1 {
     font-size: 18px;
  font-weight: 500;
  margin-bottom: 1rem;
  display: flex;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  align-items: center;
  gap: 12px;
  background-color: var(--Interface-bg-02, #F3FBFC);   
  color: var(--Text-Medium, #455E5F);              
  padding: 12px 24px;      
  border-radius: 24px;      
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  white-space: nowrap;
  border: 1px solid var(--Interface-Stroke, #D0DDDD);
}

.pill-text::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
}

.strategy-content {
    flex: 1;
    max-width: 100%;
    margin-left: 250px;
    overflow: hidden;
}

.strategy-title {
    width: 100%;
    font-size: 40px;
    font-weight: 500;
    line-height: 125%;
    font-style: normal;
    font-family: 'Encode Sans Expanded', sans-serif;
    color: var(--Text-Dark, #002425);
    margin-bottom: 32px;
}

.highlight1 {
    font-family: 'Encode Sans Expanded', sans-serif;
    font-style: normal;
    font-weight: 500;
    color: var(--Primary-Base, #00B2BA);
}

.strategy-description {
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    line-height: 150%;
    color: var(--Text-Dark, #002425);
    font-weight: 400;
    margin-bottom: 48px;
    max-width: 737px;
}

.stats-container {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.stat-item {
    text-align: left;
}

.stat-number {
    width: 204px;
    font-size: 72px;
    font-weight: 400;
    color: var(--Text-Dark, #002425);
    line-height: 100%;
    margin-bottom: 8px;
}

.stat-label {
    width: 208px;
    font-size: 18px;
    color: var(--Text-Dark, #002425);
    font-weight: 500;
    opacity: 0.4;
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .strategy-section {
        max-width: 100%;
        height: 100%;
        padding: 40px 32px 0 32px;
        gap: 60px;
        overflow: hidden;
    }
    
    .strategy-title {
        width: 700px;
        font-size: 40px;
        margin-bottom: 28px;
    }

    .strategy-content {
        margin-left: 0;
        overflow: hidden;
    }
       
    
    .strategy-description {
        width: 500px;
        font-size: 15px;
        margin-bottom: 40px;
    }
    
    .stats-container {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 65px;
    }
}

@media (max-width: 768px) {
    .strategy-section {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
        padding: 28px 16px;
        gap: 24px;
        align-items: stretch;
    }
    
    .strategy-pill {
        margin-top: 0;
        margin-left: 145px;
    }
    
    .strategy-content {
       margin-left: 150px;
    }
    
    .strategy-title {
        width: 500px;
        font-size: 25px;
        margin-bottom: 24px;
    }
    
    .strategy-description {
        width: 500px;
        font-size: 14px;
        margin-bottom: 32px;
    }
    
    .stats-container {
        gap: 10px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .stats-container {
        gap: 24px;
    }

    .strategy-pill {
        margin-left: 0;
    }
    
    .strategy-title {
        width: 343px;
        font-size: 28px;
    }

    .strategy-description {
        width: 343px;
        font-size: 16px;
    }

    .strategy-content {
        margin-left: 0;
    }
    
    .stat-number {
        width: 120px;
        font-size: 48px;
    }

    .stat-label {
        width: 120px;
        font-size: 14px;
    }
}

@media (max-width:375px) {
    .strategy-description {
        width: 100%;
        font-size: 14px;
        margin-bottom: 16px;
    }

    .stats-container {
        gap: 3%; 
    }

    .stat-number {
        font-size: 48px; 
    }

    .stat-label {
        font-size: 16px;
    }
}

@media (max-width: 320px) {
    .stats-container {
        gap: 2%;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 10px;
    }
}



/* Partners in innovation section */
.partners-section {
    background-color: #F3FBFC;
    width: 100%;
    display: flex;
    justify-content: center;
}

.partners-container {
    display: flex;
    width: 1440px;
    max-width: 100%;
    padding: 56px;
    flex-direction: column;
}

.partners-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 64px;
}

.partners-header h2 {
    font-size: 40px;
    font-family: 'Encode Sans Expanded', sans-serif;
    font-weight: 500;
    font-style: normal;
    line-height: 125%;
    color: var(--Text-Dark, #002425);
}

.become-partner-link {
     position: relative; 
  color: var(--Primary-Base, #00B2BA);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 20px;
  border-bottom: 1px solid var(--Primary-Base, #00B2BA);
  padding-bottom: 1px;
  overflow: hidden;          
}

.become-partner-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #00B2BA;
     transform: scaleX(0);       
  transform-origin: left;
  transition: transform 0.3s ease;
}

.become-partner-link:hover::after {
    transform: scaleX(1);
}

.partners-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 8px;
}

.partner-logo {
    width: 120px;
    height: 50px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* From insight to impact section */
.insight-impact-section {
    background-color: #E7F2F3;
    width: 100%;
    display: flex;
    justify-content: center;
}

.insight-container {
    display: flex;
    height: 490px;
    padding: 56px;
    width: 1440px;
    max-width: 100%;
    flex-direction: column;
}

.insight-container h2 {
    font-size: 40px;
    font-weight: 500;
    font-family: 'Encode Sans Expanded', sans-serif;
    font-style: normal;
    color: var(--Text-Dark, #002425);
    margin-bottom: 60px;
}

.insight-header {
    display: flex;
    align-items: center; 
    gap: 12px;  
}

.insight-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex: 1;
}

.insight-item {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.insight-icon {
    margin-bottom: 20px;
    width: 48px;
    height: 48px;
    background-color: var(--Interface-White, #F3FBFC);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.insight-item h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--Text-Dark, #002425);
    margin-bottom: 16px;
}

.insight-item p {
    font-size: 18px;
    line-height: 150%;
    font-family: 'montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    color: var(--Text-Medium, #455E5F);
}

.insight-item > .insight-icon:first-child {
    display: none;
}

/* Tablet styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .partners-container {
        width: 100%;
        max-width: 1024px;
        padding: 56px 32px;
    }
    
    .insight-container {
        width: 100%;
        max-width: 1024px;
        padding: 56px 32px;
        height: auto;
    }
    
    .partners-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    
    .insight-content {
        flex-direction: column;
        gap: 30px;
    }
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .partners-container {
        display: flex;
        padding: 56px 16px;
        width: 100%;
        flex-direction: column;
    }
    
    .partners-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 32px;
    }
    
    .partners-header h2 {
        font-size: 24px;
    }
    
    .partners-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .partner-logo {
        width: 100px;
        height: 42px;
    }
    
    .insight-impact-section {
        width: 100%;
    }
    
    .insight-container {
        display: flex;
        padding: 56px 16px;
        width: 110%;
        height: auto;
        flex-direction: column;
    }
    
    .insight-container h2 {
        font-size: 24px;
        margin-bottom: 32px;
    }
    
    .insight-content {
        flex-direction: column;
        gap: 32px;
    }
    
    .insight-item {
        flex-direction: column;
        gap: 20px;
    }
    
    .insight-header {
        display: flex;
        align-items: center;
        gap: 16px;
    }
    
    .insight-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .insight-item h3 {
        font-size: 18px;
        margin-bottom: 0;
    }
    
    .insight-item p {
        font-size: 14px;
        margin-top: 0;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .partners-container {
        padding: 40px 16px;
    }
    
    .insight-container {
        padding: 40px 16px;
    }
    
    .partners-logos {
        gap: 15px;
    }
    
    .partner-logo {
        width: 90px;
        height: 38px;
    }
}




 /* Team Section */

/* Desktop Styles */
.team-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100%;
    padding: 40px 0;
    background: #F3FBFC;
    overflow-x: hidden;
}

.team-container {
    display: flex;
    flex-direction: column;
    padding: 56px 40px;
    width: 100%;
    max-width: 1440px;
    background: #F3FBFC;
    box-sizing: border-box;
    margin: 0 auto;
}

.team-header {
    margin-bottom: 48px;
    position: relative;
}

.insights-badge {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--Interface-bg-02, #F3FBFC);  
  color: var(--Text-Medium, #455E5F);               
  padding: 12px 24px;
  font-family: 'montserrat', sans-serif;
  font-style: normal;      
  border-radius: 24px;       
  font-weight: 500;
  display: inline-block;
  white-space: nowrap;
  border: 1px solid var(--Interface-Stroke, #D0DDDD);  
}

.noqte {
    width: 12px;
    height: 12px;
    color: var(--Primary-Base, #00B2BA);
}

.team-title {
    font-family: 'encode sans expanded', sans-serif;
    font-size: 40px;
    font-weight: 500;
    font-style: normal;
    line-height: 1.2;
    color: var(--Text-Dark, #002425);
    margin-bottom: 0px;
    width: 75%;
}

.highlight15 {
    color: var(--Primary-Base, #00B2BA);
}

.join-team-link {
    position: absolute;
  right: 0;
  color: var(--Primary-Base, #00B2BA);
  font-size: 18px;
  font-style: normal;
  font-family: 'montserrat', sans-serif;
  font-weight: 500;
  margin-top: -20px;
  text-decoration: none;
  display: inline-flex;       
  align-items: center;
  border-bottom: 1px solid var(--Primary-Base, #00B2BA);
  padding-bottom: 1px;
  overflow: hidden;           
}


.join-team-link::after {
     content: "";
  display: block;
  height: 2px;
  background-color: var(--Primary-Base, #00B2BA);
  width: 100%;
  transform: scaleX(0);     
  transform-origin: left;
  transition: transform 0.3s ease;
  position: absolute;
  bottom: 0;
  left: 0;

}
.join-team-link:hover::after {
    transform: scaleX(1);
}

.team-grid {
    display: flex;
    gap: 12px;
    margin-bottom: 48px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.team-member {
    flex: 0 0 calc(25% - 9px);
    text-align: left;
    min-width: 0;
    margin-top: 30px;
}



.member-image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 400px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 16px;
}

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


.add-button {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background:  var(--Primary-Light, #E3F7F7);
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.add-button:hover svg {
    transform: scale(1.1);
}



.member-info {
    padding: 0 8px;
}

.member-name {
    font-size: 24px;
    font-weight: 500;
    font-style: normal;
    margin-bottom: 4px;
    color: var(--Text-Dark, #002425);
}

.member-title {
    font-style: normal;
    font-size: 16px;
    color: var(--Text-Medium, #455E5F);
    font-weight: 400;
}

.load-more-btn {
    align-self: center;
    background: #003B3E;
    color: #F3FBFC;
    border: none;
    padding: 12px 24px;
    font-size: 18px;
    font-style: normal;
    font-family: 'montserrat', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.load-more-btn:hover {
    background: transparent;
    color: var(--Text-Dark, #002425);
    border: 1px solid #D0DDDD;
}


.load-more-btn svg path {
  stroke: currentColor;
  fill: none;
  transition: stroke .2s ease;
}

.load-more-btn svg {
    transition: transform 0.3s ease;
}
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background-color: white;
    margin: 2% auto;
    display: flex;
    width: 1100px;
    height: 650px;
    padding: 56px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    max-width: 90vw;
    max-height: 85vh;
}

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

.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}



.modal-body {
    display: flex;
    padding: 0;
    gap: 32px;
    width: 100%;
    height: 100%;
}

.modal-image-container {
    width: 400px;
    height: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    flex-shrink: 0;
}

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

.modal-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.modal-name {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.modal-title {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.modal-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.modal-description p {
    margin-bottom: 16px;
}

.connect-button {
    align-self: flex-start;
    background: #1a5c5e;
    color: #F3FBFC;
    border: none;
    padding: 12px 24px;
    font-size: 18px;
    font-family: 'montserrat', sans-serif;
    font-style: normal;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.connect-button:hover {
    background: #0f4547;
    transform: translateY(-2px);
}

/* Tablet Styles */
@media (max-width: 1200px) and (min-width: 769px) {
    .team-container {
        padding: 48px 32px;
        width: 100%;
        max-width: none;
    }
    
    .team-grid {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    
    .team-member {
        flex: 0 0 calc(25% - 12px);
        min-width: 0;
    }
    
    .member-image-container {
        width: 400px;
        max-width: 100%;
        height: 400px;
    }
    
    .team-title {
        font-size: 40px;
    }
    
    .modal-body {
        gap: 24px;
        height: 100%;
    }
    
    .modal-image-container {
        width: 300px;
        height: 400px;
    }
    
    .modal-name {
        font-size: 20px;
    }

    .modal-info {
        height: auto;
    }

    .join-team-link {
        margin-top: 24px;
        display: inline-block;
        margin-right: 830px;
    }

    .modal {
        height: 600px;
    }
}




/* Mobile Styles */
@media (max-width: 768px) {
    .modal-content {
        margin: 5% auto;
        width: 95%;
        height: auto;
        max-height: 90vh;
        padding: 24px;
        overflow-y: auto;
        display: block;
    }
    
    .modal-body {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        height: auto;
    }
    
    .modal-image-container {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
    
    .modal-info {
        text-align: center;
    }
    
    .modal-description {
        margin-bottom: 16px;
        text-align: left;
    }
    
    .connect-button {
        align-self: center;
        margin-top: 8px;
    }
    
    .team-container {
        display: flex;
        padding: 56px 16px;
        width: 100%;
    }
    
    .team-header {
        text-align: left;
        margin-bottom: 32px;
    }
    
    .join-team-link {
        position: static;
        display: inline-block;
        margin-top: 16px;
    }
    
    .team-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .team-grid {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }
    
    .team-member {
        width: 100%;
        max-width: 400px;
        text-align: center;
    }
    
    .member-image-container {
        width: 400px;
        height: 400px;
        margin: 0 auto 16px;
    }
}

@media (max-width: 480px) {
    .member-image-container {
        width: 300px;
        height: 300px;
    }
    
    .team-container {
        padding: 40px 16px;
    }
    
    .team-title {
        font-size: 24px;
    }
}


/* Contact Section */
.contact-section {
    display: flex;
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    padding: 112px 56px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.image-container {
    position: relative;
    width: 100%;
}

.contact-image {
    width: 100%;
    height: 500px;
    flex-shrink: 0;
    object-fit: cover;
    display: block;
}

.content {
    position: absolute;
    top: 56px;
    left: 56px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    max-width: calc(100% - 112px);
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 24px;
    border: 1px solid var(--interface-white, #F3FBFC);
    background: transparent;
    flex-direction: row-reverse;
}

.contact-text {
    font-family: 'montserrat', sans-serif;
    font-style: normal;
    font-size: 18px;
    font-weight: 500;
    line-height: 125%;
    color: var(--Text-Medium, #455E5F);
}

.title19 {
    font-family: 'Encode sans expanded', sans-serif;
    font-size: 40px;
    font-weight: 500;
    font-style: normal;
    line-height: 125%;
    color: var(--Text-Dark, #002425);
    margin: 0 0 28px 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    padding: 14px 28px;
    background: #003B3E;
    border: none;
    color: #F3FBFC;
    font-size: 18px;
    font-weight: 500;
    font-family: 'montserrat', sans-serif;
    line-height: 125%;
    font-style: normal;
    cursor: pointer;
}

.cta-button:hover {
    background: transparent;
  color:  var(--Text-Dark, #002425);
  border: 1px solid #D0DDDD;
}

.cta-button svg path {
  stroke: currentColor;
  fill: none;
  transition: stroke .2s ease;
}



/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .contact-section {
        width: 100%;
        padding: 80px 40px;
    }
    
    .contact-image {
        width: 100%;
        max-width: 900px;
        height: auto;
    }
    
    .title19 {
        font-size: 40px;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 18px;
        margin-top: -20px;
    }
}

/* Mobile/Responsive Styles */
@media (max-width: 768px) {
    .contact-section {
        padding: 56px 16px;
        align-items: flex-start;
    }
    
    .image-container {
        position: relative;
        width: 100%;
    }
    
    .contact-image {
        width: 100%;
        max-width: 100%;
        height: 300px;
    }
    
    .content {
        position: absolute;
        top: 20px;
        left: 24px;
        max-width: 100%;
       
    }
    
    .title {
        font-size: 28px;
        line-height: 1.3;
        text-align: left;
    }
    
    .content {
        gap: 20px;
    }
    
    .pill {
        padding: 10px 20px;
    }
    
    .contact-text {
        font-size: 13px;
    }
    
    .cta-button {
        padding: 14px 24px;
        font-size: 18px;
        gap: 10px;
    }
    
    .cta-button svg {
        width: 24px;
        height: 24px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .contact-section {
        padding: 40px 16px;
    }
    
    .title19 {
        font-size: 28px;
    }
    
    .pill {
        padding: 12px 16px;
    }

    .contact-image {
      width: 100%;
    }

    .contact-text {
      color:  var(--Interface-White, #F3FBFC);
      font-family: 'montserrat', sans-serif;
      font-size: 14px;
      font-style: normal;
      font-weight: 500;
      line-height: 100%;
    }
    
    .cta-button {
        padding: 10px 16px;
        font-size: 14px;
        margin-top: -30px;
    }
}



/* Footer */

.footer {
   width: 100%;
    max-width: 100%;
    background: #002425;
    color: white;
    padding: 4rem 0 3rem;
    margin: 0 auto;
    box-sizing: border-box;

}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;;
    width: 1440px;
    padding: 112px 56px 56px 56px;
    gap: 6rem;
    margin-bottom: 3rem;
}


.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.footer-logo img {
    width: 100%;
height: 122px;
flex-shrink: 0;
gap: 44px;
margin-top: -6rem;
}

.brand-tagline {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.9rem;
    color: #ccc;
}

.social-links2 {
    display: flex;
    gap: 1rem;
    margin-top: -0.5rem;
}

.social-link {
     display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    border: 1px solid var(--Text-Medium, #455E5F);
    background: var(--Interface-sm-bg, rgba(243, 251, 252, 0.04));
    color: #ccc;
    transition: transform 0.2s ease;
}

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



.footer-links {
    display: flex;
    gap: 64px;
    flex-wrap: wrap;
     margin-top: -6rem; 
  transform: translateX(-6rem); 
}


.footer-column {
    min-width: 180px;
    flex: 1; 
}

.footer-column1 {
    min-width: 180px;
    flex: 1; 
    margin-right: -80px;
}

.footer-column1 h4 {
    color: var(--Interface-White, #F3FBFC);
    font-family: 'montserrat', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 125%;
    margin-bottom: 2rem;
}

.footer-column1 ul {
    list-style: none;
    width: 110%;
}

.footer-column1 ul li {
    margin-bottom: 1.5rem;
    
}

.footer-column1 ul li a {
    font-size: 16px;
    color: var(--Interface-Stroke, #D0DDDD);
    text-decoration: none;
    font-family: 'montserrat', sans-serif;
    font-weight: 400;
    line-height: 150%;
    font-style: normal;
    transition: color 0.3s ease;
    gap: 24px;
    width: 100%;
}

.footer-column1 ul li a:hover {
    color: var(--Text-Medium, #455E5F);
}


.footer-column h4 {
    color: var(--Interface-White, #F3FBFC);
    font-family: 'montserrat', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 125%;
    margin-bottom: 2rem;
}

.footer-column ul {
    list-style: none;
    width: 111%;
}

.footer-column ul li {
    margin-bottom: 1.5rem;
    
}

.footer-column ul li a {
    font-size: 16px;
    color: var(--Interface-Stroke, #D0DDDD);
    text-decoration: none;
    font-family: 'montserrat', sans-serif;
    font-weight: 400;
    line-height: 150%;
    font-style: normal;
    transition: color 0.3s ease;
    gap: 24px;
    width: 100%;
    margin-right: 50px;
}

.footer-column ul li a:hover {
    color: var(--Text-Medium, #455E5F);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem 56px 0 56px;
    font-size: 0.9rem;
    color: var(--Interface-Stroke, #D0DDDD);
    margin-right: 3rem;
}

.footer-bottom p {
    margin-left: 2.9rem;
}

.footer-bottom a {
    color: inherit;      
    border-bottom: 1px solid white;
    text-decoration: none;
}


@media (max-width: 1024px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 4rem 2rem;
    gap: 3rem;
  }

  .footer-logo img {
    width: 100%;
    margin-top: -5rem;
  }

  .social-links2 {
    justify-content: flex-start;
    margin-top: 0.5rem;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    transform: none;
    width: 100%;
    margin-top: 2.5rem;
  }

  .footer-column {
    flex: 1 1 45%; 
    min-width: 200px;
  }

  .footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .footer-column ul li {
    margin-bottom: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 2rem 2rem 0 2rem;
    width: 100%;
  }

  .footer-bottom p {
    margin: 0;
  }
}



@media (max-width: 768px) {
  .footer {
    padding: 3rem 1.5rem;
  }
.footer-content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    padding: 3rem 1.5rem;
    gap: 2.5rem;
  }

  .footer-logo img {
    width: 100%;
    margin-top: -3.5rem;
  }

  .social-links2 {
    justify-content: flex-start;
    margin-top: 0.5rem;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 0;
    transform: none;
    width: 100%;
  }

  .footer-column {
    min-width: 100%;
    text-align: left;
  }

  .footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .footer-column ul {
    padding: 0;
  }

  .footer-column ul li {
    margin-bottom: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 1rem;
    padding: 1rem 1.5rem 0 1.5rem;
    margin: 0;
    width: 100%;
  }

  .footer-bottom p {
    margin: 0;
  }
}


