/* style.css */

:root {
    /* Genel değişkenler, ihtiyaca göre düzenlenebilir */
    --gap: 16px; /* Grid elemanları arasındaki boşluk */
    --card: #ffffff; /* Kartların arka plan rengi */
    --muted: #6b7280; /* Muted (soluk) metin rengi */
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
    align-items: stretch;
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.item {
    background: var(--card);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    gap: 12px;
    align-items: center;
    box-shadow: 0 1px 2px rgba(2, 6, 23, 0.06);
    min-height: 64px;
    margin: 5px 0;
}

.icon {
    flex: 0 0 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.06), rgba(15, 23, 42, 0.02));
    font-size: 20px;
}

.text {
    font-size: 14px;
    font-weight: 600;
}

.sub {
    display: block;
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
}

/* Responsive: 2 columns on medium, 1 column on small screens */
@media (max-width: 900px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* small helper to make lists visually consistent if more items added */
@media (prefers-reduced-motion: no-preference) {
    .item {
        transition: transform .15s ease, box-shadow .15s ease;
    }
    .item:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 18px rgba(2, 6, 23, 0.08);
    }
}

/* Slider */
.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slides img {
    width: 100%;
    flex-shrink: 0;
    border-bottom: 4px solid #0f172a;
}

.slider-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.slider-buttons button {
    background: rgba(15, 23, 42, 0.6);
    border: none;
    color: #fff;
    font-size: 24px;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 50%;
}

/* Call Button */
.call-button {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: #db1c29;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 25px;
    font-weight: bold;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
    z-index: 1000;
}

.call-button span {
    margin-left: 10px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@media (min-width: 768px) {
    .call-button {
        bottom: 20px;
        left: 20px;
        right: auto;
        width: 350px;
        height: 50px;
        border-radius: 5px;
    }
}
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:80px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
	animation: pulse 0.5s infinite;
}