/* Reset and General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}
.fa-brands, .fab {
    font-weight: 400;
    color: #fff;
}
/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0;
}

.logo img {
    height: 40px;
}
.logo{
    display: flex;
    gap: 5px;
    align-items: center;
    text-decoration: none;

}
.logo h3{
    color: #b68c5a;
font-size: 16px;
}
.nav-menu ul {
    display: flex;
    list-style: none;
}

.nav-menu ul li {
    margin-left: 20px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu ul li a:hover {
    color: #b68c5a;
}

.nav-menu ul li a.btn {
    background-color: #b68c5a;
    color: #fff;
    padding: 13px 15px;
    border-radius: 0px;
}

.nav-menu ul li a.btn:hover {
    background-color: #a17b4e;
}
a i {
    font-size: 24px;
    color: #333;
    margin: 0 10px;
    transition: color 0.3s;
  }
  a i:hover {
    color: #007bff;
  }
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 2px 0;
    transition: all 0.3s;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
background: fixed;
    height: 100%;
    min-height: 700px;
    max-height: 700px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    margin-top: 40px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #db7700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero .btn {
    background-color: #b68c5a;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.hero .btn:hover {
    background-color: #a17b4e;
}

/* Features Section */
.features {
    padding: 80px 0 50px;
}

.features .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.feature-box {
    background-color: #f5ece1;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 30%;
}


.feature-box__img {
    width: 90px;
    height: 90px;
    margin: -50px auto 0;
    background-color: #fff;
    display: flex
;
    overflow: hidden;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
}
.feature-box__img img {

    height: 100%;
    width: 100%;
 }
.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* About Section */
.about {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.about .container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-content {
    width: 50%;
}

.about-content h2 {
    font-size: 1.2rem;
    color: #b68c5a;
    margin-bottom: 10px;
}

.about-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-content h3 span {
    color: #b68c5a;
}

.about-content p {
    margin-bottom: 20px;
}

.about-content .btn {
    background-color: #b68c5a;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.about-image {
    width: 50%;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.experience-box {
    background-color: #b68c5a;
    color: #fff;
    padding: 20px;
    position: absolute;
    bottom: 20px;
    right: 20px;
    border-radius: 10px;
}

.experience-box h4 {
    font-size: 2rem;
}

/* Services Section */
.services {
    padding: 50px 0;
    text-align: center;
}

.services h2 {
    font-size: 1.2rem;
    color: #b68c5a;
    margin-bottom: 10px;
}

.services h3 {
    font-size: 2.5rem;
    margin-bottom: 70px;
}

.services h3 span {
    color: #b68c5a;
}

.services-grid {
    display: grid
;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    row-gap: 70px;
}

.service-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.service-box__img {
    width: 90px;
    height: 90px;
    margin: -50px auto 0;
    background-color: #fff;
    display: flex
;
    overflow: hidden;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
}
.service-box img {
    height: 100%;
    width: 100%;
}

.service-box h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Why Choose Us Section */
.why-choose {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.why-choose h2 {
    font-size: 1.2rem;
    color: #b68c5a;
    margin-bottom: 10px;
    text-align: center;
}

.why-choose h3 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

.why-choose h3 span {
    color: #b68c5a;
}

.why-choose-content {
    display: flex;
    gap: 40px;
}

.why-choose-text {
    width: 50%;
}

.reason {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.reason img {
    height: 40px;
    margin-right: 15px;
}

.reason h4 {
    font-size: 1.5rem;
}

.why-choose-image {
    width: 50%;
}

.why-choose-image img {
    width: 100%;
    border-radius: 10px;
}

/* Projects Section */
.projects {
    padding: 50px 0;
}

.projects h2 {
    font-size: 1.2rem;
    color: #b68c5a;
    margin-bottom: 10px;
    text-align: center;
}

.projects h3 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

.projects h3 span {
    color: #b68c5a;
}

.projects-content {
    display: flex;
    gap: 40px;
}

.projects-list {
    width: 30%;
}

.projects-list p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    cursor: pointer;
}

.projects-list p:hover {
    color: #b68c5a;
}

.projects-image {
    width: 70%;
    position: relative;
}

.projects-image img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    max-height: 500px;
    border-radius: 10px;
}

.projects-image .experience-box {
    background-color: #b68c5a;
    color: #fff;
    padding: 20px;
    position: absolute;
    bottom: 20px;
    right: 20px;
    border-radius: 10px;
}

.projects-image .experience-box h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.projects-image .experience-box .btn {
    background-color: #fff;
    color: #b68c5a;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
}

/* Team Section */
.team {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.team h2 {
    font-size: 1.2rem;
    color: #b68c5a;
    margin-bottom: 10px;
    text-align: center;
}

.team h3 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

.team h3 span {
    color: #b68c5a;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.team-member h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

/* Appointment Section */
.appointment {
    padding: 50px 0;
}

.appointment h2 {
    font-size: 1.2rem;
    color: #b68c5a;
    margin-bottom: 10px;
    text-align: center;
}

.appointment h3 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

.appointment h3 span {
    color: #b68c5a;
}

.appointment-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.contact-info {
    width: 40%;
}

.contact-info p {
    display: flex;
    gap: 5px;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info p img {
    height: 20px;
    margin-right: 10px;
}

.appointment-form {
    width: 60%;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.appointment-form input,
.appointment-form select {
    width: calc(50% - 10px);
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.appointment-form button {
    background-color: #b68c5a;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Testimonials Section */
.testimonials {
    padding: 50px 0;
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
}

.testimonials h2 {
    font-size: 1.2rem;
    color: #b68c5a;
    margin-bottom: 10px;
}

.testimonials h3 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.testimonials h3 span {
    color: #b68c5a;
}

.testimonial-content img {
    width: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-content h4 {
    font-size: 1.5rem;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 50px 0;
}

.footer-grid {
    display: flex
;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 30px;
}
.footer-column a{
    color: #fff;
    text-decoration: none;
    margin-right: 10px;
}
.footer-column h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-column p {
    margin-bottom: 10px;
}

.social-icons a {
    margin-right: 10px;
}

.social-icons img {
    height: 20px;
}

.footer-column input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
}

.footer-column button {
    background-color: #b68c5a;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 40px;
        left: 0;
        width: 100%;
        background-color: #fff;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
    }

    .nav-menu ul li {
        margin: 10px 0;
    }

    .burger {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .features .container,
    .about .container,
    .why-choose-content,
    .projects-content,
    .appointment-content {
        flex-direction: column;
        
    }
    .features .container {
        display: flex
    ;
        justify-content: space-between;
        gap: 51px;
    }
    .feature-box,
    .about-content,
    .about-image,
    .why-choose-text,
    .why-choose-image,
    .projects-list,
    .projects-image,
    .contact-info,
    .appointment-form {
        width: 100%;
    }

    .services-grid,
    .team-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .appointment-form input,
    .appointment-form select {
        width: 100%;
    }
}
html,body{
    display: flex;
    flex-direction: column;
    height: 100%;
}
a{
    text-decoration: none;
}
.f{
    display: flex;
}
.f-col{
   flex-direction: column;
}
.f-wrap{
    display: flex;
    flex-wrap: wrap;
}
.f-star{
    align-items:flex-start
}
.b.f {
    display: flex
;

    justify-content: space-around;
}
@media screen and (max-width:768px) {
    .f{
       flex-wrap: wrap;
    }
    .map img{
width: 100%;
}
.map p{
width: 100%;
}
.b.f{
    flex-direction: column;
}
}
.tyty p, .tyty h2,.tyty h3, .tyty h4{
    text-align: start;
    margin-bottom: 20px;
}