 :root {
     --primary-color: #1e88e5;
     --secondary-color: #f5f5f5;
     --dark-color: #333;
     --light-color: #fff;
     --accent-color: #ff9800;
 }



 .menu-container {
      background-color: #1f2937;
      padding: 10px 20px;
      position: relative;
    }

    .menu-container__logo {
      color: #000000;
      font-size: 20px;
      font-weight: bold;
    }

    .menu-container__nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .menu-container__links {
      list-style: none;
      display: flex;
      gap: 20px;
    }

    .menu-container__links li a {
      color: #000000;
      text-decoration: none;
      font-weight: 500;
    }

    /* --- Hamburger Menü Butonu --- */
    .menu-container__toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
    }

    .menu-container__toggle span {
      width: 25px;
      height: 3px;
      background-color: #fff;
      display: block;
    }

    /* --- Mobil Menü --- */
    @media (max-width: 768px) {
      .menu-container__links {
        display: none;
        flex-direction: column;
        background-color: #ffffff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 15px;
      }

      .menu-container__links--active {
        display: flex;
      }

      .menu-container__toggle {
        display: flex;
      }
    }





 .mobiltelefon {
    position: fixed;
    left: 25px;
    bottom: 25px;
    width: 55px;
    height: 55px;
    opacity: 1;
    z-index: 1000;
    font-size: 18px;
    border-radius: 4px;
    color: #fff;
    overflow: hidden;
    display: block;
}

.wa {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 55px;
    height: 55px;
    opacity: 1;
    z-index: 1000;
    font-size: 18px;
    border-radius: 4px;
    color: #fff;
    overflow: hidden;
}
.site-footer {
  background-color: #002244;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: 'Open Sans', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.footer-column h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #ffcc00;
}

.footer-column p,
.footer-column li {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a,
.footer-column a {
  color: #fff;
  text-decoration: none;
}

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

.footer-bottom {
  text-align: center;
  border-top: 1px solid #ffffff33;
  padding-top: 15px;
  font-size: 0.85rem;
  color: #aaa;
}



 /* Mobilde açılır */
 @media (max-width: 768px) {
     .nav-links {
         display: none;
         flex-direction: column;
         z-index: 9999;
     }

     .menu-toggle {
         display: block;
     }

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



/* Genel navbar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  color: black;
  position: relative;
}

/* Menü ikonu */
.menu-toggle {
  font-size: 2rem;
  cursor: pointer;
  display: none; /* Masaüstünde gizli */
}

/* Popup menü */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 64, 128, 0.95);
  color: white;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.mobile-menu ul li {
  margin: 1.5rem 0;
  font-size: 1.5rem;
}

.mobile-menu ul li a {
  color: white;
  text-decoration: none;
}

.close-btn {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 3rem;
  cursor: pointer;
}

/* Mobilde görünür, masaüstünde gizli */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  nav ul {
    display: none;
  }
}





 

 /* Page Header */
 .page-header {
     background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='200' viewBox='0 0 800 200'%3E%3Crect width='800' height='200' fill='%23555'/%3E%3Cpath d='M0 180h800M0 150h800M0 120h800' stroke='%23777' stroke-width='2'/%3E%3Crect x='100' y='50' width='600' height='150' fill='none' stroke='%23999' stroke-width='10'/%3E%3Cpath d='M150 50v150M250 50v150M350 50v150M450 50v150M550 50v150M650 50v150' stroke='%23888' stroke-width='5'/%3E%3Cpath d='M100 80h600M100 110h600M100 140h600M100 170h600' stroke='%23888' stroke-width='5'/%3E%3C/svg%3E");
     background-size: cover;
     background-position: center;
     color: var(--light-color);
     padding: 3rem 0;
     text-align: center;
     margin-bottom: 2rem;
 }

 .page-header h1 {
     font-size: 2.5rem;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
 }

 /* Gallery Section */
 .gallery-section {
     padding: 2rem 0 4rem;
 }

 .gallery-intro {
     text-align: center;
     margin-bottom: 2rem;
 }

 .gallery-intro h2 {
     color: var(--primary-color);
     margin-bottom: 1rem;
     font-size: 2rem;
 }

 .gallery-intro p {
     max-width: 800px;
     margin: 0 auto;
     color: #666;
 }

 .gallery-filters {
     display: flex;
     justify-content: center;
     flex-wrap: wrap;
     margin-bottom: 2rem;
 }

 .filter-btn {
     background-color: transparent;
     border: 2px solid var(--primary-color);
     color: var(--primary-color);
     padding: 0.5rem 1.5rem;
     margin: 0.5rem;
     border-radius: 30px;
     cursor: pointer;
     font-weight: 500;
     transition: all 0.3s;
 }

 .filter-btn:hover,
 .filter-btn.active {
     background-color: var(--primary-color);
     color: var(--light-color);
 }

 .gallery-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 1.5rem;
 }



 .gallery-item svg {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s;
 }

 .gallery-item:hover svg {
     transform: scale(1.1);
 }

 .gallery-item-overlay {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     background-color: rgba(0, 0, 0, 0.7);
     color: var(--light-color);
     padding: 1rem;
     transform: translateY(100%);
     transition: transform 0.3s;
 }

 .gallery-item:hover .gallery-item-overlay {
     transform: translateY(0);
 }

 .gallery-item-overlay h3 {
     font-size: 1.1rem;
     margin-bottom: 0.5rem;
 }

 .gallery-item-overlay p {
     font-size: 0.9rem;
     opacity: 0.8;
 }

 /* Lightbox */
 .lightbox {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.9);
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 2000;
     opacity: 0;
     pointer-events: none;
     transition: opacity 0.3s;
 }

 .lightbox.active {
     opacity: 1;
     pointer-events: all;
 }

 .lightbox-content {
     position: relative;
     max-width: 80%;
     max-height: 80%;
 }

 .lightbox-image {
     max-width: 100%;
     max-height: 80vh;
     border: 5px solid var(--light-color);
     border-radius: 5px;
 }

 .lightbox-close {
     position: absolute;
     top: -40px;
     right: 0;
     color: var(--light-color);
     font-size: 2rem;
     cursor: pointer;
     background: none;
     border: none;
 }

 .lightbox-caption {
     color: var(--light-color);
     text-align: center;
     padding: 1rem 0;
     font-size: 1.2rem;
 }

 .lightbox-nav {
     position: absolute;
     top: 50%;
     width: 100%;
     display: flex;
     justify-content: space-between;
     transform: translateY(-50%);
 }

 .lightbox-nav button {
     background: rgba(255, 255, 255, 0.2);
     color: var(--light-color);
     border: none;
     font-size: 2rem;
     padding: 1rem;
     cursor: pointer;
     border-radius: 50%;
     width: 50px;
     height: 50px;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: background-color 0.3s;
 }

 .lightbox-nav button:hover {
     background: rgba(255, 255, 255, 0.4);
 }

 /* Footer */
 footer {
     background-color: var(--dark-color);
     color: var(--light-color);
     padding: 2rem 0;
 }

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

 .footer-section h3 {
     color: var(--accent-color);
     margin-bottom: 1rem;
     font-size: 1.2rem;
 }

 .footer-links {
     list-style: none;
 }

 .footer-links li {
     margin-bottom: 0.5rem;
 }

 .footer-links a {
     color: #ddd;
     text-decoration: none;
     transition: color 0.3s;
 }



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

 .social-links a {
     color: var(--light-color);
     margin-right: 1rem;
     font-size: 1.5rem;
     transition: color 0.3s;
 }

 .social-links a:hover {
     color: var(--accent-color);
 }

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

 .contact-info i {
     margin-right: 0.5rem;
     color: var(--accent-color);
 }

 .footer-bottom {
     text-align: center;
     padding-top: 2rem;
     margin-top: 2rem;
     border-top: 1px solid #444;
 }

 .footer-bottom p {
     font-size: 0.9rem;
     color: #aaa;
 }

 /* Responsive Design */
 @media (max-width: 992px) {
     .gallery-grid {
         grid-template-columns: repeat(3, 1fr);
     }
 }



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

     .gallery-item {
         height: 200px;
     }
 }



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


 


 /* Page Header */
 .page-header {
     background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='200' viewBox='0 0 800 200'%3E%3Crect width='800' height='200' fill='%23555'/%3E%3Cpath d='M0 180h800M0 150h800M0 120h800' stroke='%23777' stroke-width='2'/%3E%3Crect x='100' y='50' width='600' height='150' fill='none' stroke='%23999' stroke-width='10'/%3E%3Cpath d='M150 50v150M250 50v150M350 50v150M450 50v150M550 50v150M650 50v150' stroke='%23888' stroke-width='5'/%3E%3Cpath d='M100 80h600M100 110h600M100 140h600M100 170h600' stroke='%23888' stroke-width='5'/%3E%3C/svg%3E");
     background-size: cover;
     background-position: center;
     color: var(--light-color);
     padding: 3rem 0;
     text-align: center;
     margin-bottom: 2rem;
 }



 /* Contact Section */
 .contact-section {
     padding: 2rem 0 4rem;
 }

 .contact-intro {
     text-align: center;
     margin-bottom: 2rem;
 }

 .contact-intro h2 {
     color: var(--primary-color);
     margin-bottom: 1rem;
     font-size: 2rem;
 }

 .contact-intro p {
     max-width: 800px;
     margin: 0 auto;
     color: #666;
 }

 .contact-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 2rem;
 }

 /* Contact Info */
 .contact-info {
     background-color: var(--light-color);
     border-radius: 10px;
     padding: 2rem;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .contact-info h3 {
     color: var(--primary-color);
     margin-bottom: 1.5rem;
     font-size: 1.5rem;
 }

 .info-item {
     display: flex;
     align-items: flex-start;
     margin-bottom: 1.5rem;
 }

 .info-icon {
     font-size: 1.5rem;
     color: var(--primary-color);
     margin-right: 1rem;
     min-width: 30px;
 }

 .info-content h4 {
     margin-bottom: 0.5rem;
 }

 .info-content p,
 .info-content a {
     color: #666;
     text-decoration: none;
     transition: color 0.3s;
 }

 .info-content a:hover {
     color: var(--primary-color);
 }

 .social-links {
     display: flex;
     margin-top: 2rem;
 }

 .social-links a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background-color: var(--primary-color);
     color: var(--light-color);
     border-radius: 50%;
     margin-right: 1rem;
     text-decoration: none;
     transition: all 0.3s;
 }

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

 .whatsapp-button {
     display: inline-flex;
     align-items: center;
     background-color: #25d366;
     color: var(--light-color);
     padding: 0.8rem 1.5rem;
     border-radius: 30px;
     text-decoration: none;
     font-weight: 500;
     margin-top: 1rem;
     transition: all 0.3s;
 }

 .whatsapp-button i {
     margin-right: 0.5rem;
     font-size: 1.2rem;
 }

 .whatsapp-button:hover {
     background-color: #128c7e;
     transform: translateY(-3px);
 }

 /* Contact Form */
 .contact-form {
     background-color: var(--light-color);
     border-radius: 10px;
     padding: 2rem;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .contact-form h3 {
     color: var(--primary-color);
     margin-bottom: 1.5rem;
     font-size: 1.5rem;
 }

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

 .form-group label {
     display: block;
     margin-bottom: 0.5rem;
     font-weight: 500;
 }

 .form-control {
     width: 100%;
     padding: 0.8rem;
     border: 1px solid #ddd;
     border-radius: 5px;
     font-family: inherit;
     font-size: 1rem;
     transition: border-color 0.3s;
 }

 .form-control:focus {
     outline: none;
     border-color: var(--primary-color);
 }

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

 .submit-btn {
     background-color: var(--primary-color);
     color: var(--light-color);
     border: none;
     padding: 0.8rem 2rem;
     border-radius: 5px;
     cursor: pointer;
     font-size: 1rem;
     font-weight: 500;
     transition: all 0.3s;
 }

 .submit-btn:hover {
     background-color: #1565c0;
     transform: translateY(-3px);
 }

 /* Map Section */
 .map-section {
     padding: 3rem 0;
 }

 .map-section h3 {
     color: var(--primary-color);
     margin-bottom: 1.5rem;
     font-size: 1.5rem;
     text-align: center;
 }

 .map-container {
     height: 400px;
     border-radius: 10px;
     overflow: hidden;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .map-container iframe {
     width: 100%;
     height: 100%;
     border: none;
 }

 /* Footer */
 footer {
     background-color: var(--dark-color);
     color: var(--light-color);
     padding: 2rem 0;
 }

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

 .footer-section h3 {
     color: var(--accent-color);
     margin-bottom: 1rem;
     font-size: 1.2rem;
 }

 .footer-links {
     list-style: none;
 }

 .footer-links li {
     margin-bottom: 0.5rem;
 }

 .footer-links a {
     color: #ddd;
     text-decoration: none;
     transition: color 0.3s;
 }



 .footer-social-links {
     display: flex;
     margin-top: 1rem;
 }

 .footer-social-links a {
     color: var(--light-color);
     margin-right: 1rem;
     font-size: 1.5rem;
     transition: color 0.3s;
 }

 .footer-social-links a:hover {
     color: var(--accent-color);
 }

 .footer-contact p {
     margin-bottom: 0.5rem;
     display: flex;
     align-items: center;
 }

 .footer-contact i {
     margin-right: 0.5rem;
     color: var(--accent-color);
 }

 .footer-bottom {
     text-align: center;
     padding-top: 2rem;
     margin-top: 2rem;
     border-top: 1px solid #444;
 }

 .footer-bottom p {
     font-size: 0.9rem;
     color: #aaa;
 }

 /* Alert Messages */
 .alert {
     padding: 1rem;
     border-radius: 5px;
     margin-bottom: 1rem;
     display: none;
 }

 .alert-success {
     background-color: rgba(76, 175, 80, 0.1);
     border: 1px solid var(--success-color);
     color: var(--success-color);
 }

 .alert-error {
     background-color: rgba(244, 67, 54, 0.1);
     border: 1px solid var(--error-color);
     color: var(--error-color);
 }

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





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






 /* Header */
 header {
     background-color: var(--light-color);
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     position: sticky;
     top: 0;
     z-index: 1000;
 }

 .navbar {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 1rem 0;
 }








 .menu-toggle {
     display: none;
     cursor: pointer;
     font-size: 1.5rem;
 }

 /* Hero Section */
 .hero {
     background-image: url('../images/istanbul-kiralik-iskele.jpg');
     /* Görselin tam adı */
     background-size: cover;
     background-position: center;
     color: var(--light-color);
     padding: 10rem 0;
     text-align: center;
 }

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

 .hero p {
     font-size: 1.2rem;
     margin-bottom: 2rem;
     max-width: 800px;
     margin-left: auto;
     margin-right: auto;
 }

 .btn {
     display: inline-block;
     background-color: var(--accent-color);
     color: var(--light-color);
     padding: 0.8rem 2rem;
     border-radius: 5px;
     text-decoration: none;
     font-weight: 700;
     transition: background-color 0.3s, transform 0.3s;
 }

 .btn:hover {
     background-color: #e68a00;
     transform: translateY(-3px);
 }

 /* USP Section */
 .usp {
     background-color: var(--light-color);
     padding: 3rem 0;
     text-align: center;
 }

 .usp h2 {
     color: var(--primary-color);
     margin-bottom: 1.5rem;
 }

 .usp p {
     font-size: 1.1rem;
     max-width: 800px;
     margin: 0 auto;
 }

 /* Benefits Section */
 .benefits {
     padding: 4rem 0;
     background-color: var(--secondary-color);
 }

 .benefits h2 {
     text-align: center;
     margin-bottom: 2rem;
     color: var(--primary-color);
 }

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

 .benefit-card {
     background-color: var(--light-color);
     padding: 2rem;
     border-radius: 10px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     text-align: center;
     transition: transform 0.3s;
 }

 .benefit-card:hover {
     transform: translateY(-10px);
 }

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

 .benefit-card h3 {
     margin-bottom: 1rem;
 }

 /* Gallery Section */
 .gallery {
     padding: 4rem 0;
     background-color: var(--light-color);
 }

 .gallery h2 {
     text-align: center;
     margin-bottom: 2rem;
     color: var(--primary-color);
 }

 .gallery-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 1rem;
 }

 .gallery-item {
     position: relative;
     height: 200px;
     overflow: hidden;
     border-radius: 5px;
     box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
 }

 .gallery-item svg {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.3s;
 }

 .gallery-item:hover svg {
     transform: scale(1.05);
 }

 /* Testimonials Section */
 .testimonials {
     padding: 4rem 0;
     background-color: var(--secondary-color);
 }

 .testimonials h2 {
     text-align: center;
     margin-bottom: 2rem;
     color: var(--primary-color);
 }

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

 .testimonial-card {
     background-color: var(--light-color);
     padding: 2rem;
     border-radius: 10px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .testimonial-text {
     font-style: italic;
     margin-bottom: 1rem;
 }

 .testimonial-author {
     font-weight: 700;
     color: var(--primary-color);
 }

 .stars {
     color: gold;
     margin-bottom: 0.5rem;
 }

 /* Reinforcing Statement */
 .reinforcing {
     background-color: var(--primary-color);
     color: var(--light-color);
     padding: 3rem 0;
     text-align: center;
 }

 .reinforcing p {
     font-size: 1.3rem;
     max-width: 800px;
     margin: 0 auto;
     font-weight: 500;
 }

 /* Closing Argument */
 .closing {
     padding: 3rem 0;
     background-color: var(--light-color);
     text-align: center;
 }

 .closing p {
     font-size: 1.2rem;
     max-width: 800px;
     margin: 0 auto 0rem;
 }

 /* CTA Section */
 .cta {
     padding: 4rem 0;
     background-color: var(--secondary-color);
     text-align: center;
 }

 .cta-btn {
     font-size: 1.2rem;
     padding: 1rem 3rem;
     margin-bottom: 1.5rem;
 }

 .whatsapp-link {
     display: inline-flex;
     align-items: center;
     color: var(--dark-color);
     text-decoration: none;
     font-weight: 500;
     transition: color 0.3s;
 }

 .whatsapp-link:hover {
     color: var(--primary-color);
 }

 .whatsapp-icon {
     color: #25D366;
     margin-right: 0.5rem;
     font-size: 1.5rem;
 }

 /* Footer */
 footer {
     background-color: var(--dark-color);
     color: var(--light-color);
     padding: 2rem 0;
     text-align: center;
 }

 .footer-content {
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 .footer-links {
     margin: 1rem 0;
 }





 .footer-text {
     margin-top: 1rem;
     font-size: 0.9rem;
     color: #aaa;
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     

     .nav-links {
         position: fixed;
         top: 70px;
         left: -100%;
         width: 100%;
         height: calc(100vh - 70px);
         background-color: var(--light-color);
         flex-direction: column;
         align-items: center;
         padding-top: 2rem;
         transition: left 0.3s;
     }

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

     .nav-links li {
         margin: 1rem 0;
     }

     .hero h1 {
         font-size: 2rem;
     }

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

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

     .hero h1 {
         font-size: 1.8rem;
     }

     .hero p {
         font-size: 1rem;
     }

     .btn {
         padding: 0.7rem 1.5rem;
     }
 }






 body {
     font-family: 'Roboto', sans-serif;
     line-height: 1.6;
     color: var(--dark-color);
     background-color: var(--secondary-color);
 }







 .logo {
     font-size: 1.5rem;
     font-weight: 700;
     color: var(--primary-color);
     text-decoration: none;
     color:black;
 }

 .nav-links {
     display: flex;
     list-style: none;
 }

 .nav-links li {
     margin-left: 1.5rem;
 }

 .nav-links a {
     color: var(--dark-color);
     text-decoration: none;
     font-weight: 500;
     transition: color 0.3s;
 }





 
 /* Page Header */
 .page-header {
     background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='200' viewBox='0 0 800 200'%3E%3Crect width='800' height='200' fill='%23555'/%3E%3Cpath d='M0 180h800M0 150h800M0 120h800' stroke='%23777' stroke-width='2'/%3E%3Crect x='100' y='50' width='600' height='150' fill='none' stroke='%23999' stroke-width='10'/%3E%3Cpath d='M150 50v150M250 50v150M350 50v150M450 50v150M550 50v150M650 50v150' stroke='%23888' stroke-width='5'/%3E%3Cpath d='M100 80h600M100 110h600M100 140h600M100 170h600' stroke='%23888' stroke-width='5'/%3E%3C/svg%3E");
     background-size: cover;
     background-position: center;
     color: var(--light-color);
     padding: 3rem 0;
     text-align: center;
     margin-bottom: 2rem;
 }



 /* About Section */
 .about-section {
     padding: 3rem 0;
 }

 .about-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 2rem;
     align-items: center;
 }

 .about-text {
     padding: 1rem;
 }

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

 .about-text p {
     margin-bottom: 1.5rem;
     font-size: 1.1rem;
 }

 .about-image {
     border-radius: 10px;
     overflow: hidden;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     height: 70%;
     min-height: 300px;
 }

 .about-image svg {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 /* Features Section */
 .features-section {
     padding: 3rem 0;
     background-color: var(--light-color);
 }

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

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

 .feature-card {
     padding: 1.5rem;
     border-radius: 10px;
     box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
     text-align: center;
     transition: transform 0.3s;
 }

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

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

 .feature-card h3 {
     margin-bottom: 1rem;
 }

 /* Team Section */
 .team-section {
     padding: 3rem 0;
 }

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

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

 .team-member {
     background-color: var(--light-color);
     border-radius: 10px;
     overflow: hidden;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     text-align: center;
 }

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

 .member-image svg {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .member-info {
     padding: 1.5rem;
 }

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

 .member-info p {
     color: #777;
     margin-bottom: 1rem;
 }





 .footer-links {
     margin: 1rem 0;
 }

 .footer-links a {
     color: var(--light-color);
     margin: 0 1rem;
     font-size: 1.5rem;
     transition: color 0.3s;
 }

 .footer-links a:hover {
     color: var(--accent-color);
 }



 /* Responsive Design */
 @media (max-width: 768px) {
     .menu-toggle {
         display: block;
     }



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

     .nav-links li {
         margin: 1rem 0;
     }

     .about-content {
         grid-template-columns: 1fr;
     }

     .about-image {
         order: -1;
     }
 }