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

        html, body {
          height: 100%;
  overflow-x: hidden;
  background-color: #F3FBFC;
}


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

        h1 {
    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;
}

/* 1) Menü konumunu butona yapıştır (arada boşluk kalmasın) */
.language-dropdown { position: relative; }

.language-dropdown .dropdown-menu{
  /* sadece dil menüsü için override */
  left: 0;                   /* 50% & translateX(-50%) iptal */
  right: auto;
  top: calc(100% - 1px);     /* 1px üst üste bindir → birleşik görünüm */
  transform: none;
  margin-top: 0;

  width: 100%;               /* buton genişliği kadar */
  min-width: unset;

  border-radius: 0 0 8px 8px;       /* üst köşeleri sıfırla */
  border: 1px solid #D0DDDD;        /* senin rengi */
  background: transparent;            /* senin rengi */
  box-shadow: none;                  /* pencere gibi durmasın */
  z-index: 9999;
}

/* 2) Menü AÇIKKEN butonun da aynı bloğun parçası gibi görünmesi */
.language-dropdown:has(.dropdown-menu.active) .language-btn{
  background: transparent;
  color: var(--Text-Dark, #002425);
  border: 1px solid #D0DDDD;
  border-bottom: none;              /* menü ile dikişsiz birleşsin */
  border-radius: 8px 8px 0 0;
}

/* 3) Mobil dil menüsü için de aynı birleşik görünüm */
.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;  /* İsteğe göre ayarlanabilir */
  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;  /* Menü üstte kalsın */
  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: 60px;
            }

            .nav-center {
                display: none;
            }

            .nav-actions {
                display: none;
            }

            .mobile-controls {
                display: flex;
            }

             .ellipse {
  position: absolute;
  width: 300px;  /* İsteğe göre ayarlanabilir */
  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;  /* Menü üstte kalsın */
  pointer-events: none;
}

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


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

            .language-btn {
              font-size: 14px;
            }
        }

        @media (max-width: 480px) {

          .logo {
            margin-left: -60px;
          }
        }

        /* Hero Section */
.hero {
    background: transparent;
    padding: 84px 56px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;

    
}

.hero-title {
  font-family: 'Encode sans expanded', sans-serif;
  font-style: normal;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 4rem;
    padding-left: 22px;
    color: #1f2937;
    
}

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





/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 12px;
    margin-top: 4rem;
     padding-left: 20px;
    padding-right: 20px;
    
}

.service-card {
    background: transparent;
    padding: 2rem;
    border: 1px solid var(--Interface-Stroke, #D0DDDD);
    
    
}



.service-number {
  font-family: 'Encode sans expanded', sans-serif;
  font-style: normal;
    color: var(--Primary-Base, #00B2BA);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.service-title {
  font-style: normal;
  font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--Text-Dark, #002425);
}

.service-description {
    font-style: normal;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color:  var(--Text-Medium, #455E5F);
    line-height: 1.6;
}

@media (max-width:768px) {

  .hero-title {
    font-size: 32px;
    width: 130%;
  }

  .section-header .see-all5 {
    margin-bottom: -35px;
  }

  .insight-card1 {
    position: relative; /* alt elementleri konumlandırmak için */
    display: flex;
    flex-direction: column;
  }
  .card-image1 {
    margin-left: 80px;
  }

  .card-image1 img {
    width: 100%;
    height: 100%;
    align-items: center;
    display: flex;
  }

  .card-header1 {
    display: flex;
    justify-content: space-between; /* h3 solda, svg sağda */
    margin-top: 10px; /* resmin altına biraz boşluk */
  }

  .card-title1 {
    margin-left: 70px;
  }

  .read-more-link1 {
    margin-left: -160px;
  }
}

 


@media (max-width:480px) {

    .hero {
    padding: 28px 16px; /* Burayı ekledim */
  }

  .hero-title {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.4;
    padding-left: 0;
    margin-bottom: 2rem;
    width: 100%; /* genişlik sınırlaması yerine tam hizalama */
  }

  .services-grid {
    display: flex; /* grid yerine alt alta getirecek şekilde */
    flex-direction: column;
    gap: 1.5rem;
    padding: 28px 16px; /* İstediğin padding */
    margin-top: 2rem;
  }

  .service-card {
    width: 100%;
    height: 210px;
    padding: 48px 20px; /* üst-alt 48px, sağ-sol 20px */
    background: transparent;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;

    /* Bu satır kaldırıldı çünkü `margin-right: 100px` içerikleri kaydırır */
    /* margin-right: 100px; */ 
  }

  .service-number {
    font-size: 1rem;
    margin: 0;
    color: var(--Primary-Base, #00B2BA);
  }

  .service-title {
    font-size: 1.125rem;
    margin: 0;
    color: var(--Text-Dark, #002425);
  }

  .service-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--Text-Medium, #455E5F);
    margin: 0;
  }
}


/*projects*/

.page-container {
  max-width: 1440px;
  min-width: none;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  
}

.projects-section {
    padding: 56px 56px 56px 56px;
    background: #F3FBFC;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    
}

.section-header {
   display: flex; /* yan yana al */
    justify-content: space-between; /* h1 sola, link sağa */
    align-items: center; /* dikey ortalama */
    text-align: left;
    margin-bottom: 32px;
}

.section-header h1 {
    font-style: normal;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    color: #1f2937;
    margin-bottom: 0px;
}

.highlight {
    color: var(--Primary-Base, #00B2BA);
    font-weight: 500;
}

.highlight-blue {
    color: #00B4A6;
    font-weight: 500;
}

.see-all5 {
  position: relative; 
  color: var(--Primary-Base, #00B2BA);
  text-decoration: none; /* underline'ı kapatıyoruz */
  font-size: 18px;
  font-weight: 500;
   border-bottom: 1px solid var(--Primary-Base, #00B2BA);
  padding-bottom: 1px;
  overflow: hidden;  
  display: inline-flex;
  margin-top: auto;
}

.see-all5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0; 
  height: 2px;
  background-color: var(--Primary-Base, #00B2BA);
width: 100%;
  transform: scaleX(0);       /* başlangıçta çizgi görünür ama küçültülmüş */
  transform-origin: left;
  transition: transform 0.3s ease;
}

.see-all5:hover::after {
  width: 100%;
  transform: scaleX(1); 
}


.insights-grid1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  justify-content: center;
  max-width: 100%;
  overflow-x: hidden;
}

.insight-card1 {
  clip-path: inset(1px 1px 1px 1px);
  transition: transform 0.2s ease;
  position: relative;
}

.card-header1 {
  display: flex;
  justify-content: space-between; /* h3 sola, ikon sağa */
  align-items: center;             /* dikey ortala */
  overflow: hidden;
}


.card-title1 {
  font-size: 22px; 
  font-weight: 500;
  color: #002425;
   position: relative;
   text-decoration: none;
}



.read-more-link1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  cursor: pointer;
}

.read-more-link1 svg {
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease-in-out;
}

/* Hover animasyonu */
.read-more-link1:hover svg {
  transform: rotate(45deg);
}


.insight-card1 .card-image1:hover ~ .card-header1 .read-more-link1 svg,
.insight-card1 .card-image1:focus-within ~ .card-header1 .read-more-link1 svg {
  transform: rotate(45deg);
}



.card-image1 {
  width: 435.394px;
  height: 316px;
  overflow: hidden;
  position: relative;
  background: white;
  margin-bottom: 1rem;
}

.card-image1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

 @media (max-width: 768px) {
.projects-section {
    padding: 28px 16px;
  }

           .insights-grid1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    overflow-x: hidden;
  }

  .card-image1 {
    width: 100%;
    max-width: 435.394px;
  }
  .card-title1 {
    margin-left: 80px;
  }

 

  .see-all5 {
    margin: 20px;
  }

  .section-header h1 {
    margin-bottom: 15px;
    
  }
}


@media (max-width: 480px) {
    .card-title1 {
        margin-left: 75px;
    }

    .read-more-link1 svg {
        margin-right: 40px;
    }

    .card-image1 {
      width: 400px !important;
    }

    .section-header {
    display: flex;             /* mevcut flex’i koru/aktif et */
    flex-direction: column;    /* alt alta */
    align-items: flex-start;   /* aynı hizada (sol) */
    gap: 8px;                  /* başlık ile link arası nefes */
    margin-bottom: 16px;
    text-align: left;          /* başlık metni de sola */
  }

  .section-header h1 {
    margin: 0;                 /* olası taşmaları/boşlukları sıfırla */
  }

  .see-all5 {
    position: static;          /* farklı konumlandırmaların etkisini sıfırla */
    align-self: flex-start;    /* başlıkla aynı sol çizgiye otur */
    margin: 0;                 /* negatif/pozitif marginleri temizle */
    display: inline-flex;
  }

  .insights-grid1 {
    margin-top: 50px;
    margin-left: -20px;
  }

}

@media (max-width: 390px) {

.section-header h1 {
  font-size: 28px;
}

.read-more-link1 {
  margin-right: 25px;
}

}


/*related insights*/

.insight-wrapper {
   background-color: #E7F2F3;
  width: 100vw;            
  margin-left: calc(-1 * (100vw - 100%) / 2); 
  position: relative;
}

#app {
  max-width: 1440px;
  width: 100%;
  padding: 56px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  background-color: transparent;
  top: 20px;
  overflow: hidden; /* taşmayı engelle */
  margin: 25px 30px 0 0;
  margin-left: auto;
  margin-right: auto;
}


.insight-wrapper::after {
  content: "";
  display: block;
  height: 20px;
  background-color: #E7F2F3;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.insights-header {
  margin-bottom: 3rem;
}

.insights-badge {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--Interface-bg-02, #E7F2F3);   /* Açık mavi arka plan */
  color:  var(--Text-Medium, #455E5F);               /* Yazı rengi */
  padding: 12px 24px;       /* İç boşluk */
  border-radius: 24px;        /* Tam yuvarlak köşe */
  font-size: 18px;
  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);
}


.insights-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.insights-title h1 {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 125%;
  color: var(--Text-Dark, #002425);
  margin: 0;
  
}

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

.see-all-link {
 position: relative; 
  color: var(--Primary-Base, #00B2BA);
  text-decoration: none; /* underline'ı kapatıyoruz */
  font-size: 18px;
  font-weight: 500;
  display: inline-flex;
border-bottom: 1px solid var(--Primary-Base, #00B2BA);
  padding-bottom: 1px;
  overflow: hidden;   
  margin-top: auto;
}

.see-all-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0; 
  width: 100%;
  height: 2px;
  background-color: var(--Primary-Base, #00B2BA);
   transform: scaleX(0);       /* başlangıçta çizgi görünür ama küçültülmüş */
  transform-origin: left;
  transition: transform 0.3s ease;

}

.see-all-link:hover::after {
  width: 100%;
   transform: scaleX(1);
}

.insights-grid {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 1328px; /* 3 kart x 300px + gap (2x16px ~) */
  margin: 0 auto;
  box-sizing: border-box;
}




.card-image {
  width: 100%;
  max-width: 457.648px;
  height: 310px;
  aspect-ratio: 457.65/310.00;
  overflow: hidden;
  position: relative;
  background: white;
  margin-bottom: 1rem;
}

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



.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.75rem;
}

.card-category {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background-color: var(--Interface-bg-02, #E7F2F3);   /* Açık mavi arka plan */
  color: var(--Primary-Base, #00B2BA);               /* Yazı rengi */
  padding: 0.3rem 0.8rem;       /* İç boşluk */
  border-radius: 9999px;        /* Tam yuvarlak köşe */
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-block;
  white-space: nowrap;
  border: 1px solid var(--Interface-Stroke, #D0DDDD);
}

.ara {
    color: var(--Text-Dark, #002425);
}

.card-date {
  color: #64748b;
  font-weight: 400;
}

.card-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--Text-Dark, #002425);
  line-height: 125%;
  margin-bottom: 1rem;
  min-height: 2.8rem;
}

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

.read-more-link::after {
  content: "";
  position: absolute;
  left: 0; 
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--Primary-Base, #00B2BA);
   transform: scaleX(0);       /* başlangıçta çizgi görünür ama küçültülmüş */
  transform-origin: left;
  transition: transform 0.3s ease;
  
}

.read-more-link:hover::after {
  width: 100%;
  transform: scaleX(1);
}

/* RELATED INSIGHTS — mobile (≤768px) tam ortala + aynı boy görseller */
@media (max-width: 768px) {
  .insights-header {
    display: flex;
    flex-direction: column;
    align-items: center;      /* ortala */
    gap: .75rem;
    margin-bottom: 1.5rem;
    text-align: center;       /* başlık metni ortalansın */
  }

  .insights-title {
    display: flex;
    flex-direction: column;
    align-items: center;      /* See all ile h1 ortalansın */
    gap: .5rem;
  }

  .insights-title h1 {
    font-size: 2rem;
    line-height: 1.3;
    margin-right: auto;                /* negatif/taşıran marginleri kapat */
  }

  .insights-badge {
    margin-right: 170px;
  }

  .see-all-link {
    position: relative;
    margin: 0;
    display: inline-flex;
    margin-right: auto;
  }

  .insights-grid {
    display: grid;
    grid-template-columns: 1fr; 
    place-items: center;       /* kartları ızgarada ortala */
    gap: 16px;
    padding: 0 16px;
    width: 100%;
    max-width: 100%;
  }

  .insight-card {
    display: flex;
    flex-direction: column;
    align-items: center;       /* içeriği ortala */
    width: 100%;
    max-width: 420px;          /* tüm kartlar aynı genişlikte */
    margin: 0;
    padding: 0;
  }

  .card-image {
    width: 100%;
    aspect-ratio: 16 / 9;      /* tüm görseller aynı yükseklikte */
    height: auto;
    margin: 0 0 1rem 0;
    overflow: hidden;
  }

  .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;         /* taşmadan doldur */
    object-position: center;   /* tam ortala */
    display: block;
  }

  .card-meta {
    display: flex;
    gap: 8px;
    width: 100%;
  
  }

  .card-title {
    width: 100%;
  }

  .read-more-link {
    margin-right: auto;
    display: inline-flex;
  }
}


@media (max-width: 425px) {

   .insights-grid {
    margin-left: -20px;
   }
  
  .insights-title h1 {
    font-size: 27px;
    margin-right: 0px;

  }
  
  .card-image {
    width: 300px;
    height: 250px;
  }

  .insights-badge {
    margin-left: auto;
  }
}

/* Focus states for accessibility */
.see-all-link:focus,
.read-more-link:focus {
  outline: 2px solid #0891b2;
  outline-offset: 2px;
  border-radius: 4px;
}

.insight-card:focus {
  outline: 2px solid #0891b2;
  outline-offset: 2px;
}




@media (max-width: 376px) {


    .insights-title h1 {

        font-size: 26px;
        width: 343px;
        height: 70px;
    }

    .see-all-link {
      margin-left: 30px;
    }

    .insights-grid {
      margin-left: -30px;
    }

    .insights-badge {
    margin-left: 90px;
  }
}

/* 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: 1px solid #D0DDDD;
    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;
  }
}






