/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
  
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.header {
    background:  repeat, rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 40px;
}

.nav-menu {
    position: relative;
}

.nav-list {
    display: flex;
    gap: 1rem;
    list-style: none;
    transform-origin: center;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    background-color: #8b5a2b;
    color: white;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    
}

.nav-link:hover {
    background-color: #a0522d;
    transform: rotate(0deg) scale(1.2);
}

.burger-icon {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger-icon span {
    width: 25px;
    height: 3px;
    background-color: #8b5a2b;
    transition: all 0.3s ease;
}

.nav-menu.active .burger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-menu.active .burger-icon span:nth-child(2) {
    opacity: 0;
}

.nav-menu.active .burger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 60px;
        right: 0;
        /* background: url('https://www.transparenttextures.com/patterns/wood-pattern.png') repeat, rgba(255, 255, 255, 0.9); */
        flex-direction: column;
        width: 200px;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    .nav-menu.active .nav-list {
        display: flex;
    }
    .nav-link {
        border-radius: 5px;
        transform: none;
    }
    .nav-link:hover {
        transform: scale(1.05);
    }
    .burger-icon {
        display: flex;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero p{
    margin-bottom: 34px;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Cedarville Cursive', cursive;
    font-size: 4rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    animation: carve 2s ease forwards;
}

@keyframes carve {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #8b5a2b;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.hero-button:hover {
    background-color: #a0522d;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(139, 90, 43, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(139, 90, 43, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(139, 90, 43, 0);
    }
}

.slider-dots {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 1rem;
    height: 1rem;
    background-color: #a0aec0;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background-color: white !important;
}

/* About Section */
.about {
    padding: 4rem 0;
}

.section-title {
    font-family: 'Cedarville Cursive', cursive;
    font-size: 2.5rem;
    text-align: center;
    color: #8b5a2b;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::before,
.section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 100px;
    height: 2px;
    background-color: #8b5a2b;
}

.section-title::before {
    left: 20%;
}

.section-title::after {
    right: 20%;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.about-block-reverse {
    flex-direction: column-reverse;
}

.about-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-text {
    text-align: center;
}

.about-subtitle {
    font-family: 'Cedarville Cursive', cursive;
    font-size: 1.5rem;
    color: #8b5a2b;
    margin-bottom: 0.5rem;
}

.about-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.icon-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-placeholder {
    width: 50px;
    height: 50px;
    background-color: #d2b48c;
    border-radius: 50%;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.icon-block:hover .icon-placeholder {
    /* background: url('https://www.transparenttextures.com/patterns/wood-pattern.png') repeat, #d2b48c; */
    transform: scale(1.1);
}

.about-button {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    background-color: #8b5a2b;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.about-button:hover {
    background-color: #a0522d;
}

@media (min-width: 768px) {
    .about-block {
        flex-direction: row;
    }
    .about-block-reverse {
        flex-direction: row-reverse;
    }
    .about-image, .about-text {
        width: 50%;
    }
    .about-text {
        text-align: left;
        padding: 0 2rem;
    }
    .about-icons {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Services Section */
.services {
    padding: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid #8b5a2b;
    opacity: 0;
    transition: all 0.3s ease;
}

.service-card:hover::after {
    opacity: 1;
}

.service-title {
    font-family: 'Cedarville Cursive', cursive;
    font-size: 1.25rem;
    color: #8b5a2b;
    text-align: center;
    margin: 1rem 0 0.5rem;
}

.service-link {
    display: block;
    text-align: center;
    color: #8b5a2b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #a0522d;
}

.service-slider-container {
    margin-top: 3rem;
}

.service-slider-title {
    font-family: 'Cedarville Cursive', cursive;
    font-size: 1.5rem;
    text-align: center;
    color: #8b5a2b;
    margin-bottom: 1.5rem;
}

.slider {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #8b5a2b #f5f3e7;
}

.slider::-webkit-scrollbar {
    height: 8px;
}

.slider::-webkit-scrollbar-track {
    background: #f5f3e7;
}

.slider::-webkit-scrollbar-thumb {
    background-color: #8b5a2b;
    border-radius: 20px;
}

.slider-item {
  flex: 1;
    text-align: center;
}

.slider-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 4rem 0;
    position: relative;

}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: url('https://www.transparenttextures.com/patterns/wood-pattern.png') repeat; */
    opacity: 0.1;
}

.why-choose-us-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-choose-us-content {
    flex: 1;
}

.why-choose-us-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.why-choose-us-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.why-choose-us-item .icon-placeholder {
    width: 40px;
    height: 40px;
    background-color: #d2b48c;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.why-choose-us-item:hover .icon-placeholder {
    box-shadow: 0 0 10px rgba(139, 90, 43, 0.5);
}

.why-choose-us-image {
    flex: 1;
}

.why-choose-us-image img {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .why-choose-us-container {
        flex-direction: row;
        align-items: center;
    }
    .why-choose-us-content {
        padding-right: 2rem;
    }
}

/* Projects Section */
.projects {
    padding: 4rem 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-title {
    font-family: 'Cedarville Cursive', cursive;
    font-size: 1.25rem;
    color: #8b5a2b;
    text-align: center;
    margin: 1rem 0 0.5rem;
}

@media (min-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Free Quote Section */
.free-quote {
    padding: 4rem 0;
}

.free-quote-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.free-quote-image {
    flex: 1;
}

.free-quote-image img {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.free-quote-content {
    flex: 1;
}

.free-quote-form {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-input {
    padding: 0.75rem;
    border: 2px solid #8b5a2b;
    border-radius: 5px;
    /* background: url('https://www.transparenttextures.com/patterns/wood-pattern.png') repeat, #fff; */
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #a0522d;
    box-shadow: 0 0 5px rgba(139, 90, 43, 0.5);
}

.form-button {
    padding: 0.75rem;
    background-color: #8b5a2b;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-button:hover {
    background-color: #a0522d;
}

@media (min-width: 768px) {
    .free-quote-container {
        flex-direction: row;
        align-items: center;
    }
    .free-quote-content {
        padding-left: 2rem;
    }
}

/* Team Members Section */
.team-members {
    padding: 4rem 0;
}

.team-members-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.team-member-card {
    text-align: center;
}

.team-member-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.team-member-card:hover img {
    transform: rotate(5deg);
}

.team-member-name {
    font-family: 'Cedarville Cursive', cursive;
    font-size: 1.25rem;
    color: #8b5a2b;
}

.team-member-title {
    color: #666;
}

@media (min-width: 768px) {
    .team-members-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Testimonial Section */
.testimonial {
    padding: 4rem 0;
}

.testimonial-slider {
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-card {
    /* background: url('https://www.transparenttextures.com/patterns/wood-pattern.png') repeat, #fff; */
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.testimonial-name {
    font-family: 'Cedarville Cursive', cursive;
    font-size: 1.25rem;
    color: #8b5a2b;
    margin-top: 1rem;
}

.testimonial-title {
    color: #666;
}

/* Accordion Section (FAQ) */
.faq {
    padding: 4rem 0;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    /* background: url('https://www.transparenttextures.com/patterns/wood-pattern.png') repeat, #fff; */
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.accordion-summary {
    font-family: 'Cedarville Cursive', cursive;
    font-size: 1.125rem;
    color: #8b5a2b;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-summary::after {
    content: '+';
    font-size: 1.5rem;
}

.accordion-item[open] .accordion-summary::after {
    content: '−';
}

.accordion-content {
    margin-top: 0.5rem;
}

/* Events Section */
.events {
    padding: 4rem 0;
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.event-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.event-card:hover img {
    transform: scale(1.1);
}

.event-title {
    font-family: 'Cedarville Cursive', cursive;
    font-size: 1.25rem;
    color: #8b5a2b;
    margin: 1rem 0 0.5rem;
    text-align: center;
}

.event-card p {
    text-align: center;
    padding: 0 1rem 1rem;
}

@media (min-width: 768px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    text-align: center;
}

.contact-text {
    margin-bottom: 1.5rem;
}

.contact-button-container {
    text-align: center;
}

.contact-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #8b5a2b;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background-color: #a0522d;
}

.contact-info {
    margin-top: 2rem;
}

.contact-info p {
    margin: 0.5rem 0;
}

/* Footer */
.footer {
 
    color: white;
    padding: 2rem 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.footer-section {
    text-align: center;
}

.footer-title {
    font-family: 'Cedarville Cursive', cursive;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    color: #d2b48c;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.newsletter-input {
    padding: 0.5rem;
    border: 2px solid #8b5a2b;
    border-radius: 5px;
    /* background: url('https://www.transparenttextures.com/patterns/wood-pattern.png') repeat, #fff; */
}

.newsletter-button {
    padding: 0.5rem;
    background-color: #8b5a2b;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    background-color: #a0522d;
}

@media  (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }
    .newsletter-form {
        flex-direction: row;
    }

}
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;
    }
    .slider {
        display: flex
    ;
        gap: 1rem;
        flex-direction: column;
        overflow-x: auto;
        scrollbar-width: thin;
        scrollbar-color: #8b5a2b #f5f3e7;
    }
    .hero-title {
        font-family: 'Cedarville Cursive', cursive;
        font-size: 2rem;
        margin-bottom: 2rem;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
        animation: carve 2s ease forwards;
    }
    .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;
}