﻿/* HERO */
.hero {
    background: linear-gradient(135deg, #0A192F, #112240);
    color: white;
    padding: 100px 0;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-text {
    max-width: 600px;
}

    .hero-text h1 {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .hero-text p {
        font-size: 18px;
        margin-bottom: 30px;
        color: #CBD5E1;
    }

.hero-buttons a {
    margin-right: 15px;
}

.btn-secondary {
    border: 2px solid #38BDF8;
    color: #38BDF8;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

    .btn-secondary:hover {
        background: #38BDF8;
        color: #0A192F;
    }

/* ABOUT */
.about {
    background: #ffffff;
}

    .about h2 {
        margin-bottom: 20px;
    }

/* SERVICES */
.services {
    background: #F1F5F9;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    transition: 0.3s;
    border: 1px solid #e2e8f0;
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

/* WHY US */
.why-us {
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.why-card {
    padding: 20px;
}

/* CTA */
.cta {
    background: #2563EB;
    color: white;
    text-align: center;
}
