body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #fff;
  color: #1a2e55;
  scroll-behavior: smooth;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 25px;
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-info a {
  text-decoration: none;
  color: #1a2e55;
  font-weight: 500;
}

.contact-info .icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  cursor: pointer;
}

.nav-button {
  background-color: #1a2e55;
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 5px;
}

.hero {
  background: url('header-bg.jpg') no-repeat center center/cover;
  padding: 40px 20px 60px;
  text-align: center;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  position: relative;
}

.logo-container {
  width: 100%;
  text-align: center;
  margin: 20px 0;
}

.logo-full {
  max-width: 60%;
  height: auto;
  object-fit: contain;
}

.intro-text h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #0f1e3e;
}

.intro-text p {
  max-width: 700px;
  margin: 0 auto 20px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #1a2e55;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

.gallery-form {
  display: flex;
  flex-wrap: wrap;
  gap: 200px;
  padding: 40px 20px;
  background-color: #f7f9fc;
  justify-content: center;
  align-items: stretch;
}

.fade-container {
  flex: 1 1 400px;
  max-width: 600px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
}

.fade-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.fade-img.active {
  opacity: 1;
  z-index: 1;
}

.form-side {
  flex: 1 1 400px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-side h2 {
  text-align: left;
  margin-bottom: 15px;
}

form {
  display: flex;
  flex-direction: column;
}

input, textarea {
  margin-bottom: 12px;
  padding: 12px;
  font-size: 1em;
  border-radius: 6px;
  border: 1px solid #ccc;
}

button {
  padding: 12px;
  background-color: #1a2e55;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

footer {
  background: linear-gradient(to right, #1a2e55, #243b6b);
  color: white;
  padding: 30px 20px;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto 20px;
  gap: 20px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  text-align: right;
}

.footer-right a {
  color: white;
  text-decoration: none;
}

.footer-right a:hover {
  text-decoration: underline;
}

.footer-icon {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.footer-icon:hover {
  transform: scale(1.1);
}


.contact-button {
  display: inline-block;
  margin: 10px;
  padding: 10px 15px;
  background: #ff9800;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}


#kvkk-footer {
  background-color: #f8f9fa;
  padding: 1.5rem;
  font-family: Arial, sans-serif;
  font-size: 14px;
  border-top: 1px solid #ddd;
  margin-top: 1.5rem;
}
 
#kvkk-footer h3 {
  color: #333;
  font-size: 18px;
}
 
#kvkk-footer p {
  color: #555;
  line-height: 1.6;
}

.kvkk-link {
  text-align: center;
  margin-bottom: 10px;
}

.kvkk-link a {
  color: #ffffff;
  text-decoration: underline;
  font-size: 14px;
}

.kvkk-link a:hover {
  color: #ffcc00;
}
footer {
  flex-wrap: wrap;
  overflow-x: hidden;
  word-wrap: break-word;
}

.footer-left,
.footer-right,
.footer-middle {
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: break-word;
}

.footer-left a,
.footer-right a {
  word-break: break-word;
  display: block;
}

.references {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 100%;
  overflow: hidden;
}

.references img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

