﻿/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden; 
    background-color: #f8f9fa;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-logo {
    filter: invert(1);
    transition: all 0.3s ease;
}

    .navbar-logo:hover {
        opacity: 0.8;
    }

/* Hero Section */
.hero-section {
    padding: 90px 0; 
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-content {
    padding: 20px;
}

.hero-section h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-section .lead {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #4a5568;
}

.hero-badges .badge {
    margin-right: 10px;
    font-size: 0.9rem;
    padding: 8px 15px;
    font-weight: 500;
}

/* ETİKETLERİN MOBİL GÖRÜNÜMDEKİ AYARLARI */
@media (max-width: 768px) {
    .hero-badges {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .hero-badges .badge {
        flex: 0 0 auto;
        min-width: 120px;
        font-size: 0.8rem;
    }
}

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.hero-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-section {
    padding: 80px 0;
}

.service-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
    background-color: white;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.service-image-container {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    padding: 20px;
}

.service-image {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 160px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-icon {
    font-size: 2.5rem;
    color: #0ea5e9;
    margin: 20px 0;
    text-align: center;
}

.card-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.card-text {
    color: #4a5568;
    margin-bottom: 20px;
}

/* Features Section */
.features-section {
    padding: 80px 0;
}

.feature-box {
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

    .feature-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

.feature-icon {
    width: 60px;
    height: 60px;
    background: #e0f2fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #0ea5e9;
    font-size: 1.5rem;
}

.feature-box h3 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.feature-box p {
    color: #4a5568;
}

/* Virtual Machine Section */
.vm-section {
    padding: 80px 0;
}

.vm-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.vm-image {
    max-width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.list-group-item {
    border-color: rgba(0, 0, 0, 0.05);
    padding: 15px 20px;
}

/* Process Section */
.process-section {
    padding: 80px 0;
}

.maintenance-process {
    position: relative;
    padding-left: 30px;
}

.process-step {
    position: relative;
    padding-bottom: 30px;
}

.step-number {
    position: absolute;
    left: -45px;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: #0ea5e9;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

    .step-content h4 {
        color: #2c3e50;
        margin-bottom: 10px;
    }

    .step-content p {
        color: #4a5568;
        margin-bottom: 0;
    }

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

.footer-logo img {    
    margin-bottom: 5px;
}

.footer-about p {
    color: #bdc3c7;
    margin-bottom: 10px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #34495e;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

    .social-links a:hover {
        background-color: #0ea5e9;
        transform: translateY(-3px);
    }

.footer-heading {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .footer-links a:hover {
        color: #0ea5e9;
        padding-left: 5px;
    }

.footer-contact p {
    color: #bdc3c7;
    margin-bottom: 15px;
}

.footer-contact i {
    width: 20px;
    text-align: center;
    margin-right: 10px;
    color: #0ea5e9;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        max-height: 350px;
    }

    .vm-image {
        max-height: 300px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 30px;
    }

    .hero-image {
        max-height: 300px;
    }

    .service-image-container {
        height: 180px;
    }

    .service-image {
        max-height: 140px;
    }

    .vm-image {
        max-height: 250px;
        margin-top: 30px;
    }

    .process-step {
        padding-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section .lead {
        font-size: 1rem;
    }

    .hero-image {
        max-height: 250px;
    }

    .service-image-container {
        height: 150px;
    }

    .service-image {
        max-height: 120px;
    }

    .vm-image {
        max-height: 200px;
    }

    .step-number {
        left: -35px;
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}



/* SAYFANIN EN BAŞINDA BULUNAN YAZILAR İÇİN ANİMASYON TANIMLARI */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animasyonlu elementler */
.animated-element {
    opacity: 0; /* Başlangıçta görünmez */
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Gecikmeler için */
.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

.delay-3 {
    animation-delay: 0.9s;
}