:root {
    --black: #0c0c0c;
    --dark: #1a1a1a;
    --ice-blue: #66c7f2;
    --yellow: #f7dd00;
    --orange: #f68b1f;
    --white: #ffffff;
    --light-grey: #dddddd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.7;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

header {
    text-align: center;
    padding: 60px 20px;
    background:
        radial-gradient(circle at top,
        rgba(246,139,31,0.35),
        transparent 40%),
        var(--black);
}

.logo {
    width: 240px;
    max-width: 80%;
    margin-bottom: 20px;
}

h1 {
    color: var(--ice-blue);
    font-size: 3rem;
    letter-spacing: 2px;
}

.tagline {
    color: var(--yellow);
    font-size: 1.3rem;
    margin-top: 10px;
    font-weight: 600;
}

section {
    padding: 70px 0;
}

h2 {
    text-align: center;
    color: var(--yellow);
    margin-bottom: 30px;
    font-size: 2rem;
}

.intro,
.experience {
    text-align: center;
}

.intro p,
.experience p {
    max-width: 850px;
    margin: 0 auto 20px auto;
    color: var(--light-grey);
}

.services {
    background: var(--dark);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    background: #242424;
    border-top: 4px solid var(--ice-blue);
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-top-color: var(--orange);
}

.service-card h3 {
    color: var(--ice-blue);
    margin-bottom: 12px;
}

.contact {
    text-align: center;
}

.contact-box {
    background: #242424;
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    margin: 0 auto;
    border: 2px solid var(--ice-blue);
}

.contact a {
    color: var(--yellow);
    font-size: 1.3rem;
    text-decoration: none;
    font-weight: bold;
}

.contact a:hover {
    color: var(--orange);
}

.address-heading {
    margin-top: 25px;
}

footer {
    background: #000;
    text-align: center;
    padding: 25px;
    border-top: 1px solid #333;
    color: #999;
}

@media (max-width: 768px) {

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .logo {
        width: 180px;
    }

}