/* ABOUT INTRO */
.about-intro {
  padding: 80px 0;
  background: #fff;
  
}
.about-intro p {
  font-size: 17px;
  line-height: 1.7;
}
.about-intro p strong {
    color: #051622;
    border-bottom: 2px solid #4da3ff; /* Önemli kelimelerin altını çizelim */
    font-weight: 600;
}

.about-intro .subtitle {
    display: block;
    margin-bottom: 5px;
}

.about-image img {
  width: 100%;
  border-radius: 30px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1), -10px -10px 30px rgba(255,255,255,0.5);
    transition: transform 0.5s ease;
}
.about-image img:hover {
    transform: scale(1.02);
}

.align-center {
  align-items: center;
}
.about-values {
  background: #f5f7fa;
  padding: 80px 0;
}
.value-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(5, 22, 34, 0.05);
    border-bottom: 4px solid transparent;
    transition: all 0.3s ease;
}
.value-box:hover {
    transform: translateY(-10px);
    border-bottom-color: #4da3ff;
    box-shadow: 0 15px 40px rgba(77, 163, 255, 0.15);
}

.value-box i {
    font-size: 2.5rem;
    color: #4da3ff;
    margin-bottom: 20px;
    display: inline-block;
}

/* GRID */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* ABOUT DETAILS */
.about-details {
  padding: 60px 0;
  background: #F5F6FA;
}

/* WHY US */

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  
}

.why-grid div {
     background: #f8fbff; /* Çok açık mavi/beyaz bir ton */
    border: 1px solid #e2e8f0;
    color: #334155;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    
    /* Büyüme efekti için kritik ayarlar */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); /* Daha yumuşak bir ivme */
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.why-grid i {
  color: #4da3ff;
  font-size: 1.2rem;
  
}

.why-grid div:hover {
   /* Kullanıcıya doğru büyüme efekti */
    transform: scale(1.1);  
    background: #ffffff;
    border-color: #4da3ff;
    box-shadow: 0 20px 40px rgba(77, 163, 255, 0.15);
    /* Büyüyen kartın diğerlerinin üstünde durmasını sağlar */
    z-index: 10;
}

.why-grid div:hover i{
    color: #2c6097;
    transform: scale(1.1);
    transition: 0.3s;
}
.about-why {
    background: #ffffff; 
    color: #051622;
    padding: 80px 0;
}

.why-list {
  margin-top: 20px;
  list-style: none;
}

.why-list li {
  padding-left: 25px;
  margin-bottom: 12px;
  position: relative;
}

.why-list li::before {
  content: "✔";
  color: #F39C12;
  position: absolute;
  left: 0;
}
.about-why h2 {
    text-align: center;
    color: #051622;
    margin-bottom: 60px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .page-header h1 {
    font-size: 28px;
  }
}

.page-header-about {
  background: linear-gradient(
      rgba(10, 61, 98, 0.85),
      rgba(10, 61, 98, 0.85)
    ),
    url("../img/about-hero.jpg") center / cover no-repeat;
}

.info-card {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-8px);
}
/* WHY CHOOSE US - GÖRSEL VE ÖZELLİK BÖLÜMÜ */
.why-choose-modern {
    padding: 100px 0;
    background: #fff;
}

.why-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Katmanlı Resim Alanı */
.image-stack {
    position: relative;
    padding-bottom: 40px;
}

.img-main img {
    width: 85%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.img-sub {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
}

.img-sub img {
    width: 100%;
    border-radius: 15px;
    border: 8px solid #fff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Özellik Maddeleri */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.f-item {
    display: flex;
    gap: 20px;
}

.f-icon-box {
    width: 60px;
    height: 60px;
    background: #f0f7ff;
    color: #4da3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: 0.3s;
}

.f-item:hover .f-icon-box {
    background: #4da3ff;
    color: #fff;
}

.f-content h4 {
    font-size: 1.25rem;
    color: #051622;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.f-content p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* Mobil Uyumluluk */
@media (max-width: 900px) {
    .why-flex {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .img-main img { width: 100%; }
}