* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 70px 0;
}

/* Typography */

h1 {
    font-size: 2.6rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #007fe2;
    font-weight: 500;
}

.lead {
    font-size: 1.15rem;
    margin-bottom: 18px;
    color: #333;
}

/* Hero */

header {
    position: relative;
    background: url('hero.jpg') center/cover no-repeat;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.logo-wrapper img {
    width: 120px;
    margin-bottom: 18px;
}

.tagline {
    font-size: 1.2rem;
    margin: 15px 0 25px;
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: #007fe2;
    color: white;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: 0.3s ease;
}

.btn:hover {
    background: #005fa8;
}

/* Sections */

section {
    padding: 60px 0;
}

#about,
#services,
#why,
#contact {
    border-bottom: 1px solid #f0f0f0;
}

.services-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.service-box {
    flex: 1;
    min-width: 260px;
    padding: 25px;
    background: #f8fbff;
    border-radius: 6px;
    transition: 0.3s ease;
}

.service-box:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.why-list {
    list-style: none;
    margin-top: 10px;
}

.why-list li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #444;
}

/* Contact */

.contact-box {
    padding: 30px;
    background: #f8fbff;
    border-radius: 6px;
    max-width: 450px;
}

/* Footer */

footer {
    background: #0f1c2b;
    color: #d0d6dd;
    padding: 25px 0;
    font-size: 0.9rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-links a {
    color: #aab4c2;
    margin-left: 18px;
    text-decoration: none;
}

.footer-links a:hover {
    color: #007fe2;
}

/* Legal */

.legal {
    padding: 90px 0;
    max-width: 850px;
}

/* Subtle Animation */

.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
