* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    color: #333;
  }

  #anasayfa {
    padding-top: 80px;
  }
  #hakkimda {
    background-color: #f9fafb;
  }
  #hakkimda p {
    text-align: left;
    line-height: 1.8;
    font-size: 1.1rem;
  }
  #anasayfa img {
    width: 400px;
    height: 400px;
    object-fit: cover;
  }
  #automatic {
    min-height: 1.875rem;
    display: block;
  }
  .navbar {
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
  }
  
  .navbar-brand {
    font-size: 1.8rem;
    color: #111827;
  }
  
  .nav-link {
    color: #4B5563;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
  }
  
  .nav-link:hover {
    color: #111827;
  }
  .social-links {
    display: flex;
    gap: 20px;
    margin: 20px 0;
  }
  
  .social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    color: #4b5563;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .social-links a:hover {
    border-color: #111827;
    color: #111827;
    transform: translateY(-2px);
  }

  .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  }
  
  .card-img-top {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    background-color: #f8f9fa;
    padding: 10px;
  }
  h2{
    margin-top: 7px !important;
  }

  .btn-contact-mobile {
    align-self: flex-start;
  }

  @media (max-width: 991px) {
    #anasayfa-container {
      text-align: center !important;
    }

    #anasayfa img {
      width: 250px;
      height: 250px;
      margin-bottom: 40px;
    }
    #anasayfa h1 {
      font-size: 2.5rem !important;
    }
    #anasayfa .lead {
      text-align: center !important;
    }
    #anasayfa{
      padding: 100px 15px 50px;
    }
    #anasayfa .text-end {
      text-align: center !important;
    }
    #hakkimda p{
      text-align: center !important;
      font-size: 1rem !important;
    }
    #projeler .col-lg-4 {
      margin-bottom: 20px;
    }
    .social-links{
      justify-content: center !important;
    }
    .btn-contact-mobile {
      align-self: center !important;
      margin: 10px auto 0 auto !important;
      width: fit-content !important;
    }
    .navbar-brand {
      font-size: 1.5rem !important;
    }
    h2{
      font-size: 2rem !important;
    }
    
  }
@media (max-width: 576px) {
  #anasayfa h1 {
    font-size: 2rem !important;
  }
  
  .navbar-brand {
    font-size: 1.3rem !important;
  }
  
  h2 {
    font-size: 1.75rem !important;
  }
  
  .btn {
    font-size: 0.9rem !important;
    padding: 0.5rem 1rem !important;
  }
}

#form-message {
  animation: slideDown 0.5s ease-out;
  max-width: 600px;
  margin-bottom: 20px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}