@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@200;400;700&display=swap" rel="stylesheet');

:root {
    --main-color: #2accd5;
    --secondary-color: #11bdd8;
    --main-color-dark: #520000;
    --black-color: #121212;
    --white-color: #fff;

    --time: 0.3s;
}

* {
    font-family: "Barlow", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: 0;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: none;
    transition: 0.2s ease;
}


html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;

}

html::-webkit-scrollbar {
    width: 0.8rem;
    background-color: white;
}

html::-webkit-scrollbar-thumb {
    background-color: var(--black-color);
}

body {
    background: linear-gradient(to bottom,
            rgba(13, 26, 64, 0.07),
            rgba(13, 26, 64, 0.99));
    /* Üstten alta koyu gradient */
}

section {
    padding: 3.5rem 7%;
}

/* header section css start */
header {
    position: fixed;
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1600px;
    padding: 1rem 2%;
    background: rgba(214, 238, 246, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(214, 238, 246, 0.4);
    border-radius: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #8a8a8a;
    z-index: 1000;
}

nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5vw;
}

nav a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-weight: 400;
    font-size: clamp(0.9rem, 1.2vw, 1.4rem);
    transition: color 0.3s ease;
}

nav a:hover {
    color: #00bedc;
}


.header .buttons button {
    color: var(--main-color);
    cursor: pointer;
    font-size: 2.5rem;
    margin-left: 3rem;
    background-color: transparent;
}

header .logo img {
    width: 5rem;
    height: 5rem;
    object-fit: contain;
    margin-left: 5rem;
}


/* header section css end */

.heading {
    color: black;
    text-transform: uppercase;
    text-align: center;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 3.5rem;
    border-bottom: 0.5rem solid black;
    border-radius: 5px;
}

.footing {
    color: black;
    text-transform: uppercase;
    text-align: center;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 3.5rem;
    border-bottom: 0.5rem solid black;
}

.btn {
    font-size: 2rem;
    font-weight: 700;
    background: rgba(214, 238, 246, 0.2);
    color: black;
    padding: 2rem 3.75rem;
    border-radius: 30rem;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 2px solid rgba(214, 238, 246, 0.4);

    display: inline-block;
    padding: 2rem 3.75rem;
    font-size: 1.7rem;
    cursor: pointer;

    box-shadow:
        0 0 10px rgba(0, 190, 220, 0.4),
        0 0 20px rgba(0, 190, 220, 0.2);
    transition: box-shadow 0.3s ease;
}

.btn a {
    color: black;
}

.btn:hover {
    box-shadow:
        0 0 15px rgba(0, 190, 220, 0.6),
        0 0 30px rgba(0, 190, 220, 0.4);
}

.sidebar {
    position: fixed;
    top: 75px;
    right: 0;
    height: auto;
    width: 255px;
    z-index: 9999 !important;
    color: white;
    padding: 2rem 1.75rem;
    border-radius: 2.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(20, 20, 20, 0.8);
    border: 2px solid rgba(0, 0, 0);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: black;

}


.sidebar a {
    font-size: 2rem;
    margin: 1.75rem;
    color: #fff;
    width: 100%;
}

#menu-btn i {
    font-size: 2.5rem;
    border: none;
    display: none;
}

#menu-btn {
    background: none;
    color: rgb(0, 0, 0);
    align-items: center;
}

@media(max-width: 800px) {
    .hideOnMobile {
        display: none;
    }

    #menu-btn i {
        display: flex;
    }
}

@media(max-width: 420px) {
    .mySwiper {
        max-width: 25rem;
        max-height: 25rem;
    }
}

/* home section css start */

.home {
    min-height: 90vh;
    background: url(../images/home_background.png) no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: -14.5rem;
    display: flex;
    align-items: center;
}

.home .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    margin: 0 auto;
    padding: 2rem;
    gap: 2rem;
    align-items: center;
    margin-top: 15rem;
}

.home .container>div {
    display: flex;
    align-items: center;
    height: 100%;
}

.home .container .notes-container .notes {
    margin: 2rem;
}

.notes-container #notes1 {
    opacity: 0;
    transform: translateY(50px);
    /* Aşağıdan başlasın */
    animation: slideIn 0.8s ease-out forwards;
    animation-delay: 0.4s;
    /* İsteğe bağlı gecikme */
}

.notes-container #notes2 {
    opacity: 0;
    transform: translateY(55px);
    /* Aşağıdan başlasın */
    animation: slideIn 0.8s ease-out forwards;
    animation-delay: 0.45s;
    /* İsteğe bağlı gecikme */
}

.notes-container #notes3 {
    opacity: 0;
    transform: translateY(60px);
    /* Aşağıdan başlasın */
    animation: slideIn 0.8s ease-out forwards;
    animation-delay: 0.5s;
    /* İsteğe bağlı gecikme */
}

.notes-container #notes4 {
    opacity: 0;
    transform: translateY(65px);
    /* Aşağıdan başlasın */
    animation: slideIn 0.8s ease-out forwards;
    animation-delay: 0.55s;
    /* İsteğe bağlı gecikme */
}

.title2 {
    opacity: 0;
    transform: translateX(-100px);
    /* Aşağıdan başlasın */
    animation: slideIn 0.8s ease-out forwards;
    animation-delay: 0.3s;
    /* İsteğe bağlı gecikme */
}


@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .home .container {
        grid-template-columns: 1fr;
    }

    .home .container .title {
        margin-top: 3rem;
    }

    .home .container .title2 {
        margin-top: 4.5rem;
    }

    .home .container .content {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .home .content,
    .content2 {
        flex-wrap: wrap;
    }

}

.home .content,
.content2 {
    justify-content: flex-start;
    gap: 2rem;
    /* sola yasla */
}

.home .media,
.image {
    justify-content: flex-end;
    /* sağa yasla */
}


.home .container .title {
    max-height: 20rem;
    background: rgba(13, 26, 64, 0.1);
    color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(214, 238, 246, 0.2);
}

.home .container .title2 {
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 20rem;
    background: rgba(13, 26, 64, 0.1);
    color: white;
    padding: 0.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(214, 238, 246, 0.2);
}

.home .container .title2 img {
    width: 30rem;
    height: 30rem;

}

.home .container .notes {
    max-height: 20rem;
    background: rgba(214, 238, 246, 0.1);
    color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(214, 238, 246, 0.2);
}

.home .content h3 {
    font-size: 6.5rem;
    margin: 1rem;
}

.home .content p {
    font-size: 2rem;
    margin: 1rem;

}

@media (max-width: 1024px) {}

/* home section css end */

/* specialities section css start */
.specialities {
    display: flex;
    margin: 0 auto;
    padding: 2rem;
    gap: 3.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.specialities .box {
    background: rgba(214, 238, 246, 0.1);
    color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 3px solid rgba(214, 238, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.8rem;
    width: fit-content;

    box-shadow:
        0 0 10px rgba(13, 26, 64, 0.4),
        0 0 20px rgba(13, 26, 64, 0.3),
        0 0 40px rgba(13, 26, 64, 0.2);
    transition: box-shadow 0.3s ease;
}

.specialities .box:hover {
    /* Hover’da parlamayı artırmak istersen: */
    box-shadow:
        0 0 15px rgba(13, 26, 64, 0.6),
        0 0 30px rgba(13, 26, 64, 0.5),
        0 0 60px rgba(13, 26, 64, 0.4);
}

.specialities .box .content {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black-color);
    max-width: 10rem;
    text-align: center;
}

.specialities img {
    height: 10rem;
    width: auto;
    object-fit: cover;
}

/* specialities section css end */

/* aboutus2 section css start */
.aboutus2 .container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.aboutus2 .container .right,
.left {
    padding: 1rem;
    border-radius: 0.5rem;
}

.aboutus2 .container .middle {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    /* veya min-height: 100vh; */
}

.aboutus2 .container .middle .btn a {
    color: black;
}

.aboutus2 .container .middle .contents {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* İçerikleri düşeyde ortala */
    align-items: center;
    gap: 5rem;
    /*responsive'de düşür*/
    height: 100%;
}

.aboutus2 .container .middle .contents .content {
    padding: 1.5rem;
    gap: 2rem;
    font-size: 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    background: rgb(214, 238, 246, 0.1);
    border: 1px solid rgba(214, 238, 246, 0.2);
    box-shadow: 0 0.5rem 2rem rgba(13, 26, 64, 0.3),
}

.aboutus2 .container .top {
    display: none;

}

@media (max-width: 1024px) {
    .aboutus2 .container img {
        height: 30rem;
        width: auto;
    }
}

@media (max-width: 768px) {

    .aboutus2 .container .left {
        display: none;

    }

    .aboutus2 .container .right {
        display: none;
    }

    .aboutus2 .container .top {
        display: flex;
        justify-content: center;
    }

    .aboutus2 .container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: start;
    }

}


@media (max-width: 625px) {
    .aboutus2 .container img {
        height: 18rem;
        width: auto;
    }
}

@media (max-width: 480px) {
    .aboutus2 .container img {
        height: 17rem;
        width: auto;
    }
}

/* aboutus2 section css end */

/* acts section css start */
.acts .mini {
    display: flex;
    margin: 0 auto;
    padding: 2rem;
    gap: 3.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.acts .mini .box {
    background: rgba(214, 238, 246, 0.1);
    color: white;
    padding: 1rem;
    border-radius: 1rem;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 3px solid rgba(214, 238, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.8rem;
    width: fit-content;
    box-shadow:
        0 0 10px rgba(13, 26, 64, 0.4),
        0 0 20px rgba(13, 26, 64, 0.3),
        0 0 40px rgba(13, 26, 64, 0.2);
    transition: box-shadow 0.3s ease;
}


.acts .mini .box:hover {
    /* Hover’da parlamayı artırmak */
    box-shadow:
        0 0 15px rgba(13, 26, 64, 0.6),
        0 0 30px rgba(13, 26, 64, 0.5),
        0 0 60px rgba(13, 26, 64, 0.4);
}

.acts .mini .box .content {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black-color);
    max-width: 10rem;
    text-align: center;
}

.acts .mini img {
    height: 6.5rem;
    width: auto;
    object-fit: cover;
}

.gallery {
    display: grid;
    grid-template-rows: repeat(5, 18vh);
    grid-template-columns: repeat(2, 45vw);
    transition: all var(--time) ease-in-out;

    border-radius: 10px;
    padding: 0.25em;
    cursor: zoom-in;

    background: rgba(214, 238, 246, 0.1);
    color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(214, 238, 246, 0.2);

    justify-content: center;
}

.acts .btn-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}



@media (min-width: 40em) {
    .gallery {
        grid-template-rows: repeat(2, 20vh);
    }
}

@media (min-width: 10em) and (orientation: landscape) {
    .gallery {
        grid-template-columns: repeat(5, 18vw);
        grid-template-rows: repeat(2, 45vh);
    }
}

@media (min-width: 60em) {
    .gallery {
        grid-template-columns: repeat(10, 8vw);
        grid-template-rows: 25vh;
    }
}

.gallery img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transition: all calc(var(--time) / 2) ease-in-out;
    position: relative;
    box-shadow: 0 0 0 #0000;
    opacity: 1;
    filter: none;
}

.gallery img:first-child {
    border-radius: 10px 10px 0 0;
}

.gallery img:last-child {
    border-radius: 0 0 10px 10px;
}

@media (min-width: 40em) and (max-width: 59.99em) {
    .gallery img:first-child {
        border-radius: 10px 0 0 0;
    }

    .gallery img:nth-child(5) {
        border-radius: 0 10px 0 0;
    }

    .gallery img:nth-child(6) {
        border-radius: 0 0 10px 0;
    }

    .gallery img:last-child {
        border-radius: 0 0 0 10px;
    }
}

@media (min-width: 60em) {
    .gallery img:first-child {
        border-radius: 10px 0 0 10px;
    }

    .gallery img:last-child {
        border-radius: 0 10px 10px 0;
    }
}

.gallery img:hover {
    opacity: 1;
    z-index: 1;
    box-shadow: 1em 1em 1em #0004;
    transition: all var(--time) ease-in-out;
    filter: sepia(0%) hue-rotate(0deg);
    border-radius: 5px;
    width: 300%;
    height: 300%;
    left: -100%;
    top: -100%;
}

@media (min-width: 40em) {
    .gallery img:hover {
        width: 250%;
        height: 500%;
        left: -75%;
        top: -200%;
    }
}

@media (min-width: 10em) and (orientation: landscape) {
    .gallery img:hover {
        width: 250%;
        height: 200%;
    }
}

@media (min-width: 40em) and (orientation: portrait) {
    .gallery img:hover {
        width: 300%;
        height: 300%;
        left: -100%;
        top: -100%;
    }
}

@media (min-width: 60em) {
    .gallery img:hover {
        width: 350%;
        height: 150%;
        left: -75%;
        top: -25%;
    }
}

@media (min-width: 60em) and (orientation: landscape) {
    .gallery img:hover {
        width: 300%;
        height: 300%;
        left: -75%;
        top: -100%;
    }
}

.media-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 179, 126, 0.2) 0%, rgba(44, 52, 71, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.gallery-overlay p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Modern Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(214, 238, 246, 0.1);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.lightbox-img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(201, 179, 126, 0.6);
    transition: transform 0.3s ease;
    animation: imageZoomIn 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes imageZoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    color: #C9B37E;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(44, 52, 71, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(201, 179, 126, 0.3);
}

.close:hover {
    background: rgba(201, 179, 126, 0.9);
    color: white;
    transform: scale(1.1);
}

/* Modern Banner Slider Section */
.test {
    margin: 8rem 0;
    padding: 0 2rem;
}

.banner-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.banner-title {
    text-align: center;
    margin-bottom: 3rem;
}

.banner-title h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #C9B37E 0%, #2C3447 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.banner {
    width: 100%;
    height: 25rem;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #2C3447 0%, #1a1f2e 100%);
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    border: 2px solid rgba(201, 179, 126, 0.3);
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(201, 179, 126, 0.1) 0%, transparent 50%, rgba(44, 52, 71, 0.1) 100%);
    z-index: 1;
}

.slider {
    display: flex;
    width: max-content;
    animation: modernSlide 12s linear infinite;
    position: relative;
    z-index: 2;
}

.slider img {
    height: 22rem;
    width: auto;
    object-fit: cover;
    margin-right: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 2px solid rgba(201, 179, 126, 0.4);
}

.slider img:hover {
    transform: scale(1.05);
}

/* Modern Animasyon */
@keyframes modernSlide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Slider'a pause on hover efekti */
.banner:hover .slider {
    animation-play-state: paused;
}

/* acts section css end */

/*cities-to-serve*/
.cities-to-serve .container {
    display: flex;
}

.cities-to-serve .left-container {
    margin: 2rem;
}

.cities-to-serve .right-container {
    margin: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.cities-to-serve .right-container .content p {
    font-size: 2rem;
}
.cities-to-serve .right-container .content{
    width: 20rem;
    height: 16rem;
    margin: 2rem;
    margin-left: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-height: 20rem;
    background: rgba(13, 26, 64, 0.1);
    color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(214, 238, 246, 0.2);
}

.cities-to-serve .left-container .image img {
    width: 65rem;
    height: auto;
    object-fit: cover;
    object-position: center 65%;

    /* WebKit (Safari/Chrome) */
    -webkit-mask-image:
        linear-gradient(to right, transparent 0%, black 10%, black 80%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 10%, black 80%, transparent 100%);
    -webkit-mask-composite: destination-in;

    /* Standart tanımlar */
    mask-image:
        linear-gradient(to right, transparent 0%, black 10%, black 80%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 10%, black 80%, transparent 100%);
    mask-composite: destination-in;

    mask-repeat: no-repeat;

    opacity: 0;
    transform: translateX(100px);
    animation: slideFade 10s ease-in-out infinite;
}


@keyframes slideFade {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }

    50% {
        opacity: 1;
        transform: translateX(0px);
    }

    95% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateX(100px);
    }
}

@media (max-width: 1024px) {
  .cities-to-serve .container {
    flex-wrap: wrap;
  }
}
@media (max-width: 900px) {
  .cities-to-serve .container .left-container .image img{
    width: 50rem;
  }
}
@media (max-width: 728px) {
  .cities-to-serve .container .left-container .image img{
    width: 45rem;
  }
}
@media (max-width: 600px) {
  .cities-to-serve .container .left-container .image img{
    width: 35rem;
  }
}
@media (max-width: 480px) {
  .cities-to-serve .container .left-container .image img{
    width: 25rem;
  }
}
@media (max-width: 350px) {
  .cities-to-serve .container .left-container .image img{
    width: 20rem;
  }
}


/*cities-to-serve*/


/* faq section css start */
.faqs {
    background-image: url(../images/bg2faq.png);
    background-position: center -30px;
}

.faqs .btn-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.faqs .container {
    margin: 0 auto;
    padding: 40px;
    padding-right: 70px;
    width: 700px;

    background: rgba(214, 238, 246, 0.1);
    color: black;
    border-radius: 1rem;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border: 1px solid rgba(214, 238, 246, 0.2);
}

.faq-question {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 10px 30px 10px 10px;
    font-size: 18px;
    font-weight: 400;
    border-bottom: 1px solid;
    line-height: 30px;
}

.faq-question:hover,
.faq-question:hover::after {
    cursor: pointer;
    font-weight: bold;
}

.faq-question.active {
    border-bottom: 3px solid;
    font-weight: bold;
}

.faq-question::after {
    content: '+';
    position: absolute;
    float: right;
    right: 1rem;
    font-size: 30px;
    width: 30px;
    height: 30px;
    text-align: center;
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    opacity: 0;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.2s ease 0.15s;
    font-size: 1.5rem;
}

.faq-answer.active {
    opacity: 1;
    padding: 20px;
    max-height: 100%;
    transition: all 0.35s ease 0.15s;
}

/* faq section css end */


/* plugins start */


.mySwiper {
    max-width: 45rem;
    max-height: 45rem;
    border-radius: 2.5rem;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--swiper-theme-color);
}

.autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 4px;
    stroke: var(--swiper-theme-color);
    fill: none;
    stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
}

@media(max-width: 768px) {
    .mySwiper {
        max-width: 35rem;
        max-height: 35rem;
    }
}

@media(max-width: 420px) {
    .mySwiper {
        max-width: 25rem;
        max-height: 25rem;
    }
}

@media(max-width: 330px) {
    .mySwiper {
        max-width: 15rem;
        max-height: 15rem;
    }
}

/* plugins end */

footer {

    object-fit: contain;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-section {
    background-image: url("../images/footer-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 3rem 1rem;
}

.footer {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background-color: rgba(214, 238, 246, 0.1);
    border: 1px solid rgba(214, 238, 246, 0.2);
    border-radius: 8rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 2rem;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer .blur-tab {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-color: rgba(214, 238, 246, 0.1);
    border: 1px solid rgba(214, 238, 246, 0.2);
    border-radius: 2rem;
    max-width: 1600px;
    padding: 2rem;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.logo-tab {
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.2rem;
    /* kutunun iç boşluğunu minimal tut */
    background-color: rgba(13, 26, 64, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(13, 26, 64, 0.3);
    border-radius: 1.5rem;
    height: auto;
    width: auto;
    margin: 0;
}

.logo-tab img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10rem;
    height: 10rem;
}

.blur-tab.logo-tab {
    background-color: rgba(13, 26, 64, 0.1);
    border: 1px solid rgba(13, 26, 64, 0.3);
    box-shadow: 0 0 40px rgba(13, 26, 64, 0.6);
    transition: box-shadow 0.1s ease-in-out;
}




.f-logo {
    font-size: 2.5rem;
    letter-spacing: 2px;
    padding: 0;
    margin: 0;
    line-height: 1;
    /* metne tam otursun */
    color: white;
    background: none;
    border: none;
    height: auto;
    width: auto;
}



.up-section,
.down-section {
    display: flex;
    justify-content: space-between;
    padding: 3% 0px;
    margin: 5px;
    width: 80%;
    flex-wrap: wrap;
}

.up-section {
    border-bottom: 1px solid #545562;
}

.up-section ul,
.down-section ul {
    margin: 0;
    padding: 0 20px;
}

.up-section ul li a,
.down-section ul li a {
    font-size: 16px;
    color: #FFFFFF;
    transition: all ease .5s;
}

.up-section ul li a:hover,
.down-section ul li a:hover {
    color: #9A9FF6;
}

.up-section ul li p,
.down-section ul li p {
    font-size: 14px;
    color: #FFFFFF;
    line-height: 10px;
    transition: all ease .5s;
}

.up-section h1,
.down-section h1 {
    color: #2a2a2a;
    font-size: 20px;
}

.social-icons {
    display: flex;
}

.social-icons a {
    width: 35px;
    height: 35px;
    margin: 0 5px;
    background-color: #424356;

    padding: 0.15rem;
    background-color: rgba(214, 238, 246, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(214, 238, 246, 0.2);
    border-radius: 2.5rem;

    margin: 0.2rem;

    box-shadow: 2px 2px 12px rgba(0, 0, 0, .1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all ease .5s;
}

.social-icons a:hover {
    background-color: #9A9FF6;
}

.social-icons i {
    color: #FFFFFF;
    font-size: 14px;
}

.social-icons a:hover i {
    color: #424356;
}


.copyright {
    font-size: 20px;
    color: #B3B3B3;
}

.copyright a {
    color: white;
}


@media(max-width: 820px) {

    .up-section,
    .down-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .up-section ul h1,
    .down-section ul h1 {
        font-size: 25px;
    }

    .up-section ul li,
    .down-section ul li {
        text-align: center;
        margin: 10px;
    }
}

@media(max-width: 420px) {
    .copyright {
        font-size: 14px;
    }

    .f-logo {
        font-size: 16px;
    }
}

/**/

@media (max-width: 900px) {
    .faqs .container {
        padding: 30px 50px;
        width: auto;
    }
}

@media (max-width: 768px) {
    .faqs .container {
        padding: 30px 50px;
        width: auto;
    }

    .faq-question {
        font-size: 1.6rem;
        padding: 10px 20px;
    }

    .faq-answer {
        font-size: 1.4rem;
        padding: 10px 20px;
    }

    .faq-question::after {
        font-size: 24px;
        right: 0.5rem;
    }
}

@media (max-width: 480px) {
    .faqs .container {
        width: auto;
    }

    .faq-question {
        font-size: 1.5rem;
        padding: 8px 15px;
    }

    .faq-answer {
        font-size: 1.3rem;
        padding: 10px 15px;
    }

    .faq-question::after {
        font-size: 22px;
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 980px) {
    .test99 {
        display: initial !important;
        font-size: initial !important;
        background: none !important;
        /* istediğin kadar özellik ekle */
    }
}

.content-maintenance {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
}

.content-maintenance h3 {
    font-size: 5rem;
    color: black;
}

.specialities #spbox1 {
    opacity: 0;
    transform: translateX(-100px);
    /* Aşağıdan başlasın */
    animation: slideIn 0.8s ease-out forwards;
    animation-delay: 0.3s;
    /* İsteğe bağlı gecikme */
}

.specialities #spbox2 {
    opacity: 0;
    transform: translateX(-100px);
    /* Aşağıdan başlasın */
    animation: slideIn 0.8s ease-out forwards;
    animation-delay: 0.2s;
    /* İsteğe bağlı gecikme */
}

.specialities #spbox3 {
    opacity: 0;
    transform: translateX(100px);
    /* Aşağıdan başlasın */
    animation: slideIn 0.8s ease-out forwards;
    animation-delay: 0.2s;
    /* İsteğe bağlı gecikme */
}

.specialities #spbox4 {
    opacity: 0;
    transform: translateX(100px);
    /* Aşağıdan başlasın */
    animation: slideIn 0.8s ease-out forwards;
    animation-delay: 0.3s;
    /* İsteğe bağlı gecikme */
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
}

.my-float {
    margin-top: 16px;
}

.contact-section {
    padding: 10rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
}

.contact-card {
    width: 800px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
    padding: 5rem 4rem;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    text-align: left;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.7);
}

.contact-logo {
    font-size: 3.5rem;
    font-weight: 800;
    color: #9A9FF6;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.icon-block {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 2.2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.icon-block:last-child {
    border-bottom: none;
}

.icon-block:hover {
    background-color: rgba(255, 255, 255, 0.07);
}

.icon-block i {
    font-size: 2.5rem;
    color: #9A9FF6;
    transition: transform 0.3s ease, color 0.3s ease;
}

.icon-block:hover i {
    transform: scale(1.2);
    color: #ffffff;
}

.icon-block span {
    flex: 1;
    font-size: 2.1rem;
    line-height: 1.4;
    word-break: break-word;
}

@media (max-width: 768px) {
    .contact-card {
        width: 90%;
        padding: 3rem 2rem;
        gap: 2rem;
    }

    .contact-logo {
        font-size: 3rem;
        text-align: center;
    }

    .icon-block {
        font-size: 1.8rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .icon-block i {
        font-size: 2rem;
    }

    .icon-block span {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 2rem;
    }

    .contact-logo {
        font-size: 2.4rem;
    }

    .icon-block span {
        font-size: 1.5rem;
    }
}