/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
header {
    background: linear-gradient(to right, #1a2a44, #00aaff);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Dropdown Menü Stilleri */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    color: #fff;
    position: relative;
}

.logo a {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
}

.nav-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

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

.nav-item {
    position: relative;
    margin-left: 20px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 15px;
    display: block;
    transition: background-color 0.3s ease;
}

.nav-link:hover {
    background-color: #1e5c71;
    border-radius: 5px;
}

.has-dropdown {
    position: relative;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #2e7d9a;
    min-width: 300px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    z-index: 1000;
    list-style: none;
    padding: 0;
    margin: 0;
}

.has-dropdown:hover .dropdown {
    display: block;
}

.dropdown li {
    padding: 10px 15px;
}

.dropdown li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown li a:hover {
    background-color: #1e5c71;
    border-radius: 5px;
}

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

    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #2e7d9a;
        flex-direction: column;
        text-align: center;
    }

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

    .nav-item {
        margin: 0;
        width: 100%;
    }

    .nav-link {
        padding: 15px;
    }

    .has-dropdown {
        width: 100%;
    }

    .dropdown {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
    }

    .has-dropdown.active .dropdown {
        display: block;
    }

    .dropdown li {
        padding: 10px 20px;
    }
}

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

/* Hero Section */
.hero {
    background: linear-gradient(to right, #1a2a44, #00aaff);
    color: white;
    text-align: center;
    padding: 6rem 1rem;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.hero-buttons .cta-button,
.hero-buttons .secondary-button {
    display: inline-block;
    padding: 1rem 2rem;
    margin: 0.5rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.cta-button {
    background: #00aaff;
    color: white;
}

.cta-button:hover {
    background: #0088cc;
}

.secondary-button {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.secondary-button:hover {
    background: white;
    color: #1a2a44;
}

/* Hizmetler Section */
.services {
    padding: 4rem 0;
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

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

.service-card {
    background: #f9f9f9;
	border: solid 1px #ccc;
	border-radius:7px;
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s;
}

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

.service-card img {
    max-width: 100%;
    border-radius: 5px;
}

.service-card h3 {
    margin: 1rem 0;
}

.card-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #00aaff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
}

.card-button:hover {
    background: #0088cc;
}

/* Neden Biz Section */
.why-us {
    background: #f4f4f4;
    padding: 4rem 0;
    text-align: center;
}

.why-us h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

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

.why-us-item {
    padding: 1rem;
}

.why-us-item .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* References (Referans Logoları) Section */
.references {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.references h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #4a90e2;
}

.references-slider {
    position: relative;
    max-width: 1400px; /* 6 büyük logo için genişletilmiş alan */
    margin: 0 auto;
    overflow: hidden;
}

.references-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.references-item {
    min-width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    gap: 20px;
}

.references-item img {
    width: 200px;
    height: 150px;
    object-fit: contain; /* Logoların orijinal oranlarını korur */
    transition: transform 0.3s ease;
}

.references-item img:hover {
    transform: scale(1.1); /* Hover efekti: hafif büyütme */
}

.references-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.references-button:hover {
    background: rgba(0, 0, 0, 0.8);
}

.references-button.prev {
    left: -40px;
}

.references-button.next {
    right: -40px;
}

.references-item {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .references-item img {
        width: 150px;
        height: 100px;
    }

    .references-button.prev {
        left: 10px;
    }

    .references-button.next {
        right: 10px;
    }
}
/* İletişim Section */
.contact {
    background: #1a2a44;
    color: white;
    padding: 4rem 0;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.contact-info h3 {
    margin-bottom: 1rem;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: none;
    border-radius: 5px;
}

.contact-form button {
    padding: 1rem;
    background: #00aaff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #0088cc;
}

/* Footer */
footer {
    background: #0f1a2e;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

footer a {
    color: #00aaff;
    text-decoration: none;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #1a2a44;
        padding: 1rem 0;
    }

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

    .menu-toggle {
        display: block;
    }

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

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

/* Carousel Section */
.carousel-section {
    padding: 0px 0;
    background-color: #f5f5f5;
}

.carousel-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #4a90e2;
}

.carousel {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Görsellerin tam ekranı kaplamasını sağlar */
    border-radius: 0; /* Tam ekran için köşe yuvarlamasını kaldırdık */
}

.carousel-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 18px;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 5px;
    transition: background 0.3s ease;
    z-index: 10; /* Butonların görsellerin üstünde kalmasını sağlar */
}

.carousel-button:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-button.prev {
    left: 10px;
}

.carousel-button.next {
    right: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icons a {
    color: #fff;
    font-size: 24px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    color: #ffd700;
}

/* İletişim Section Stilleri */
.iletisim-section {
    padding: 80px 0;
    background-color: #f8f8f8;
    text-align: center;
}

.iletisim-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c6cb4;
    margin-bottom: 40px;
}

.iletisim-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.iletisim-info {
    flex: 1;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.iletisim-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.iletisim-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.iletisim-info i {
    margin-right: 10px;
    color: #2c6cb4;
    font-size: 18px;
}

.iletisim-info a {
    color: #2c6cb4;
    text-decoration: none;
}

.iletisim-info a:hover {
    text-decoration: underline;
}

.iletisim-form {
    flex: 1;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.iletisim-form h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.iletisim-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.iletisim-form input,
.iletisim-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    width: 100%;
    transition: border-color 0.3s ease;
}

.iletisim-form input:focus,
.iletisim-form textarea:focus {
    border-color: #2c6cb4;
    outline: none;
}

.iletisim-form textarea {
    resize: vertical;
}

.iletisim-form button {
    padding: 12px;
    background-color: #2c6cb4;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.iletisim-form button:hover {
    background-color: #f4a261;
    color: #333;
}

.iletisim-map {
    margin-top: 40px;
}

.iletisim-map h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.iletisim-map iframe {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 400px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .iletisim-content {
        flex-direction: column;
        gap: 20px;
    }

    .iletisim-info,
    .iletisim-form {
        text-align: center;
    }

    .iletisim-info p {
        justify-content: center;
    }

    .iletisim-map iframe {
        height: 300px;
    }
}

/* Hakkımızda Section Stilleri */
.hakkimizda-section {
    padding: 80px 0;
    background-color: #f0f4f8;
    text-align: center;
}

.hakkimizda-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2e7d9a;
    margin-bottom: 40px;
    position: relative;
}

.hakkimizda-section h2::after {
    content: '';
    width: 50px;
    height: 3px;
    background-color: #2e7d9a;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.hakkimizda-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
}

.hakkimizda-left img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hakkimizda-left img:hover {
    transform: scale(1.05);
}

.hakkimizda-right {
    flex: 1;
    text-align: left;
    max-height: 700px; /* Sabit yükseklik */
    overflow-y: auto; /* Uzun metin için kaydırma çubuğu */
    padding-right: 15px; /* Kaydırma çubuğu için boşluk */
}

.hakkimizda-right::-webkit-scrollbar {
    width: 8px;
}

.hakkimizda-right::-webkit-scrollbar-thumb {
    background-color: #2e7d9a;
    border-radius: 4px;
}

.hakkimizda-right::-webkit-scrollbar-track {
    background-color: #e0e7ed;
}

.hakkimizda-right h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2e7d9a;
    margin-bottom: 20px;
}

.hakkimizda-right h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2e7d9a;
    margin: 25px 0 15px;
}

.hakkimizda-right h5 {
    font-size: 16px;
    font-weight: 700;
    color: #2e7d9a;
    margin: 20px 0 10px;
}

.hakkimizda-right p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.hakkimizda-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.hakkimizda-list li {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.hakkimizda-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 150px;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #2e7d9a;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 14px;
    color: #666;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hakkimizda-content {
        flex-direction: column;
        text-align: center;
    }

    .hakkimizda-left img {
        max-width: 100%;
    }

    .hakkimizda-right {
        max-height: none; /* Mobilde kaydırma çubuğunu kaldır */
        overflow-y: visible;
        padding-right: 0;
    }

    .hakkimizda-right h3 {
        margin-top: 20px;
    }

    .hakkimizda-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-item {
        width: 100%;
    }
}

/* Galeri Section Stilleri */
.galeri-section {
    padding: 80px 0;
    background-color: #f8f8f8;
    text-align: center;
}

.galeri-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2e7d9a;
    margin-bottom: 40px;
    position: relative;
}

.galeri-section h2::after {
    content: '';
    width: 50px;
    height: 3px;
    background-color: #2e7d9a;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

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

.galeri-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

.galeri-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Modal Stilleri */
.galeri-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1200px;
    max-height: 80vh;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: color 0.3s ease;
    cursor: pointer;
}

.modal-close:hover,
.modal-close:focus {
    color: #bbb;
    text-decoration: none;
}

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

.modal-prev,
.modal-next {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 24px;
    padding: 10px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modal-prev:hover,
.modal-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-prev {
    margin-left: 20px;
}

.modal-next {
    margin-right: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .galeri-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .galeri-item img {
        height: 150px;
    }

    .modal-content {
        width: 90%;
        max-height: 70vh;
    }
}

/* Genel Yazı Alanı Stilleri */
.yazialani {
    padding: 80px 0;
    background-color: #f0f4f8;
    text-align: center;
}

.yazialani h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2e7d9a;
    margin-bottom: 40px;
    position: relative;
}

.yazialani h2::after {
    content: '';
    width: 50px;
    height: 3px;
    background-color: #2e7d9a;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.yazialani-icerik {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.yazialani-metin {
    flex: 1;
    text-align: left;
}

.yazialani-metin p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.yazialani-metin strong {
    color: #00aaff;
}

.yazialani-metin h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2e7d9a;
    margin: 20px 0 15px;
}

.yazialani-kategoriler {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.yazialani-kategori {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.yazialani-kategori h4 {
    font-size: 20px;
    font-weight: 700;
    color: #00cc00;
    margin-bottom: 15px;
}

.yazialani-liste {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
}

.yazialani-liste li {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.yazialani-gorsel {
    flex: 0 0 280px;
    height: auto;
}

.yazialani-gorsel img {
    width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.yazialani-gorsel img:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .yazialani-icerik {
        flex-direction: column;
        text-align: center;
    }

    .yazialani-gorsel {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .yazialani-gorsel img {
        max-height: 300px;
    }

    .yazialani-kategoriler {
        flex-direction: column;
    }

    .yazialani-kategori {
        min-width: 100%;
    }
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 2.5rem;
    padding-bottom: 2rem;
    flex-wrap: wrap; /* Küçük ekranlarda taşmayı önler */
}

.pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 1rem;
    background: #00aaff; /* Tasarımınıza uyumlu mavi ton */
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease; /* Renk ve gölge için yumuşak geçiş */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Hafif gölge */
}

.pagination a:hover {
    background: #0088cc; /* Hover'da koyulaşır */
    transform: translateY(-2px); /* Hafif yükselme efekti */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Gölge artar */
}

.pagination a.active {
    background: #1e5c71; /* Aktif sayfa için daha koyu bir ton */
    font-weight: 700;
    transform: scale(1.05); /* Aktif sayfa biraz büyür */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Daha belirgin gölge */
}

.pagination a.disabled {
    background: #ccc; /* Pasif durum için gri ton */
    color: #666;
    pointer-events: none; /* Tıklanamaz hale getirir */
    box-shadow: none;
}

/* Önceki ve Sonraki Butonları için Ek Stil */
.pagination a.prev,
.pagination a.next {
    padding: 0 1.5rem;
    font-weight: 600;
}

.pagination a.prev::before,
.pagination a.next::after {
    font-size: 18px;
    margin: 0 5px;
}

.pagination a.prev::before {
    content: "◄"; /* Sol ok */
}

.pagination a.next::after {
    content: "►"; /* Sağ ok */
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .pagination {
        gap: 8px;
    }
    
    .pagination a {
        min-width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .pagination a.prev,
    .pagination a.next {
        padding: 0 1rem;
    }
}
.aramabutonu {
	width:100%;
	text-align:center;
	font-size:24px;
	margin-bottom:20px;
	background-color:#80cee1;
}