 body, html {
      margin: 0;
      padding: 0;
      height: 100%;
      font-family: Arial, sans-serif;
    }

    .banner {
      position: relative;
      background: url('images/b2.jpg') no-repeat center center/cover;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .banner-text {
	  color: white;
	  text-align: center; /* Metni sola hizalar */
	  position: absolute;
	  top: 50%;
	  left: 150px; /* Soldan 150px uzaklık */
	  transform: translateY(-50%);
	  z-index: 1;
	}

    .banner-text h1 {
      font-size: 3rem;
      font-weight: bold;
    }

    .banner-text .features {
      margin-top: 20px;
      font-size: 1rem;
      display: flex;
      justify-content: center;
      gap: 15px;
    }

    .reservation-box {
      position: absolute;
      top: 45%;
      right: 10%;
      transform: translateY(-50%);
      background: white;
      padding: 20px;
	  margin-top:15px;
      border-radius: 8px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
      z-index: 2;
      width: 350px;
    }

    .reservation-box h5 {
      text-align: center;
      margin-bottom: 20px;
    }

    .reservation-box .btn-success {
      background-color: #28a745;
      border-color: #28a745;
    }

    .reservation-box .btn-success:hover {
      background-color: #218838;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5); /* Karanlık bir kaplama ekler */
      z-index: 0;
    }  
  
  
  
  
    .review-card {
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 20px;
      background: #f9f9f9;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      text-align: center;
    }
    .review-card .profile-img {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      margin: 0 auto 15px;
    }
    .review-card h5 {
      margin-bottom: 10px;
    }
    .review-card .stars {
      color: #f4c150;
    }
    .review-card .verified {
      font-size: 14px;
      color: #007bff;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .review-card .verified img {
      width: 20px;
      margin-left: 5px;
    }
	
	
  .transfer-card {
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 15px;
      margin-bottom: 15px;
      background: #fff;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background-color 0.3s, color 0.3s;
      text-decoration: none;
      color: #000;
    }
    .transfer-card .price {
      font-size: 24px;
      font-weight: bold;
    }
    .transfer-card .price span {
      font-size: 16px;
    }
    .transfer-card .arrow {
      font-size: 18px;
      font-weight: bold;
    }

    /* Highlighted card */
    .transfer-card.highlight {
      background: #d0021b;
      color: #fff;
    }

    /* Hover effect */
    .transfer-card:hover {
      background: #d0021b;
      color: #fff;
    }	
	
	
	.custom-section {
      padding: 50px 0;
    }
    .custom-title {
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 15px;
    }
    .custom-description {
      font-size: 16px;
      color: #555;
      margin-bottom: 30px;
    }
    .image-card img {
      border-radius: 8px;
      max-height: 250px;
      object-fit: cover;
    }
	
	
header {
    background: #fff;
    padding: 10px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* position: fixed; */
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.left-pane img {
    height: 50px;
}

.right-pane {
    display: flex;
    align-items: center;
}

 
 

/* Sağ Sidebar */
.right-sidebar-container #right-sidebar-status {
    display:none;
}
.right-sidebar-container {
    position: relative;
}

.right-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    padding: 20px;
	z-index:11;
}

#right-sidebar-status:checked ~ .right-sidebar {
    right: 0;
}

.backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
}

#right-sidebar-status:checked ~ .backdrop {
    display: block;
}

.hamburger {
    cursor: pointer;
}

.hamburger .menu div {
    width: 30px;
    height: 3px;
    background: black;
    margin: 5px 0;
    transition: 0.3s;
}


header .header-row .right-pane .right-sidebar-container .right-sidebar .mid-pane .menu li a {
    position: relative;
    display: block;
    color: inherit;
    text-decoration: none;
    padding: 4px 8px;
    transition: .3s
}

header .header-row .right-pane .right-sidebar-container .right-sidebar .mid-pane .menu li a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 8px;
    width: 0;
    height: 2px;
    background-color: #393d46;
    transition: .3s
}

header .header-row .right-pane .right-sidebar-container .right-sidebar .mid-pane .menu li a:hover {
    color: #393d46
}

header .header-row .right-pane .right-sidebar-container .right-sidebar .mid-pane .menu li a:hover::before {
    width: 50%
}



footer {
    font-size: 14px
}

footer .footer-row {
    display: flex;
    justify-content: space-between;
		border-top: 1px solid #f7f7f7;	
	padding-top: 28px;
}


footer .footer-row .footer-column .copyright-text {
    font-weight: 500;
    color: #14191f;
    font-size: 1em !important
}
