@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');


body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

    
    body.loading {
        overflow: hidden;
    }



.navbar {
    background-color: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    z-index: 9999;
}

.navbar-logo {
    width: 150px;
    transition: transform 0.3s ease;
}

    .navbar-logo:hover {
        transform: scale(1.1);
    }


.nav-link {
    color: #333;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 8px 20px;
    transition: color 0.3s ease, padding-left 0.3s ease;
}


    .nav-link:hover {
        color: #4C40F7;
        padding-left: 25px;
    }

.nav-item.active .nav-link {
    color: #007bff !important;
    font-weight: bold;
}


.dropdown-menu {
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}


.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;
    background-color: #ffffff;
    border: 1px solid #4C40F7;
}


.dropdown-item {
    font-size: 14px;
    font-weight: 400;
    padding: 10px 20px;
    color: #333;
    transition: all 0.3s ease;
}


    .dropdown-item:hover {
        background-color: #f1f1f1;
        color: #4C40F7;
        border-radius: 5px;
    }


.fixed-top {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.faq-item {
    margin-left: 15px;
}

.faq-link {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 8px 20px;
    border: 2px solid #4C40F7;
    border-radius: 50px;
    transition: all 0.3s ease;
}

    .faq-link:hover {
        color: white;
        background-color: #4C40F7;
        border-color: #4C40F7;
    }

.btn-faq-support {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    font-size: 15px;
    font-weight: 600;
    color: #fff !important;
    background: linear-gradient(135deg, #4B1C6C, #6C3FA0); 
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(160, 100, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .btn-faq-support:hover {
        box-shadow: 0 6px 18px rgba(160, 100, 255, 0.55);
        transform: translateY(-3px) scale(1.05);
        opacity: 0.95;
        background: linear-gradient(135deg, #6C3FA0, #4B1C6C); 
    }


@media (max-width: 991px) {
    .navbar-nav {
        text-align: center;
    }

    .navbar-toggler {
        border-color: #4C40F7;
    }

    .navbar-toggler-icon {
        background-color: #4C40F7;
    }
}
/* Banner */

#banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1A1A1A, #2C2C2C); /* Antrasit degrade */
    font-family: 'Poppins', sans-serif;
    padding: 40px 20px;
    color: #fff;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(90,45,130,0.15), transparent 70%);
    z-index: 0;
}

.content-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    width: 100%;
    z-index: 1;
    gap: 40px;
}

.left {
    flex: 1;
}

.right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Başlık ve animasyon */
.banner-text {
    max-width: 600px;
    text-align: left;
}

.geoit-headline {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
}

.animated-container {
    margin-bottom: 25px;
}

.animated-words-wrapper {
    display: block;
    color: #A064FF;
    font-weight: 700;
    border-right: 2px solid #A064FF;
    white-space: nowrap;
    overflow: hidden;
    font-size: 3rem;
}

    .animated-words-wrapper::after {
        content: "";
        display: inline-block;
        width: 2px;
        height: 1em;
        margin-left: 6px;
        background: #A064FF;
        animation: blink .9s steps(1) infinite;
        vertical-align: -0.1em;
    }

    .animated-words-wrapper .word {
        display: none;
    }

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* Subline */
.subline {
    font-size: 1.15rem;
    margin: 0 0 30px;
    color: #b5b5b5;
    max-width: 500px;
}

/* Button */
.btn-banner {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #4B1C6C, #6C3FA0);
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 4px 12px rgba(90, 45, 130, 0.4);
}

    .btn-banner:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0px 6px 16px rgba(90, 45, 130, 0.6);
    }

/* Right Visual (Logo) */
.visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-bg {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(90,45,130,0.8), rgba(28,28,28,1));
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 10px 30px rgba(90,45,130,0.5);
    animation: float 5s ease-in-out infinite;
}

.visual-img {
    width: 160px;
    height: auto;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ========================
   Responsive
   ======================== */
@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .banner-text {
        text-align: center;
    }

    .geoit-headline,
    .animated-words-wrapper {
        font-size: 2.2rem;
    }

    .subline {
        font-size: 1rem;
        margin: 15px 0 25px;
    }

    .circle-bg {
        width: 220px;
        height: 220px;
    }

    .visual-img {
        width: 120px;
    }
}

@media (max-width: 576px) {
    .geoit-headline,
    .animated-words-wrapper {
        font-size: 1.8rem;
    }

    .subline {
        font-size: 0.95rem;
    }

    .btn-banner {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .circle-bg {
        width: 180px;
        height: 180px;
    }

    .visual-img {
        width: 100px;
    }
}

/* Yükleme Ekranı */
/* Loader ekranı */
#loader {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    background: #808080; /* gri */
    z-index: 9999;
    transition: opacity 0.6s ease;
}

/* Logo */
.loading-logo {
    width: 100px;
    height: 100px;
    animation: pulse 2s infinite ease-in-out;
}

/* Daireler */
.circle {
    width: 15px;
    height: 15px;
    margin: 5px;
    border-radius: 50%;
    background: white;
    display: inline-block;
    animation: bounce 1.5s infinite ease-in-out;
}

    .circle:nth-child(2) {
        animation-delay: 0.2s;
    }

    .circle:nth-child(3) {
        animation-delay: 0.4s;
    }

/* Logo animasyonu */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Daire animasyonu */
@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

/* Kapanış animasyonu */
.fade-out {
    opacity: 0;
}



/* Header başlık stili */
.headline {
    font-size: 60px;
    font-weight: 700;
    color: #333;
    text-align: left;
    margin-bottom: 20px;
    letter-spacing: 2px;
    animation: fadeInTitle 1s ease-in-out;
}

@keyframes fadeInTitle {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.headline span {
    background: linear-gradient(99.89deg, #4C40F7 0%, #FF00A1 106.22%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 55px;
    font-weight: 700;
}
/* Header başlık stili */
.headline {
    font-size: 60px;
    font-weight: 700;
    color: #333;
    text-align: left;
    margin-bottom: 20px;
    letter-spacing: 2px;
    animation: fadeInTitle 1s ease-in-out; /* Başlık animasyonu */
}

@keyframes fadeInTitle {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.headline span {
    background: linear-gradient(99.89deg, #4C40F7 0%, #FF00A1 106.22%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 55px;
    font-weight: 700;
}

/* Header açıklama metni */
.headline-wrapper p {
    font-size: 22px;
    color: #777;
    margin-top: 20px;
    text-align: left;
    animation: fadeInText 1.5s ease-out; /* Açıklama metni animasyonu */
}

@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


button.btn-primary {
    font-size: 18px;
    padding: 12px 30px;
    border-radius: 5px;
    background-color: #4C40F7; 
    border-color: #4C40F7; 
    transition: transform 0.3s ease, background-color 0.3s ease;
}

    button.btn-primary:hover {
        background-color: #3b34c6; 
        border-color: #3b34c6; 
        transform: scale(1.1); 
    }

/* Sayaç öğesi */
/* Sayaç kısmı */
.gl-fan-fact-section-2 {
    background-color: rgb(20, 19, 43); 
    padding: 60px 0px 80px; 
    color: #fff;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1); 
}

/* İçerik kısmı */
.gl-fun-fact-content-2 {
    text-align: center;
}

/* Sayaç öğeleri */
.gl-funfact-inner-item-2 {
    background-color: rgba(0, 0, 0, 0.6); /* Daha koyu arka plan */
    padding: 30px 15px;
    margin: 10px 0;
    border-radius: 12px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Daha güçlü gölge efekti */
}

    /* Hoverda efekt */
    .gl-funfact-inner-item-2:hover {
        transform: translateY(-8px); /* Hoverda hafif yükselme */
        background-color: #4c40f7; /* Hoverda renk değişimi */
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); /* Hoverda daha belirgin gölge */
    }

/* Sayaç başlıkları */
.thx-inner-title h3 {
    font-size: 3em; /* Daha küçük başlık boyutu */
    font-weight: 700;
    color: #fff;
    letter-spacing: 3px;
    transition: color 0.3s ease;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4); /* Harf gölgesi */
}

/* Sayaç metni */
.thx-inner-text {
    font-size: 1.2em; /* Daha küçük metin boyutu */
    color: #f1f1f1;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    opacity: 0.8;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .gl-fan-fact-section-2 {
        padding: 50px 10px; /* Mobilde padding küçültülür */
    }

    .gl-funfact-inner-item-2 {
        width: 100%;
        margin: 20px 0;
        padding: 25px 15px;
    }

    .thx-inner-title h3 {
        font-size: 2.5em; /* Mobilde başlık boyutu küçültülür */
    }

    .thx-inner-text {
        font-size: 1em; /* Mobilde metin boyutu küçültülür */
    }
}


/* Hakkımızda Bölümü */
.about-section {
    background-color: #f9f9f9;
    padding: 60px 0; /* Hakkımızda bölümündeki üst ve alt padding'i küçülttük */
    text-align: center;
    color: #333;
}

.about-title {
    font-size: 36px;
    font-weight: 700;
    color: #4C40F7; /* Yeni renk */
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-description {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.about-section .btn {
    background-color: #4C40F7; /* Yeni renk */
    color: #fff;
    font-size: 18px;
    padding: 10px 30px;
    border-radius: 5px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

    .about-section .btn:hover {
        background-color: #3b34c6; /* Hoverda yeni renk */
    }

.about-section img {
    border-radius: 10px;
    max-width: 100%;
    height: auto;
}

/* Yetenekler Bölümü */
.skills-section {
    margin-top: 40px; /* Yetenekler kısmındaki üst margin'i küçülttük */
    text-align: left;
}

    .skills-section h3 {
        font-size: 28px;
        color: #4C40F7; /* Yeni renk */
        margin-bottom: 20px; /* Alt margin'i küçülttük */
    }

.skill-item {
    margin-bottom: 15px; /* Her bir skill item için alt margin'i küçülttük */
}

    .skill-item label {
        font-size: 18px;
        font-weight: 600;
        color: #333;
    }

.progress {
    background-color: #ddd;
    border-radius: 5px;
    height: 6px;
    margin-bottom: 5px;
}

.progress-bar {
    background-color: #4C40F7;
    height: 100%;
    border-radius: 5px;
}

.progress-percentage {
    font-size: 16px; /* Font boyutunu 16px olarak ayarladık */
    font-weight: 600; /* Font ağırlığını 600 yapıyoruz */
    color: #333;
    display: block; /* Yüzde metnini barın altına hizalıyoruz */
    margin-top: 5px; /* Yüzde metni ile bar arasında boşluk bırakıyoruz */
    padding-bottom: 8px;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 20px;
    }

    .about-title {
        font-size: 28px;
    }

    .about-description {
        font-size: 16px;
    }

    .about-section .btn {
        font-size: 16px;
        padding: 8px 25px;
    }

    .skills-section h3 {
        font-size: 24px;
    }

    .skill-item label {
        font-size: 16px;
    }

    .progress-bar {
        height: 6px; /* Bar yüksekliğini mobilde daha da küçültüyoruz */
    }

    .progress-percentage {
        font-size: 12px;
    }
}
/* Hizmetlerimiz Bölümü */

#services {
    background: linear-gradient(135deg, #1A1A1A, #2C2C2C); /* Banner ile uyumlu degrade */
    padding: 120px 0 125px 0;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

/* Başlık kısmı */
.services-title {
    text-align: center;
    margin-bottom: 60px;
}

    .services-title h2 {
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .services-title p {
        font-size: 18px;
        color: #b5b5b5;
    }

/* Hizmetler düzeni */
.services-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

/* Her kutu */
.service-item {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    flex: 1 0 22%; /* 4 sütun */
    margin-bottom: 40px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border 0.35s ease;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1.5px solid transparent;
}

    .service-item:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 0 20px 50px rgba(160, 100, 255, 0.25);
        border: 1.5px solid #A064FF; /* Mor vurgu */
    }

/* İkon kısmı */
.service-icon i {
    font-size: 60px;
    color: #A064FF; /* Mor ikon */
    margin-bottom: 25px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-item:hover .service-icon i {
    transform: scale(1.15);
    color: #6C3FA0; /* Daha koyu mor */
}

/* Başlık */
.service-title h3 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

/* Açıklama metni */
.service-desc p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 20px;
}

/* Buton */
.service-btn a {
    font-size: 16px;
    color: #A064FF;
    text-decoration: none;
    border: 2px solid #A064FF;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
    display: inline-block;
}

    .service-btn a:hover {
        background: linear-gradient(135deg, #4B1C6C, #6C3FA0); /* Banner ile uyumlu mor gradient */
        color: #fff;
        border-color: transparent;
        box-shadow: 0 0 25px rgba(160, 100, 255, 0.6);
    }

/* Mobil uyum */
@media (max-width: 768px) {
    .service-item {
        flex: 1 0 100%;
    }

    .service-title h3 {
        font-size: 18px;
    }

    .service-desc p {
        font-size: 14px;
    }

    .service-btn a {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/*ReklamBlog*/
#gl-featured-2 {
    background-color: #f9f9f9; /* Sitenin arka plan rengiyle uyumlu hale getirildi */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.gl-section-title h2 {
    font-size: 48px;
    color: #333; /* Başlık için koyu gri renk */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 60px;
    text-shadow: 4px 4px 20px rgba(0, 0, 0, 0.1);
}

/* Görsel kısmı */
.gl-featured-img-2 {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

    .gl-featured-img-2 img {
        width: 100%;
        height: auto;
        border-radius: 15px;
        transition: transform 0.3s ease;
    }

    .gl-featured-img-2:hover img {
        transform: scale(1.1);
    }

/* Accordion stili */
.accordion-button {
    background-color: #2c3e50; /* Koyu renk tonları */
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 20px 30px;
    border: none;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

    .accordion-button:hover {
        background-color: #4C40F7;
        color: #fff;
    }

    .accordion-button:focus {
        outline: none;
        box-shadow: 0 0 0 0.25rem rgba(76, 64, 247, 0.5);
    }

.accordion-body {
    background-color: #ecf0f1;
    padding: 30px;
    font-size: 16px;
    color: #555;
    border-top: 2px solid #ddd;
    border-radius: 12px;
}

/* Animasyonlar */
.wow {
    visibility: hidden;
}

    .wow.fadeInUp {
        animation: fadeInUp 1s forwards;
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobil uyum */
@media (max-width: 768px) {
    .gl-section-title h2 {
        font-size: 32px;
    }

    .gl-featured-img-2 {
        margin-bottom: 30px;
    }

    .accordion-button {
        font-size: 16px;
        padding: 15px;
    }

    .accordion-body {
        font-size: 14px;
    }
}

/* Masonary grid for portfolio */
.grid:after {
    content: '';
    display: block;
    clear: both;
}

/* Grid Item */
.grid-sizer,
.grid-item {
    width: 100%;
}

.grid-item {
    padding-bottom: 12px;
}

@media (min-width: 48em) {
    .grid-sizer,
    .grid-item {
        width: 25%;
    }

    .grid-item {
        float: left;
        padding: 6px;
    }
}

.grid-item img {
    display: block;
    width: 100%;
    max-width: 100%;
}

/* Portfolio */
.fp-card-wrapper {
    position: relative;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    color: #222;
    z-index: 1;
    /* YÜKSEKLİK DÜZENLEMESİ */
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .fp-card-wrapper::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, #7B63FF, #4C40F7, #7B63FF);
        border-radius: inherit;
        padding: 2px;
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask-composite: exclude;
        -webkit-mask-composite: destination-out;
        z-index: -1;
        animation: rotateBorder 5s linear infinite;
    }

@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.fp-logo-box {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #4C40F7;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 24px rgba(124, 99, 255, 0.6);
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.fp-card-wrapper:hover .fp-logo-box {
    transform: scale(1.1);
}

.fp-logo-box img {
    width: 48px;
    height: 48px;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

.fp-card-title {
    font-size: 2rem;
    font-weight: 800;
    color: #4C40F7;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.fp-card-desc {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 1.75rem;
    font-weight: 500;
    /* YÜKSEKLİK DENGESİ */
    flex-grow: 1;
}

.fp-button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #4C40F7, #7B63FF);
    box-shadow: 0 6px 18px rgba(124, 99, 255, 0.6);
    transition: all 0.3s ease;
}

    .fp-button:hover {
        background: linear-gradient(135deg, #6F5BFF, #9C8CFF);
        box-shadow: 0 10px 24px rgba(156, 140, 255, 0.9);
    }

/* Asker için özel renk teması */
.fp-card-asker .fp-card-title {
    color: #0D6EFD;
}

.fp-card-asker .fp-logo-box {
    background: linear-gradient(135deg, #0D6EFD, #4099FF);
    box-shadow: 0 0 24px rgba(13, 110, 253, 0.6);
}

.fp-card-asker .fp-button {
    background: linear-gradient(135deg, #0D6EFD, #4099FF);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.6);
}

    .fp-card-asker .fp-button:hover {
        background: linear-gradient(135deg, #378FFF, #72B8FF);
        box-shadow: 0 10px 30px rgba(72, 140, 255, 0.9);
    }

/* Mobil duyarlılık */
@media (max-width: 768px) {
    .fp-card-title {
        font-size: 1.6rem;
    }

    .fp-card-wrapper {
        padding: 1.75rem;
    }
}

/* Responsive grid düzeni */
@media (max-width: 768px) {
    .go-topsections .col-lg-5,
    .go-topsections .col-md-7 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 30px;
    }
}


.portolio-section .container {
    padding: 0;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    text-align: center;
    margin: 0;
}

    .portfolio-item img {
        width: 100%;
        aspect-ratio: 3 / 2; /* 3840x2560 oranı */
        object-fit: cover;
        display: block;
    }

    .portfolio-item figcaption {
        position: absolute;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 12px;
        background: rgba(255, 255, 255, 0.75);
        transition: transform 0.35s;
        transform: translate3d(0, 100%, 0);
    }

        .portfolio-item figcaption h4 {
            color: #222;
            font-size: 16px;
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 3px;
        }

        .portfolio-item figcaption p {
            color: #444;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 0;
        }

    .portfolio-item:hover figcaption {
        transform: translate3d(0, 0, 0);
    }

/* Portolio Caption */
#bp_container .bp-xc {
    background: #4C40F7 !important;
}

#bp_caption a {
    text-decoration: none;
}

.blog-section {
    background-color: #f9f9f9;
    padding: 80px 20px;
}

.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 14px;
    color: #4C40F7;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 36px;
    color: #333;
    font-weight: 700;
}

.section-header p {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Blog Kart */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Blog Kart */
.blog-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

.blog-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.blog-content {
    padding: 20px;
    flex-grow: 1; /* İçeriğin büyümesini sağlar */
    display: flex;
    flex-direction: column;
}

.blog-category {
    font-size: 13px;
    color: #4C40F7;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
    display: inline-block;
}

.blog-title {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 10px;
}

    .blog-title a {
        text-decoration: none;
        color: inherit;
        transition: color 0.3s ease;
    }

        .blog-title a:hover {
            color: #4C40F7;
        }

.blog-excerpt {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
}

.blog-readmore {
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: #4C40F7;
    transition: color 0.3s ease;
    margin-top: auto; /* Butonu en alta yerleştirir */
}

    .blog-readmore:hover {
        color: #4C40F7;
    }



/* Footer */
.footer {
    background-color: #fff;
    color: #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Footer Container */
.footer-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Logo ve Sosyal Iconlar */
.footer-logo-section {
    margin-bottom: 40px;
    text-align: center;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer-slogan {
    font-size: 18px;
    color: #777;
    margin-bottom: 20px;
    font-weight: 400;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

    .footer-social .social-icon {
        font-size: 24px;
        color: #333;
        transition: all 0.3s ease-in-out;
    }

        .footer-social .social-icon:hover {
            color: #4C40F7;
            transform: scale(1.1);
        }

/* Footer Links */
.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: left;
}

    .footer-section h4 {
        font-size: 22px;
        margin-bottom: 20px;
        font-weight: 600;
        color: #333;
    }

        .footer-section h4::after {
            content: "";
            display: block;
            width: 50px;
            height: 3px;
            background-color: #4C40F7;
            margin-top: 8px;
        }

    .footer-section ul {
        list-style: none;
        padding: 0;
    }

        .footer-section ul li {
            margin-bottom: 15px;
        }

            .footer-section ul li a {
                color: #777;
                text-decoration: none;
                font-size: 16px;
                font-weight: 400;
                transition: color 0.3s ease;
            }

                .footer-section ul li a:hover {
                    color: #4C40F7;
                }

    /* İletişim Kısmı */
    .footer-section.contact-info ul li {
        font-size: 16px;
        color: #777;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .footer-section.contact-info ul li i {
            font-size: 20px;
            color: #4C40F7;
        }

/* Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #4C40F7;
    color: #fff;
    border: none;
    border-radius: 50%;
    padding: 15px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: none; /* Başlangıçta görünmesin */
}

    .scroll-to-top-btn:hover {
        background-color: #0056b3;
        transform: scale(1.1);
    }

/* Footer Alt Bilgisi */
.footer-bottom {
    margin-top: 40px;
    font-size: 14px;
    color: #888;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .footer-logo-section {
        margin-bottom: 30px;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-bottom {
        font-size: 12px;
    }
}



/* Tam genişlikte section */
/* Tam genişlikte section */
#bo-hero-section {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 160px 20px 140px;
    background: linear-gradient(135deg, #1A1A1A, #2C2C2C); /* Banner ile uyumlu antrasit degrade */
    font-family: 'Poppins', sans-serif;
    color: #eaeaea;
    overflow: visible;
    text-align: center;
}

/* İçerik kapsayıcı */
.bo-hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Kartlar flex */
.dual-brand-hero {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    align-items: stretch;
    text-align: left;
}

/* Kart blokları */
.brand-block {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 48px 36px 50px;
    flex: 1 1 450px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border 0.35s ease;
    backdrop-filter: blur(14px);
    cursor: default;
    border: 1.5px solid transparent;
}

    .brand-block:hover,
    .brand-block:focus {
        transform: translateY(-12px) scale(1.04);
        box-shadow: 0 28px 75px rgba(160, 100, 255, 0.7);
        border: 1.5px solid #A064FF; /* Mor vurgu */
        outline: none;
    }

/* Logo kapsayıcı */
.brand-logo-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #A064FFcc, #6C3FA0cc);
    box-shadow: 0 0 24px #A064FFaa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    transition: box-shadow 0.4s ease;
}

.brand-block:hover .brand-logo-wrapper,
.brand-block:focus .brand-logo-wrapper {
    box-shadow: 0 0 42px #A064FFee;
}

/* Logo */
.brand-logo {
    max-width: 88px;
    max-height: 88px;
    object-fit: contain;
    filter: drop-shadow(0 0 6px #A064FFcc);
    transition: transform 0.25s ease;
}

.brand-block:hover .brand-logo,
.brand-block:focus .brand-logo {
    transform: scale(1.18) rotate(6deg);
}

/* Başlık */
.brand-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #A064FF; /* Mor başlık */
    margin-bottom: 10px;
    text-shadow: 0 3px 14px rgba(160, 100, 255, 0.6);
}

/* Slogan */
.brand-slogan {
    font-size: 1.4rem;
    font-weight: 600;
    color: #b5b5b5;
    margin-bottom: 28px;
    text-shadow: 0 2px 9px rgba(0, 0, 0, 0.55);
    font-style: italic;
}

/* Açıklama metni */
.brand-text {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #dcdcdc;
    max-width: 600px;
    width: 100%;
    text-align: center;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
    white-space: normal;
    overflow: visible;
    flex-grow: 1;
    margin-bottom: 36px;
}

/* Butonlar container */
.brand-actions {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-top: auto;
}

/* Buton genel */
.bo-hero-btn {
    font-weight: 700;
    font-size: 1.15rem;
    padding: 17px 48px;
    border-radius: 48px;
    cursor: pointer;
    text-decoration: none;
    user-select: none;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Birincil buton */
.bo-btn-primary {
    background: linear-gradient(135deg, #4B1C6C, #6C3FA0); /* Banner ile uyumlu mor */
    color: #fff;
    box-shadow: 0 0 42px rgba(160, 100, 255, 0.6);
    border: 2px solid transparent;
}

    .bo-btn-primary:hover,
    .bo-btn-primary:focus {
        background: linear-gradient(135deg, #6C3FA0, #4B1C6C);
        box-shadow: 0 0 58px rgba(160, 100, 255, 0.85);
        outline: none;
    }

/* İkincil buton */
.bo-btn-secondary {
    background: transparent;
    border: 2.3px solid #A064FF;
    color: #A064FF;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .bo-btn-secondary:hover,
    .bo-btn-secondary:focus {
        background: #A064FF;
        color: #fff;
        box-shadow: 0 0 55px rgba(160, 100, 255, 0.8);
        outline: none;
    }

/* Responsive */
@media (max-width: 980px) {
    .dual-brand-hero {
        flex-direction: column;
        align-items: center;
        gap: 36px;
        text-align: center;
    }

    .brand-block {
        max-width: 480px;
        width: 100%;
        text-align: center;
    }

    .brand-slogan {
        font-style: normal;
    }
}


.geoit-policy-section {
    max-width: 780px;
    margin: 60px auto;
    padding: 40px 30px;
    background: #f5f6ff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(76, 64, 247, 0.2);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2a2a2a;
    line-height: 1.65;
    transition: box-shadow 0.3s ease;
}

    .geoit-policy-section:hover {
        box-shadow: 0 12px 30px rgba(76, 64, 247, 0.35);
    }

    .geoit-policy-section h1 {
        font-size: 2.8rem;
        font-weight: 800;
        margin-bottom: 24px;
        color: #4C40F7;
        border-left: 6px solid #4C40F7;
        padding-left: 16px;
        letter-spacing: 0.05em;
    }

    .geoit-policy-section p {
        font-size: 1.15rem;
        margin-bottom: 28px;
        color: #444;
    }

    .geoit-policy-section ul {
        list-style-type: none;
        padding-left: 0;
        margin-bottom: 28px;
    }

        .geoit-policy-section ul li {
            position: relative;
            font-size: 1.1rem;
            padding-left: 32px;
            margin-bottom: 18px;
            color: #333;
        }

            .geoit-policy-section ul li strong {
                color: #4C40F7;
            }

            .geoit-policy-section ul li::before {
                content: '';
                position: absolute;
                left: 0;
                top: 8px;
                width: 14px;
                height: 14px;
                background: #4C40F7;
                border-radius: 50%;
            }

@media (max-width: 640px) {
    .geoit-policy-section {
        padding: 25px 18px;
        margin: 40px 10px;
    }

        .geoit-policy-section h1 {
            font-size: 2rem;
            padding-left: 12px;
            border-left-width: 4px;
        }

        .geoit-policy-section p,
        .geoit-policy-section ul li {
            font-size: 1rem;
            padding-left: 24px;
        }

            .geoit-policy-section ul li::before {
                width: 10px;
                height: 10px;
                top: 7px;
            }
}