﻿.mobile-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

    .mobile-footer a {
        color: #333;
        text-decoration: none;
        font-size: 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mobile-footer span {
        font-size: 12px;
    }

/* Sadece mobilde göster */
@media (min-width: 768px) {
    .mobile-footer {
        display: none;
    }
}

:root {
    --akinsoft-blue: #007bff; /* Mavi tonu */
    --akinsoft-green: #00c16e; /* Yeşil tonu */
    --dark-blue: #032b43; /* Koyu mavi/lacivert */
    --text-color: #333;
    --light-grey: #f8f9fa;
    --white: #ffffff;
    --grey-text: #6c757d;
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Top Bar - Basit Navigasyon */
.top-bar {
    background-color: var(--dark-blue);
    color: var(--white);
    /* padding: 10px 0; */
    font-size: 0.9em;
    text-align: right;
}

    .top-bar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .top-bar .logo {
        flex-grow: 1;
        text-align: left;
    }

        .top-bar .logo img {
            height: 30px; /* Adjust as needed */
            filter: brightness(0) invert(1); /* Makes the logo white */
        }

    .top-bar nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
    }

        .top-bar nav ul li {
            margin-left: 5px;
        }

            .top-bar nav ul li a {
                color: var(--white);
                text-decoration: none;
                transition: color 0.3s ease;
            }

                .top-bar nav ul li a:hover {
                    color: var(--akinsoft-blue);
                }

/* Hero Section */
.hero-section {
    background-color: var(--light-grey);
    display: flex;
    align-items: center;
    padding: 50px 0;
    min-height: 550px; /* Yüksekliği artır */
    position: relative;
    overflow: hidden;
}

.hero-left {
    flex: 2;
    padding-right: 40px;
    text-align: left;
}

    .hero-left h1 {
        font-family: 'Montserrat', sans-serif;
        font-size: 3.2em;
        color: var(--dark-blue);
        margin-bottom: 10px;
        line-height: 1.1;
    }

        .hero-left h1 span {
            color: var(--akinsoft-green);
        }

    .hero-left p {
        font-size: 1.1em;
        color: var(--grey-text);
        margin-bottom: 30px;
        max-width: 500px;
    }

.hero-image {
    flex: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .hero-image img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

.hero-right {
    flex: 1;
}

.form-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    position: relative;
    z-index: 10;
}

    .form-card h3 {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.5em;
        color: var(--akinsoft-blue);
        text-align: center;
        margin-bottom: 25px;
    }

.form-group {
    margin-bottom: 18px;
}

    .form-group label {
        display: none; /* Etiketleri gizle, placeholder kullan */
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group select,
    .form-group textarea {
        width: calc(100% - 24px); /* Padding'i hesaba kat */
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 1em;
        box-sizing: border-box;
        background-color: #f0f0f0;
        color: var(--text-color);
    }

    .form-group select {
        appearance: none; /* Varsayılan select stilini kaldır */
        -webkit-appearance: none;
        -moz-appearance: none;
        background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007bff%22%20d%3D%22M287%2C197.399L146.2%2C56.6L5.4%2C197.399h281.6z%22%2F%3E%3C%2Fsvg%3E'); /* Özel ok ikonu */
        background-repeat: no-repeat;
        background-position: right 10px top 50%;
        background-size: 12px auto;
    }

    .form-group .kvkk-text {
        font-size: 0.85em;
        color: var(--grey-text);
        margin-top: 15px;
        line-height: 1.4;
    }

    .form-group input[type="checkbox"] {
        margin-right: 8px;
    }

    .form-group input[type="submit"] {
        background: var(--akinsoft-green);
        color: var(--white);
        border: none;
        padding: 14px 25px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 1.1em;
        font-weight: 600;
        transition: background 0.3s ease;
        width: 100%;
        margin-top: 20px;
    }

        .form-group input[type="submit"]:hover {
            background: #00a85a;
        }

/* Features Section */
.features-section {
    background-color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: var(--light-grey);
    border-radius: 8px;
    padding: 30px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .feature-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .feature-item img {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .feature-item h4 {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.2em;
        color: var(--dark-blue);
        margin-top: 0;
    }

/* Callout Section */
.callout-section {
    background-color: var(--akinsoft-green);
    color: var(--white);
    padding: 25px 0;
    text-align: center;
    font-size: 1.3em;
    font-weight: 600;
    margin-top: 50px;
    letter-spacing: 0.5px;
}

/* Program Detail Section */
.program-detail-section {
    padding: 60px 0;
    background-color: var(--white);
    display: flex;
    align-items: center;
}

.program-detail-left {
    flex: 1.5;
    padding-right: 40px;
}

    .program-detail-left h2 {
        font-family: 'Montserrat', sans-serif;
        font-size: 2.2em;
        color: var(--akinsoft-blue);
        margin-bottom: 20px;
    }

    .program-detail-left p {
        font-size: 1.1em;
        color: var(--grey-text);
        margin-bottom: 30px;
    }

.program-detail-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .program-detail-right img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

/* Main Features Section */
.main-features-section {
    background-color: var(--light-grey);
    padding: 60px 0;
}

    .main-features-section h2 {
        font-family: 'Montserrat', sans-serif;
        font-size: 2.5em;
        color: var(--akinsoft-blue);
        text-align: center;
        margin-bottom: 40px;
    }

.features-list {
    list-style: none;
    padding: 0;
    columns: 2; /* İki sütunlu düzen */
    column-gap: 40px;
}

    .features-list li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 15px;
        font-size: 1.05em;
        color: var(--text-color);
        break-inside: avoid; /* Bir öğenin bölünmemesini sağlar */
    }

        .features-list li::before {
            content: "\f00c"; /* Font Awesome check icon */
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            color: var(--akinsoft-green);
            position: absolute;
            left: 0;
            top: 3px;
        }

.features-image-container {
    text-align: center;
    margin-top: 40px;
}

    .features-image-container img {
        max-width: 80%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

/* Akınsoft Farkı Section */
.akinsoft-diff-section {
    background-color: var(--akinsoft-green);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

    .akinsoft-diff-section h2 {
        font-family: 'Montserrat', sans-serif;
        font-size: 2.5em;
        margin-bottom: 40px;
    }

.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.diff-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

    .diff-item h3 {
        font-family: 'Montserrat', sans-serif;
        font-size: 2.5em;
        margin-bottom: 10px;
        color: var(--white);
    }

    .diff-item p {
        font-size: 1.1em;
        opacity: 0.9;
    }


/* Footer */
footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 50px 0;
    font-size: 0.9em;
}

    footer .container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    footer .footer-col {
        flex: 1;
        min-width: 220px;
        margin-bottom: 20px;
        padding-right: 20px;
    }

        footer .footer-col:last-child {
            padding-right: 0;
        }

        footer .footer-col h4 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.2em;
            margin-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            padding-bottom: 10px;
        }

        footer .footer-col ul {
            list-style: none;
            padding: 0;
        }

            footer .footer-col ul li {
                margin-bottom: 8px;
            }

                footer .footer-col ul li a {
                    color: var(--white);
                    text-decoration: none;
                    transition: color 0.3s ease;
                }

                    footer .footer-col ul li a:hover {
                        color: var(--akinsoft-blue);
                    }

    footer .footer-bottom {
        width: 100%;
        text-align: center;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 0.85em;
    }

.main-image {
    padding-left: 15px;
    float: left;
    width: 40%;
    margin-left: -58px;
    margin-right: 25px;
}

.main-content {
    padding: 30px !important;
}


/* Responsive Design */
@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding-top: 30px;
    }

    .hero-left, .hero-right, .hero-image {
        flex: none;
        width: 100%;
        padding: 0 20px;
    }

    .hero-left {
        margin-top: 30px;
    }

    .hero-image {
        margin-bottom: 30px;
    }

    .form-card {
        margin-top: 30px; /* Formu diğer elemanlardan ayır */
    }

    .program-detail-section {
        flex-direction: column;
        text-align: center;
    }

    .program-detail-left, .program-detail-right {
        flex: none;
        width: 100%;
        padding: 0 20px;
        margin-bottom: 30px;
    }

        .program-detail-right img {
            max-width: 90%;
        }

    .features-list {
        columns: 1; /* Tek sütunlu düzen */
    }

    .akinsoft-diff-section .diff-grid {
        grid-template-columns: 1fr;
    }

    footer .container {
        flex-direction: column;
        align-items: center;
    }

    footer .footer-col {
        text-align: center;
        padding-right: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        align-items: center;
    }

        .top-bar nav ul {
            margin-top: 10px;
            flex-wrap: wrap;
            justify-content: center;
        }

            .top-bar nav ul li {
                margin: 5px 10px;
            }

    .hero-left h1 {
        font-size: 2.5em;
    }

    .hero-left p {
        font-size: 1em;
    }

    .features-section, .program-detail-section, .main-features-section, .akinsoft-diff-section {
        padding: 40px 0;
    }

    .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .feature-item {
        padding: 20px 15px;
    }

        .feature-item img {
            width: 50px;
            height: 50px;
        }

        .feature-item h4 {
            font-size: 1.1em;
        }

    .program-detail-left h2, .main-features-section h2, .akinsoft-diff-section h2 {
        font-size: 2em;
    }
}


/* Program Özellikleri Section (chooseus-style-three benzeri) */
.program-features-section {
    padding: 60px 0;
    background-color: var(--white); /* Arkaplan beyaz */
    text-align: center;
}

    .program-features-section .sec-title h2 {
        font-family: 'Montserrat', sans-serif;
        font-size: 2.5em;
        color: var(--akinsoft-blue); /* Görseldeki yeşil tonuna yakın hale getirilmiş */
        font-weight: 600;
        margin-bottom: 40px;
    }

.program-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Daha fazla sütun için minmax ayarı */
    gap: 30px;
    justify-content: center; /* Ortalamak için */
    max-width: 1200px; /* İçeriği ortalamak için */
    margin: 0 auto; /* İçeriği ortalamak için */
}

.service-block-three {
    background: var(--light-grey); /* Card arkaplanı */
    border-radius: 10px;
    padding: 30px 25px;
    transition: all 0.3s ease;
    height: 100%; /* Tüm kartların aynı yüksekliğe sahip olmasını sağlar */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .service-block-three:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .service-block-three .inner-box h3 {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.4em;
        color: var(--dark-blue);
        margin-bottom: 15px;
        min-height: 2.8em; /* Başlıkların tek satırda kalması için */
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

        .service-block-three .inner-box h3 a {
            color: inherit;
            text-decoration: none;
        }

            .service-block-three .inner-box h3 a:hover {
                color: var(--akinsoft-blue);
            }

    .service-block-three .image-box {
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 70px; /* İkon kutusunun yüksekliği */
    }

        .service-block-three .image-box .icon {
            font-size: 3.5em; /* Font Awesome ikon boyutu */
            color: var(--akinsoft-green); /* İkon rengi */
        }

    /* Eğer flaticon kullanacaksanız, flaticon özel stillerini buraya eklemeniz gerekebilir */
    /* .service-block-three .image-box .flaticon-ai:before { content: "\f123"; } gibi */


    .service-block-three .inner-box p {
        font-size: 0.95em;
        color: var(--grey-text);
        line-height: 1.5;
        flex-grow: 1; /* Paragrafın kalan alanı doldurmasını sağlar */
    }

/* Responsive Ayarlamalar (mevcut media sorgularına ekleyin veya yenilerini oluşturun) */
@media (max-width: 992px) {
    .program-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .program-features-section .sec-title h2 {
        font-size: 2em;
    }

    .d-xs-none {
        display: none;
    }

    .hero-right {
        padding: 0 0px !important;
    }

    .hero-left > div > img {
        /*        width: 86% !important;*/
        margin: 15px 0 15px 0 !important;
    }

    .program-features-grid {
        grid-template-columns: 1fr; /* Tek sütunlu düzen */
    }

    .service-block-three {
        padding: 25px 20px;
    }

        .service-block-three .inner-box h3 {
            font-size: 1.3em;
        }

        .service-block-three .image-box .icon {
            font-size: 3em;
        }

        .service-block-three .inner-box p {
            font-size: 0.9em;
        }

    .main-content {
        padding: 0px !important;
        margin-bottom: 50px;
        margin-top: 50px;
    }

    .main-image {
        padding-left: 15px;
        float: left;
        width: 100% !important;
        margin-left: -58px;
    }
}

@media (max-width: 480px) {
    .program-features-section .sec-title h2 {
        font-size: 1.8em;
    }

    .top-bar .logo img {
        height: 30px !important; /* Adjust as needed */
        filter: brightness(0) invert(1); /* Makes the logo white */
    }

    .top-bar {
        padding: 0px 0 !important;
    }

    .hero-left h1 {
        font-size: 1.7em;
    }

    .hero-image img {
        max-width: 100%;
    }

    .form-card {
        padding: 20px;
    }

    .main-content {
        padding: 0px !important;
        margin-bottom: 50px;
        margin-top: 50px;
    }

    .main-image {
        padding-left: 15px;
        float: left;
        width: 100% !important;
        margin-left: -58px;
    }

    .form-card h3 {
        font-size: 1.3em;
    }

    .form-group input[type="submit"] {
        padding: 12px 20px;
        font-size: 1em;
    }

    .features-section h2, .program-detail-section h2, .main-features-section h2, .akinsoft-diff-section h2 {
        font-size: 1.8em;
    }

    .callout-section {
        font-size: 1.1em;
    }
}

.icon-form {
    margin: 12px 15px;
    /* float: left; */
    position: absolute;
}
/* Temel Stiller */
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    position: relative; /* Menüyü konumlandırmak için */
}

/* Hamburger Menü Bağlantısı Stilleri */
.hamburger-menu {
    display: block; /* Veya inline-block */
    width: 45px;
    height: 45px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    text-decoration: none; /* Alt çizgiyi kaldırır */
}

    .hamburger-menu .bar {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #fff;
        margin: 5px 0;
        transition: all 0.3s ease-in-out;
    }

/* Navigasyon Menüsü Stilleri */
.main-nav {
    display: none; /* Varsayılan olarak menüyü gizle */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 5;
}

    .main-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column; /* Menü öğelerini alt alta sırala */
    }

    .main-nav li a {
        display: block;
        padding: 15px 20px;
        text-decoration: none;
        color: #333;
        border-bottom: 1px solid #eee;
        text-align: center;
    }

    .main-nav li:last-child a {
        border-bottom: none;
    }

    /* JavaScript ile eklenecek 'active' sınıfı */
    .main-nav.active {
        display: block;
        background: #032b43;
    }

/* Masaüstü Görünümü (Örnek: 768px'den büyük ekranlar için) */
@media (min-width: 768px) {
    .hamburger-menu {
        display: none; /* Masaüstünde hamburger menüyü gizle */
    }

    .main-nav {
        display: block !important; /* Menüyü göster */
        position: static;
        box-shadow: none;
        background: none;
    }

        .main-nav ul {
            flex-direction: row; /* Menü öğelerini yan yana sırala */
            justify-content: flex-end;
        }

        .main-nav li a {
            padding: 10px 15px;
            border-bottom: none;
        }
}
