/* Genel Stil Ayarları */
:root {
    --primary-color: #FF8C00; /* Koyu Turuncu - Ana vurgu rengi */
    --secondary-color: #6c757d; /* Gri tonu - Yardımcı metinler ve butonlar için */
    --accent-color: #FF6347; /* Domates Kırmızısı - Özel vurgular, küçük detaylar için */
    --dark-color: #212529; /* Koyu gri/siyah - Metin ve arka plan detayları */
    --light-color: #f8f9fa; /* Açık gri - Arka plan bölümleri */
    --text-color: #343a40; /* Temel metin rengi */
    --heading-color: #1a1a1a; /* Başlık rengi */
    --border-color: #e9ecef; /* Hafif kenarlıklar için */
    --shadow-light: 0 4px 10px rgba(0, 0, 0, 0.08); /* Hafif gölge */
    --shadow-medium: 0 8px 20px rgba(0, 0, 0, 0.15); /* Orta gölge */
    --font-poppins: 'Poppins', sans-serif;
    --font-montserrat: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-poppins);
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff; /* Temiz ve beyaz bir arka plan */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--dark-color);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-montserrat);
    color: var(--heading-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

h2 span {
    color: var(--primary-color);
}

p {
    margin-bottom: 15px;
}

/* Butonlar */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px; /* Daha yumuşak kenarlar */
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-light); /* Hafif buton gölgesi */
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: #d87000; /* Turuncunun daha koyu tonu */
    transform: translateY(-3px); /* Hafif yukarı kayma efekti */
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background-color: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color); /* Kalın border */
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-details {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color); /* Kategori detay butonu turuncu */
    color: #fff;
    border-radius: 5px;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-details:hover {
    background-color: #d87000;
    transform: translateY(-2px);
}

/* Header */
header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    height: 60px; /* Logo boyutunu ayarlayın */
    object-fit: contain;
}

.main-menu ul {
    display: flex;
}

.main-menu li {
    margin-left: 35px;
}

.main-menu a {
    color: var(--dark-color);
    font-weight: 600;
    position: relative;
    padding-bottom: 8px;
    transition: color 0.3s ease;
}

.main-menu a:hover {
    color: var(--primary-color);
}

.main-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px; /* Kalın alt çizgi */
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    font-size: 2rem; /* Daha büyük ikon */
    cursor: pointer;
    color: var(--dark-color);
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 150px 0; /* Daha fazla dikey boşluk */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Hafif koyu overlay */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 2px; /* Daha belirgin */
    text-transform: uppercase;
}

.hero-title {
    font-size: 4rem; /* Daha büyük başlık */
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 6px#fff; /* Daha belirgin gölge */
}

/* Info Section */
.info-section {
    display: flex;
    align-items: center;
    padding: 100px 0; /* Daha fazla boşluk */
    gap: 60px; /* Daha geniş boşluk */
}

.info-section.reverse {
    flex-direction: row-reverse;
}

.info-section .image-wrapper {
    flex: 1;
    min-width: 45%;
    position: relative;
    border-radius: 12px; /* Daha yuvarlak kenarlar */
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.info-section .image-wrapper img {
    width: 100%;
    height: 500px; /* Daha belirgin bir yükseklik */
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

.info-section .image-wrapper:hover img {
    transform: scale(1.08); /* Hafif daha fazla büyüme */
}

.info-section .image-overlay-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background-color: rgba(255, 255, 255, 0.98); /* Daha opak */
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.5s ease;
}

.info-section .image-wrapper:hover .image-overlay-card {
    transform: translateY(0);
    opacity: 1;
}

.info-section .content {
    flex: 1;
    min-width: 50%;
}

.info-section .subtitle {
    color: var(--primary-color);
    font-weight: 700; /* Daha kalın */
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.info-section h2 {
    font-size: 3rem; /* Daha büyük başlık */
    margin-bottom: 25px;
}

.info-section ul {
    margin-top: 25px;
    margin-bottom: 25px;
}

.info-section ul li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1.15rem;
    color: var(--text-color);
}

.info-section ul li i {
    color: var(--accent-color); /* Vurgu turuncu-kırmızı */
    margin-right: 12px;
    font-size: 1.5rem; /* Daha büyük ikon */
}

/* Section Başlıkları */
.section-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto 60px auto; /* Başlıkla içerik arasına boşluk */
    text-align: center;
}

/* Category Section */
.categories-section {
    padding: 100px 0;
    background-color: var(--light-color);
    text-align: center;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Daha geniş kartlar */
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-15px); /* Daha belirgin yükselme */
    box-shadow: var(--shadow-medium);
}

.category-card .image-container {
    height: 220px; /* Daha yüksek resim */
    overflow: hidden;
    position: relative;
}

.category-card .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover .image-container img {
    transform: scale(1.15); /* Daha fazla büyüme */
}

.category-card .content {
    padding: 25px;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.category-card h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--heading-color);
}

.category-card p {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Projects Section */
.projects-section {
    padding: 100px 0;
    background-color: #fff;
}

.project-container-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px; /* Daha geniş boşluk */
    align-items: center;
}

.projects-section .text-content {
    padding-right: 30px;
}

.projects-section .subtitle {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.projects-section h2 {
    font-size: 3rem;
    margin-bottom: 25px;
}

.projects-section p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

.project-navigation {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.project-navigation .arrow-btn {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 60px; /* Daha büyük buton */
    height: 60px;
    font-size: 1.5rem; /* Daha büyük ikon */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.project-navigation .arrow-btn:hover {
    background-color: #d87000;
    transform: translateY(-5px);
}

.project-cards-wrapper {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 30px; /* Daha geniş kart arası boşluk */
    padding-bottom: 20px;
}

.project-cards-wrapper::-webkit-scrollbar {
    height: 10px; /* Daha kalın kaydırma çubuğu */
}
.project-cards-wrapper::-webkit-scrollbar-track {
    background: var(--border-color);
    border-radius: 10px;
}
.project-cards-wrapper::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}
.project-cards-wrapper::-webkit-scrollbar-thumb:hover {
    background: #d87000;
}


.project-card {
    flex: 0 0 auto;
    width: 350px; /* Daha geniş kartlar */
    scroll-snap-align: start;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.project-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-medium);
}

.project-card img {
    width: 100%;
    height: 280px; /* Daha yüksek resimler */
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0)); /* Daha koyu degrade */
    color: #fff;
    padding: 25px 20px;
    font-weight: 600;
    font-size: 1.2rem;
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background-color: var(--light-color);
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-medium);
}

.blog-card .blog-image {
    height: 220px;
    overflow: hidden;
}

.blog-card .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.15);
}

.blog-card .blog-content {
    padding: 25px;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card .blog-meta {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.blog-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--heading-color);
    flex-grow: 1;
}

.blog-card .read-more {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card .read-more:hover {
    color: var(--dark-color);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 80px 0 30px 0; /* Daha fazla boşluk */
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); /* Daha geniş kolonlar */
    gap: 40px; /* Daha geniş boşluk */
    margin-bottom: 50px;
}

.footer-col img {
    height: 70px; /* Daha büyük logo */
    margin-bottom: 20px;
}

.footer-col h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 700;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px; /* Daha uzun çizgi */
    height: 3px; /* Kalın çizgi */
    background-color: var(--primary-color);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #fff;
    opacity: 0.9; /* Hafif şeffaf */
    transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-col .social-icons {
    margin-top: 25px;
    display: flex;
    gap: 18px;
}

.footer-col .social-icons a {
    width: 45px; /* Daha büyük ikon */
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15); /* Hafif daha belirgin arka plan */
    color: #fff;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.footer-col .social-icons a:hover {
    background-color: var(--primary-color);
}

.footer-col .footer-contact {
    display: block;
    color: #fff;
    margin-bottom: 8px;
    opacity: 0.9;
    font-size: 1rem;
}
.footer-col .footer-contact:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2); /* Daha belirgin çizgi */
    padding-top: 25px;
    text-align: center;
    margin-top: 50px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .main-menu {
        top: 100px; /* Header yüksekliğine göre ayarla */
        padding: 15px 0;
    }

    .hero {
        padding: 100px 0;
    }
    .hero-title {
        font-size: 3rem;
    }

    .info-section {
        flex-direction: column;
        text-align: center;
        padding: 70px 0;
        gap: 40px;
    }

    .info-section.reverse {
        flex-direction: column;
    }
    
    .info-section .image-wrapper {
        margin-bottom: 20px;
    }
    .info-section .image-wrapper img {
        height: 400px;
    }
    .info-section h2 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.8rem;
    }
    .section-description {
        margin-bottom: 40px;
    }

    .projects-section .project-container-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .projects-section .text-content {
        padding-right: 0;
    }

    .project-navigation {
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .header-logo {
        height: 50px;
    }
    .mobile-menu-toggle {
        font-size: 1.7rem;
    }
    .hero {
        padding: 80px 0;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
    .info-section h2 {
        font-size: 2rem;
    }
    .info-section .image-wrapper img {
        height: 350px;
    }

    .btn {
        padding: 10px 22px;
        font-size: 0.85rem;
    }

    .category-grid, .blog-grid, .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    .project-card {
        width: 300px;
    }
    .project-card img {
        height: 220px;
    }
    .project-info {
        font-size: 1.1rem;
        padding: 18px 15px;
    }
    .blog-card h3 {
        font-size: 1.3rem;
    }
    .footer-col h4 {
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .header-logo {
        height: 45px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .info-section h2 {
        font-size: 1.8rem;
    }
    .info-section .image-wrapper img {
        height: 280px;
    }
    .info-section ul li {
        font-size: 1rem;
    }
    .category-card h3 {
        font-size: 1.5rem;
    }
    .project-card {
        width: 260px;
    }
    .project-card img {
        height: 200px;
    }
    .blog-card h3 {
        font-size: 1.2rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-col h4::after {
        width: 40px;
    }
    .footer-bottom {
        font-size: 0.8rem;
    }
}
/* Solutions Section Stilleri */
.solutions-section {
    padding: 80px 0; /* İç ve dış boşlukları ayarlayabilirsiniz */
    background-color: var(--light-color); /* Hafif bir arka plan rengi */
    text-align: center; /* Bölümdeki tüm metni ortalar */
}

.solutions-section h2 {
    font-size: 3rem; /* Başlık boyutunu büyütün */
    font-weight: 700; /* Başlığı daha kalın yapın */
    color: var(--heading-color); /* Başlık rengi */
    margin-bottom: 40px; /* Başlık ile metin bloğu arasına boşluk */
    text-align: center; /* Başlığı ortala */
    max-width: 900px; /* Başlık için maksimum genişlik */
    margin-left: auto; /* Otomatik sol kenar boşluğu ile ortala */
    margin-right: auto; /* Otomatik sağ kenar boşluğu ile ortala */
}

.solution-text-block {
    max-width: 900px; /* Metin bloğu için maksimum genişlik */
    margin: 0 auto; /* Metin bloğunu yatayda ortala */
    font-size: 1.15rem; /* Paragraf metin boyutunu artırın */
    line-height: 1.8; /* Satır aralığını artırarak okunabilirliği iyileştirin */
    color: var(--text-color); /* Metin rengi */
    text-align: justify; /* Metni iki yana yasla */
}

.solution-text-block p {
    margin-bottom: 25px; /* Paragraflar arasına boşluk ekle */
    font-weight: 500; /* Paragraf metnini biraz daha kalınlaştır */
}

.solution-text-block p strong {
    font-weight: 700; /* Strong etiketindeki metni daha da kalınlaştır */
    color: var(--primary-color); /* Vurgulu kelimelere turuncu renk verebiliriz */
}

/* Duyarlı Tasarım İçin Eklemeler */
@media (max-width: 992px) {
    .solutions-section h2 {
        font-size: 2.5rem;
    }
    .solution-text-block {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .solutions-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    .solution-text-block {
        font-size: 1rem;
        text-align: left; /* Küçük ekranlarda iki yana yaslama bazen kötü görünebilir */
    }
    .solutions-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .solutions-section h2 {
        font-size: 1.8rem;
    }
    .solution-text-block {
        font-size: 0.95rem;
    }
}
