/* --- 1. Calisto Colors--- */
:root {
    --primary-dark: #021D49;    
    --primary-blue: #009ADE;   
    --light-gray: #F5F7FA;     
    --white: #FFFFFF;
}

/* --- 2. SLIDER TITLE (H1) --- */
.slider-light-head {
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Gradient text*/
    background: linear-gradient(to bottom, var(--white), var(--light-gray), var(--primary-blue));
    -webkit-background-clip: text; 
    background-clip: text;          
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 10px rgba(0, 154, 222, 0.2);
}

.slider-light-head:hover {
    transform: scale(1.05); 
    text-shadow: 0 10px 20px rgba(0, 154, 222, 0.4);
}

/* --- 3. SLIDER TEXT --- */
.caption p {
    color: rgba(245, 247, 250, 0.85) !important;
    font-size: 18px;
    font-weight: 300;
    transition: all 0.4s ease;
}

.caption p:hover {
    color: var(--white) !important;
    transform: translateY(-2px);
}

/* --- 4. SLIDER BUTON (CUSTOM CURVE) --- */
.caption .butn.bord.curve {
    background: rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(245, 247, 250, 0.3); 
    color: var(--light-gray); 
    backdrop-filter: blur(8px); 
    -webkit-backdrop-filter: blur(8px);
    padding: 12px 35px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    position: relative;
    z-index: 1;
}

.caption .butn.bord.curve span {
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.4s ease;
}

/* Button Hover  */
.caption .butn.bord.curve:hover {
    background: var(--primary-blue) !important; 
    border-color: var(--primary-blue) !important;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 154, 222, 0.4); 
}

.caption .butn.bord.curve:hover span {
    color: var(--primary-dark) !important;
}


.butn.bord:after {
    background: var(--light-gray) !important; 
    opacity: 0; 
}

/* --- GLASS EFECT --- */
.glass-effect {
    background: rgba(245, 247, 250, 0.1); 
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* --- ABOUT US COUNTERS (STAUTS) --- */
.about-us .img .stauts {
    display: flex;
    gap: 20px;
    margin-top: -50px; 
    position: relative;
    z-index: 2;
}

.about-us .img .stauts .item {
    padding: 35px 25px !important;
    margin-right: 0 !important; 
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(2, 29, 73, 0.15);
    transition: all 0.4s ease;
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-us .img .stauts .item:first-of-type {
    background: linear-gradient(135deg, var(--primary-blue), #0077b5) !important;
    color: var(--white) !important;
}

.about-us .img .stauts .item:last-of-type {
    background: linear-gradient(135deg, var(--primary-dark), #032a6b) !important;
    color: var(--white) !important;
}

.about-us .img .stauts .item h4 {
    font-size: 38px !important;
    font-weight: 800 !important;
    margin-bottom: 5px;
    font-family: var(--primary-font);
}

.about-us .img .stauts .item h6 {
    font-size: 14px !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
    font-weight: 500;
}

.about-us .img .stauts .item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 154, 222, 0.3);
}

/* --- DARK BUTON GÜNCELLEMESİ --- */
.butn.dark {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: var(--white) !important;
    overflow: hidden;
}

.butn.dark:hover {
    background: var(--primary-blue) !important;
    border-color: var(--primary-blue) !important;
    box-shadow: 0 10px 20px rgba(0, 154, 222, 0.3);
}

.butn.dark span {
    color: var(--white) !important;
    font-weight: 600;
}


/* --- 5. NUMBER SECTION (COUNTERS) --- */


.number-sec .item {
    text-align: center;
    padding: 40px 20px;
    transition: all 0.4s ease;
    border-radius: 20px;
    background: transparent;
}

.number-sec .item .icon {
    font-size: 45px !important;
    margin-bottom: 20px;
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    animation: iconPulse 3s infinite ease-in-out;
}

@keyframes iconPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

.number-sec .item h3 {
    font-size: 48px !important;
    font-weight: 800 !important;
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-family: var(--primary-font);
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 5px;
}

.number-sec .item h3 .count {
    color: var(--primary-blue);
}

.number-sec .item p {
    font-size: 15px !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: #666; /* Daha okunaklı bir gri */
    transition: color 0.3s ease;
}

.number-sec .item:hover {
    background: rgba(0, 154, 222, 0.03); 
    transform: translateY(-10px);
}

.number-sec .item:hover p {
    color: var(--primary-blue);
}


.number-sec .item p.txt .char {
    transition: color 0.4s ease;
}

.number-sec .item:hover p.txt .char {
    color: var(--primary-blue);
    animation: bounceChar 0.4s ease forwards;
    animation-delay: calc(0.03s * var(--char-index));
}

@keyframes bounceChar {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}


.cali-services-section {
    padding: 60px 0;
    background: #fff;
}

.cali-services-head {
    text-align: center;
    margin-bottom: 36px;
    padding: 0 20px;
}

.cali-services-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #009ADE;
    margin-bottom: 10px;
}

.cali-services-title {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 700;
    color: #021D49;
    line-height: 1.3;
    margin: 0;
}

.cali-swiper-wrap {
    position: relative;
    z-index: 1;
}

.cali-track-outer {
    overflow: hidden;
    padding: 20px 0 40px;
}

.cali-track {
    display: flex;
    gap: 16px;
    padding: 0 2%;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.cali-card {
    flex: 0 0 calc((100% - 5 * 16px) / 5);
    height: 340px;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
    box-shadow: 0 8px 24px rgba(2, 29, 73, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}

.cali-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(2, 29, 73, 0.22);
}

.cali-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(2, 29, 73, 0.88) 100%);
}

.cali-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 2;
}

.cali-card-cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #009ADE;
}

.cali-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    transition: color 0.3s;
}

.cali-card:hover .cali-card-title {
    color: #009ADE;
}

.cali-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50px;
    padding: 9px 22px;
    font-size: 13px;
    font-weight: 600;
    color: #021D49;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 99;
    transition: background 0.3s, color 0.3s;
    
}

.cali-btn:hover {
    background: #009ADE;
    color: #fff;
}

.cali-btn-prev { left: 12px; }
.cali-btn-next { right: 12px; }

@media (max-width: 991px) {
    .cali-card {
        flex: 0 0 calc((100% - 3 * 16px) / 3);
        height: 280px;
    }
}

@media (max-width: 600px) {
    .cali-card {
        flex: 0 0 calc((100% - 2 * 16px) / 2);
        height: 230px;
    }
    .cali-btn {
        display: none;
    }
}


/* ASTRONAUT PAGE HEADER */
.custom-dark-header {
    position: relative;
    overflow: hidden;
}

/* OVERLAY */
.custom-dark-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(2, 29, 73, 0.85);
    z-index: 1;
}

.custom-dark-header .container {
    position: relative;
    z-index: 2;
}

/* ASTRONAUT BASE */
.astronaut {
    position: absolute;
    width: 28vw;
    z-index: 2;
    pointer-events: none;
    transition: transform 0.2s ease-out;
    animation: float 6s ease-in-out infinite;
}

/* LEFT */
.astro-left {
    left: -2%;
    bottom: -10px; 
    animation: float-slight 8s ease-in-out infinite;
   
}

/* RIGHT */
.astro-right {
    right: -2%;
    bottom: 5%;
    width: 30vw; 
    animation: float-normal 6s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 768px) {
    .astronaut {
        width: 45vw; 
        max-width: 250px;
    }
    
    .astro-left {
        left: -5%;
        bottom: -5px;
        animation: float-normal 6s ease-in-out infinite;
    }
    
    .astro-right {
        right: -10%;
        bottom: 2%;
        
        animation: float-normal 8s ease-in-out infinite;
    }
}




/* --- CALLISTO MODERN BLOG LIST --- */

.blog-list.section-padding.sub-bg {
    background: white !important; /* Arka planı derin laciverte çektik */
    position: relative;
    overflow: hidden;
}

.blog-list.section-padding.sub-bg::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 154, 222, 0.15) 0%, rgba(2, 29, 73, 0) 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.blog-list.section-padding.sub-bg::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 30%;
    height: 60%;
    background: radial-gradient(circle at center, rgba(2, 29, 73, 0.1) 0%, rgba(0, 154, 222, 0) 60%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.blog-list .container {
    position: relative;
    z-index: 1;
}

.blog-list .head h6.back-color {
    background: rgba(0, 154, 222, 0.15) !important;
    backdrop-filter: blur(10px); 
    color: #009ade !important;
    padding: 8px 15px !important;
    font-family: 'Familjen Grotesk', sans-serif !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 6px;
    display: inline-block;
}

.blog-list .head a {
    font-size: 11px !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px !important;
    color: var(--primary-dark)!important;
    margin-top: 40px;
    padding: 12px 30px; 
    border: 1px solid rgba(0, 18, 61, 0.296);
    border-radius: 50px; 
    position: relative;
    display: inline-block;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.blog-list .head a:after {
    display: none;
}

.blog-list .head a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 154, 222, 0.2),
        transparent
    );
    transition: all 0.6s;
}

.blog-list .head a:hover {
    border-color: #009ade;
    color: var(--primary-dark) !important;
    box-shadow: 0 0 20px rgba(0, 154, 222, 0.3);
    transform: translateY(-3px);
}

.blog-list .head a:hover::before {
    left: 100%; 
}

.blog-list .head a span::after {
    content: ' →';
    font-size: 14px;
    opacity: 0;
    margin-left: -10px;
    transition: all 0.3s ease;
}

.blog-list .head a:hover span::after {
    opacity: 1;
    margin-left: 10px;
}

.blog-list .item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(5px);
    padding: 25px !important;
    margin-bottom: 30px !important;
    border-radius: 20px !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-list .item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 154, 222, 0.3) !important;
    transform: translateX(15px) translateY(-5px);
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.2);
}


.blog-list .item h5 a {
    color: var(--primary-dark)!important; 
}

.blog-list .item .info .date span {
    color: rgba(0, 26, 104, 0.6) !important;
}

.blog-list .item .img {
    width: 260px !important; 
    height: 180px !important;
    border-radius: 20px !important;
    overflow: hidden;
}

.blog-list .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.blog-list .item:hover .img img {
    transform: scale(1.1);
}

/* 4. İçerik ve Yazılar */
.blog-list .item .cont {
    padding-left: 40px !important;
}

.blog-list .item .info {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--primary-dark);
}

.blog-list .item .info .date span {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 11px !important;
    letter-spacing: 1px;
}

.blog-list .item .info .tag {
    background: rgba(0, 154, 222, 0.1);
    padding: 4px 12px;
    border-radius: 6px;
    transition: all 0.3s;
}

.blog-list .item .info .tag span {
    color:  --primary-blue !important;
    font-weight: 700 !important;
    font-size: 10px !important;
    letter-spacing: 1px !important;
}

.blog-list .item:hover .info .tag {
    background:  --primary-blue;
}

.blog-list .item:hover .info .tag span {
    color: var(--primary-dark);
}

/* Başlık */
.blog-list .item h5 a {
    font-family: 'Familjen Grotesk', sans-serif !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: var(--primary-dark);
    line-height: 1.4;
    transition: color 0.3s;
}

.blog-list .item:hover h5 a {
    color:  --primary-blue!important;
}

/* Responsive Dokunuş */
@media (max-width: 991px) {
    .blog-list .item {
        flex-direction: column;
    }
    .blog-list .item .img {
        width: 100% !important;
        margin-bottom: 20px;
    }
    .blog-list .item .cont {
        padding-left: 0 !important;
    }
}

/* --- CALLISTO DARK FUSION CTA --- */

.cta-dark-fusion {
    background: #010b1a !important;    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Dolaşan Açık Mavi Gradient (Plasma) */
.cta-plasma-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 154, 222, 0.12) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 0;
    animation: plasmaMove 12s infinite alternate ease-in-out;
}

@keyframes plasmaMove {
    0% { top: -10%; left: -10%; }
    50% { top: 40%; left: 60%; }
    100% { top: 70%; left: 10%; }
}

.cta-sub-tag {
    font-family: 'Familjen Grotesk', sans-serif !important;
    color: var(--primary-blue);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: capitalize !important; /* İlk harfler büyük */
    font-size: 13px;
    margin-bottom: 10px;
}

.cta-title-light {
    font-family: 'Familjen Grotesk', sans-serif !important;
    font-size: clamp(32px, 5vw, 56px) !important;
    font-weight: 800 !important;
    color: #ffffff !important; /* Açık renk başlık */
    line-height: 1.1;
    text-transform: capitalize !important; /* İlk harf büyük */
    margin-bottom: 25px; /* Butona olan yakınlık */
}

.cta-title-light .word, .cta-title-light .char {
    background: transparent !important;
    color: inherit !important;
    -webkit-text-stroke: 0 !important;
}

.cta-btn-proximity {
    margin-top: 10px; 
}

.cta-shimmer-dark-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 16px 45px;
    background: var(--primary-blue);
    color: #fff !important;
    border-radius: 12px;
    font-family: 'Familjen Grotesk', sans-serif !important;
    font-weight: 700;
    font-size: 15px;
    text-transform: capitalize;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 154, 222, 0.3);
}

.cta-dark-fusion h2 span, 
.cta-dark-fusion h2 .char, 
.cta-dark-fusion h2 .word {
    color: var(--light-gray) !important;
    background: transparent !important; 
    
    transition: all 0.3s ease;
}
.cta-shimmer-dark-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmerLoop 4s infinite ease-in-out;
}

@keyframes shimmerLoop {
    0% { left: -150%; }
    30% { left: 150%; }
    100% { left: 150%; }
}

.cta-shimmer-dark-btn i {
    margin-left: 12px;
    font-size: 14px;
    transition: transform 0.3s;
}

.cta-shimmer-dark-btn:hover {
    transform: translateY(-3px);
    background: #fff;
    color: var(--primary-dark) !important;
}

.cta-shimmer-dark-btn:hover i {
    transform: translateX(5px);
}

/* --- CALLISTO PREMIUM FOOTER --- */

footer.sub-bg {
    background: #010b1a !important;
    padding: 80px 0 40px 0;
    position: relative;
}

/* Footer Başlıkları */
footer .item .title h5 {
    font-family: 'Familjen Grotesk', sans-serif !important;
    font-weight: 700;
    color: var(--white);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

footer .item .title h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-blue);
}

/* İletişim Listesi */
footer .item ul li {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

footer .item ul li .icon {
    font-size: 20px;
    color: var(--primary-blue); /* İkonlar açık mavi */
    margin-right: 15px;
    margin-top: 5px;
}

footer .item ul li h6 {
    font-family: 'Familjen Grotesk', sans-serif !important;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5); 
    text-transform: uppercase;
    margin-bottom: 5px;
}

footer .item ul li span, 
footer .item ul li a {
    color: var(--white);
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
}

footer .item ul li a:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

/* Hizmetler Bölümü */
footer .item ul li a {
    position: relative;
    display: block;
    padding: 5px 0;
}

footer .item .logo {
    margin-bottom: 30px;
}
footer .item .logo img {
    filter: drop-shadow(0 0 10px rgba(0, 154, 222, 0.1));
}

footer .item .social {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

footer .item .social a {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: var(--white);
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

footer .item .social a:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 154, 158, 0.2);
    border-color: var(--primary-blue);
}


footer .copy-right {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer .copy-right p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4) !important;
}

footer .copy-right a {
    color: var(--primary-blue);
    font-weight: 600;
}

.fab.text-primary, .fab.text-secondary, .fab.text-danger {
    color: inherit !important;
}


