html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.sevis_mh{
    max-height:250px;
}

.sevis_mh img{
height:100%;
object-fit:contain !important;

}

.project-one__card {
    max-height:500px;
}

.project-one__card img{
    max-height: 500px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 400px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* KURTARICI */
        display: block;
    }

    /* Hover zoom */
    .gallery-item:hover img {
        transform: scale(1.08);
        transition: 0.4s ease;
    }

    /* Popup icon */
    .gallery-item a {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0,0,0,0.4);
        opacity: 0;
        transition: 0.3s;
        color: #fff;
        font-size: 28px;
    }

    .gallery-item:hover a {
        opacity: 1;
    }


@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}





.whatsapp-fixed-container {
    position: fixed;
    left: 20px;
    bottom: 30px;
    z-index: 9999;
}

/* WhatsApp Butonu */
.whatsapp-link {
    display: inline-block;
    background-color: #25d366;
    color: white;
    font-weight: bold;
    padding: 0 5px;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    /* WhatsApp İkonu */
    .whatsapp-link i {
        font-size: 25px;
        z-index: 2;
        color:white;
    }

    /* Dalga Animasyonu */
    .whatsapp-link .wave {
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: rgba(37, 211, 102, 0.5);
        border-radius: 50%;
        animation: wave-animation 1.5s infinite;
    }

        /* Dalga Efektinin Zamanlaması */
        .whatsapp-link .wave:nth-child(2) {
            animation-delay: 0.5s;
        }

        .whatsapp-link .wave:nth-child(3) {
            animation-delay: 1s;
        }

/* Dalga Animasyonu */
@keyframes wave-animation {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}



.phone-fixed-container {
    position: fixed;
    right: 20px;
    bottom: 30px;
    z-index: 9999;
}

/* WhatsApp Butonu */
.phone-link {
    display: inline-block;
    background-color: black;
    color: white;
    font-weight: bold;
    padding: 0 5px;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    /* WhatsApp İkonu */
    .phone-link i {
        font-size: 18px;
        z-index: 2;
        color: white;
    }

    .phone-link .wave {
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0, 0.5);
        border-radius: 50%;
        animation: wave-animation 1.5s infinite;
    }

        /* Dalga Efektinin Zamanlaması */
        .phone-link .wave:nth-child(2) {
            animation-delay: 0.5s;
        }

        .phone-link .wave:nth-child(3) {
            animation-delay: 1s;
        }


.rs_gl {
    text-align: center;
    font-size: 50px;
    margin-bottom: 50px;
    color: var(--garlon-base, #209D2F);
}
.rs_gl_buton{
    display:flex;
    text-align:center;
    justify-content:center;
    width:100%;
    margin-top:50px;
}

    .rs_gl_buton a {
        font-size: 20px;
        border: 2px solid var(--garlon-base, #209D2F);
        padding:5px 20px;
        border-radius:10px;
    }

        .rs_gl_buton a:hover {
            font-size: 20px;
            background: var(--garlon-base, #209D2F);
            color:white;
            border: 2px solid var(--garlon-base, #209D2F);
            padding: 5px 20px;
            border-radius: 10px;
        }