body {
    font-family: Arial;
    margin: 0;
    padding: 0;
    background-color: #f9f6f2;
    color: #333;
    overflow-x: hidden;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
#services{
    padding-top: 100px;
}
#projects{
    padding-top: 100px;
}
#blog{
    padding-top: 100px;
}
#about{
    padding-top: 100px;
}
#contact{
    padding-top: 130px;
}

/* Add these styles at the beginning of your CSS file */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #555;
    margin: 2px 0;
    transition: 0.4s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Update your existing header and nav styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ebebe0;
    padding: 15px 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
header .logo {
    display: flex;
    align-items: center;
}
header .logo img {
    height: 80px;
    margin-right: 10px;
}
nav {
    display: flex;
    gap: 30px;
    margin-left: -30%;
    position: sticky;
    top: 0;
    transition: 0.3s ease;
}
nav a {
    text-decoration: none;
    color: #555;
    font-size: 1.2em;
    transition: color 0.3s ease, transform 0.3s ease;
}
nav a:hover {
    color: #C0C0C0;
}
.right-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.social-icons {
    display: flex;
    gap: 10px;
}
.social-icons i{
    padding: 10px;
    background-color: #A0A0A0;
    color: #fff;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.social-icons i:hover{
    background-color: #C0C0C0;
}
.contact {
    margin-top: 15px;
    font-size: 0.9em;
    color: #555;
    transition:0.3s ease, transform 0.3s ease;
}
.contact:hover{
    color: #C0C0C0;
}
main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
}
.intro-text {
    max-width: 50%;
}
.intro-text h2 {
    font-size: 3em;
    margin: 0 0 15px;
    margin-top: -30px;
}
.intro-text p {
    font-size: 1.2em;
    line-height: 1.5;
    margin-bottom: 20px;
}
.intro-text a {
    display: inline-block;
    text-decoration: none;
    background-color: #C0C0C0;
    color: #fff;
    padding: 15px 25px;
    font-size: 0.8m;
    border-radius: 30px;
    transition:0.3s ease, transform 0.3s ease;
}
.intro-text a:hover {
    background-color: #A0A0A0;
    color: #000;
}
.slider {
    position: relative;
    width: 80%;                /* Increased width */
    max-width: 1000px;         /* Optional: limit to 1000px */
    overflow: hidden;
    border-radius: 12px;
    margin: 0 auto;            /* Center the slider */
  }
  
  .slider-container {
    width: 100%;
    height: 700px;             /* Increased height */
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: none;
    background: transparent;
  }
  
  .slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
  }
  
  .slider-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* Change from 'contain' to 'cover' */
    flex-shrink: 0;
    background: transparent;
  }
  

.design-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 80px 40px;
    flex-wrap: wrap;
    text-align: left;
    margin: -50px;
  }
  .abt-img img {
    height: 550px;
    width: 600px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  
  .content {
    width: 600px;
    max-width: 100%;
  }
  
  .content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #555;
  }
  
  .content p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #A0A0A0;
  }
  
  .about-btn {
    background-color: #C0C0C0;
    color: #fff;
    padding: 18px 30px;
    font-size: 1rem;
    border-radius: 30px;
    border: none;
    transition: 0.3s ease, transform 0.3s ease;
  }
  
  .about-btn:hover {
    background-color: #A0A0A0;
    color: #000;
  }

/* service sec */
.services-section {
  max-width: 550px;
  margin: 20px auto;
  text-align: center;
}

.services-section h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

.services-section p {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 30px;
  color:#A0A0A0 ;
}

.accordion {
  border-top: 1px solid #ccc;
}

.accordion-item {
  border-bottom: 1px solid #ccc;
}

.accordion-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #f9f6f2;
  color: #555;
  padding: 15px;
  font-size: 20px;
  cursor: pointer;
  border: none;
  width: 100%;
  text-align: center;
  font-weight: bold;
  text-align: left; 
  transition: background-color 0.3s, color 0.3s; 
  gap: 10px; 
}
.accordion-header.active {
  color: #C0C0C0; 
}

.accordion-header .arrow {
  transition: transform 0.3s;
}

.accordion-header.active .arrow {
  transform: rotate(180deg);
}

.accordion-content {
  width: 550px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-header .arrow {  
  transition: transform 0.3s ease-in-out;
}

.accordion-content p {
  padding: 15px;
  font-size: 19px;
  width: 500px;
  line-height: 1.4;
  text-align: left; 
  padding-top: 0;
  margin: 0 0 15px 0;
  transition: color 0.3s, background-color 0.3s; 
  color: #555;
}

.estimate-btn {
  margin-top: 20px;
  padding: 20px 40px;
  font-size: 16px;
  background-color: #C0C0C0;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 30px;
  text-transform: uppercase;
  transition:0.3s ease, transform 0.3s ease;
}
.estimate-btn:hover{
    background-color: #A0A0A0;
    color: #000;
}

/* container*/
.wrapper {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    min-height: 100vh; /* Full viewport height */
    margin-top: 50px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.container h1{
    font-size: 40px; 
    font-weight: bold;
    color: #555;
    margin-bottom: 10px;
}

.container p {
    font-size: 20px;
    font-weight: normal;
    color: #555;
    margin-bottom: 30px;
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.step {
    flex: 1;
    max-width: 250px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 0 10px;
}

.step .icon {
    font-size: 24px;
    color: #A0A0A0;
    margin-bottom: 15px;
}

.step h2 {
    font-size: 18px;
    font-weight: bold;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.step p {
    font-size: 14px;
    color: #7a7a7a;
    line-height: 1.5;
    margin-bottom: 25px;
}

.step img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.cta-button {
    display: inline-block;
    margin-top: 40px;
    padding: 20px 40px;
    font-size: 16px;
    color: #fff;
    background-color: #A0A0A0;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
}

.cta-button:hover {
    background-color: #C0C0C0;
    color: #000     ;
}

/* project */
.projects-container {
    text-align: center;
    padding: 40px;
}

.projects-container h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.projects-container p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #666;
}

.project-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    text-align: left;
}

.project-card img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 10px;
    transition: filter 0.3s ease; 
}
.project-card img:hover{
    filter: brightness(80%);
}

.project-card-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.project-card-content a {
    color: #8c6239;
    text-decoration: underline;
    font-weight: bold;
    background-color: #f5f5f5;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 13px;
}

.all-projects {
    display: inline-block;
    margin-top: 20px;
    padding: 20px 40px;
    background-color: #8c6239;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;  
    transition: background-color 0.3s;
}

.all-projects:hover {
    background-color: #704f2e;
}

/* blog */
.blog-container {
    text-align: center;
    padding: 40px;
}

.blog-container h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.blog-container p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #666;
}

.blog-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.blog-grid img:hover {
    filter: brightness(80%);
}

.blog-card {
    text-align: left;
    max-width: 300px;
}

.blog-card img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: filter 0.3s ease; 
}

.blog-card-content {
    padding: 10px 0;
}

.blog-card-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

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

.blog-card-content a {
    color: #8c6239;
    text-decoration: underline;
    font-weight: bold;
}

/* contact container */
.contact-container {
    background-color: #555;
    color: #fff; 
    padding: 30px 50px;
    border-radius: 15px;
    text-align: center;
    width: 90%; 
    margin-left: 1.5%;
    margin-top: 80px;
}

.contact-container h1 {
    margin: 0 0 16px;
    font-size: 40px;
    font-weight: bold;
}

.contact-container p {
    margin: 0 0 24px;
    font-size: 18px;
    color: #fff;
    line-height: 1.5;
    padding-left:25%;
    padding-right: 25%;
}

.contact-container a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #d9d3c6; /* Light beige button */
    color: #7b5a51; /* Brown text */
    text-decoration: none;
    border-radius: 24px;
    font-size: 16px;
    font-weight: bold;
}

.contact-container a:hover {
    background-color: #cfc6b5; /* Slightly darker beige */
}

/* contact container */
.main-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
    gap: 30px;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
}

/* Map Section */
.map-container {
    flex: 1;
    min-width: 0;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 15px;
}

/* Form Section */
.form-container {
    width: 40%;
    min-width: 300px;
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.form-container h2 {
    color: #555;
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.4;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
}

.form-row input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 8px;
    background-color: #C0C0C0;
    color: #fff;
    font-size: 16px;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
    width: 100%;
}

.form-row input::placeholder {
    color: #fff;
    opacity: 0.8;
}

.form-row input:focus {
    background-color: #A0A0A0;
    outline: none;
}

textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    background-color: #C0C0C0;
    color: #fff;
    font-size: 16px;
    min-height: 150px;
    margin-bottom: 20px;
    resize: vertical;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

textarea::placeholder {
    color: #fff;
    opacity: 0.8;
}

textarea:focus {
    background-color: #A0A0A0;
    outline: none;
}

.form-container button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 30px;
    background-color: #C0C0C0;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.form-container button:hover {
    background-color: #A0A0A0;
    transform: translateY(-2px);
}

/*FOR FAQ SEC*/
.faq-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    margin-top: 100px;
}

.faq-title {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
}

.faq-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
}
.faq-icon{
    margin-right: 10px;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align text to the left */
    width: 100%;
    background-color: #f9f6f2;   
    color: #333;
    border: none;
    padding: 20px 20px;
    margin-bottom: 5px;
    font-size: 20px;
    text-align: left; /* Ensure the text stays left-aligned */
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-question .faq-text {
    margin-left: 10px;
    flex-grow: 1; 
}
.faq-question.active {
    color: #A0A0A0;
}

.faq-question:hover {
    color: #A0A0A0;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    font-size: 18px;
    padding: 10px;
    background-color: #f9f6f2;
    transition: max-height 0.3s ease;
}

/*infor sec*/
.info-section {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    padding: 50px 20px;
    background-color: #f9f6f2;
    max-width: 1200px;
    margin: 0 auto;
}

.info-item {
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.info-item .icon {
    font-size: 30px;
    color: #555;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.info-item h3 {
    margin: 15px 0;
    font-size: 22px;
    font-weight: 600;
    color: #A0A0A0;
    width: 100%;
}

.info-item p {
    margin: 0;
    font-size: 17px;
    line-height: 1.4;
    color: #555;
    width: 100%;
}

/* Media Queries */
@media screen and (max-width: 1024px) {
    nav {
        margin-left: 0;
        gap: 20px;
    }

    .intro-text h2 {
        font-size: 2.5em;
    }

    .project-grid, .blog-grid {
        flex-wrap: wrap;
    }

    .project-card, .blog-card {
        width: calc(50% - 20px);
    }

    .info-section {
        padding: 40px 20px;
        gap: 20px;
    }

    .info-item {
        min-width: 250px;
        padding: 15px;
    }

    .main-wrapper {
        width: 95%;
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: #ebebe0;
        flex-direction: column;
        padding: 80px 20px;
        margin: 0;
        transition: 0.3s ease;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        right: 0;
    }

    nav a {
        padding: 15px;
        font-size: 1.1em;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    header {
        padding: 10px 20px;
    }

    .right-section {
        display: none;
    }

    main {
        flex-direction: column;
        padding: 20px;
    }

    .intro-text {
        max-width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .intro-text h2 {
        font-size: 2em;
        margin-top: 0;
    }

    .design-section {
        flex-direction: column;
    }

    .slider, .content {
        width: 100%;
        margin: 20px 0;
    }

    .services-section {
        padding: 20px;
    }

    .accordion-content {
        width: 100%;
    }

    .accordion-content p {
        width: 100%;
        padding: 15px;
    }

    .project-grid, .blog-grid {
        flex-direction: column;
        gap: 30px;
    }

    .project-card, .blog-card {
        width: 100%;
    }

    .project-card img, .blog-card img {
        width: 100%;
        height: auto;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step {
        width: 100%;
        margin-bottom: 30px;
    }

    .contact-container p {
        padding-left: 0;
        padding-right: 0;
    }

    .info-section {
        flex-direction: column;
        align-items: center;
        padding: 30px 15px;
    }

    .info-item {
        width: 100%;
        max-width: 500px;
        margin-bottom: 30px;
    }

    .info-item:last-child {
        margin-bottom: 0;
    }

    .main-wrapper {
        flex-direction: column;
        width: 100%;
        margin: 20px 0;
        padding: 15px;
        gap: 20px;
        overflow: hidden;
    }

    .map-container {
        width: 100%;
        height: 300px;
    }

    .form-container {
        width: 100%;
        padding: 20px;
        margin: 0;
        min-width: unset;
    }

    .form-row {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 15px;
    }

    textarea {
        min-height: 120px;
        margin-bottom: 15px;
    }

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

@media screen and (max-width: 480px) {
    .intro-text h2 {
        font-size: 1.8em;
    }

    .services-section h2,
    .projects-container h1,
    .blog-container h1,
    .faq-title {
        font-size: 28px;
    }

    .contact-container {
        width: 85%;
        padding: 20px;
        margin: 40px auto;
    }

    .contact-container h1 {
        font-size: 28px;
    }

    .form-row {
        flex-direction: column;
    }

    .faq-question {
        font-size: 16px;
        padding: 15px;
    }

    .faq-answer {
        font-size: 14px;
    }

    .info-section {
        padding: 20px 10px;
    }

    .info-item {
        padding: 10px;
    }

    .info-item .icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .info-item h3 {
        font-size: 18px;
    }

    .info-item p {
        font-size: 16px;
        padding: 0 10px;
    }

    .main-wrapper {
        padding: 10px;
        margin: 15px 0;
    }

    .map-container {
        height: 250px;
    }

    .form-container {
        padding: 15px;
    }

    .form-container h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .form-row input,
    textarea {
        padding: 12px;
        font-size: 14px;
    }

    textarea {
        min-height: 100px;
    }

    .form-container button {
        padding: 12px;
        font-size: 14px;
    }
}

 /* get estimate section */     
 .getcontainer {
    max-width: 550px;
    margin: 40px auto;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    font-family: Arial, sans-serif;
  }
  
  .form-title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 0;
    color: #222;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    min-width: 240px;
  }
  
  .form-row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
  
  label {
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 15px;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="tel"] {
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    width: 100%;
  }
  
  .custom-dropdown {
    position: relative;
  }
  
  .dropdown {
    position: relative;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 12px 16px;
    cursor: pointer;
    user-select: none;
    background-color: #ccc;
  }
  
  .dropdown:focus {
    outline: none;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  }
  
  .selected {
    font-size: 16px;
  }
  
  .dropdown-options {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #ccc;
    border-top: none;
    background-color: #fff;
    z-index: 1000;
    border-radius: 0 0 8px 8px;
    max-height: 200px;
    overflow-y: auto;
  }
  
  .dropdown-options li {
    padding: 12px 16px;
    font-size: 16px;
    transition: background 0.2s;
  }
  
  .dropdown-options li:hover {
    background-color: #f0f0f0;
    color: #333;
    cursor: pointer;
  }
  
  .getbutton {
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    background-color: #333;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
    display: block;
    margin: 0 auto;
    margin-bottom: -20px;
  }
  input[name="name"] {
    width: 200%; /* or any % or px value you like */
  }