* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: #f8fafc;
    color: #0f172a;
    line-height: 1.6;
}

/* NAVBAR */
.navbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 70px;
    background: rgba(15, 23, 42, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #e2e8f0;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #38bdf8;
}

/* HERO */
.services-hero {
    position: relative;
    min-height: 90vh;
    background: linear-gradient(135deg, #0f172a, #111827, #1e293b);
    display: flex;
    align-items: center;
    padding: 0 70px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(56, 189, 248, 0.12);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    filter: blur(20px);
}

.hero-content {
    position: relative;
    max-width: 700px;
    z-index: 2;
}

.small-text {
    color: #38bdf8;
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 18px;
    font-weight: 600;
}

.hero-content h1 {
    font-size: 64px;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 25px;
}

.hero-description {
    color: #cbd5e1;
    font-size: 18px;
    max-width: 620px;
    margin-bottom: 35px;
}

.hero-btn {
    display: inline-block;
    padding: 15px 32px;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: #ffffff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
}

.hero-btn:hover {
    transform: translateY(-2px);
}

/* COMMON */
.section-tag {
    color: #0ea5e9;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.center {
    text-align: center;
}

.center-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: #0f172a;
}

/* INTRO */
.intro-section {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding: 100px 70px;
    background: #ffffff;
}

.intro-left,
.intro-right {
    flex: 1;
}

.intro-left h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #0f172a;
}

.intro-right p {
    font-size: 18px;
    color: #475569;
    margin-top: 40px;
}

/* SERVICES GRID */
.services-grid-section {
    padding: 40px 70px 100px;
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    padding: 35px 30px;
    transition: 0.35s ease;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.10);
    border-color: #bae6fd;
}

.service-number {
    font-size: 15px;
    font-weight: 700;
    color: #0ea5e9;
    margin-bottom: 18px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #0f172a;
}

.service-card p {
    color: #475569;
    font-size: 16px;
}

/* WHY SECTION */
.why-section {
    display: flex;
    gap: 50px;
    padding: 100px 70px;
    background: linear-gradient(135deg, #eff6ff, #f8fafc);
}

.why-left,
.why-right {
    flex: 1;
}

.why-left h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #0f172a;
}

.why-description {
    font-size: 18px;
    color: #475569;
    max-width: 500px;
}

.why-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.why-box {
    background: #ffffff;
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    border: 1px solid #e2e8f0;
}

.why-box h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0f172a;
}

.why-box p {
    color: #475569;
    font-size: 15px;
}

/* PROCESS */
.process-section {
    padding: 100px 70px;
    background: #ffffff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.process-card {
    background: #0f172a;
    color: #ffffff;
    border-radius: 22px;
    padding: 35px 25px;
    transition: 0.3s ease;
}

.process-card:hover {
    transform: translateY(-6px);
}

.process-card span {
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    color: #38bdf8;
    margin-bottom: 18px;
}

.process-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.process-card p {
    color: #cbd5e1;
    font-size: 15px;
}

/* CTA */
.cta-section {
    padding: 100px 70px;
    background: #f8fafc;
}

.cta-box {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #ffffff;
    text-align: center;
    padding: 70px 30px;
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.16);
}

.cta-box h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-box p {
    max-width: 750px;
    margin: 0 auto 30px;
    color: #cbd5e1;
    font-size: 18px;
}

.cta-btn {
    display: inline-block;
    padding: 15px 34px;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: #ffffff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    transition: 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-section {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 20px 30px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .services-hero,
    .intro-section,
    .services-grid-section,
    .why-section,
    .process-section,
    .cta-section {
        padding-left: 30px;
        padding-right: 30px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .intro-section {
        flex-direction: column;
    }

    .intro-left h2,
    .why-left h2,
    .center-title,
    .cta-box h2 {
        font-size: 32px;
    }

    .services-grid,
    .why-right,
    .process-grid {
        grid-template-columns: 1fr;
    }
}