  /* Projeler Ana Bölümü */
    .projects-hero {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                  url('../img/projelerhero.png') no-repeat center/cover;
      padding: 8rem 0 5rem;
      color: white;
      text-align: center;
      min-height: 50vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    
    .projects-hero h1 {
      font-size: 3.5rem;
      margin-bottom: 1rem;
              text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        color: #b8b5b5; /* Beyaz renk - arka plana uyumlu */
    }
    
    .projects-hero p {
      font-size: 1.2rem;
      max-width: 800px;
      margin: 0 auto 2rem;
    }
    
    /* Proje Filtreleme */
    .projects-filter {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1rem;
      margin: 3rem auto;
      max-width: 800px;
    }
    
    .filter-btn {
      padding: 0.8rem 1.5rem;
      background: transparent;
      border: 2px solid var(--first-color);
      color: var(--title-color);
      font-weight: var(--font-semi-bold);
      border-radius: 30px;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .filter-btn.active, 
    .filter-btn:hover {
      background: var(--first-gradient);
      color: var(--white-color);
      border-color: transparent;
    }
    
    /* Proje Kartları */
    .projects-grid {
      display: grid;
      gap: 2rem;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      padding: 0 2rem;
      max-width: 1400px;
      margin: 0 auto;
    }
    
    .project-card {
      background-color: var(--container-color);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s, box-shadow 0.3s;
      position: relative;
    }
    
    .project-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }
    
    .project-img-container {
      position: relative;
      height: 250px;
      overflow: hidden;
    }
    
    .project-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }
    
    .project-card:hover .project-img {
      transform: scale(1.1);
    }
    
    .project-badge {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background-color: var(--first-color);
      color: var(--white-color);
      padding: 0.5rem 1rem;
      border-radius: 30px;
      font-size: var(--small-font-size);
      font-weight: var(--font-semi-bold);
      z-index: 1;
    }
    
    .project-content {
      padding: 1.5rem;
    }
    
    .project-title {
      font-size: var(--h2-font-size);
      margin-bottom: 0.5rem;
      color: var(--title-color);
    }
    
    .project-meta {
      display: flex;
      justify-content: space-between;
      margin-bottom: 1rem;
      color: var(--text-color-light);
      font-size: var(--small-font-size);
    }
    
    .project-meta span {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .project-meta i {
      font-size: 1rem;
    }
    
    .project-desc {
      margin-bottom: 1.5rem;
      color: var(--text-color);
    }
    
    .project-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--first-color);
      font-weight: var(--font-semi-bold);
      transition: color 0.3s;
    }
    
    .project-link:hover {
      color: var(--second-color);
    }
    
    .project-link i {
      transition: transform 0.3s;
    }
    
    .project-link:hover i {
      transform: translateX(5px);
    }
    
    /* Proje Detay Modal */
    .project-modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s;
    }
    
    .project-modal.active {
      opacity: 1;
      visibility: visible;
    }
    
    .modal-content {
      background-color: var(--container-color);
      width: 90%;
      max-width: 900px;
      max-height: 90vh;
      border-radius: 12px;
      overflow-y: auto;
      position: relative;
      padding: 2rem;
    }
    
    .close-modal {
      position: absolute;
      top: 1rem;
      right: 1rem;
      font-size: 1.5rem;
      color: var(--text-color-light);
      cursor: pointer;
      transition: color 0.3s;
    }
    
    .close-modal:hover {
      color: var(--first-color);
    }
    
    .modal-img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 1.5rem;
    }
    
    .modal-title {
      font-size: 2rem;
      margin-bottom: 1rem;
      color: var(--title-color);
    }
    
    .modal-subtitle {
      display: block;
      color: var(--first-color);
      font-weight: var(--font-semi-bold);
      margin-bottom: 1.5rem;
    }
    
    .modal-details {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
      margin-bottom: 2rem;
    }
    
    .detail-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .detail-item i {
      font-size: 1.2rem;
      color: var(--first-color);
    }
    
    
    /* Responsive Düzenlemeler */
    @media screen and (max-width: 768px) {
      .projects-hero h1 {
        font-size: 2.5rem;
      }
      
      .projects-grid {
        grid-template-columns: 1fr;
      }
      
      .modal-content {
        width: 95%;
        padding: 1.5rem;
      }
      
      .modal-img {
        height: 250px;
      }
    }
    
    @media screen and (min-width: 992px) {
      .projects-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media screen and (min-width: 1200px) {
      .projects-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }


        /* Referanslar Hero Bölümü */
    .references-hero {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                  url('../img/referanslarhero.png') no-repeat center/cover;
      padding: 8rem 0 5rem;
      color: white;
      text-align: center;
      min-height: 50vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    
    .references-hero h1 {
      font-size: 3.5rem;
      margin-bottom: 1rem;
              text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        color: #b8b5b5; /* Beyaz renk - arka plana uyumlu */
    }
    
    .references-hero p {
      font-size: 1.2rem;
      max-width: 800px;
      margin: 0 auto 2rem;
    }

    /* Referanslar Grid */
    .references-grid {
      display: grid;
      gap: 2rem;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      padding: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .reference-card {
      background-color: var(--container-color);
      border-radius: 12px;
      padding: 2rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 200px;
      position: relative;
      overflow: hidden;
    }

    .reference-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--first-gradient);
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 1;
    }

    .reference-card:hover::before {
      opacity: 0.9;
    }

    .reference-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }

    .reference-logo {
      max-width: 150px;
      max-height: 80px;
      object-fit: contain;
      transition: transform 0.3s ease;
      position: relative;
      z-index: 2;
      filter: grayscale(100%);
      opacity: 0.8;
    }

    .reference-card:hover .reference-logo {
      filter: grayscale(0%);
      opacity: 1;
      transform: scale(1.1);
    }

    .reference-name {
      margin-top: 1rem;
      font-weight: var(--font-semi-bold);
      color: var(--title-color);
      text-align: center;
      position: relative;
      z-index: 2;
      transition: color 0.3s ease;
    }

    .reference-card:hover .reference-name {
      color: var(--white-color);
    }

    /* İstatistikler Bölümü */
    .stats-section {
      background-color: var(--black-color);
      padding: 5rem 0;
      margin-top: 3rem;
    }
    
    .stats-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }
    
    .stats-title {
      color: var(--white-color);
      text-align: center;
      margin-bottom: 1rem;
    }
    
    .stats-subtitle {
      color: var(--first-color);
      text-align: center;
      margin-bottom: 3rem;
      display: block;
    }
    
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
    }
    
    .stat-card {
      background-color: hsl(0, 0%, 15%);
      padding: 2rem;
      border-radius: 8px;
      text-align: center;
      transition: transform 0.3s;
    }
    
    .stat-card:hover {
      transform: translateY(-10px);
    }
    
    .stat-number {
      font-size: 3rem;
      font-weight: var(--font-bold);
      color: var(--first-color);
      margin-bottom: 0.5rem;
    }
    
    .stat-label {
      color: var(--white-color);
      font-size: var(--normal-font-size);
    }

    /* Responsive Düzenlemeler */
    @media screen and (max-width: 768px) {
      .references-hero h1 {
        font-size: 2.5rem;
      }
      
      .references-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 1rem;
      }
      
      .reference-card {
        height: 150px;
        padding: 1.5rem;
      }
      
      .reference-logo {
        max-width: 120px;
      }
    }
    
    @media screen and (max-width: 480px) {
      .references-grid {
        grid-template-columns: 1fr;
      }
    }

     /* Özel Kurumsal Sayfa Stilleri */
    .corporate-hero {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                  url('../img/about-detail-img-2.webp') no-repeat center/cover;
      padding: 8rem 0 5rem;
      color: white;
      text-align: center;
      min-height: 60vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    
    .corporate-hero h1 {
      font-size: 3.5rem;
      margin-bottom: 1rem;
              text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        color: #b8b5b5; /* Beyaz renk - arka plana uyumlu */
    }
    
    .corporate-hero p {
      font-size: 1.2rem;
      max-width: 800px;
      margin: 0 auto 2rem;
    }
    
    /* About Section Grid Düzeni */
    .grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .about__images {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-top: 2rem;
    }

    @media (min-width: 768px) {
      .grid {
        grid-template-columns: 1fr 1fr;
      }
      
      .about__images {
        margin-top: 0;
      }
    }
    
    .timeline {
      position: relative;
      max-width: 1200px;
      margin: 4rem auto;
      padding: 0 2rem;
    }
    
    .timeline::after {
      content: '';
      position: absolute;
      width: 6px;
      background-color: var(--first-color);
      top: 0;
      bottom: 0;
      left: 50%;
      margin-left: -3px;
      border-radius: 10px;
    }
    
    .timeline-item {
      padding: 10px 40px;
      position: relative;
      width: 50%;
      box-sizing: border-box;
    }
    
    .timeline-item::after {
      content: '';
      position: absolute;
      width: 25px;
      height: 25px;
      background-color: var(--first-color);
      border: 4px solid var(--black-color);
      top: 15px;
      border-radius: 50%;
      z-index: 1;
    }
    
    .left {
      left: 0;
      text-align: right;
    }
    
    .right {
      left: 50%;
      text-align: left;
    }
    
    .left::after {
      right: -12px;
    }
    
    .right::after {
      left: -12px;
    }
    
    .timeline-content {
      padding: 20px;
      background-color: var(--container-color);
      border: 2px solid var(--gray-border);
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .timeline-content:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
    
    .timeline-year {
      font-weight: bold;
      color: var(--first-color);
      margin-bottom: 0.5rem;
    }
    
    .team-section {
      background-color: var(--black-color);
      color: white;
      padding: 5rem 0;
      text-align: center;
    }
    
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 3rem auto;
      padding: 0 2rem;
    }
    
    .team-card {
      background-color: var(--container-color);
      border-radius: 10px;
      overflow: hidden;
      transition: transform 0.3s;
    }
    
    .team-card:hover {
      transform: translateY(-10px);
    }
    
    .team-img {
      height: 250px;
      overflow: hidden;
    }
    
    .team-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }
    
    .team-card:hover .team-img img {
      transform: scale(1.1);
    }
    
    .team-info {
      padding: 1.5rem;
    }
    
    .team-info h3 {
      color: var(--title-color);
      margin-bottom: 0.5rem;
    }
    
    .team-info p {
      color: var(--text-color-light);
      font-size: 0.9rem;
    }
    
    .certificates {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 2rem;
      margin: 4rem auto;
      max-width: 1000px;
    }
    
    .certificate-item {
      background-color: white;
      padding: 1.5rem;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s;
      text-align: center;
      width: 200px;
    }
    
    .certificate-item:hover {
      transform: scale(1.05);
    }
    
    .certificate-img {
      height: 100px;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .certificate-img img {
      max-height: 100%;
      max-width: 100%;
    }
    
    .values-section {
      padding: 5rem 0;
      background-color: #f9f9f9;
    }
    
    .values-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 3rem auto;
      padding: 0 2rem;
    }
    
    .value-card {
      background-color: white;
      padding: 2rem;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      text-align: center;
      transition: transform 0.3s;
    }
    
    .value-card:hover {
      transform: translateY(-10px);
    }
    
    .value-icon {
      font-size: 3rem;
      color: var(--first-color);
      margin-bottom: 1rem;
    }
    
    @media screen and (max-width: 768px) {
      .timeline::after {
        left: 31px;
      }
      
      .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
      }
      
      .timeline-item::after {
        left: 18px;
      }
      
      .left, .right {
        left: 0;
        text-align: left;
      }
      
      .corporate-hero h1 {
        font-size: 2.5rem;
      }
    }




     /* İletişim Hero Bölümü */
    .contact-hero {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                  url('../img/iletişimhero.png') no-repeat center/cover;
      padding: 8rem 0 5rem;
      color: white;
      text-align: center;
      min-height: 50vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    
    .contact-hero h1 {
      font-size: 3.5rem;
      margin-bottom: 1rem;
              text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        color: #b8b5b5; /* Beyaz renk - arka plana uyumlu */
    }
    
    .contact-hero p {
      font-size: 1.2rem;
      max-width: 800px;
      margin: 0 auto 2rem;
    }
    
    /* İletişim Bilgileri */
    .contact-info {
      padding: 5rem 0;
      background-color: var(--container-color);
    }
    
    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }
    
    .contact-card {
      background-color: white;
      padding: 2rem;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
      text-align: center;
      transition: transform 0.3s;
      border: 2px solid var(--gray-border);
    }
    
    .contact-card:hover {
      transform: translateY(-10px);
      border-color: var(--first-color);
    }
    
    .contact-icon {
      width: 70px;
      height: 70px;
      background: var(--first-gradient);
      color: white;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 2rem;
      margin: 0 auto 1.5rem;
    }
    
    .contact-card h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: var(--title-color);
    }
    
    .contact-card p, 
    .contact-card address {
      color: var(--text-color);
      margin-bottom: 0.5rem;
      font-style: normal;
    }
    
    /* İletişim Formu */
    .contact-form-section {
      background-color: #f9f9f9;
      padding: 5rem 0;
    }
    
    .form-container {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 2rem;
    }
    
    .contact-form {
      background-color: white;
      padding: 3rem;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }
    
    .form-group {
      margin-bottom: 1.5rem;
    }
    
    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: var(--font-semi-bold);
      color: var(--title-color);
    }
    
    .form-control {
      width: 100%;
      padding: 1rem;
      border: 2px solid var(--gray-border);
      border-radius: 8px;
      font-family: var(--body-font);
      font-size: 1rem;
      transition: border-color 0.3s;
    }
    
    .form-control:focus {
      outline: none;
      border-color: var(--first-color);
    }
    
    textarea.form-control {
      min-height: 150px;
      resize: vertical;
    }
    
    .submit-btn {
      background: var(--first-gradient);
      color: white;
      border: none;
      padding: 1rem 2rem;
      font-size: 1rem;
      font-weight: var(--font-semi-bold);
      border-radius: 8px;
      cursor: pointer;
      transition: box-shadow 0.3s;
      width: 100%;
    }
    
    .submit-btn:hover {
      box-shadow: 0 8px 20px hsla(45, 85%, 55%, 0.3);
    }
    
    /* Harita Bölümü */
    .map-section {
      padding: 5rem 0;
    }
    
    .map-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }
    
    .map-wrapper {
      height: 500px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .map-wrapper iframe {
      width: 100%;
      height: 100%;
      border: none;
    }
    
    /* Sosyal Medya Bağlantıları */
    .social-links {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      margin-top: 2rem;
    }
    
    .social-link {
      width: 50px;
      height: 50px;
      background: var(--first-gradient);
      color: white;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 1.5rem;
      transition: transform 0.3s;
    }
    
    .social-link:hover {
      transform: translateY(-5px);
    }
    
    /* Responsive Düzenlemeler */
    @media screen and (max-width: 768px) {
      .contact-hero h1 {
        font-size: 2.5rem;
      }
      
      .contact-hero p {
        font-size: 1rem;
        padding: 0 1rem;
      }
      
      .contact-form {
        padding: 2rem 1.5rem;
      }
      
      .map-wrapper {
        height: 350px;
      }
    }
    
    @media screen and (max-width: 480px) {
      .contact-hero h1 {
        font-size: 2rem;
      }
      
      .contact-card {
        padding: 1.5rem;
      }
      
      .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
      }
    }




     /* Teknik Bilgi Özel Stilleri */
    .technical-hero {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                  url('../img/teknikbilgihero.png') no-repeat center/cover;
      padding: 8rem 0 5rem;
      color: white;
      text-align: center;
      min-height: 50vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    
    .technical-hero h1 {
      font-size: 3.5rem;
      margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        color: #b8b5b5; /* Beyaz renk - arka plana uyumlu */
    }
    
    .technical-hero p {
      font-size: 1.2rem;
      max-width: 800px;
      margin: 0 auto 2rem;
    }
    
    /* Teknik İçerik */
    .technical-content {
      max-width: 1200px;
      margin: 3rem auto;
      padding: 0 2rem;
    }
    
    .technical-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 2rem;
      border-bottom: 2px solid var(--gray-border);
      padding-bottom: 1rem;
    }
    
    .technical-tab {
      padding: 0.8rem 1.5rem;
      background: transparent;
      border: 2px solid var(--first-color);
      color: var(--title-color);
      font-weight: var(--font-semi-bold);
      border-radius: 30px;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .technical-tab.active, 
    .technical-tab:hover {
      background: var(--first-gradient);
      color: var(--white-color);
      border-color: transparent;
    }
    
    .technical-panel {
      display: none;
      background-color: var(--container-color);
      border-radius: 12px;
      padding: 2rem;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
      margin-bottom: 3rem;
    }
    
    .technical-panel.active {
      display: block;
      animation: fadeIn 0.5s ease;
    }
    
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .panel-title {
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
      color: var(--title-color);
      position: relative;
      padding-bottom: 0.5rem;
    }
    
    .panel-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 60px;
      height: 3px;
      background: var(--first-gradient);
    }
    
    .panel-description {
      margin-bottom: 2rem;
      line-height: 1.6;
    }
    
    .specs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
      margin-bottom: 2rem;
    }
    
    .spec-card {
      background-color: #f9f9f9;
      border-radius: 8px;
      padding: 1.5rem;
      transition: transform 0.3s;
    }
    
    .spec-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .spec-title {
      font-weight: var(--font-semi-bold);
      color: var(--first-color);
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .spec-list {
      margin-top: 1rem;
    }
    
    .spec-item {
      margin-bottom: 0.5rem;
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
    }
    
    .spec-item i {
      color: var(--first-color);
      margin-top: 0.2rem;
    }
    
    .download-section {
      background-color: var(--black-color);
      padding: 2rem;
      border-radius: 8px;
      margin-top: 2rem;
    }
    
    .download-title {
      color: var(--white-color);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .download-links {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    
    .download-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background-color: var(--white-color);
      color: var(--black-color);
      padding: 0.8rem 1.5rem;
      border-radius: 8px;
      font-weight: var(--font-semi-bold);
      transition: all 0.3s;
    }
    
    .download-btn:hover {
      background: var(--first-gradient);
      color: var(--white-color);
      transform: translateY(-3px);
    }
    
    .gallery-section {
      margin-top: 3rem;
    }
    
    .gallery-title {
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1rem;
    }
    
    .gallery-item {
      height: 200px;
      border-radius: 8px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      transition: transform 0.3s;
    }
    
    .gallery-item:hover {
      transform: scale(1.03);
    }
    
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }
    
    .gallery-item:hover img {
      transform: scale(1.1);
    }
    
    /* Responsive */
    @media screen and (max-width: 768px) {
      .technical-hero h1 {
        font-size: 2.5rem;
      }
      
      .specs-grid {
        grid-template-columns: 1fr;
      }
      
      .download-links {
        flex-direction: column;
      }
    }
    
    
    
    /* Swiper Buton ve Pagination Özelleştirmeleri */
.swiper-button-next, 
.swiper-button-prev {
  color: var(--white-color);
  background: var(--first-gradient);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.swiper-button-next:after, 
.swiper-button-prev:after {
  font-size: 1.5rem;
  font-weight: bold;
}

.swiper-button-next:hover, 
.swiper-button-prev:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.swiper-pagination {
  bottom: 0 !important;
}


.team-section .swiper-pagination {
  position: relative;
  margin-top: 2rem;
}

.team-section .swiper-pagination-bullet {
  background: var(--text-color-light);
  opacity: 0.6;
  width: 12px;
  height: 12px;
  transition: all 0.3s ease;
}

.team-section .swiper-pagination-bullet-active {
  background: var(--first-color);
  opacity: 1;
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

/* Karanlık arka plan için buton stilleri */
.team-section .swiper-button-next,
.team-section .swiper-button-prev {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.team-section .swiper-button-next:hover,
.team-section .swiper-button-prev:hover {
  background: var(--first-gradient);
}

/* Responsive adjustments for swiper */
@media screen and (max-width: 768px) {
  .swiper-button-next, 
  .swiper-button-prev {
    display: none;
  }
  
  .teamSwiper {
    padding: 20px 0 40px;
  }
  
  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}


/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s;
}

.modal-content {
  margin: auto;
  display: block;
  width: 90%;          /* Yatayda biraz boşluk bırak */
  max-width: 700px;    /* Maksimum genişlik */
  max-height: 100vh;    /* Yükseklik ekranın %80'i ile sınırlı */
  object-fit: contain; /* Fotoğrafın orantısını korur */
  animation: zoom 0.3s;
}


@keyframes zoom {
  from {transform: scale(0.8); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close-modal:hover,
.close-modal:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* Sertifika görsellerine tıklanabilir olduğunu gösteren stil */
.certificate-img {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.certificate-img:hover {
  transform: scale(1.05);
}





.pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 8px;
}
.page-btn {
  padding: 8px 14px;
  background: #eee;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: 0.3s;
}
.page-btn:hover {
  background: #ccc;
}
.page-btn.active {
  background: #2c3e50;
  color: #fff;
}
