@font-face {
    font-family: "Poppins";
    src: url("fonts/Poppins/Poppins-Regular.ttf");
    font-weight: 400;
    font-style: normal;
  }

img{
    max-width: 100%;
    object-fit: cover;
    display: block;
}
a{
    color: inherit;
    text-decoration: none;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f0e1 0%, #e6d8c2 100%);
    color: #2c2c2c;
    overflow-x: hidden;
}
.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}
header {
    background: #2c2c2c;
    color: #fff;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 2rem;
    letter-spacing: 2px;
}
nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s, transform 0.3s;
}
nav ul li a:hover {
    color: #d4a373;
    transform: scale(1.1);
}
.burger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}
.no-scroll {
    overflow: hidden;
}
.btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #d4a373, #e6b800);
    color: #2c2c2c;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}
.btn:hover::after {
    width: 400px;
    height: 300px;
}
.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
section {
    padding: 80px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s;
}
section.visible {
    opacity: 1;
    transform: translateY(0);
}
h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}
.hero {
    height: 100vh;
    max-height: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('image/banner.webp') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}
.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero p {
    font-size: 1.5rem;
    max-width: 600px;
    margin: 0 auto 30px;
}
.why-us {
    background: #fff;
    text-align: center;
}
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
}
.why-us-item {
    padding: 40px;
    border-radius: 10px;
    background: #f5f0e1;
    transition: transform 0.3s;
}
.why-us-item:hover {
    transform: translateY(-10px);
}
.slider {
    position: relative;
    overflow: hidden;
}
.slider-container {
    display: flex;
    transition: transform 0.5s ease;
}
.slide {
    min-width: 100%;
    position: relative;
}
.slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.slider-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    animation: fadeIn 1s ease-out;
}
.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}
.slider-controls button {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    font-size: 2rem;
    padding: 10px;
    cursor: pointer;
    transition: background 0.3s;
}
.slider-controls button:hover {
    background: #d4a373;
}
.accordion {
    max-width: 800px;
    margin: 0 auto;
}
.accordion-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #d4a373;
    transition: background 0.3s;
}
.accordion-header {
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}
.accordion-header i {
    transition: transform 0.3s;
}
.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}
.accordion-content {
    display: none;
    padding: 15px;
}
.accordion-item.active .accordion-content {
    display: block;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
}
.gallery img:hover {
    transform: scale(1.05);
}
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
}
.tips-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.tips-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.tips-card i {
    font-size: 2.5rem;
    color: #d4a373;
    margin-bottom: 15px;
}
.journey {
    background: #fff;
    text-align: left;
}
.journey-content , .flex{
    display: flex;
    gap: 30px;
    align-items: center;
}
.journey-content img, .flex img {
    width: 50%;
    border-radius: 10px;
}
.journey-text {
    flex: 1;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
    text-align: center;
}
.value-item {
    background: #f5f0e1;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s;
}
.value-item:hover {
    transform: translateY(-10px);
}
.value-item i {
    font-size: 2.5rem;
    color: #d4a373;
    margin-bottom: 15px;
}
.process {
    background: #fff;
    text-align: center;
}
.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.step {
    max-width: 300px;
    padding: 20px;
    background: #f5f0e1;
    border-radius: 10px;
    transition: transform 0.3s;
}
.step:hover {
    transform: scale(1.05);
}
.timeline {
    position: relative;
    padding: 40px 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 4  px;
    height: 100%;
    background: #d4a373;
    transform: translateX(-50%);
}
.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}
.timeline-item:nth-child(odd) {
    flex-direction: row;
}
.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}
.timeline-content {
    flex: 1;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.timeline-img {
    width: 50%;
    padding: 20px;
}
.timeline-img img {
    border-radius: 10px;
}
.team {
    text-align: center;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.team-member {
    background: #f5f0e1;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s;
}
.team-member:hover {
    transform: translateY(-10px);
}
.craftsmanship {
    display: flex;
    gap: 20px;
    align-items: center;
}
.craftsmanship img {
    width: 50%;
    border-radius: 10px;
}
.craftsmanship-text {
    flex: 1;
}
.intro {
    background: #fff;
    text-align: center;
}
.intro p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.2rem;
}
.featured {
    display: flex;
    gap: 30px;
    align-items: center;
}
.featured img {
    width: 50%;
    border-radius: 10px;
    max-width: 600px;
}
.featured-text {
    flex: 1;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
    text-align: center;
}
.product-card {
    background: #f5f0e1;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s;
}
.product-card:hover {
    transform: translateY(-10px);
}
.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}
.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.product-card .price {
    font-size: 1.2rem;
    color: #d4a373;
    margin-bottom: 15px;
}
.collections {
    background: #fff;
    text-align: center;
}
.collections-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.collection-item {
    max-width: 400px;
    padding: 20px;
    background: #f5f0e1;
    border-radius: 10px;
    transition: transform 0.3s;
}
.collection-item:hover {
    transform: scale(1.05);
}
.collection-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}
.customization {
    display: flex;
    gap: 20px;
    align-items: center;
}
.customization img {
    width: 50%;
    border-radius: 10px;
}
.customization-text {
    flex: 1;
}
.benefits {
    background: #fff;
    text-align: center;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.benefit-item {
    padding: 20px;
    background: #f5f0e1;
    border-radius: 10px;
    transition: transform 0.3s;
}
.benefit-item:hover {
    transform: translateY(-10px);
}
.benefit-item i {
    font-size: 2.5rem;
    color: #d4a373;
    margin-bottom: 15px;
}
.testimonials {
    text-align: center;
}
.testimonial {
    max-width: 600px;
    margin: 0 auto 30px;
    padding: 20px;
    background: #f5f0e1;
    border-radius: 10px;
}
.guide {
    background: #fff;
}
.guide-content {
    display: flex;
    gap: 20px;
    align-items: center;
}
.guide-content img {
    width: 50%;
    border-radius: 10px;
}
.guide-text {
    flex: 1;
}
.space-section {
    display: flex;
    gap: 30px;
    align-items: center;
    background: #f5f0e1;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 20px;
}
.space-section img {
    width: 50%;
    border-radius: 10px;
    max-width: 600px;
}
.space-text {
    flex: 1;
}
.space-section:nth-child(even) {
    flex-direction: row-reverse;
}
.space-features {
    background: #fff;
    text-align: center;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.feature-item {
    padding: 20px;
    background: #f5f0e1;
    border-radius: 10px;
    transition: transform 0.3s;
}
.feature-item:hover {
    transform: translateY(-10px);
}
.feature-item i {
    font-size: 2.5rem;
    color: #d4a373;
    margin-bottom: 15px;
}
.space-comparison {
    background: #fff;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    max-width: 800px;
    margin: 0 auto;
}
.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #d4a373;
}
.comparison-table th {
    background: #f5f0e1;
}
.comparison-table tr:hover {
    background: #e6d8c2;
}
.space-quiz {
    text-align: center;
    background: #f5f0e1;
}
.quiz-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
}
.quiz-option {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    transition: transform 0.3s;
}
.quiz-option:hover {
    transform: translateY(-10px);
}
.trends {
    background: #fff;
    text-align: center;
}
.trends-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.trend-item {
    max-width: 400px;
    padding: 20px;
    background: #f5f0e1;
    border-radius: 10px;
    transition: transform 0.3s;
}
.trend-item:hover {
    transform: scale(1.05);
}
.trend-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}
h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}
p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}
ul {
    list-style: disc;
    padding-left: 30px;
    margin-bottom: 20px;
}
ul li {
    margin-bottom: 10px;
}
.thank-you  {
    opacity: 1;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.thank-you .container {
    max-width: 1000px;
    padding: 20px;
}
.thank-you h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-out;
}
.thank-you p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    animation: fadeIn 1s ease-out 0.3s;
    animation-fill-mode: backwards;
}
.thank-you .btn {
    font-size: 1.1rem;
    animation: fadeIn 1s ease-out 0.6s;
    animation-fill-mode: backwards;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
footer {
    background: #2c2c2c;
    color: #fff;
    padding: 40px 0;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
}
.footer-content a {
    color: #d4a373;
    text-decoration: none;
}
.footer-content a:hover {
    text-decoration: underline;
}
footer h3{
    font-size: 24px;
    margin-bottom: 15px;
}
.section-top{
    padding-top: 130px;
}
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #d4a373;
    border-radius: 5px;
    transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #e6b800;
    outline: none;
}
.contact-form label{
    margin-bottom: 10px;
    display: flex;
    gap: 8px;
}
.contact-form label input{
    width: auto;
    margin: 0;
}
.contact-form button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #d4a373, #e6b800);
    border: none;
    color: #2c2c2c;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s;
}
.contact-form button:hover {
    transform: scale(1.05);
}
@media (max-width: 768px) {
    .burger {
        display: block;
    }
    nav {
        transform: translateX(100%);
        transition: transform 0.3s ease;
        position: fixed;
        top: 83px;
        left: 0;
        width: 100%;
        height: 100%;
        background: #2c2c2c;
        z-index: 1000;
        padding-top: 80px;
    }
    nav.active {
        transform: translateX(0%);
    }
    nav.active ul {
        flex-direction: column;
        align-items: center;
    }
    nav.active ul li {
        margin: 20px 0;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1.2rem;
    }
    .flex, .journey-content, .craftsmanship, .featured, .customization,.guide-content, .space-section, .case-study {
        flex-direction: column;
    }
    .flex img, .journey-content img, .craftsmanship img, .featured img, .customization img, .guide-content img, .space-section img,  .case-study img {
        width: 100%;
        min-height: 250px;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-item, .timeline-item:nth-child(even), .timeline-item:nth-child(odd) {
        flex-direction: column;
    }
    .timeline-content, .timeline-img {
        flex: none;
        width: 100%;
    }
    .comparison-table {
        font-size: 0.9rem;
    }
    h1 {
        font-size: 2rem;
    }
    h2 , .logo{
        font-size: 1.5rem;
    }
    .thank-you h1 {
        font-size: 2rem;
    }
    .thank-you p {
        font-size: 1.1rem;
    }
    .container{
        padding: 0 10px;
    }
    .comparison-table th, .comparison-table td{
        padding: 10px;
    }
    .space-section, .contact-form{
        padding: 30px 20px;
    }
    .slider-text{
        width: 80%;
    }
}
