/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: #333;
}

/* Header ve Navigasyon */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2%;
    max-width: 1400px;
    margin: 0 auto;
}
/* NAVBAR link aralıklarını düzenle */
header nav a {
    margin-left: 15px;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

header nav a:hover {
    color: #3498db;
}


.logo {
    margin-right: auto;
    padding-left: 0;
}

.logo h1 {
    font-size: 1.8rem;
    color: #1a237e;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin-left: 0;
}

.logo h1:hover {
    transform: translateY(-2px);
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    margin-left: auto;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
}

.nav-links a:hover {
    color: #3498db;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #3498db;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #2c3e50;
    cursor: pointer;
}

/* Hero Bölümü */
.hero {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    margin-top: 70px;
    display: flex;
}

.hero-slider-container {
    position: relative;
    width: 75%;
    height: 100%;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    width: 25%;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a237e;
    font-weight: bold;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    line-height: 1.4;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #1a237e;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: bold;
}

.cta-button:hover {
    background-color: #3498db;
    transform: translateY(-2px);
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
    pointer-events: none;
}

.prev-slide,
.next-slide {
    pointer-events: auto;
    background: rgba(26, 35, 126, 0.7);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.prev-slide:hover,
.next-slide:hover {
    background: rgba(26, 35, 126, 0.9);
    transform: scale(1.1);
}

.prev-slide i,
.next-slide i {
    font-size: 1.2rem;
}

/* Hizmetler Bölümü */
.services {
    padding: 5rem 1rem;
    background-color: #f9f9f9;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Hakkımızda Bölümü */
.about {
    padding: 5rem 1rem;
    background: #fff;
}

.about h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a237e;
    font-size: 2.5rem;
    position: relative;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 3px;
    background-color: #ffd700;
}

.about-content {
    display: grid;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.about-text ul {
    display: flex;
    list-style: none;
}

.about-text li {
    margin-left: 20px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: #2c3e50;
}

.about-text i {
    color: #1a237e;
    margin-right: 1rem;
    font-size: 1.2rem;
    background: #e8eaf6;
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-vision {
    display: grid;
    gap: 1.5rem;
}

.vision-box {
    width: 100%;
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.vision-box:hover {
    transform: translateY(-5px);
}

.vision-box h3 {
    color: #1a237e;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
}

.vision-box h3 i {
    margin-right: 0.5rem;
    color: #ffd700;
    font-size: 1.4rem;
}

.vision-box p {
    color: #2c3e50;
    line-height: 1.6;
    font-size: 0.95rem;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

/* İletişim Bölümü */
.contact {
    padding: 5rem 1rem;
    background-color: #f9f9f9;
}

.contact h2 {
    margin-top: 20px;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a237e;
    font-size: 2.5rem;
    position: relative;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #ffd700;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.contact-info h3 {
    color: #1a237e;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #ffd700;
}

.contact-item {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
}

.contact-item i {
    color: #1a237e;
    margin-right: 1rem;
    font-size: 1.2rem;
    background: #e8eaf6;
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.contact-item a:hover {
    color: #1a237e;
}

.social-buttons {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-button i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.social-button.whatsapp {
    background-color: #25d366;
}

.social-button.phone {
    background-color: #1a237e;
}

.social-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    height: 100%;
    min-height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

/* Footer */
footer {
    background-color: #F5EEDC;
    color: #1a237e;
    padding: 40px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 20px;
}

.footer-logo img {
    width: 150px;
    height: auto;
    border-radius: 10px;
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    color: #1a237e;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
    color: #1a237e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #3498db;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: #1a237e;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(26, 35, 126, 0.1);
}

/* Sabit İletişim Butonları */
.fixed-contact {
    position: fixed;
    bottom: 30px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.whatsapp-button,
.phone-button {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.whatsapp-button {
    background-color: #25d366;
}

.phone-button {
    background-color: #3498db;
}

.whatsapp-button:hover,
.phone-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-vision {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-button {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
    }

    .nav-links li {
        margin: 0.8rem 0;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1rem;
        display: block;
        padding: 0.5rem;
    }

    .hero {
        flex-direction: column;
        height: auto;
        margin-top: 60px;
    }

    .hero-slider-container {
        width: 100%;
        height: 40vh;
    }

    .slide img {
        height: 40vh;
        object-position: center 20%;
    }

    .hero-content {
        width: 100%;
        padding: 2rem 1.5rem;
    }

    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .slider-controls {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-vision {
        grid-template-columns: 1fr;
    }
    
    .vision-box {
        padding: 1.2rem;
    }
    
    .about h2, .contact h2 {
        font-size: 1.8rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .map-container {
        min-height: 350px;
    }
}

@media (max-width: 480px) {
    .hero-slider-container {
        height: 30vh;
    }

    .slide img {
        height: 30vh;
        object-position: center 20%;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .fixed-contact {
        bottom: 20px;
        right: 15px;
        gap: 12px;
    }

    .whatsapp-button,
    .phone-button {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .footer-links h3,
    .footer-services h3,
    .footer-contact h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .footer-links ul li,
    .footer-services ul li,
    .footer-contact p {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .contact-info {
        padding: 1.5rem;
    }

    .contact-item a {
        font-size: 0.95rem;
    }

    .contact-item i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .social-button {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    .map-container {
        min-height: 280px;
    }
} 


/* hizmetler html sayfası yeni */
/* Geliştirilmiş Ana Alan */
.custom-main {
    padding-top: 120px;
    padding-bottom: 80px;
}

.service-box {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service-box h5 {
    font-weight: 700;
    font-size: 1.25rem;
}

.service-box p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0;
}
/* Hakkımızda yeni html sayfası */
.custom-main {
    padding-top: 120px;
    padding-bottom: 80px;
}

.list-group-item {
    font-size: 1rem;
    padding: 15px 20px;
    background-color: transparent;
    border: none;
}
.baslik{
    color: #1a237e;
} 
/* General Styles for the List */
.hakkimizda-list {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap to the next line */
    justify-content: center; /* Centers the items horizontally */
}

/* List Items */
.hakkimizda-list li {
    display: inline-block;
    margin-right: 2rem; /* Space between list items */
    margin-bottom: 1rem; /* Space between items when they wrap */
    font-size: 1rem;
    color: #333;
    text-align: center; /* Centers the text in each list item */
}

/* Adjust Icon size if needed */
.hakkimizda-list i {
    font-size: 1.5rem; /* Adjust icon size */
}

/* Mobile View (screen width less than 768px) */
@media (max-width: 768px) {
    .hakkimizda-list {
        flex-direction: column; /* Stacks items vertically on mobile */
        align-items: center; /* Centers the items vertically */
    }

    .hakkimizda-list li {
        display: block; /* Ensure items are block-level (stacked vertically) */
        margin-right: 0; /* Remove right margin when stacked */
        margin-bottom: 1rem; /* Add some space between the list items */
    }
}

/* === HAKKIMIZDA BÖLÜMÜ === */
.about-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    color: #333;
  }
  
  .about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
  }
  
  .about-left {
    flex: 1 1 500px;
  }
  
  .about-title {
    font-size: 2rem;
    color: #222;
    margin-bottom: 15px;
  }
  
  .about-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
  }
  
  .about-features {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .about-features li {
    font-size: 1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
  }
  
  .about-features li i {
    color: #28a745;
    margin-right: 10px;
    font-size: 1.1rem;
  }
  
  .about-right {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .about-box {
    background-color: #fff;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .about-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }
  
  .about-box h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #007BFF;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .about-box h3 i {
    color: #007BFF;
  }
  
  .about-box p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* === MOBİL UYUMLULUK === */
  @media (max-width: 992px) {
    .about-wrapper {
      flex-direction: column;
    }
  
    .about-left, .about-right {
      flex: 1 1 100%;
    }
  
    .about-title {
      text-align: center;
      font-size: 1.75rem;
    }
  
    .about-description {
      text-align: center;
    }
  
    .about-box {
      margin-bottom: 15px;
    }
  }
  