@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    font-family: "Montserrat", sans-serif;
    line-height: 1.4;
}

a {
    text-decoration: none;
}

.text-primary {
    color: #93cb52;
}

.text-center {
    text-align: center;
}

.py-1 {
    padding: 1rem 0;
}

.btn {
    display: inline-block;
    padding: 0.5rem 2rem;
    border: none;
    border-radius: 5px;
}

.btn-primary {
    background: #93cb52;
    color: #fff;
}

.btn-primary:hover {
    background: #7ab436;
}

.bg-dark {
    background: #333;
    color: #fff;
}

.bg-dark:hover {
    background: #444;
}

.bg-primary {
    background: #93cb52;
    color: #333;
}

.l-heading {
    font-size: 4rem;
    margin-bottom: 0.75rem;
    line-height: 1.1;
}

.par {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

#showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    background: url('manhattan-new-york-city-4k-je-1602115287.jpg') no-repeat center center/cover;
    color: white;
}

#showcase .showcase-content {
    max-width: 800px;
}


#navbar {
    background: #333;
    color: #fff;
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    padding: 1rem;
}

#navbar ul {
    list-style: none;
    display: flex;
    align-items: center;
}

#navbar ul li a {
    color: #fff;
    padding: 0.75rem;
    margin: 0 0.25rem;
    background: #93cb52;
    border-radius: 5px;
}

#what {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    
    background: #f4f4f4;
}

#what .items {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

#what .items .item {
    max-width: 300px;
}


#who {
    display: flex;
    justify-content: space-between; /* Space between text and image */
    align-items: center; /* Vertically align the content */
    padding: 2rem;
    background: #333; /* Dark background for the section */
    color: white; /* Ensure text is visible on dark background */
}

#who .who-img {
    flex: 1;
    background: url('NYPICHPDPICT000009061455-3135062001.jpg') no-repeat center center/cover; /* Image as background */
    height: 400px; /* Adjust height of the image */
    width: 100%; /* Make sure the image container takes up available space */
    border-radius: 15px; /* Round the corners of the image */
    margin-right: 2rem; /* Space between the image and text bubble */
}

#who .who-text {
    flex: 1;
    padding-left: 2rem;
    background: #444; /* Background color for the text bubble */
    padding: 1.5rem; /* Add padding inside the text bubble */
    border-radius: 10px; /* Rounded corners for the text bubble */
    margin-left: 2rem; /* Space between the text bubble and the left side of the container */
    order: 2; /* Ensure text comes after the image */
}

#who div {
    flex: 1;
}

#clients .items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

#clients .items img {
    display: block;
    width: 20%;
    margin: 1rem;
}


#contact {
    display: flex;
}

#contact .contact-form {
    flex: 1;
}

#contact .form-group {
    margin: 0.75rem;
}

#contact .form-group label {
    display: block;
}

#contact .form-group input,
#contact .form-group textarea {
    width: 100%;
    padding: 0.5rem;
    border: none;
}

#contact .form-group input:focus,
#contact .form-group textarea:focus {
    outline: none;
    border: #333 solid 1px;
}
