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

body {
    font-family: 'IBM Plex Sans', sans-serif;
    color: #000;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: 0 auto;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 2px solid #0d643a;
    border-bottom-right-radius: 40%;

}

.logo h1 {
    font-size: 24px;
    font-weight: 300;
}

.nav ul {
    list-style-type: none;
    display: flex;
    gap: 20px;
}

.nav ul li a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
}

.nav ul li a:hover {
    color: #8bc1a0;
    font-size: 16px;
}
/* Hero Section */
.hero {
    padding: 60px 0px;
    border-bottom: 2px solid #0d643a;
    border-bottom-left-radius: 40%;
    /* border-radius: 30%; */
}

.hero h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 55px;
    font-weight: 500;
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards;

}
/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.imgbaby {
    max-height: 170px;
    max-width: 170px;
    border-radius: 40px;
    margin-left: 10%;
    border: 2px solid #0d643a;
}
/* Case Studies */
.case-study {
    padding: 40px 0;
}

.case-study-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.case-study-line {
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: #0d643a;
    z-index: -1;
}

.case-study-content {
    width: 45%;
    margin-left: 5%;
    margin-right: 10%;
}

.case-study-content h2 {
    font-size: 17px;
    color: #555;
    font-weight: 300;
    margin-bottom: 10px;
}

.case-study-content h3 {
    font-size: 35px;
    margin-bottom: 10px;
}

.case-study-content p {
    font-size: 20px;
    margin-bottom: 20px;
}

.case-study-content button {
    padding: 10px 20px;
    background-color: transparent;
    border: 1px solid #000;
    cursor: pointer;
    font-size: 14px;
    font-family: inherit;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.case-study-content button:hover {
    background-color: #000;
    color: #fff;
}

.case-study-image {
    width: 50%;
}

.case-study-image img {
    width: auto;
    height: auto;
    max-height: 550px;
    border-radius: 60px;
    float: right;
    margin-right: 7%;
}

/* About Section */
.about {
    border-top: 2px solid #0d643a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
}

.about-image {
    width: 45%;
}

.about-image img {
    max-height: 300px;
    max-width: 300px;
    border-radius: 30px;
    border: 2px solid #0d643a;
    float: left;
    margin-left: 10%;
}

.about-content {
    width: 50%;
}

.about-content p {
    margin-bottom: 20px;
}

/* Brands Section */
.brands {
    text-align: center;
    padding: 40px 0;
}

/* Contact Section */
.contact {
    text-align: center;
    padding: 40px 0;
}

.contact h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact p a {
    font-size: 24px;
    color: #888c60;
    text-decoration: none;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.footer-links a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
}
