*{ padding:0;
	margin:0;
}
	
	
	
.carousel {
    width: 100vw;
    height: 100vh;
    
    overflow: hidden;
    position: relative;
}

    .carousel .list .item {
        width: 150px;
        height: 200px;
        position: absolute;
        top: 80%;
        transform: translateY(-70%);
        left: 70%;
        border-radius: 20px;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        background-position: 50% 50%;
        background-size: cover;
        z-index: 100;
        transition: 1s;
    }

@keyframes zoomEffect {
    0% {
        background-size: 100% 100%;
    }

    50% {
        background-size: 150% 150%;
    }

    100% {
        background-size: 100% 100%;
    }
}


/* 1. ve 2. item: b?y?k tam ekran */
.carousel .list .item:nth-child(1),
.carousel .list .item:nth-child(2) {
    animation: zoomEffect 12s ease-in-out infinite;
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}


/* 3. item: sa?da k???k ?nizleme */
.carousel .list .item:nth-child(3) {
    top: 80%; /* dikey ortala */
    left: 70%; /* sa?a kayd?r */
    transform: translateY(-50%); /* ortalama d?zeltme */
    width: 250px;
    height: 150px;
    border-radius: 12px;
}





.list .item .content {
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    width: 400px;
    text-align: left;
    color: #fff;
    display: none;
}

.list .item:nth-child(2) .content {
    display: block;
}

.content .title {
    font-size: 50px;
    text-transform: uppercase;
    color: whitesmoke;
    font-weight: 900;
   line-height: 1; 
    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
}

.content .name {
    font-size: 30px;
    margin: 5px 0px 5px 0px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1;
    color: whitesmoke;
    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
}

.content .des {
    margin-top: 10px;
    margin-bottom: 20px;
    color: whitesmoke;
    font-size: 20px;
    margin-left: 5px;
    opacity: 0;
    animation: animate 1s ease-in-out 0.9s 1 forwards;
    padding: 10px 15px;
    border-radius: 10px;
    display: inline-block;
}



.content .btn {
    margin-left: 5px;
    opacity: 0;
    animation: animate 1s ease-in-out 1.2s 1 forwards;
}

    .content .btn button {
        padding: 10px 20px;
        border: none;
        background-color: #000F1F;
        color: white;
        cursor: pointer;
        font-size: 16px;
        border: 2px solid #fff;
    }

        .content .btn button:nth-child(1) {
            margin-right: 15px;
        }

        .content .btn button:nth-child(2) {
            background: transparent;
            color: #0066CC;
            border: 2px solid #fff;
            transition: 0.3s;
        }

            .content .btn button:nth-child(2):hover {
                background-color: #001224;
                color: #fff;
                border-color: #14ff72cb;
            }


@keyframes animate {

    from {
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to {
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}

/* Carousel */






/* next prev arrows */

.arrows {
    position: absolute;
    top: 80%;
    right: 52%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}

    .arrows button {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: #001224;
        color: #fff;
        border: none;
        outline: none;
        font-size: 16px;
        font-family: monospace;
        font-weight: bold;
        transition: .5s;
        cursor: pointer;
    }

        .arrows button:hover {
            background: #fff;
            color: #000;
        }


/* time running */
.carousel .timeRunning {
    position: absolute;
    z-index: 1000;
    width: 0%;
    height: 4px;
    background-color: #2196CD;
    left: 0;
    top: 0;
    animation: runningTime 7s linear 1 forwards;
}
@keyframes runningTime {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

section {
    padding: 80px 0;
    text-align: center;
    color: white;
}

    section h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    section p {
        font-size: 18px;
        max-width: 700px;
        margin: 0 auto;
    }

.hero-intro {
    padding: 56px 0;
    background: linear-gradient(180deg, rgba(11,35,64,0.03), transparent);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 28px;
    align-items: center;
}

.intro-text h2 {
    font-size: 22px;
    font-weight: 700;
    color: white;
}

.intro-text p {
    color: white;
    line-height: 1.6;
    margin-bottom: 10px;
}

.intro-image {
    height: 260px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(11,35,64,0.12);
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.stat .num {
    font-size: 20px;
    font-weight: bold;
}

.stat .label {
    font-size: 18px;
    margin-top: 10px;
}

.section-title {
    font-size: 36px;
   margin-bottom: 60px;
    color: white;
    position: relative;
}

    .section-title::after {
        content: '';
        width: 60px;
        height: 4px;
        background: #0074E8;
        display: block;
        margin: 10px auto 0;
        border-radius: 2px;
    }

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s ease;
    position: relative;
}

    .service-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .service-card:hover img {
        transform: scale(1.08);
    }

    .service-card h3 {
        font-size: 24px;
        font-weight:bold;
        margin: 20px 0 10px;
        color:whitesmoke
    }

    .service-card p {
        color:whitesmoke;
        font-size: 16px;
        padding: 0 20px 20px;
    }

    .service-card:hover {
        transform: translateY(-10px);
    }

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }
.btn.primary {
    padding: 10px 20px;
    border: none;
    background-color: #000F1F;
    color: white;
    cursor: pointer;
    font-size: 16px;
    border: 2px solid #fff;
    transition: 0.3s;
}

    .content .btn button:hover,
    .btn.primary:hover {
        background-color: #001224;
        color: #fff;
        border-color: #14ff72cb;
    }
/* ======== MOB?L D?ZENLEMELER ======== */
@media screen and (max-width: 768px) {
    .btn.primary {
        padding: 10px 20px;
        border: none;
        background-color: #000F1F;
        color: white;
        cursor: pointer;
        font-size: 16px;
        border: 2px solid #fff;
        transition: 0.3s;
    }

        .content .btn button:hover,
        .btn.primary:hover {
            background-color: #001224;
            color: #fff;
            border-color: #14ff72cb;
        }
        a{
            text-decoration:none;
        }
    .carousel {
        height: 100vh;
    }

        .carousel .list .item,
        .carousel .list .item:nth-child(1),
        .carousel .list .item:nth-child(2) {
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
            transform: none;
            border-radius: 0;
            background-size: cover;
            background-position: center;
        }

    .list .item .content {
        left: 5%;
        width: 90%;
        text-align: left;
        line-height:1.5;
    }

    .content .title {
        font-size: 22px;
        color:whitesmoke;
        line-height: 1.2;
    }

    .content .name {
        font-size: 19px;
    }

    .content .des {
        font-size: 13px;
        display: block;
    }

    .content .btn button,
    .btn.primary {
        font-size: 14px;
        padding: 8px 15px;
    }

    .arrows {
        top: auto;
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
    }

        .arrows button {
            width: 40px;
            height: 40px;
        }

    .intro-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .intro-image {
        height: 180px;
        margin-top: 5px;
    }

    .stats-grid {
        flex-direction: column;
        
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card img {
        height: 180px;
    }
    .service-card h3 {
        font-size: 20px;
        margin: 20px 0 10px;
        color:whitesmoke;
        font-weight:bold;
    }

    .service-card p {
        font-size: 12px;
        color:whitesmoke;

        padding: 0 20px 20px;
    }

    .section-title {
        font-size: 26px;
		margin-bottom: 40px; 
       
    }

    .content .des {
        background: rgba(0, 0, 0, 0.5);
    }
}









        





