/* Grup Şirketleri Kartları İçin Özel Stil */
        .group-company-card {
              position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            padding: 30px 20px;
            border-radius: 4px;
            border: 1px solid #eee;
            background: #fff;
        }
        .group-company-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .group-company-card::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(18,114,184,.20), rgba(18,114,184,0));
  opacity:0;
  transition: opacity .25s ease;
  pointer-events:none;
}

.group-company-card:hover::before{
  opacity:1;
}


/* Tüm kutuların boyunu eşitleyen ve diğer kuralları ezen sınıf */
.hizalama {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important; /* Kapsayıcı içindeki tam boyu alır */
    min-height: 250px !important; /* Buradaki değeri içeriğine göre artırıp azaltabilirsin */
    justify-content: space-between !important;
    box-sizing: border-box !important;
}

/* Kutu içindeki metin alanını genişletip butonu aşağı itmek için */
.hizalama p, .hizalama .text-area {
    flex-grow: 1 !important;
}

/* Eğer kutuların yan yana dizildiği bir kapsayıcı varsa ona da bunu ekle */
.row-hizalama {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: stretch !important;
}


.sticky-social{
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;

  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sticky-social__item{
  width: 44px;
  height: 44px;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 25px rgba(0,0,0,.12);

  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
}

.sticky-social__item i{
  font-size: 20px;
  line-height: 1;
}

/* Hover efekti */
.sticky-social__item:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.16);
}

/* İstersen marka renkleri */
.sticky-social__item.wa{ color:#25D366; }
.sticky-social__item.fb{ color:#1877F2; }
.sticky-social__item.ig{ color:#E4405F; }
.sticky-social__item.in{ color:#0A66C2; }

/* Mobilde biraz küçült */
@media (max-width: 768px){
  .sticky-social{ right: 10px; }
  .sticky-social__item{ width: 20px; height: 20px; }
  .sticky-social__item i{ font-size: 10px; }
}

/* nav-link button varsayılan border/padding sıfırlanmasın diye */
.map-tabs .nav-link {
  background: transparent !important;
  padding: 0 !important;
  border: 0 !important;
}

/* btn görünümü */
.map-tabs .btn-rec{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 26px;
  font-weight: 700;
  background: #1272b8;
  color: #fff;
  border: 0;
  transition: transform .15s ease, opacity .15s ease, box-shadow .15s ease;
}

/* aktif/pasif */
.map-tabs .nav-link:not(.active) .btn-rec{ opacity: .6; }
.map-tabs .nav-link.active .btn-rec{ opacity: 1; }

/* hover */
.map-tabs .nav-link:hover .btn-rec{ transform: translateY(-1px); }

#grupsirket .row {
    align-items: stretch;
}

.group-company-card {
    position: relative;
    min-height: 520px;
    border-radius: 18px;
    overflow: hidden;
    background-color: #e9ecef;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    box-shadow: 0 8px 24px rgba(0,0,0,0.08);

    height: 100%;
    display: flex;

    transition: all .35s ease;
}

.group-company-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.82);
    z-index: 1;

    transition: all .35s ease;
}

.group-company-card__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 38px 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.group-company-card__title-link {
    text-decoration: none;
}

.group-company-card__title {
    margin: 0;
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 700;
    color: #212529;
}

.group-company-card__desc {
    margin: 28px 0 22px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5f6b7a;
}

.group-company-card__btn {
    align-self: center;
    margin-top: auto;
}

@media (max-width: 991.98px) {
    .group-company-card {
        min-height: 460px;
    }

    .group-company-card__title {
        font-size: 1.8rem;
    }
}

@media (max-width: 575.98px) {
    .group-company-card {
        min-height: 400px;
    }

    .group-company-card__inner {
        padding: 30px 20px 24px;
    }

    .group-company-card__title {
        font-size: 1.6rem;
    }

    .group-company-card__desc {
        font-size: 1rem;
        line-height: 1.7;
    }
}

.group-company-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.group-company-card:hover .group-company-card__overlay {
    background: rgba(255,255,255,0.55);
}

.group-company-card:hover {
    background-size: 110%;
}