/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Quicksand', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #000;
    padding: 2rem;
    text-align: center;
}

header h1 {
    color: #fff;
    font-weight: 700;
    font-size: 2.5rem;
}

/* Navigation */
nav {
    background-color: #111;
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    border-radius: 8px;
    padding: 0.5rem 1rem;
}

nav a:hover {
    background-color: #fff;
    color: #000;
}

/* Main content */
main {
    max-width: 1100px;
    margin: 3rem auto;
    padding: 0 2rem;
}

/* Footer */
footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    margin-top: 4rem;
}

/* Buttons */
.button {
    background-color: white;
    color: black;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.button:hover {
    background-color: #444;
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
    background-color: black;
    border-radius: 15px;
    margin-bottom: 3rem;
    color: #fff;
}

.hero h2 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.services {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.services h3 {
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.services ul {
    list-style-type: none;
    font-size: 1.1rem;
    line-height: 2;
    color: #fff;
}

.services ul li {
    padding: 0.5rem 0;
}

.site-header {
    background-color: #000;
    padding: 1rem 2rem;
}
.site-header h1 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.logo {
    height: 200px;
    width: auto;
}
.site-header h1 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}
.header-left,
.header-right {
    flex: 1;
    display: flex;
    align-items: center;
}
.header-center {
    flex: 2;
    text-align: center;
}
.header-center h1 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin: 0;
    white-space: nowrap;
}

.about-section {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 2rem;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-section h2 {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.what-we-do {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
    color: #fff;
}

.what-we-do h2 {
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.service-item {
    margin-bottom: 2rem;
    color: #fff;
}

.service-item h3 {
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.service-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #fff;
    margin-left: 1rem;
}

.clients {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
    color: #fff;
    font-family: 'Quicksand', sans-serif;
    display: grid;
    grid-template-columns: 1fr; /* 1 column by default */
    gap: 2rem;
}

@media (min-width: 600px) {
    .clients {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
    }
}

@media (min-width: 900px) {
    .clients {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on large screens */
    }
}

.client-item {
    background-color: #111;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 8px rgba(255,255,255,0.05);
    transition: box-shadow 0.3s ease;
    text-align: center;
    color: #fff;
}

.client-item:hover {
    box-shadow: 0 6px 14px rgba(255,255,255,0.15);
}

.clients h2 {
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 2px solid #fff;
    padding-bottom: 0.5rem;
}

.client-item h3,
.client-item h4,
.client-item p {
    color: #fff;
}

.ceo-message {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
    background-color: #111;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(255,255,255,0.08);
    font-family: 'Quicksand', sans-serif;
    color: #fff;
    text-align: center;
}

.ceo-message h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 2px solid #fff;
    display: inline-block;
    padding-bottom: 0.3rem;
}

.ceo-message p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #fff;
    margin-top: 1rem;
}

/* CONTACT SECTION */
.contact {
    max-width: 900px;
    margin: 4rem auto;
    padding: 2rem;
    background-color: #111;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(255, 255, 255, 0.08);
    font-family: 'Quicksand', sans-serif;
    color: #fff;
}

.contact h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fff;
    border-bottom: 2px solid #fff;
    display: inline-block;
    padding-bottom: 0.3rem;
}

.contact-info h3,
.contact-info p,
.contact label {
    color: #fff;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact input,
.contact textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    background-color: #000;
    color: #fff;
    transition: border-color 0.3s ease;
}

.contact input:focus,
.contact textarea:focus {
    outline: none;
    border-color: #fff;
}

.contact textarea {
    resize: vertical;
    min-height: 120px;
}

/* BUTTON STYLING */
.contact button {
    background-color: #fff;
    color: #000;
    padding: 0.9rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.contact button:hover {
    background-color: #ccc;
}

.client-logo {
    max-width: 150px;    /* limit logo width */
    max-height: 80px;    /* limit logo height */
    object-fit: contain; /* keep aspect ratio */
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
