/* Navbar Styles */
.navbar {
  background: var(--navbar-bg);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  box-shadow: var(--shadow);
}

/* Mobil Menü */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100vh;
  background: #ffffff;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  transition: left 0.4s ease-in-out;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

/* Menü Açıldığında */
.mobile-menu.active {
  left: 0;
}
.mobile-menu nav a.active,
.nav-links .active {
  background-color: #007bff;
  color: white;
}

/* Menü Footer - İletişim Bilgileri */
.menu-footer {
  text-align: center;
  padding: 15px 0;
  border-top: 1px solid #eee;
}

.menu-footer p {
  margin: 5px 0;
  color: #666;
  font-size: 14px;
}

.menu-footer i {
  margin-right: 8px;
  color: #333;
}

.menu-footer a {
  color: #007bff;
  text-decoration: none;
}

.menu-footer a:hover {
  text-decoration: underline;
}

/* Sosyal Medya İkonları */
.social-icons {
  margin-top: 10px;
}

.social-icons a {
  display: inline-block;
  margin: 0 5px;
  font-size: 20px;
  color: #333;
  text-decoration: none;
}

.social-icons a:hover {
  color: #007bff;
}
/* Menü Kapat Butonu */
.close-menu {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 28px;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
}

/* Menü Logosu */
.menu-logo {
  text-align: center;
  margin-bottom: 20px;
}

.menu-logo img {
  width: 200px;
}

/* Menü Bağlantıları */
.mobile-menu nav a {
  display: block;
  padding: 12px;
  color: #333;
  font-size: 18px;
  text-decoration: none;
  font-weight: bold;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-menu nav a:hover {
  background: #f7f7f7;
}

/* Aktif Sayfa */
.mobile-menu nav a.active,
.nav-links .active {
  background-color: #007bff;
  color: white;
}

/* Menü Footer - İletişim Bilgileri */

.menu-footer .menu-contact-info p {
  margin: 5px 0;
  color: #666;
  font-size: 14px;
}

.menu-footer .menu-contact-info i {
  margin-right: 8px;
  color: #333;
}

/* WhatsApp Butonu */
.whatsapp-btn {
  display: inline-block;
  margin-top: 10px;
  background-color: #25d366;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #128c7e;
}

.whatsapp-btn i {
  margin-right: 8px;
  font-size: 20px;
}

/* Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 999;
}

.mobile-menu-overlay.active {
  display: block;
}
/* Küçük ekranlarda görünmesini sağla */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
  }

  .mobile-only {
    display: block;
  }

  .nav-links {
    display: none;
  }
}

/* Logo */
.logo {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1001;
}

.logo img {
  height: 40px;
  width: auto;
  transition: var(--transition);
}

/* Navigation Links */
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover {
  background-color: rgb(2, 9, 22);
  color: var(--primary-color);
}

.nav-link.active {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Language Switcher */
.language-switcher {
  display: flex;
  gap: 5px;
  margin-left: 1rem;
}

.lang-btn {
  padding: 8px 16px;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  cursor: pointer;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background-color: rgb(2, 9, 22);
  color: white;
}

.lang-btn.active {
  background: var(--primary-color);
  color: white;
  font-weight: 600;
}

/* Close Menu Button */
.close-menu {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .navbar {
    padding: 0 1rem;
    display: flex;
  }

  .menu-toggle {
    display: block !important;
    order: 1;
  }

  .logo {
    order: 2;
    position: center;
    left: 50%;
    top: 0;
    transform: translateX(-40%);
  }

  .language-switcher {
    order: 3;
    position: relative;
    margin-left: auto;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 250px;
    height: calc(100vh - 80px);
    background: var(--navbar-bg);
    flex-direction: column;
    padding: 2rem 1rem;
    transition: all 0.3s ease;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    left: 0;
  }

  .close-menu {
    display: block;
  }

  .nav-link {
    width: 100%;
    padding: 1rem;
    text-align: left;
    border-radius: 8px;
  }

  .nav-link:hover {
    background-color: rgb(2, 9, 22);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .navbar {
    padding: 0 2rem;
  }

  .nav-link {
    font-size: 0.9rem;
    padding: 0.6rem 0.8rem;
  }

  .language-switch button {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0 0.8rem;
    height: 70px;
  }

  .nav-links {
    top: 70px;
    height: calc(100vh - 70px);
    padding: 1.5rem 1rem;
  }

  .logo img {
    height: 32px;
  }

  .menu-toggle {
    font-size: 1.5rem;
    padding: 0.4rem;
  }

  .language-switch button {
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
  }
}

:root {
  --primary-color: #2c5282;
  --secondary-color: #ed8936;
  --accent-color: #38b2ac;
  --background-light: #edf2f7;
  --text-primary: #2d3748;
  --text-secondary: #4a5568;
  --white: #ffffff;
  --navbar-bg: rgba(237, 242, 247, 0.95);
  --transition: all 0.3s ease;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 10px 15px rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: linear-gradient(to right, var(--background-light), #f7fafc);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background: url("../images/foto8.jpeg") center/cover no-repeat;
  padding: 2rem;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.main-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--white);
  background-color: var(--accent-color);
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  background-color: var(--accent-color-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 500px;
  }

  .main-title {
    font-size: 2.5rem;
  }

  .cta-button {
    padding: 0.8rem 1.6rem;
    font-size: 1rem;
  }
}

/* Services Section */
.services-preview {
  padding: 20px 0;
  margin-bottom: 0;
  background-color: #ffffff;
}

.services-preview .section-header {
  text-align: center;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0 20px;
}

.services-preview .section-header h2 {
  font-size: 46px;
  color: #111;
  font-weight: 700;
  letter-spacing: -1px;
}

.services-preview .section-header p {
  color: #555;
  margin-top: 0;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 0 40px;
}



.service-icon {
  background: transparent;
  margin-bottom: 25px;
}

.service-icon i {
  font-size: 40px;
  color: blue;
}

.card-content {
  padding: 30px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  color: #111;
  font-size: 24px;
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
}

.card-content p {
  color: black;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

@media (max-width: 1200px) {
  .services-grid {
    padding: 0 30px;
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .service-card {
    min-height: 250px;
  }

  .services-preview .section-header h2 {
    font-size: 36px;
  }

  .service-icon i {
    font-size: 32px;
  }

  .card-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 12px;
  }

  .card-content p {
    font-size: 15px;
  }
}

/* About Page Styles */
.about-hero {
  height: 50vh;
  min-height: 400px;
  background: url("images/tuzla_gemi_sogutma.jpeg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6));
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.about-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-grid {
  padding: 4rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.about-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: center;
}

.about-item.reverse {
  direction: rtl;
}

.about-item.reverse .about-text {
  direction: ltr;
}

.about-text {
  padding: 2rem;
}

.about-text h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* About Hero Stats */
.about-hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

.hero-stat {
  text-align: center;
  color: var(--white);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.stat-text {
  font-size: 1.1rem;
  opacity: 0.9;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

/* About Story Timeline */
.story-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 5%;
}

.story-timeline {
  position: relative;
  padding: 2rem 0;
}

.story-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--primary-color);
}

.timeline-item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}

.timeline-year {
  background: var(--primary-color);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: bold;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-content {
  width: 45%;
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow);
  margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 0;
  margin-right: auto;
}

/* Values Section */
.values-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 5%;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.value-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

/* Team Section Improvements */
.member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-member:hover .member-overlay {
  opacity: 1;
}

.member-social {
  display: flex;
  gap: 1rem;
}

.member-social a {
  color: var(--white);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.member-social a:hover {
  transform: scale(1.2);
}

.member-quote {
  display: block;
  font-style: italic;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

/* Certificates Section */
.certificates-section {
  background: var(--light-gray);
  padding: 4rem 0;
}

.certificates-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.certificate-item {
  text-align: center;
}

.certificate-item img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 1rem;
}

/* Team Section */
.team-section {
  padding: 4rem 5%;
  background-color: var(--light-gray);
}

.team-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.member-image {
  height: 300px;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
  transform: scale(1.05);
}

.member-info {
  padding: 1.5rem;
  text-align: center;
}

.member-info h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.member-info p {
  color: var(--text-secondary);
}

/* Services Page Styles */
.services-hero {
  height: 50vh;
  min-height: 400px;
  background: url("images/foto9.jpeg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
}

.services-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6));
}

.services-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.service-image {
  height: 250px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 2rem;
}

.service-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.service-content h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Service Process Improvements */
.process-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 5%;
}

.process-timeline {
  position: relative;
  margin-top: 4rem;
}

.process-step {
  position: relative;
  padding-bottom: 3rem;
}

.step-content {
  display: flex;
  gap: 2rem;
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.step-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  min-width: 60px;
  text-align: center;
}

.step-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
  top: -20px;
  right: 20px;
}

.step-info h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.step-features {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.step-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.step-features li::before {
  content: "•";
  color: var(--accent-color);
  position: absolute;
  left: 0;
}

.step-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--primary-color);
  opacity: 0.2;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
    url("images/foto12.jpeg") center/cover no-repeat;
  padding: 6rem 5%;
  text-align: center;
  color: var(--white);
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-item {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-item.reverse {
    direction: ltr;
  }

  .about-image img {
    height: 30px;
  }

  .about-text {
    padding: 1rem 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-image {
    height: 200px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .about-hero-content h1 {
    font-size: 2rem;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .service-content {
    padding: 1.5rem;
  }

  .service-icon {
    font-size: 2rem;
  }
}

/* Contact Section */
.contact-section {
  padding: 6rem 5%;
  background-color: var(--white);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  background-color: var(--primary-color);
  padding: 3rem;
  border-radius: 15px;
  color: var(--white);
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info i {
  font-size: 1.5rem;
  color: var(--secondary-color);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #eee;
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--secondary-color);
  outline: none;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  padding: 1rem 2rem;
  background-color: var(--secondary-color);
  color: var(--white);
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.submit-btn:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 4rem 5% 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section h3 {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.8rem;
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .main-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 1rem;
    flex-direction: column;
    text-align: center;
    box-shadow: var(--shadow);
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content {
    padding: 1.5rem;
  }

  .main-title {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  section {
    padding: 4rem 1rem;
  }
}

.services-h1 {
  justify-content: center;
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #333;
  margin: 60px 0 40px;
  padding: 0 20px;
  position: relative;
}

.services-h1::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}
/* Mobile Menu Button */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: var(--transition);
}

.menu-toggle:focus {
  outline: none;
}

/* About Content Full */
.about-content-full {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* About Text Section */
.about-text-section h2 {
  color: var(--primary-color);
  margin: 2rem 0 1rem;
  text-align: left;
}

/* Company Stats */
.company-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
  background-color: var(--light-gray);
  border-radius: 8px;
}

.stat-item i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* Team Section */
.team-section {
  background-color: var(--light-gray);
  padding: 4rem 5%;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  text-align: center;
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
}

/* Technical Page Styles */
.technical-content {
  padding: 4rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.tech-item {
  background-color: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.tech-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.tech-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.tech-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tech-item:hover .tech-image img {
  transform: scale(1.05);
}

.tech-info {
  padding: 2rem;
}

.tech-info h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.tech-info p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.tech-specs {
  list-style: none;
  padding: 0;
}

.tech-specs li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-primary);
}

.tech-specs li::before {
  content: "•";
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.certificates-section {
  margin-top: 4rem;
  text-align: center;
}

.certificates-section h2 {
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.certificate {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.certificate:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.certificate i {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.certificate h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.certificate p {
  color: var(--text-secondary);
}

/* Responsive Design for Technical Page */
@media (min-width: 768px) {
  .tech-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .tech-image {
    height: 200px;
  }

  .tech-info {
    padding: 1.5rem;
  }

  .tech-info h2 {
    font-size: 1.5rem;
  }

  .certificates-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Page Styles */
.contact-info-full {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 5%;
}

.contact-card {
  text-align: center;
  padding: 2rem;
  background-color: var(--light-gray);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-card i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.contact-form-section {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem 5%;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.form-group textarea {
  height: 120px;
  resize: none;
}

.map-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 5%;
}

.map-container {
  margin-top: 2rem;
  border-radius: 8px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .contact-info-full {
    grid-template-columns: 1fr;
  }

  .tech-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive Design Improvements */
@media (max-width: 992px) {
  .timeline-content {
    width: 80%;
  }

  .services-h1 {
    font-size: 36px;
    margin: 50px 0 35px;
  }

  .story-timeline::before {
    left: 0;
  }

  .timeline-year {
    left: 0;
    transform: none;
  }

  .timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
  }

  .step-content {
    flex-direction: column;
  }

  .step-icon {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .about-hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .services-h1 {
    font-size: 32px;
    margin: 40px 0 30px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    padding-left: 2rem;
  }

  .step-number {
    font-size: 2rem;
    top: -10px;
  }
}

@media (max-width: 480px) {
  .timeline-content {
    width: 100%;
    margin-left: 2rem !important;
  }
  .services-h1 {
    font-size: 28px;
    margin: 30px 0 25px;
  }
  .timeline-year {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  .certificates-grid {
    grid-template-columns: 1fr;
  }

  .step-content {
    padding: 1.5rem;
  }

  .step-icon {
    font-size: 2rem;
  }
}
/* Responsive Design */
@media (max-width: 768px) {
  .gallery-section h1 {
    font-size: 2rem;
  }

  .gallery-tabs {
    gap: 1rem;
  }

  .tab-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .gallery-section h1 {
    font-size: 1.8rem;
  }

  .tab-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Header */
.section-header {
  margin-top: 0;
  text-align: center;
  margin-bottom: 2rem;
  padding-top: 0;
}

.section-header h2 {
  font-size: 2.5rem;
  color: black;
  margin-bottom: 1rem;
}

.section-header p {
  color: black;
  font-size: 1.1rem;
}

/* Features Section */
.features-section {
  padding: 0;
  background: linear-gradient(135deg, #f8f9fc, #edf2f7);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 0 1rem;
}

.feature-card {
  background: white;
  padding: 1.5rem;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  height: 80px;
  width: 80px;
  line-height: 80px;
  background: rgba(0, 123, 255, 0.1);
  border-radius: 50%;
  margin: 0 auto 2rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

/* Projects Section */
.projects-section {
  padding: 3rem 0;
  background: #f8f9fa;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.project-card {
  height: 350px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.project-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-info {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.project-card:hover .project-info {
  transform: translateY(0);
}

/* Stats Section */
.stats-section {
  padding: 5rem 0;
  background: linear-gradient(45deg, var(--primary-color), #2980b9);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1) 25%,
    transparent 25%
  );
  background-size: 3em 3em;
  transform: rotate(-5deg);
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #fff, #9c2121);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .features-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}


/* Ana Sayfa İletişim Bölümü */
.home-contact-section {
  padding: 3rem 0;
  background: linear-gradient(to bottom, #f8f9fa, white);
}

.contact-wrapper {
  margin-top: 3rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card .icon {
  width: 60px;
  height: 60px;
  background: rgba(29, 78, 216, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.contact-card h3 {
  margin-bottom: 0.5rem;
  color: #333;
}

.contact-card p {
  color: #666;
  margin-bottom: 1rem;
}

.contact-link {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #1a56db;
}

.contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.quick-contact-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.quick-contact-form .form-group {
  position: relative;
  margin-bottom: 2rem;
}

.quick-contact-form .form-group:last-child {
  margin-bottom: 0;
}

.quick-contact-form input,
.quick-contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.quick-contact-form label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: #666;
  transition: all 0.3s ease;
  pointer-events: none;
  background: white;
  padding: 0 0.5rem;
}

.quick-contact-form input:focus,
.quick-contact-form textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(29, 78, 216, 0.1);
}

.quick-contact-form input:focus + label,
.quick-contact-form textarea:focus + label,
.quick-contact-form input:not(:placeholder-shown) + label,
.quick-contact-form textarea:not(:placeholder-shown) + label {
  top: -0.5rem;
  font-size: 0.85rem;
  color: var(--primary-color);
}

.quick-contact-form textarea {
  height: 120px;
  resize: none;
}

@media (max-width: 992px) {
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .quick-contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }
}

/* Ana Sayfa Hakkımızda Bölümü */
.home-about-section {
  padding: 3rem 0;
  background: linear-gradient(to bottom, white, #f8f9fa);
}

.about-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-content .section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.about-content .section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.about-content .section-header p {
  font-size: 1.2rem;
  color: var(--primary-color);
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 2rem;
}

.about-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  color: #333;
}

.feature-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-top: 2rem;
}

.about-link:hover {
  gap: 1.2rem;
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .about-features {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .about-content .section-header h2 {
    font-size: 2rem;
  }

  .about-text p {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

/* Hizmetler Bölümü */
.services-preview {
  color: white;
}

.section-header {
  text-align: center;
}

.section-header h2 {
  font-size: 2.5em;
  color: black;
  margin-bottom: 15px;
  font-weight: 600;
}

.section-header p {
  color: black;
  font-size: 1.2em;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(193, 22, 22, 0.1);
  min-height: 300px;
  padding: 30px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-card:hover .service-icon {
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.service-icon i {
  font-size: 35px;
  color: white;
}

.card-content {
  padding: 30px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  font-size: 24px;
  color: black;
  margin-bottom: 15px;
  font-weight: 600;
}

.card-content p {
  color: black;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4caf50;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: auto;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 20px;
  border-radius: 30px;
}

.service-link:hover {
  gap: 12px;
  background: white;
  transform: translateY(-2px);
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(5px);
}

.services-cta {
  text-align: center;
  margin-top: 20px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: black;
  color: white;
  margin-top: 0;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background: #43a047;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    max-width: 400px;
    margin: 0 auto;
  }
}
