## style.css

```css
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f7f7f7;
    color: #222;
    line-height: 1.6;
}

img {
    width: 100%;
    display: block;
    border-radius: 16px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

section {
    padding: 80px 0;
}

/* HEADER */
.header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h2 {
    font-size: 28px;
    font-weight: 700;
}

.logo span {
    color: #e60012;
}

.logo p {
    font-size: 12px;
    color: #777;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #e60012;
}

.mobile-menu {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* BUTTONS */
.btn {
    display: inline-block;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.primary-btn {
    background: #e60012;
    color: #fff;
}

.primary-btn:hover {
    background: #b6000f;
}

.secondary-btn {
    border: 2px solid #e60012;
    color: #e60012;
}

.secondary-btn:hover {
    background: #e60012;
    color: #fff;
}

.small-btn {
    padding: 12px 20px;
    margin-top: 20px;
    background: #e60012;
    color: #fff;
}

.full-btn {
    width: 100%;
    border: none;
}

/* HERO */
.hero-section {
    background: linear-gradient(to right, #fff, #f3f3f3);
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 50px;
}

.sub-title {
    color: #e60012;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.2;
    margin: 20px 0;
}

.hero-content p {
    color: #666;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image img {
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* SECTION TITLE */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.section-title p {
    color: #777;
}

/* SERVICES */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.icon {
    width: 70px;
    height: 70px;
    background: #ffe5e7;
    color: #e60012;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 28px;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 14px;
}

/* ABOUT */
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.about-content h2 {
    font-size: 42px;
    margin: 15px 0;
}

.features {
    margin-top: 30px;
}

.feature-item {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}

/* PROCESS */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.step {
    width: 60px;
    height: 60px;
    background: #e60012;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.contact-content h2 {
    font-size: 42px;
    margin: 20px 0;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 18px;
    font-family: inherit;
}

.contact-form textarea {
    height: 140px;
    resize: none;
}

/* FOOTER */
.footer {
    background: #111;
    color: #fff;
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
}

.footer h3,
.footer h4 {
    margin-bottom: 18px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer a {
    text-decoration: none;
    color: #ccc;
}

.footer p,
.footer li {
    color: #ccc;
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    padding: 20px 0;
    color: #aaa;
}

/* RESPONSIVE */
@media(max-width: 992px) {

    .hero-grid,
    .about-grid,
    .contact-grid,
    .service-grid,
    .process-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .about-content h2,
    .contact-content h2,
    .section-title h2 {
        font-size: 34px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .navbar .primary-btn {
        display: none;
    }
}

@media(max-width: 576px) {

    section {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .contact-form {
        padding: 25px;
    }

    .service-card,
    .process-card {
        padding: 30px 20px;
    }
}
```

---

## Features Included

* Fully Responsive Design
* Modern Professional UI
* Mobile Friendly Layout
* Hero Banner Section
* Services Cards
* About Section
* Process Timeline
* Contact Form
* Sticky Header
* SEO Friendly Structure
* Professional Spacing & Typography
* Fast Loading CSS Structure
* Clean HTML5 Semantic Coding
