*, *::before, *::after {
    box-sizing: border-box;
}
body, p, span, a {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

html, body {
    overflow-x: hidden;
}


/* Yükleme ekranı tam ekran */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background-color: #007bff; /* Mavi arka plan */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    color: white;
}

    /* Logo stili */
    #loading-screen img {
        width: 150px;
        height: auto;
        margin-bottom: 20px;
    }

/* Dönen spinner */
.spinner {
    border: 6px solid rgba(255, 255, 255, 0.3);
    border-top: 6px solid white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Ana içerik başlangıçta gizli */
#main-content {
    display: none;
}
/* Genel Body Ayarları */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff;
    color: #212529;
    overflow-x: hidden;
}

/* Masaüstü için */
@media (hover: hover) and (pointer: fine) {
    .dropdown-menu {
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        position: absolute;
        display: block;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .dropdown:hover > .dropdown-menu {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
}

/* Mobilde .show sınıfıyla açılır */
@media (hover: none) {
    .dropdown-menu {
        opacity: 0;
        pointer-events: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease;
    }

    .dropdown.show > .dropdown-menu {
        opacity: 1;
        pointer-events: auto;
        max-height: 500px; /* yeterince büyük bir değer */
    }
}

/* Üst Bilgi Çubuğu */
header .bg-dark {
    background-color: #1d71b8 !important;
}
@media (max-width: 767.98px) {
    .navbar-brand img {
        height: 45px !important; /* Mobilde küçülsün */
    }
}

/* Navbar Linkleri */
.navbar-nav .nav-link {
    transition: color 0.3s ease;
    font-weight: 600;
}

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
        color: #0d6efd !important;
        text-decoration: none;
    }

/* WhatsApp Butonu */
.btn-success {
    background-color: #25d366;
    border-color: #25d366;
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

    .btn-success:hover,
    .btn-success:focus {
        background-color: #1ebe57;
        border-color: #1ebe57;
        box-shadow: 0 6px 12px rgba(30, 190, 87, 0.5);
    }

footer {
    background: black;
    padding: 40px 20px 20px;
    font-size: 13px;
    line-height: 1.5;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 30px;
    border-bottom: 1px solid #5c5c5c66
}

    .footer-top img {
        height: 36px;
    }

.social-icons a {
    display: inline-block;
    margin-left: 10px;
    text-decoration: none;
    color: #939393;
    font-size: 14px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #484848;
    text-align: center;
    line-height: 28px;
    transition: background-color 0.3s, color 0.3s;
}

    .social-icons a:hover {
        background: #007bff;
        color: white;
    }

.footer-columns {
    max-width: 1200px;
    margin: 0 auto 30px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1 1 160px;
    min-width: 150px;
}

    .footer-column h4 {
        font-weight: 700;
        font-size: 20px;
        margin-bottom: 12px;
        color: white;
    }

    .footer-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
        color: #777;
        font-size:14px;
    }
    .footer-column p {
        color: #777;
        font-size: 14px;
    }
    .footer-column a {
        text-decoration:none;
        font-size: 14px;
    }

        .footer-column ul li {
            margin-bottom: 8px;
        }

            .footer-column ul li a {
                color: #777;
                text-decoration: none;
                font-size: 12px;
            }

                .footer-column ul li a:hover {
                    text-decoration: underline;
                }

    .footer-column .subscribe-text {
        font-size: 10px;
        color: #aaa;
        margin-bottom: 8px;
        max-width: 200px;
    }

.subscribe-button {
    background-color: #007bff;
    border: none;
    color: white;
    font-weight: 700;
    font-size: 12px;
    padding: 6px 14px;
    cursor: pointer;
    border-radius: 2px;
    letter-spacing: 1px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #ddd;
    padding-top: 15px;
    color: #999;
    font-size: 11px;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

    .footer-bottom a {
        color: #999;
        text-decoration: none;
        margin-left: 10px;
        font-weight: 600;
        font-size: 11px;
    }

        .footer-bottom a:hover {
            text-decoration: underline;
        }

    .footer-bottom .language {
        display: flex;
        align-items: center;
        gap: 5px;
        font-weight: 600;
    }


/* Index */
.slider-img {
    height: 400px;
    object-fit: cover;
    filter: brightness(0.85);
}

.services-section {
    background-color: #d9e8ff;
    padding: 60px 15px;
}

    .services-section h2 {
        color: #0d6efd;
        font-weight: 700;
        margin-bottom: 40px;
        text-align: center;
    }

.service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.service-item {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgb(13 110 253 / 0.2);
    flex: 1 1 200px;
    max-width: 220px;
    padding: 20px;
    text-align: center;
    color: #0d6efd;
    font-weight: 600;
    cursor: default;
    user-select: none;
    transition: background-color 0.3s ease;
}

    .service-item:hover {
        background-color: #c9dbff;
    }

.slogan-section {
    text-align: center;
    padding: 40px 15px;
    font-size: 1.4rem;
    font-weight: 600;
    color: #0b4edc;
    background-color: #cce0ff;
    border-radius: 8px;
    margin: 0 10px 50px;
    box-shadow: 0 2px 8px rgb(11 78 220 / 0.3);
}

.card-services {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.card-service {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgb(13 110 253 / 0.15);
    flex: 1 1 280px;
    max-width: 280px;
    overflow: hidden;
    text-align: center;
    user-select: none;
}

    .card-service img {
        width: 100%;
        height: 180px;
        object-fit: contain;
        background-color: #f0f7ff;
        padding: 15px;
    }

    .card-service .card-body {
        padding: 15px 10px 25px;
        color: #0d6efd;
        font-weight: 700;
        font-size: 1.1rem;
        text-transform: uppercase;
    }

@media (max-width: 576px) {
    .slider-img {
        height: 250px;
    }

    .card-service {
        max-width: 100%;
    }
}


/* Başlık sol üstte küçük mavi çizgi, biraz aşağı indirildi */
.section-title-2 {
    font-weight: 700;
    font-size: 1.5rem;
    position: relative;
    padding-left: 0.75rem;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

    .section-title-2::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 1.5rem;
        background-color: #0d6efd; /* Bootstrap primary */
        border-radius: 2px;
    }

/* Liste stili ve ikon animasyonu -2 */
.feature-list-2 {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

    .feature-list-2 li {
        position: relative;
        padding-left: 2.5rem; /* ikon için sol boşluk */
        margin-bottom: 1rem;
        cursor: pointer;
        transition: padding-left 0.3s ease;
    }

        .feature-list-2 li .icon-2 {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%) translateX(-20px);
            opacity: 0;
            transition: opacity 0.3s ease, transform 0.3s ease;
            color: #0d6efd;
            font-size: 1.25rem;
            pointer-events: none;
        }

        .feature-list-2 li:hover {
            padding-left: 3.5rem;
        }

            .feature-list-2 li:hover .icon-2 {
                opacity: 1;
                transform: translateY(-50%) translateX(0);
            }

            /* Yazının sağa kayması hover ile */
            .feature-list-2 li:hover span {
                transform: translateX(0.5rem);
                transition: transform 0.3s ease;
            }

        .feature-list-2 li span {
            display: inline-block;
            transition: transform 0.3s ease;
        }

/* Arka plan ve kutu */
.text-box-2 {
    padding: 2rem;
    border-radius: 0.5rem;
}

/* Mobilde başlık ve içerik arası boşluk iyileştirmesi */
@media (max-width: 767.98px) {
    .section-title-2 {
        margin-top: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .text-box-2 {
        padding: 1.5rem 1rem;
    }
}


/* TEMEL STİLLER */
.slider-container {
    width: 100%;
    padding: 60px 30px;
    overflow: hidden;
    overflow-x: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.33, 0.66, 0.66, 1);
    will-change: transform;
}

.slider-item {
    min-width: 480px;
    height: 640px;
    margin: 0 25px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    position: relative;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slider-item:hover .slider-image {
    transform: scale(1.04);
}

/* İÇERİK STİLLERİ */
.slider-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(0deg, rgba(0,0,0,0.96) 25%, transparent 110%);
    color: #fff;
}

    .slider-content h3 {
        font-size: 2.4rem;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .slider-content p {
        font-size: 1.1rem;
        opacity: 0.9;
    }

/* NAVİGASYON */
.slider-nav {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.98);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
}

    .slider-nav:hover {
        transform: translateY(-50%) scale(1.08);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

.nav-arrow {
    width: 18px;
    height: 18px;
    border: 3px solid #333;
    border-width: 3px 3px 0 0;
}

/* RESPONSIVE AYARLAR */
@media (min-width: 1600px) {
    .slider-item {
        min-width: 600px;
        height: 720px;
    }
}

@media (max-width: 768px) {
    .slider-container {
        padding: 30px 15px;
    }

    .slider-item {
        min-width: 320px;
        height: 480px;
        margin: 0 15px;
        border-radius: 20px;
    }

    .slider-content {
        padding: 25px 20px;
    }

        .slider-content h3 {
            font-size: 1.8rem;
        }
}


video {
    object-fit: cover;
    pointer-events: none; /* tıklanamaz */
}
.hero {
    background: linear-gradient(to right, #0d47a1, #1976d2);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    color: #0d47a1;
}

.card:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}

.testimonial {
    background-color: #f8f9fa;
    padding: 60px 0;
}

/* Çözüm Alanlarımız */
.section-solutions-6 .solutions-grid-6 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.solution-card-6 {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    padding: 25px;
    transition: 0.3s ease;
}

    .solution-card-6:hover {
        transform: translateY(-5px);
    }

    .solution-card-6 h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
        color: #222;
    }

    .solution-card-6 p {
        font-size: 1rem;
        color: #444;
    }

/* Accordion Genel */
.section-faq-6 .accordion-button {
    background-color: #eaeef5;
    color: #222;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 1.25rem;
}

    .section-faq-6 .accordion-button:not(.collapsed) {
        background-color: #d0d8e0;
        color: #000;
    }

.section-faq-6 .accordion-body {
    background-color: #f9f9f9;
    font-size: 1rem;
    color: #333;
    padding: 1rem 1.25rem;
}

/* Accordion Border Radius'lar */
.accordion-item.item-1-6 {
    border-radius: 30px 30px 15px 15px;
    overflow: hidden;
    margin-bottom: 15px;
}

.accordion-item.item-2-6 {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
}

.accordion-item.item-3-6 {
    border-radius: 15px 15px 30px 30px;
    overflow: hidden;
}


.hero-section-7 {
    background-color: #000;
    color: #fff;
    padding: 30px 0 0;
}

.container-7 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row-7 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.hero-text-7 {
    flex: 1 1 50%;
    padding-right: 20px;
}

.hero-title-7 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle-7 {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.hero-btn-7 {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

    .hero-btn-7:hover {
        background-color: #e1e1e1;
    }

.hero-image-7 {
    flex: 1 1 45%;
    text-align: right;
}

    .hero-image-7 img {
        max-width: 100%;
        border-radius: 12px;
    }

/* Mobil uyum */
@media (max-width: 768px) {
    .row-7 {
        flex-direction: column;
        text-align: center;
    }

    .hero-text-7 {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .hero-image-7 {
        text-align: center;
    }
}

.uygulama-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

    .uygulama-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }

.icon-uygulama {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 1rem;
}

.parallax-section {
    position: relative;
    height: 400px;
    background-image: url('/img/arkaplan-foto.webp'); /* Arka plan görseli */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

    .parallax-section .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #0d47a1;
        opacity: 0.25; /* Mavilik çok hafif görünsün */
        z-index: 1;
    }

    .parallax-section .content {
        position: relative;
        z-index: 2;
    }


.product-section {
    background-image: url('/img/arkaplan.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 600;
}

.card-text {
    font-size: 1.1rem;
    color: #333;
}

#products .card {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
}

#products {
    position: relative;
}

    #products::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.15;
        z-index: 0;
    }

    #products .container {
        position: relative;
        z-index: 1;
    }

@media (max-width: 768px) {
    .hero-title-7 {
        font-size: 1.8rem; /* Daha küçük başlık */
    }

    .hero-subtitle-7 {
        font-size: 1rem;
    }

    .hero-btn-7 {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .hero-text-7 {
        padding: 0 15px; /* Kenarlardan biraz boşluk */
        text-align: center;
    }

    .hero-image-7 img {
        width: 100%;
        height: auto;
        max-width: 300px; /* Gerekirse resim boyutunu sınırla */
        margin: 0 auto;
        display: block;
    }

    .row-7 {
        flex-direction: column;
        align-items: center;
    }
}
/* Index End */

/*Services*/

/* Hizmet kartları */
.service-item-3 {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(13,110,253,0.15);
    padding: 2rem;
    margin-bottom: 2.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    transition: transform 0.3s ease;
    height: 100%;
}

    .service-item-3:hover {
        transform: translateY(-6px);
    }

.service-img-3 {
    width: 300px;
    height: 300px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

    .service-img-3:hover {
        transform: scale(1.05);
    }

.service-content-3 h3 {
    color: #333;
    font-weight: 700;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.service-content-3 p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin: 0;
    font-weight: 500;
}

/* Responsive düzenleme */
@media (max-width: 767.98px) {
    .service-item-3 {
        flex-direction: column;
        text-align: center;
    }

    .service-img-3 {
        width: 100%;
        height: 180px;
        margin-bottom: 1rem;
    }

    .service-content-3 h3 {
        font-size: 1.5rem;
    }

    .service-content-3 p {
        font-size: 1rem;
    }
}


/*Services End*/
/*About*/

.main-content-area {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    color: #333; /* Koyu metin rengi doğrudan tanımlandı. */
    line-height: 1.6; /* Birimsiz satır yüksekliği. */
}

/* Bölüm Başlığı Stili */
.section-header {
    padding: 40px 0;
}

    .section-header h1 {
        color: #1890ff; /* Ana mavi renk doğrudan tanımlandı. */
        font-size: 2.5rem;
        font-weight: 600;
        margin-bottom: 30px;
    }

/* Üst Bölüm - Küresel Sağlayıcı */
.global-provider-section {
    padding: 50px 0;
}

    .global-provider-section h3 {
        color: #1890ff; /* Ana mavi renk doğrudan tanımlandı. */
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .global-provider-section p {
        font-size: 1rem;
        color: #666; /* Açık koyu metin rengi doğrudan tanımlandı. */
        line-height: 1.6;
    }

    .global-provider-section .left-col {
        padding-right: 30px;
    }

    .global-provider-section .right-col p:first-child {
        font-weight: 500;
        margin-bottom: 20px;
    }

/* Fotoğraf Bölümü */
.image-section {
    margin-bottom: 50px;
}

    .image-section img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Gölge rengi doğrudan tanımlandı. */
    }

/* Özellik Kartları Bölümü */
.feature-cards-section {
    padding: 50px 0 80px 0;
}

.feature-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Gölge rengi doğrudan tanımlandı. */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .feature-card .icon-wrapper {
        width: 90px;
        height: 90px;
        background-color: #e6f7ff; /* İkon arka planı için açık mavi doğrudan tanımlandı. */
        border: 1px solid #1890ff; /* Ana mavi renk doğrudan tanımlandı. */
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto 25px auto;
    }

        .feature-card .icon-wrapper i {
            color: #1890ff; /* Ana mavi renk doğrudan tanımlandı. */
            font-size: 2.5rem;
        }

    .feature-card h5 {
        font-size: 1.3rem;
        font-weight: 600;
        color: #333; /* Koyu metin rengi doğrudan tanımlandı. */
        margin-bottom: 15px;
    }

    .feature-card p {
        font-size: 0.95rem;
        color: #666; /* Açık koyu metin rengi doğrudan tanımlandı. */
        line-height: 1.6;
        margin-bottom: 25px;
        flex-grow: 1;
    }

    .feature-card .btn-primary {
        background-color: #1890ff; /* Ana mavi renk doğrudan tanımlandı. */
        border-color: #1890ff; /* Ana mavi renk doğrudan tanımlandı. */
        font-weight: 500;
        padding: 10px 25px;
        border-radius: 5px;
        transition: background-color 0.3s ease, border-color 0.3s ease;
    }

        .feature-card .btn-primary:hover {
            background-color: #147ad6; /* Hover'da biraz daha koyu mavi doğrudan tanımlandı. */
            border-color: #147ad6; /* Hover'da biraz daha koyu mavi doğrudan tanımlandı. */
        }

/* Misyon ve Vizyon Bölümü */
.mission-vision-section {
    padding: 80px 0;
    background-color: #fff; /* Arka plan beyaz */
}

    .mission-vision-section .section-title {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 600;
        color: #1890ff; /* Ana mavi renk */
        margin-bottom: 60px;
    }

.mv-card {
    background-size: cover;
    background-position: center;
    color: #fff; /* Metin rengi beyaz */
    padding: 40px;
    border-radius: 8px;
    height: 100%; /* Kartların eşit yükseklikte olmasını sağlar */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Hafif gölge */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .mv-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

/* Kart arka planları ve mavi katman */
.mission-card {
    background-image: linear-gradient(rgba(24, 144, 255, 0.7), rgba(24, 144, 255, 0.7)), url('/img/about-1.webp');
}

.vision-card {
    background-image: linear-gradient(rgba(24, 144, 255, 0.7), rgba(24, 144, 255, 0.7)), url('https://picsum.photos/id/1040/600/400');
}

.values-card {
    background-image: linear-gradient(rgba(24, 144, 255, 0.7), rgba(24, 144, 255, 0.7)), url('/img/about-3.webp');
}

.mv-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.mv-card .card-line {
    width: 50px;
    height: 3px;
    background-color: #fff;
    margin-bottom: 25px;
}

.mv-card h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.4;
}

.mv-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* Duyarlı Tasarım Ayarları */
@media (max-width: 767.98px) {
    .global-provider-section .left-col {
        padding-right: 15px;
        margin-bottom: 30px;
    }

    .global-provider-section h3 {
        font-size: 1.8rem;
    }

    .section-header h1 {
        font-size: 2rem;
    }

    .feature-card {
        margin-bottom: 30px;
    }

    .mission-vision-section .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .mv-card {
        margin-bottom: 30px; /* Mobil görünümde kartlar arasına boşluk ekler */
    }
}

.solutions-section {
    background-color: #1890ff; /* Mavi arka plan rengi */
    color: #fff; /* Beyaz metin rengi */
    padding: 80px 20px; /* İç boşluklar */
    text-align: center; /* Metinleri ortala */
    position: relative; /* Pseudo-elementler için */
    overflow: hidden; /* Taşmaları gizle */
}

    .solutions-section::before,
    .solutions-section::after {
        content: '';
        position: absolute;
        background-color: rgba(255, 255, 255, 0.15); /* Hafif şeffaf beyaz */
        transform: rotate(45deg); /* Elmas şekli için döndür */
        z-index: 0; /* İçerikten arkada kalması için */
    }

    .solutions-section::before {
        top: -50px;
        left: -50px;
        width: 150px;
        height: 150px;
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.2); /* Hafif gölge */
    }

    .solutions-section::after {
        bottom: -50px;
        right: -50px;
        width: 200px;
        height: 200px;
        background-color: rgba(0, 191, 255, 0.3); /* Biraz daha farklı bir mavi tonu */
        box-shadow: 0 0 40px rgba(0, 191, 255, 0.4);
    }

.solutions-content {
    position: relative; /* İçeriğin z-index'i yüksek olsun */
    z-index: 1;
    max-width: 800px; /* İçeriğin genişliğini sınırlama */
    margin: 0 auto; /* Ortala */
}

    .solutions-content h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .solutions-content p {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 40px;
    }

    .solutions-content .btn-price-quote {
        background-color: #fff; /* Beyaz buton arka planı */
        color: #1890ff; /* Mavi buton metni */
        border: none; /* Kenarlık yok */
        padding: 15px 40px; /* İç boşluklar */
        border-radius: 30px; /* Yuvarlak köşeler */
        font-size: 1.1rem;
        font-weight: 600;
        text-decoration: none; /* Alt çizgi yok */
        transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Hafif gölge */
    }

        .solutions-content .btn-price-quote:hover {
            background-color: #e6f7ff; /* Hover'da hafif mavi */
            color: #147ad6; /* Hover'da biraz daha koyu mavi */
            transform: translateY(-2px); /* Hafif yukarı kalkma efekti */
        }

/* Duyarlı Tasarım */
@media (max-width: 768px) {
    .solutions-section {
        padding: 60px 15px;
    }

    .solutions-content h2 {
        font-size: 2rem;
    }

    .solutions-content p {
        font-size: 1rem;
    }

    .solutions-content .btn-price-quote {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .solutions-section::before {
        width: 100px;
        height: 100px;
        top: -30px;
        left: -30px;
    }

    .solutions-section::after {
        width: 150px;
        height: 150px;
        bottom: -30px;
        right: -30px;
    }
}
/*About End*/
/*Contact*/
.contact-info-4 {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(13,110,253,0.15);
    margin-bottom: 2rem;
}

    .contact-info-4 h2 {
        color: #6610f2;
        font-weight: 800;
        margin-bottom: 1rem;
    }

    .contact-info-4 p, .contact-info-4 a {
        font-size: 1.1rem;
        color: #495057;
        margin-bottom: 0.5rem;
        display: block;
        text-decoration: none;
    }

        .contact-info-4 a:hover {
            text-decoration: underline;
            color: #0d6efd;
        }

.contact-form-4 {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(13,110,253,0.15);
}

.btn-primary-4 {
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    border: none;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

    .btn-primary-4:hover {
        background: linear-gradient(135deg, #6610f2 0%, #0d6efd 100%);
    }

/* Harita Stilleri */
.map-wrapper {
    border-radius: 12px; /* Diğer kartlarla uyumlu kenar yuvarlaklığı */
    overflow: hidden; /* iframe'in kenar yuvarlaklığına uymasını sağlar */
    box-shadow: 0 10px 30px rgba(13,110,253,0.15); /* Diğer kartlarla uyumlu gölge */
}

    .map-wrapper iframe {
        width: 100%; /* Kapsayıcının genişliğini kaplar */
        height: 500px; /* Haritanın yüksekliği, "büyük" bir görünüm için */
        display: block; /* iframe altındaki boşluğu kaldırır */
    }

/* Duyarlı Harita Yüksekliği */
@media (max-width: 768px) {
    .map-wrapper iframe {
        height: 300px; /* Mobil cihazlarda daha az yer kaplaması için yükseklik azaltıldı */
    }
}
/*Contact End*/

