
body {
    margin: 0;
    background-color: #e6e4e4;
}
.hero-section {
    background-color: #005bb9;
    color: #1f2c1d;
    padding: 50px 0;
}
.hero-section img {
    max-width: 100%;
    border-radius: 10px;
}
.btn-quote {
    background-color: #005bb9;
    border-color: #005bb9;
}
.btn-quote:hover {
    background-color: #065334;
}
footer {
    background-color: #1b1b1b;
    color: white;
    padding: 20px;
    text-align: center;
}
.dot-animation {
content: '';
display: block;
width: 6px; /* Noktanın genişliği */
height: 6px; /* Noktanın yüksekliği */
background: black; /* Noktanın rengi */
position: absolute;
bottom: -15px; /* Noktanın konumu */
left: 50%; /* Ortalamak için */
border-radius: 50%; /* Nokta şekli */
opacity: 0; /* Başlangıçta saydam */
transform: translateX(-50%); /* Ortalamak için */
transition: opacity 0.3s ease, transform 0.3s ease; /* Animasyon süresi */
}

a:hover .dot-animation {
opacity: 1; /* Üzerine gelindiğinde opaklaşır */
transform: translate(-50%, 0); /* Hareketsiz kalır */
}
.benefit-card {
border: 1px solid #005bb9;
border-radius: 10px;
padding: 20px;
transition: box-shadow 0.3s;
}

.benefit-card:hover {
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
font-size: 30px;
color: #005bb9; /* Yeşil renk */
}

.overview-container {
display: inline-flex;
align-items: center;
padding: 10px 20px;
border: 0.1px solid #d1d1d1;
border-radius: 25px;
background-color: #f9f9f9; /* Arka plan rengi */
border-color: #005bb9;
}

.dot {
width: 8px;
height: 8px;
background-color: #005bb9; /* Yeşil nokta rengi */
border-radius: 50%;
margin-right: 10px;
}

.overview-text {
color: #005bb9; /* Metin rengi */
font-weight: bold;
}
.service-card {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.service-card img {
    width: 50%;
    object-fit: cover;
}
.service-content {
    padding: 20px;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.service-content h2 {
    font-size: 1.5em;
    color: #2a5d3e;
    margin-bottom: 10px;
}
.service-content p {
    color: #555;
    line-height: 1.6;
}
.service-content a {
    text-decoration: none;
    color: #2a5d3e;
    margin-top: 20px;
    font-weight: bold;
    display: inline-block;
}


.top-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #eaf4ed;
    border: 2px solid #2a5d3e;
    color: #2a5d3e;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.top-button:hover {
    background-color: #d2e8d6;
}

.top-button svg {
    width: 16px;
    height: 16px;
    fill: #2a5d3e;
}

@keyframes fadeIn {
0% {
opacity: 0;
transform: translateY(20px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}

/* Section'ların belirmesi için genel stil */
.fade-in-section {
opacity: 0; /* Başlangıçta görünmez */
transform: translateY(20px); /* Biraz aşağıda başlar */
animation: fadeIn 0.8s ease forwards; /* Animasyon süresi ve stili */
}

/* Sayfa aşağıya kaydırıldıkça tetiklenen animasyon */
.visible {
opacity: 1;
transform: translateY(0);
}

footer {
background-color: #003468; /* Dark green background */
color: white; /* Light green text */
padding: 30px 0;
}

.footer-container {
display: flex;
justify-content: space-between;
align-items: flex-start;
padding: 0 50px;
max-width: 1200px;
margin: auto;
}

.footer-left h2 {
font-size: 24px;
margin-bottom: 10px;
}

.footer-left p {
font-size: 16px;
line-height: 1.5;
}

.footer-right {
display: flex;
gap: 50px;
}

.footer-links h3 {
font-size: 18px;
margin-bottom: 15px;
color: #005bb9; /* Light green */
}

.footer-links ul {
list-style: none;
padding: 0;
margin: 0;
}

.footer-links ul li {
margin-bottom: 10px;
}

.footer-links ul li a {
text-decoration: none;
color: white; /* Light green */
transition: color 0.3s ease;
}



.footer-bottom {
text-align: center;
margin-top: 30px;
padding: 10px;
border-top: 1px solid #005bb9; /* Light green border */
}

.footer-bottom p {
font-size: 14px;
margin: 0;
}

