* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    color: #0f172a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e2e8f0;
    border-top: 4px solid #6366f1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    padding: 25px 0;
    z-index: 10;
}

.header.sticky {
    position: fixed;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu a {
    margin: 0 15px;
    text-decoration: none;
    color: #334155;
    font-weight: 500;
}

.logo {
    font-weight: 800;
    font-size: 22px;
}

.logo img {
    height: 75px;
}

.btn {
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
}

.primary {
    background: #6366f1;
    color: white;
}

.outline {
    border: 2px solid #111;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, #6366f1 0%, transparent 70%);
    opacity: .15;
}

.hero h1 {
    font-size: 72px;
    font-weight: 800;
}

.hero h2 {
    font-size: 60px;
    color: #64748b;
}

.hero p {
    max-width: 600px;
    margin: 20px auto;
    font-size: 18px;
    color: #475569;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.services {
    padding: 120px 0;
}

.section-label {
    color: #6366f1;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: .3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.projects {
    padding: 120px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: .4s;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.project-image {
    height: 260px;
    background: #e2e8f0;
}

.project-info {
    padding: 25px;
}

.about {
    padding: 120px 0;
}

.footer {
    padding: 40px 0;
    text-align: center;
    color: #64748b;
}

@media(max-width:900px) {

    .hero h1 {
        font-size: 46px;
    }

    .hero h2 {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

}