* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

.custom-text {
    font-family: 'Baloo Paaji';
}

.custom-text-2 {
    font-family: 'Asap', sans-serif;
    font-weight: 900;
}

.small-text {
    font-size: smaller;
}

body {
    color: #333;
    line-height: 1.6;
}

header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background-color: #fff;
}

.logo {
    font-weight: 500;
    font-size: 30px;
    color: #4e342e;
    cursor: pointer;
}

nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    flex-wrap: wrap;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

nav ul li a:hover {
    color: #a2685a;
}

.hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 300px 10%;
    background-color: #f0fef6;
}

.hero-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* .hero-text {
    flex: 1 1 100%;
    max-width: 500px;
} */

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.hero-text p {
    margin-bottom: 20px;
    color: #555;
    text-align: center;
}

/* .hero-image {
    flex: 1 1 100%;
    text-align: center;
    margin-top: 30px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 50px;
} */

.btn-brown {
    padding: 12px 24px;
    background-color: #a2685a;
    border: none;
    color: white;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
}

.btn-brown a {
    color: white;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 40px 10%;
    background-color: #fff;
    align-items: center;
}

.about {
    padding: 60px 10%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.concise{
    max-width: 400px;
}

.brief{
    max-width: 700px;
    margin: auto;
}

.section {
    padding: 200px 10%;
}

.section h2 {
    color: #111;
    font-size: 2rem;
    margin-bottom: 20px;
}

.section p {
    color: #666;
}

.highlight {
    color: #a2685a;
}

@media (min-width: 768px) {
    /* .hero-text {
        flex: 1;
    }

    .hero-image {
        flex: 1;
        margin-top: 0;
        border-radius: 50%;
    } */

    .hero {
        flex-wrap: nowrap;
    }
}

.services {
    background-color: #f0fef6;
}

.services-intro {
    text-align: center;
    margin-bottom: 40px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #fff;
    border: 1px solid #e0f2ec;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    flex: 1 1 280px;
    max-width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 40px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.service-card p {
    color: #555;
    font-size: 0.95rem;
}

.service-card a {
    text-decoration: none;
}

/* Responsive for small screens */
@media (max-width: 600px) {
    nav ul {
        display: none;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .about {
        flex-direction: column;
    }

    .hero {
        padding: 100px 10%;
    }

    .section {
        padding: 100px 10%;
    }

    .clients-section {
        padding: 100px 10%;
    }
}

.clients-section {
    padding: 200px 10%;
    background-color: #fff;
    text-align: center;
}

.clients-text {
    margin-bottom: 30px;
}

.clients-text h2 {
    font-size: 2rem;
    color: #333;
}

.clients-text p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.clients-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.clients-logos img {
    width: 120px;
    height: auto;
    border-radius: 12px;
    background: #f9f9f9;
    padding: 10px;
}

.contact-section {
    background-color: #f0fef6;
    padding: 60px 10%;
}

.contact-info {
    display: flex;
    color: #333;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-info .bold-text {
    font-weight: bold;
    color: #4e342e;
    margin-bottom: 15px;
    max-width: 50%;
}

.contact-info p {
    margin-bottom: 15px;
    color: #444;
}

.contact-details p {
    margin-bottom: 15px;
}

.social-icons a {
    margin-right: 10px;
    text-decoration: none;
}

.social-icons a img:hover {
    color: #a2685a;
}

@media (max-width: 800px) {
    .contact-info {
        display: flex;
        flex-direction: column;
    }

    .contact-info p {
        max-width: 100%;
        margin-top: 15px;
    }

    .contact-info .bold-text {
        max-width: 100%;
    }
}

footer {
    background: #222;
    color: #ffffffe0;
    padding: 20px 10%;
    text-align: center;
}

.contact-details a {
    text-decoration: none;
    color: #444;
}