@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --color-primary: #7380ec;
    --color-danger: #ff7782;
    --color-success: #41f1b6;
    --color-warning: #ffbb55;
    --color-white: #fff;
    --color-info-dark: #7d8da1;
    --color-info-light: #dce1eb;
    --color-dark: #363949;
    --color-light: rgba(132, 139, 200, 0.18);
    --color-primary-variant: #111e88;
    --color-dark-variant: #677483;
    --color-background: #f4f4f4;
    --color-background-image-1: url(../assets/img/bg-1.jpg);
    --color-background-image-2: url(../assets/img/bg-2.jpg);
    --color-background-image-3: url(../assets/img/bg-3.jpg);
    --color-background-image-4: url(../assets/img/bg-4.jpg);
    --color-background-image-5: url(../assets/img/bg-5.jpg);
    --color-background-image-6: url(../assets/img/bg-6.jpg);
    --color-background-image-7: url(../assets/img/bg-7.jpg);
    --color-background-image-8: url(../assets/img/bg-8.jpg);
    --color-background-image-9: url(../assets/img/bg-9.jpg);
    --color-background-image-10: url(../assets/img/bg-10.jpg);
    --card-border-radius: 2rem;
    --border-radius-1: 0.4rem;
    --border-radius-2: 0.8rem;
    --border-radius-3: 1.2rem;
    --card-padding: 1.8rem;
    --padding-1: 1.2rem;
    --button-padding: 0.3rem 0.6rem;
    --box-shadow: 0 2rem 3rem var(--color-light);
    --font-size-title: 22px;
    --line-height-title: 1.4;
    --font-size-caption: 14px;
    --line-height-caption: 1.2;
    --color-text: #222022;
    --color-highlight-primary: #FFEF7E;
    --color-highlight-secondary: #B7F9E9;
    --border-radius-primary: 32px;
}

* {
    margin: 0;
    padding: 0;
    outline: 0;
    appearance: none;
    border: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}



body {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 0.88rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: var(--color-dark);
    overflow: auto;
}




@keyframes gradient {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 100%;
    }

    100% {
        background-position: 0% 0%;
    }
}

.wave {
    background: rgb(255 255 255 / 25%);
    border-radius: 1000% 1000% 0 0;
    position: fixed;
    width: 200%;
    height: 12em;
    animation: wave 10s -3s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.8;
    bottom: 0;
    left: 0;
    z-index: -1;
}

    .wave:nth-of-type(2) {
        bottom: -1.25em;
        animation: wave 18s linear reverse infinite;
        opacity: 0.8;
    }

    .wave:nth-of-type(3) {
        bottom: -2.5em;
        animation: wave 20s -1s reverse infinite;
        opacity: 0.9;
    }

@keyframes wave {
    2% {
        transform: translateX(1);
    }

    25% {
        transform: translateX(-25%);
    }

    50% {
        transform: translateX(-50%);
    }

    75% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(1);
    }
}



a {
    color: var(--color-dark);
}

img {
    display: block;
    width: 100%;
}

h1 {
    font-weight: 800;
    font-size: 1.8rem;
}

h2 {
    font-size: 1.4rem;
}

h3 {
    font-size: 0.87rem;
}

h4 {
    font-size: 0.8rem;
}

h5 {
    font-size: 0.77rem;
}

small {
    font-size: 0.75rem;
}

.text-muted {
    color: var(--color-info-dark);
}

p {
    color: var(--color-dark-variant);
}

b {
    color: var(--color-dark);
}

.primary {
    color: var(--color-primary);
}

.danger {
    color: var(--color-danger);
}

.warning {
    color: var(--color-warning);
}

.success {
    color: var(--color-success);
}

.white {
    color: var(--color-white);
}

.dark {
    color: var(--color-dark);
}

.light {
    color: var(--color-light);
}




.card {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 50px rgba(0, 0, 0, 0.219);
    text-align: center;
    max-width: 600px;
    overflow: auto;
    z-index: 1;
}

.card-footer {
    background-color: black;
    border-radius: 0 0 15px 15px;
    padding: 20px;
    margin: 0 -20px -20px -20px;
    box-shadow: 0 8px 50px rgba(0, 0, 0, 0.219);
    text-align: center;
    max-width: 600px;
}

    .card-footer img {
        width: 100px;
    }

    .card-footer .copyright-info {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

        .card-footer .copyright-info small {
            color: white;
            font-size: 12px;
        }

.card .card-head {
    margin: -20px -20px -75px -20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card .video_bg {
    margin: -20px -20px -75px -20px;
}

    .card .video_bg video {
        width: 100%;
        height: 300px;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        object-fit: cover;
    }

.card .card-head img {
    width: 100%;
    height: 300px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.profile-pic1 {
    position: relative;
    display: inline-block;
}

    /*.profile-pic1{
    display: flex;
    align-items: center;
    justify-content: center;
    
}*/
    /*    .profile-pic1 img {
        width: 140px;
        height: 140px;
        border-radius: 50%;
        margin-bottom: 15px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border: 5px solid white;
    }*/
    /*.profile-pic1 img {
        width: 140px;
        height: 140px;
        border-radius: 50%;
        margin-bottom: 15px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
    /*        border: 5px solid white;
*/ /*position: relative;
    }*/

    /* Dalga Animasyonu */
    /*.profile-pic1::before {
        content: "";
        position: absolute;
        top: 45%;
        left: 50%;
        width: 140px;
        height: 140px;
        border-radius: 50%;
        border: 15px solid rgb(193 193 193);
        transform: translate(-50%, -50%);
        animation: pulse 2s infinite ease-in-out;
    }*/

    /* Dalga Yayılma Animasyonu */
    /*@keyframes pulse {
    0% {
        width: 100px;
        height: 100px;
        opacity: 1;
    }

    100% {
        width: 150px;
        height: 150px;
        opacity: 0;
    }
}*/
    .profile-pic1 img {
        width: 140px;
        height: 140px;
        border-radius: 50%;
        margin-bottom: 15px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        position: relative;
        z-index: 1;
    }



h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 5px;
}

h2 {
    font-size: 18px;
    color: #666;
    margin-bottom: 15px;
}

p {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
    padding: 0 10px;
}

.social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .social-links span {
        color: #000000;
    }

    .social-links a {
        text-decoration: none;
        color: #000000;
        background-color: #ffffff;
        width: 150px;
        height: 70px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 16px;
        margin: 0 5px;
        font-size: 2rem;
    }

    .social-links .btn_ {
        color: #000000;
        background-color: transparent;
        width: 70px;
        height: 70px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        margin: 0 5px;
        font-size: 2rem;
        cursor: pointer;
    }

    .social-links a h2 {
        color: #000;
        transition: all ease .3s;
    }

    .social-links a:hover h2 {
        color: #333;
        transition: all ease .3s;
    }

.custom-links {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.link-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: #f7f7f7;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 130px;
    height: 130px;
    margin: 10px;
}

 .link-box._product {
              
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            background-color: #f7f7f7;
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 10px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            width: 80vw;
            height:auto;
            min-height:100px;
            margin: 10px;
            max-width:560px !important;
        }

    .link-box:hover {
        background-color: #e0e0e0;
    }

    .link-box img {
        width: 70px;
        height: 70px;
        object-fit: cover;
        border-radius: 50%;
        border: 3px solid #b5b5b5;
    }

    .link-box i {
        font-size: 4rem;
        color: #000000;
    }

    .link-box span {
        font-weight: bold;
        font-size: 14px;
        line-height: 1.4;
    }

    .link-box p {
        font-size: 14px;
        color: #666;
    }

/* Modal için arka plan */
#mapModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Yarı saydam arka plan */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

    /* Modal içeriği (Harita ve kapatma butonu) */
    #mapModal iframe {
        border: none;
        padding: 20px;
        width: 100vw;
        height: 100vh;
        background-color: white;
        border-radius: 10px;
    }

    /* Modal içinde kapatma butonu */
    #mapModal button {
        position: absolute;
        top: 20px;
        right: 20px;
        padding: 10px 20px;
        background-color: #ff5c5c;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
        transition: background-color 0.3s;
    }

        #mapModal button:hover {
            background-color: #e04b4b;
        }

    /* Modalın ekranda gizli olduğu durumda (başlangıçta) */
    #mapModal[style*="display: none;"] {
        display: none;
    }
/* Modal için arka plan */
#mapModalGenel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Yarı saydam arka plan */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

    /* Modal içeriği (Harita ve kapatma butonu) */
    #mapModalGenel iframe {
        border: none;
        padding: 20px;
        width: 100vw;
        height: 100vh;
        background-color: white;
        border-radius: 10px;
    }

    /* Modal içinde kapatma butonu */
    #mapModalGenel button {
        position: absolute;
        top: 20px;
        right: 20px;
        padding: 10px 20px;
        background-color: #ff5c5c;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
        transition: background-color 0.3s;
    }

        #mapModalGenel button:hover {
            background-color: #e04b4b;
        }

    /* Modalın ekranda gizli olduğu durumda (başlangıçta) */
    #mapModalGenel[style*="display: none;"] {
        display: none;
    }

/* Modal için arka plan */
#mapModal_ {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Yarı saydam arka plan */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

    /* Modal içeriği (Harita ve kapatma butonu) */
    #mapModal_ iframe {
        border: none;
        padding: 20px;
        width: 100vw;
        height: 100vh;
        background-color: white;
        border-radius: 10px;
    }

    /* Modal içinde kapatma butonu */
    #mapModal_ button {
        position: absolute;
        top: 80px;
        right: 30px;
        padding: 10px 20px;
        background-color: #ff5c5c;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
        transition: background-color 0.3s;
    }

        #mapModal_ button:hover {
            background-color: #e04b4b;
        }

    /* Modalın ekranda gizli olduğu durumda (başlangıçta) */
    #mapModal_[style*="display: none;"] {
        display: none;
    }



/* Modal Arka Planı */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Modal İçerik Kutusu */
.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    width: 80%;
    max-width: 400px;
    text-align: center;
    position: relative;
    border-radius: 1rem;
    transform: scale(0.7);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

/* Kapat Butonu */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 10px;
    top: 10px;
}

    .close:hover,
    .close:focus {
        color: black;
        cursor: pointer;
    }

/* Açılış Animasyonu */
.animate-modal {
    animation: modal-appear 0.3s forwards;
}

/* Kapanış Animasyonu */
.modal-fade-out {
    animation: modal-disappear 0.3s forwards;
}

@keyframes modal-appear {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes modal-disappear {
    from {
        transform: scale(1);
        opacity: 1;
    }

    to {
        transform: scale(0.7);
        opacity: 0;
    }
}


/*menu*/

/* Modal Arka Planı */
.modal-menu {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

/* Menü Modal İçeriği */
.modal-content-menu {
    background-color: #fff;
    margin: 0;
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 325px;
    height: 100%;
    text-align: center;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 2rem 0 0 2rem;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

/* Kapat Butonu */
.close-menu {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
}

    .close-menu:hover {
        color: #333;
    }

/* Açılış ve kapanış animasyonları */
.slide-in-menu {
    animation: slideIn 0.3s forwards;
}

.modal-slide-out-menu {
    animation: slideOut 0.3s forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(100%);
    }
}

/* Menü Genel Stili */
.menu_ {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Menü Kart Stili */
.menu-item {
    width: 80%;
    max-width: 250px;
    text-align: center;
    text-decoration: none;
    color: #333;
    background-color: #f8f9fa;
    padding: 1rem 0;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    /* Menü Hover Efekti */
    .menu-item:hover {
        transform: translateY(-4px);
        box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
        background-color: #e9ecef;
    }

    /* Menü Yazı Stili */
    .menu-item h2 {
        font-size: 1rem;
        font-weight: 600;
        margin: 0;
        color: #007bff;
    }

    .menu-item:hover h2 {
        color: #0056b3;
    }


/* QR Kodu Ortalaması ve Boyut Ayarları */
#qrCodeContainer {
    margin: 0 auto;
    position: relative;
    width: 200px;
    height: 200px;
}

    #qrCodeContainer img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 200px;
        height: 200px;
    }

    #qrCodeContainer canvas {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 200px;
        height: 200px;
    }
/* QR Kodun Altındaki Yazı */
h4 {
    margin-top: 15px;
    font-size: 1.5rem;
    color: #333;
}

p {
    margin-top: 5px;
    color: #666;
    font-size: 1rem;
}

.row_ {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/*video modal*/

.modal- {
    display: none; /* Modal başlangıçta gizlenir */
    position: fixed;
    z-index: 1000; /* Üstte olmasını sağlar */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Arkadaki karartma efekti */
}

.modal-content- {
    position: relative;
    margin: auto;
    width: 80%;
    height: 80%;
    max-width: 800px;
    max-height: 500px;
    top: 50%;
    transform: translateY(-50%);
    overflow: hidden;
}

#video-player {
    width: 100%; /* Modal genişliğine uyum sağlar */
    height: auto; /* Videonun oranlarını korur */
}

.close-btn- {
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 1100; /* Videodan daha yukarıda olması için yüksek bir değer */
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    padding: 5px 10px;
    border-radius: 50%;
    cursor: pointer;
}
/*.btn-anduwell {
    color: #16b0b0;
    background: rgb(255 255 255);*/
/*color: #000000;
    background: rgb(142,142,142);
    background: linear-gradient(45deg, rgba(142,142,142,1) 0%, rgba(255,255,255,1) 35%, rgba(255,255,255,1) 65%, rgba(144,144,144,1) 100%);*/
/*width: 11rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3rem;
    margin: 0 5px;
    padding: .5rem 1rem;
    font-size: .9rem;
    font-weight: bold;
    cursor: pointer;
}*/

.btn-anduwell {
    position: relative; /* Butonun kendisini referans noktası yapar */
    color: #16b0b0;
    background: rgb(255 255 255);
    width: 11rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3rem;
    margin: 0 5px;
    padding: .5rem 1rem;
    font-size: .9rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1; /* Butonun efektin üstünde görünmesini sağlar */
}

.efc_ {
    position: relative; /* Butonun kendisini referans noktası yapar */
    z-index: 0; /* Butonun efektin üstünde görünmesini sağlar */
}

    .efc_::before {
        content: "";
        position: absolute;
        top: 50%; /* Butonun tam ortasına hizalar */
        left: 50%; /* Butonun tam ortasına hizalar */
        width: 113px;
        height: 13px;
        border-radius: 3rem;
        border: 15px solid rgb(0 128 189);
        transform: translate(-50%, -50%) scale(.8); /* Ortalamayı sağlar */
        animation: pulse 1.5s infinite ease-out;
        opacity: 1;
        z-index: 0; /* Efektin butonun arkasında kalmasını sağlar */
    }

.efc2_ {
    position: relative; /* Butonun kendisini referans noktası yapar */
    z-index: 0; /* Butonun efektin üstünde görünmesini sağlar */
}

    .efc2_::before {
        content: "";
        position: absolute;
        top: 50%; /* Butonun tam ortasına hizalar */
        left: 50%; /* Butonun tam ortasına hizalar */
        width: 113px;
        height: 13px;
        border-radius: 3rem;
        border: 15px solid rgb(0 128 189);
        transform: translate(-50%, -50%) scale(.8); /* Ortalamayı sağlar */
        animation: pulse 1.5s infinite ease-out;
        opacity: 1;
        z-index: 0; /* Efektin butonun arkasında kalmasını sağlar */
    }

.forms_ {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    margin: 0 -20px;
    /* background: rgb(0,0,0);
   background: radial-gradient(circle, #16b0b0 0%, rgb(22 176 176) 19%, rgb(22 176 176 / 45%) 62%, rgba(255, 255, 255, 1) 100%);
*/
}


/*form*/

.form-container {
    background: linear-gradient(135deg, #485361, #848b93);
    border-radius: 20px;
    padding: 20px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.form-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.back-button {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    margin-right: 10px;
}

.form-header h2 {
    margin: 0;
    color: white;
    font-size: 18px;
    text-align: center;
    flex-grow: 1;
}

.custom-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 10px;
}

.form-input {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ccc;
    background: transparent;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    transition: background 0.3s, transform 0.2s;
}

    .form-input::placeholder {
        color: #ffffff;
    }

    .form-input:focus {
        border: 1px solid #ccc;
        transform: scale(1.02);
    }

.phone-input {
    display: flex;
    align-items: center;
    gap: 5px;
    flex: 1;
}

.phone-prefix {
    padding: 8px;
    border: 1px solid #ccc;
    background: transparent;
    border-radius: 10px 0 0 10px;
    color: #ffffff;
    font-size: 14px;
}

.phone-number {
    border-radius: 0 10px 10px 0;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.submit-button {
    width: 100%;
    padding: 10px;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    transition: all ease .3s;
    background: linear-gradient(135deg, #23427a, #155ca7);
}

    .submit-button:hover {
        background: linear-gradient(135deg, #155ca7), #23427a;
        transition: all ease .3s;
    }

/* Modal için genel stiller */
.pdf-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
    height: 80%;
    background: #fff;
    z-index: 1000;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

    /* iframe için genel stiller */
    .pdf-modal iframe {
        width: 100%;
        height: 100%;
    }

/* Pagination Container */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

/* Pagination List */
.pagination {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
}

    /* Pagination Items */
    .pagination li {
        display: inline;
    }

        /* Active Page */
        .pagination li.active span {
            display: inline-block;
            padding: 10px 15px;
            background-color: #4acdc8;
            color: white;
            border-radius: 15px;
            font-weight: bold;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        /* Links */
        .pagination li a {
            display: inline-block;
            padding: 10px 15px;
            text-decoration: none;
            color: #4acdc8;
            background-color: white;
            border-radius: 15px;
            transition: all 0.3s ease;
        }

            /* Hover and Focus States */
            .pagination li a:hover, .pagination li a:focus {
                background-color: #4acdc8;
                color: white;
                border-color: #4acdc8;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            }

        /* Next/Previous Arrows */
        .pagination li.PagedList-skipToNext a {
            font-weight: bold;
            padding: 10px 15px;
        }

        /* Disabled Links (Optional) */
        .pagination li.disabled span {
            display: inline-block;
            padding: 10px 15px;
            background-color: #e9ecef;
            color: #6c757d;
            border-radius: 5px;
            font-weight: bold;
        }



/* Mobil için medya sorguları */
@media (max-width: 768px) {
    .pdf-modal {
        width: 90%;
        height: 90%;
    }
}

/* Arka plan karartması (isteğe bağlı) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

    .modal-overlay.active {
        display: block;
    }




.card__ {
    border-radius: var(--border-radius-primary);
    box-shadow: 24px 24px 80px rgba(0, 0, 0, 0.1);
    padding: 20px 20px 28px 20px;
    box-sizing: border-box;
    height: auto;
    object-fit: cover;
    margin: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.blog__read {
    border-radius: var(--border-radius-primary);
    box-shadow: 24px 24px 80px rgba(0, 0, 0, 0.1);
    padding: 20px 20px 28px 20px;
    box-sizing: border-box;
    height: auto;
    object-fit: cover;
    margin: 20px;
    display: flex;
    flex-direction: column;
}

.card__image {
    width: 250px;
    max-height: 250px;
    border-radius: var(--border-radius-primary);
    box-shadow: 24px 24px 80px rgba(0, 0, 0, 0.1);
    -o-object-fit: cover;
    object-fit: cover;
}

.blog__image {
    width: 100%;
    max-height: auto;
    border-radius: var(--border-radius-primary);
    box-shadow: 24px 24px 80px rgba(0, 0, 0, 0.1);
    -o-object-fit: cover;
    object-fit: cover;
}


.card__date {
    display: block;
    font-family: var(--font-family-secondary);
    font-size: var(--font-size-caption);
    line-height: var(--line-height-caption);
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 6px;
}


.card__title {
    font-family: var(--font-family-primary);
    font-size: 1rem;
    font-weight: bold;
    line-height: var(--line-height-title);
    color: var(--color-text);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    background-image: linear-gradient(90deg, #b0baff, #c2fffc);
    background-size: 100% 42%;
    background-repeat: no-repeat;
    background-position: 0 85%;
    padding: 0 4px;
    margin-left: 4px;
}

.card__sub__title {
    font-family: var(--font-family-primary);
    font-size: .8rem;
    line-height: var(--line-height-title);
    color: var(--color-text);
    padding: 0 4px;
    margin-left: 4px;
}

.referans {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.referans-item {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    gap: 1rem;
}

.referans .referans-item h3 {
    font-size: 1.2rem;
    margin: .5rem 1rem;
    width: 100%;
    color: aliceblue;
    border-radius: 1rem;
}

.referans .referans-item i {
    font-size: 1.2rem;
}

.referans .referans-item iframe {
    border-radius: 1rem;
}

.referans .referans-item .primary_ {
    background: #67abcf;
}

.referans .referans-item .primary_2 {
    background: #e59a39;
}

.referans .referans-item .primary_3 {
    background: #d96b8a;
}

@media (max-width : 479px) {
    body {
        padding: 0;
    }

    :root {
        --font-size-title: 15px;
    }

    .card__date {
        margin-bottom: 8px;
    }

    .card__content {
        width: 55%;
    }

    .card__ {
        flex-direction: row;
        align-items: center;
        margin: 20px;
        padding: 12px;
    }

    .card__image {
        width: 45%;
        margin-bottom: 0;
    }

    .card {
        border-radius: 0;
        padding: 0;
    }

        .card .card-head {
            margin: 0 0 -75px 0;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

            .card .card-head img {
                border-top-left-radius: 0;
                border-top-right-radius: 0;
            }

    .profile-pic1 {
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .profile-pic1 img {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            margin-bottom: 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            z-index: 1;
        }

    h1 {
        font-size: 24px;
        color: #333;
        margin-bottom: 5px;
    }

    h2 {
        font-size: 18px;
        color: #666;
        margin-bottom: 15px;
    }

    p {
        font-size: 14px;
        color: #777;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .social-links {
        display: flex;
        justify-content: center;
        margin-bottom: 0;
    }


    .custom-links {
        display: flex;
        flex-direction: row;
        margin-top: 20px;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
        align-items: center;
    }

    .link-box {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        background-color: #f7f7f7;
        border-radius: 10px;
        padding: 15px;
        margin-bottom: 10px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        width: 150px;
        height: 120px;
        margin: 10px;
    }

        .link-box._product {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            background-color: #f7f7f7;
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 10px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            width: 80vw;
       height:auto;
            min-height:100px;
            margin: 10px;
            max-width:560px !important;
        }
        /*yeni eklendi*/
        .link-box i {
            font-size: 3.3rem;
        }

        .link-box:hover {
            background-color: #e0e0e0;
        }

        .link-box img {
            width: 70px;
            height: 70px;
            object-fit: cover;
        }

        /*    .link-box span {
        font-weight: bold;
        font-size: 14px;
    }*/
        .link-box span {
            font-weight: bold;
            font-size: 12px;
        }

        .link-box p {
            font-size: 14px;
            color: #666;
        }

    .card .video_bg {
        margin: -20px 0 -75px 0;
        width: 100%;
    }

    .card-footer {
        margin: 0;
        border-radius: 0;
        margin-bottom: 3.72rem;
    }

    .row_ {
        position: fixed;
        background-color: #ffffff;
        bottom: 0;
        left: 0;
        right: 0;
        justify-content: space-evenly;
    }

        .row_ .social-links .title_ {
            display: none;
        }

        .row_ .btn_ {
            background-color: transparent;
            font-size: 1.5rem;
            width: 60px;
            height: 60px;
        }



    .btn-anduwell {
        width: 10rem;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 3rem;
        margin: 0 5px;
        padding: .5rem 1rem;
        font-size: .8rem;
        font-weight: bold;
    }

    .forms_ {
        gap: .5rem;
        padding: 1rem .1rem;
        margin: 0;
    }

    .form-container {
        border-radius: 20px;
        display: flex;
        padding: 20px;
        width: 80%;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        align-content: center;
        margin: auto;
    }

    .form-row {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        flex-direction: column;
    }
    /* Modal içinde kapatma butonu */
    #mapModal_ button {
        top: 50px;
        right: 30px;
        padding: 5px 10px;
        background-color: #ff5c5c;
        border-radius: 5px;
        cursor: pointer;
        font-size: 10px;
    }

    .card-footer .copyright-info small {
        font-size: 9px
    }

    .card-footer .copyright-info .entek_ {
        width: 30px !important;
    }

    .card-footer .copyright-info .kalmuk_ {
        width: 90px !important;
    }

    .pagination {
        gap: 5px;
    }

        .pagination li a, .pagination li.active span {
            padding: 8px 12px;
            font-size: 0.9rem;
        }

    .checkbox-item {
        width: 100% !important;
    }
}
