* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #111;
    color: white;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 8%;
    background color: #1a1a1a
}

header h1 {
    font-size: 22px;
}

nav a {
    color: #fff;
    margin-left: 24px;
    text-decoration: none;
}

.hero {
    min-height: 80vh;
    padding: 120px 8%;
    display: flex;
    flex-direction: column; 
    justify-content: center;
}

.hero h2 {
    font-size: 20px;
    max-width: 700px;
    margin-bottom: 20px;
}

.btn {
   display: inline-block;
   width: fit-content;
   background-color: white;
   color: #111;
   padding: 14px 24px;
   font-weight: bold;
}

.about,
.services {
    padding: 100px 8%;
}

.about {
    background-color: #181818;
}

.about h2,
.services h2 {
    font-size: 48px;
    margin-bottom: 24px;
}

.about p, 
.services p {
    color: #cfcfcf;
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin-bottom: 20px;
}

.services {
    background-color: #111;
}

.service-card {
    background-color: #1f1f1f;
    padding: 32px;
    margin-top: 80px;
    border-radius: 8px;
    border: 1px solid #333;
    line-height: 1.7;
}

.service-card h3 {
    margin-bottom: 16px;
    font-size: 28px;
}

.service-card p {
    color: #cfcfcf;
    line-height: 1.7;
}

.contact {
    padding: 100px 8%;
    background-color: #181818;
}

.contact h2 {
    font-size: 48px;
    margin-bottom: 24px;
}

.contact p {
    color: #cfcfcf;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-card {
    background-color: #1f1f1f;
    padding: 32px;
    margin-top: 24px;
    border-radius: 8px;
    border: 1px solid #333;
    max-width: 650px;
}

.contact-card a {
    color: #fff;
    text-decoration: none;
}
.contact-card a:hover {
    text-decoration: underline;
}

footer {
    padding: 28px 8%;
    background-color: #0b0b0b;
    color: #aaa;
}

.hero {
    min-height: 100vh;

    display:flex;
    align-items: center;

    padding: 0 8%;

    background:
    linear-gradient(rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.75)),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=2070&auto=format&fit=crop");

    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 750px;
}

.hero-subtitle {
    color: #bdbdbd;
    text-transform:uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 24px;
}

.hero p {
    color: #d0d0d0;
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 650px;
}

.btn {
    display: inline-block;
    background-color: white;
    color: #111;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: 0.3s ease;
}

.btn:hover {
    background-color: #d6d6d6;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;

    background-color: rgba(17, 17, 17, 0.92);
    backdrop-filter: blur(8px);
    padding: 22px 8%;
}

header h1 {
    font-size: 22px;
    letter-spacing: 0.5px;
}

nav a {
    transition: 0.3s ease;
}

nav a:hover {
    color: #bdbdbd;
}

html {
    scroll-behavior: smooth;
}

.trust-strip {
    padding: 40px 8%;
    background-color: #0b0b0b;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.trust-strip h3 {
    font-size: 28px;
    margin-bottom: 8px;
}

.trust-strip p {
    color: #bdbdbd;
    font-size: 16px;
}

.gallery {
    padding: 100px 8%;
    background-color: #111;
}

.gallery h2 {
    font-size: 48px;
    margin-bottom: 40px;
}

.gallery-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 12px;
} 

.gallery-scroll img {
    width: 350px;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    transition: 0.3s ease;
}

.gallery-scroll img:hover {
    transform: scale(1.02);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-container img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 50%;
}

@media (max-width: 768px) {
    
    header {
        flex-direction: column;
        gap: 20px;
    }

    nav {
        display: flex;
        gap: 20px;
    }

    .hero h2 {
        font-size: 42px;
    }

    .hero p {
        font-size: 18px;
    }

    .trust-strip {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 24px;
    }

    .about h2,
    .services h2,
    .gallery h2 
    .contact h2 {
        font-size: 36px;
    }
}