:root {
  --primary-color: #ffffff;
  --background-color: #3b5d7a;
  --accent-blue: #3a8ee6;
  --white-bg: #ffffff;
  --text-dark: #222222;
}

body {
  background-color: var(--background-color);
  color: var(--primary-color);
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5 {
  font-weight: bold;
  color: var(--primary-color);
}

/* Navbar */
.navbar {
  background-color: #2c4a67 !important;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid #fff;
  border-top: 3px solid #fff;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff !important;
}

.navbar-brand img {
  height: 50px;
  width: auto;
}

.navbar-brand .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.navbar-brand .brand-text .firm-name {
  font-size: 1.5rem;
  font-weight: 700;
}

.navbar-brand .brand-text .slogan {
  font-size: 0.9rem;
  font-weight: 400;
  color: #a8c6f7;
  font-style: italic;
}

.nav-item {
  position: relative; /* Dropdown'un konumunu ayarlamak için */
  border-bottom: 1px solid #2c4a67;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block; /* Hover ile menüyü göster */
}

.navbar-nav .dropdown-menu {
  position: absolute;
}

.dropdown-menu {
  display: none; /* Varsayılan olarak gizli */
  position: absolute; /* Ana menüden bağımsız konumlandırma */
  background-color: #2c4a67; /* Dropdown arka plan rengi */
  border-radius: 5px;
  z-index: 1000;
  left: 0; /* Dropdown'un sağdan açılmasını sağlamak için */
}

.dropdown-item {
  color: white; /* Dropdown metin rengi */
}

.dropdown-item:hover {
  background-color: #3a8ee6; /* Hover rengi */
}

.offcanvas-header {
  background:  #2c4a67 !important;
  border-bottom: 2px solid #fff;      
}

.offcanvas.offcanvas-end {
  background: #426688;
  border-left: 2px solid #fff;
}

/* Offcanvas Menü sağdan */
.offcanvas-end {
  width: 250px;
}

.offcanvas-body .nav-link {
  color: var(--primary-color);
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
}

.offcanvas-body .nav-link:hover {
  color: #365b7b; /* Alternatif vurgulu renk */
  transform: translateX(4px); /* Hafif sağa kayma efekti */
  text-decoration: underline; /* Altı çizili de yapabilirsin */
}

/* Hero */
.hero {
  position: relative;
  height: 85vh;
  overflow: hidden;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: 0;
}

@media (max-width: 768px) {
  .hero video {
    display: inline-block;
  }
  .hero {
    background: url('https://www.w3schools.com/howto/rain.jpg') center center/cover no-repeat;
  }
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  z-index: 1;
}

.hero .content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 15px;
  border-bottom: 3px solid #fff;
}

.hero .content .h1 {
   font-size: 3rem;
  margin-top: 0;
  margin-bottom: .5rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--bs-heading-color);
}

@media (max-width: 768px) {
  .hero .content .h1 {
    font-size: 2rem;
  }

  
}

.hero .content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn-cta {
  background-color: var(--accent-blue);
  color: white;
  border: none;
  padding: 10px 30px;
  font-size: 1rem;
  border-radius: 50px;
  transition: background-color 0.3s;
  cursor: pointer;
  text-decoration: none;
}

.btn-cta:hover, .btn-cta:focus {
  background-color: #2462a3;
  outline: none;
}

/* Section genel */
section {
  padding: 60px 0;
}

/* Card */
.card {
  background-color: #2c4a67;
  border: none;
  color: white;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
  border: 2px solid #fff;
}

.card:hover, .card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.card-title {
  margin-bottom: 15px;
}

/* Accordion */
.accordion-button {
  background-color: #2c4a67;
  color: white;
}

.accordion-button:not(.collapsed) {
  background-color: #2462a3;
  color: white;
}

.accordion-body {
  background-color: #1e3a54;
  color: white;
}

.accordion-body::before {
  content: "ℹ️ "; /* Bilgi ikonu */
  margin-right: 8px;
  font-size: 1.2em;
}

.modal-body p { color: #fff; }

.modal-body ul { color: #fff; }

.card .btn {
  margin-top: auto;
}

#about p { color: #fff; }

/* Form */
.form-control, textarea {
  background-color: #f5f5f5;
  border: none;
  border-radius: 8px;
  color: var(--text-dark);
}

.form-control:focus, textarea:focus {
  box-shadow: 0 0 5px var(--accent-blue);
  border-color: var(--accent-blue);
  outline: none;
}

label.form-label {
  color: var(--text-dark);
  font-weight: 600;
}

/* Footer */
footer {
  background-color: #2c4a67;
  color: white;
  padding: 20px 0;
  border-top: 3px solid #fff;
}

.social-icons a {
  color: white;
  margin: 0 10px;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.social-icons a:hover, .social-icons a:focus {
  color: var(--accent-blue);
  outline: none;
}

/* Team & Vehicles Section */
#team-vehicles {  
  color: var(--text-dark);
  padding: 60px 15px;
}

#team-vehicles .container-xxl {
  max-width: 1140px;
}

#team-vehicles h2 {
  color: var(--primary-color);
  margin-bottom: 40px;
  text-align: center;
}

#team-vehicles .team-photo {
  width: 100%;
  max-width: 1160px;
  height: auto;
  min-height: 300px; /* Yükseklik en az 300px */
  border-radius: 15px;
  margin: 0 auto 30px;
  display: block;
  object-fit: cover; /* Taşmadan alanı doldurur */    
}

#team-vehicles .vehicles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

#team-vehicles .vehicle-card {
  background: white;
  color: var(--text-dark);
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  width: 280px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
  border: 2px solid #2c4a67;
}

#team-vehicles .vehicle-card:hover, #team-vehicles .vehicle-card:focus {
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  outline: none;
}

#team-vehicles .vehicle-card img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

#team-vehicles .vehicle-info {
  text-align: center;
}

#team-vehicles .vehicle-info h3 {
  margin-bottom: 10px;
  font-weight: 700;
  color: #2c4a67;
  font-size: 22px;
}

#team-vehicles .vehicle-info p {
  font-size: 0.9rem;
  line-height: 1.3;
}

/* Scroll to top button */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--accent-blue);
  color: white;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 20px;
  cursor: pointer;
  display: none;
  z-index: 9999;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: background-color 0.3s;
}

#scrollTopBtn:hover, #scrollTopBtn:focus {
  background-color: #2462a3;
  outline: none;
}

.parallax-container {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.parallax-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.parallax-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  padding: 0 20px;
}

.parallax-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.parallax-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .parallax-container {
    height: 400px;
  }

  .parallax-content h1 {
    font-size: 2rem;
  }

  .parallax-content p {
    font-size: 1rem;
  }
.hero video {left: -60%;}

}
.modal-header , .modal-body {background: #1d2e3c;}
..btn-close {color: #fff;}

@media (max-width: 610px) { .hero video {left: -100%;} }

.ordo {padding-left: 20px;}

.timeline-container {
  position: relative;
  padding-left: 50px;
}
.timeline-item {
  position: relative;
  margin-bottom: 30px;
}
.timeline-badge {
  position: absolute;
  left: -50px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}
.timeline-content {
  padding: 20px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  text-align: left;
}


.privacy-policy {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  font-family: 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  color: #fff;
}

.policy-header {
  text-align: center;
  margin-bottom: 2rem;
  border-bottom: 2px solid #2c3e50;
  padding-bottom: 1rem;
}

.policy-header h1 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.privacy-policy .effective-date {
  color: #fff;
  font-style: italic;
}

.policy-section {
  margin-bottom: 2.5rem;
  padding: revert;
}

.policy-section h2 {
  color: #fff;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eee;
}

.privacy-policy .contact-card {
  background: #f8f9fa;
  padding: 1.5rem;
  border-left: 4px solid #3498db;
  margin-bottom: 1rem;
  color: #000;
}

.privacy-policy .data-protection-officer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed #ddd;
}

.privacy-policy .principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.privacy-policy .principles-grid p{
color: #000;
}

.privacy-policy .principle-card {
  background: white;
  padding: 1.5rem;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.privacy-policy .principle-card h3 {
  color: #2c3e50;
  margin-top: 0;
}

.privacy-policy .data-processing-table {
  margin-top: 1rem;
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
}

.privacy-policy .table-header, .table-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1fr;
}

.privacy-policy .table-header {
  background: #2c3e50;
  color: white;
  font-weight: bold;
}

.privacy-policy .table-header > div, .table-row > div {
  padding: 0.75rem 1rem;
}

.privacy-policy .table-row:nth-child(even) {
  background: #0080ff;
}

.privacy-policy .rights-list {
  list-style-type: none;
  padding-left: 0;
}

.privacy-policy .rights-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.privacy-policy .rights-notice {
  font-style: italic;
  margin-top: 1rem;
}

.privacy-policy .security-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.privacy-policy .badge {
  background: #3498db;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

.policy-footer {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
  text-align: center;
  color: #7f8c8d;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: #fff;
  }
  .legal-container .company-details {
  
    color: #000;
  }
  .legal-container .legal-title {
    color: #fff;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
    text-align: center;
  }
  .legal-container .legal-update {
    text-align: center;
    color: #fff;
    margin-bottom: 2rem;
  }
  .legal-container .legal-section {
    margin-bottom: 2rem;
    padding: 0 0 1rem 0;
    border-bottom: 1px solid #eee;
  }
  .legal-container .section-title {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  .legal-container .company-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-left: 4px solid #3498db;
  }
  .legal-container .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
  }
  .legal-container .directors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  .legal-container .legal-list {
    list-style-type: none;
    padding-left: 0;
  }
  .legal-container .legal-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
  }
  .legal-container .notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
  .legal-container a {
    color: #3498db;
    text-decoration: none;
  }
  .legal-container a:hover {
    text-decoration: underline;
  }

  .parallax-content .h1 {   font-size: 3rem;
  margin-top: 0;
  margin-bottom: .5rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--bs-heading-color);}
