body {
    font-family: "EB Garamond", serif;

}

.container {
    max-width: 1200px;
    margin: 0 auto;
}


.display-flex {
    display: flex;

}

.dark-03 {
    color: #727272;
}

.btn {
    background-color: #B68C5A;
    color: white;
    padding: 18px 26px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    border: none;

}

/* NAv bar  */

.nav-bar {
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.hammer {
    align-items: center;
    gap: 16px;
}

.hammer img {
    width: 35px;
    height: auto;
}

.text {
    font-size: 30px;
}

.nav-item {
    list-style: none;
    margin-right: 40px;
}

.nav-link {
    text-decoration: none;
    font-weight: 500;
}


/* Background section */

.background-section {
    position: relative;
    background-image: url('./images/banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 30px;
    border-radius: 16px;
}

.background-section h1 {
    font-size: 72px;
    margin-bottom: 50px;
    font-weight: 700;
}

.background-section p {
    margin-top: -40px;

}

.search-container {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 20px;
    padding: 10px 20px;

}

.search-container input[type="text"] {
    width: 380px;
    padding: 20px;
    border-radius: 10px;
    font-size: 16px;
    border: none;
    /* outline: none; */
}

.search-container button {
    background-color: #B68C5A;
    color: white;
    width: 110px;
    padding: 18px 20px;
    border-radius: 10px;
    border: none;
    font-size: 20px;
    font-weight: 500;

}


/* Section for details */

.details-container {
    text-align: center;
    padding: 50px 20px;

}

.details-card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;

}

.card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.card img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.card h3 {
    font-size: 22px;
    font-weight: bold;
    color: #333;
}

.card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.details-text {
    font-size: 40px;
    font-weight: 700;
}



/* Client text */

.client-text {
    text-align: center;
}

/* DEsigner section */

.designer-container {
    position: relative;
    text-align: center;
    background-image: url('./images/banner.png');
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    height: 380px;
    border-radius: 20px;
    margin-top: 30px;
    overflow: hidden;
}

/* Dark overlay for the background image */
.designer-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;

}


.designer-section {
    position: relative;
    z-index: 2;

    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 15px;
}

/* Styling for the designer's image */



.designer-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e3a762;

}

/* Styling for the designer's name */
.yeasin-text {
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin-top: 10px;
}

/* Styling for the designer's job title */
.designer-section p {
    font-size: 16px;
    color: white;
    margin: 10px 0;
    line-height: 1.6;
}


/* Frequent Asked questions */
.frequent-text {
    text-align: center;
}


/* Card section */

.features-card {

    background-color: white;
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
    border-radius: 16px;

}

.features {
    gap: 30px;
}

.features-card h4 {
    color: green;
    margin-left: 30px;
    font-size: 24px;
}

.features-card p {
    margin-left: 30px;
    color: #707070;
}

/* Contact us section */

.contactus-text {
    text-align: center;
}

/* Card section for contact us */

.contact-us-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 40px;

}

.contact-us-card-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    width: 50%;
}

.cont-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;

}

.cont-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.cont-card h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.cont-card p {
    font-size: 0.9em;
    color: #707070;
}

.clever-man img {
    width: 500px;
}


/* form section */

.msg-form {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.msg-form input,
.msg-form textarea {
    padding: 20px;
    font-size: 1em;
    border-radius: 5px;
    border: 1px solid #ddd;
}

/* Button */
.msg-form button {
    background-color: #B68C5A;
    padding: 20px;
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 15px;
}


/* Footer section */

.footer-all {
    background-color: #111111;
    display: flex;
    justify-content: space-between;
    color: white;
    padding: 40px;
    gap: 30px;
    margin-top: 100px;


    /* margin: 0 auto; */
}

.justice-part {
    margin-top: 20px;
}


.justice-part img {
    width: 120px;
    margin-bottom: 15px;
}


.justice-part p {
    font-size: 0.9em;
    line-height: 1.5;
}

h4 {
    font-size: 1.2em;
    margin-bottom: 15px;
    font-weight: 600;
}


.footer-links {
    list-style: none;
    padding: 0;

}

.footer-item {
    margin-bottom: 10px;
}

.footer-item a {
    text-decoration: none;
    color: white;
    font-size: 0.9em;

}

.connect-us p {
    font-size: 0.9em;
    margin-bottom: 5px;
}

.sub input {
    /* width: 200px; */
    padding: 15px;
    margin-bottom: 10px;
    font-size: 1em;
    border-radius: 5px;
    border: none;
}

.search-btn {
    background-color: #F4A261;
    color: white;
    padding: 16px;
    border-radius: 5px;
    margin-left: 5px;

}

.copyright {
    color: red;
    font-size: 20px;
}