      body {
        font-family: "Segoe UI", sans-serif;
        scroll-behavior: smooth;
        padding: 10px;
      }
      .logo{
        width: 70px;
        height: auto;
      }

      .navbar-custom {
        background: linear-gradient(
          135deg,
          rgba(240, 253, 244, 0.95),
          rgba(255, 255, 255, 0.95)
        );
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      }

      .hero {
        background: linear-gradient(
          135deg,
          rgba(22, 163, 74, 0.85),
          rgba(2, 132, 199, 0.85)
        );
        background-size: cover;
        background-position: center;
        color: white;
        padding: 180px 20px;
        text-align: center;
        position: relative;
      }

      .text-gradient {
        background: linear-gradient(135deg, #22c55e, #0ea5e9);
        background: linear-gradient(90deg, #4caf50, #8bc34a);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        -webkit-text-fill-color: transparent;
      }

      .menu-card {
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        cursor: pointer;
      }
      .menu-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      }
      .menu-card img {
        height: 220px;
        object-fit: cover;
        border-top-left-radius: 0.5rem;
        border-top-right-radius: 0.5rem;
        height: 220px;
        object-fit: cover;
        border-top-left-radius: 0.5rem;
        border-top-right-radius: 0.5rem;
        cursor: zoom-in;
        transition: transform 0.3s ease;
        cursor: zoom-in;
        transition: transform 0.3s ease;
      }
      .image-modal {
        display: none;
        position: fixed;
        z-index: 2000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.85);
        justify-content: center;
        align-items: center;
      }

      /* 🔹 Görsel Stili */
      .image-modal img {
        max-width: 80%;
        max-height: 80%;
        border-radius: 10px;
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
        animation: zoomIn 0.3s ease;
      }

      /* 🔹 Kapatma Butonu */
      .close-btn {
        position: absolute;
        top: 30px;
        right: 50px;
        color: white;
        font-size: 40px;
        font-weight: bold;
        cursor: pointer;
        transition: 0.3s;
      }
      .close-btn:hover {
        color: #bbb;
      }
      @keyframes zoomIn {
        from {
          transform: scale(0.6);
          opacity: 0;
        }
        to {
          transform: scale(1);
          opacity: 1;
        }
      }

      .menu-card img:hover {
        transform: scale(1.05);
      }

      .map-container {
        position: relative;
        overflow: hidden;
        height: 400px;
        border-radius: 12px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
      }

      footer {
        background-color: #0c4a6e;
        color: white;
      }