* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Poppins, sans-serif;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* HEADER */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 5%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
    z-index: 1000;
}

.logo img {
    height: 70px;
}

.navbar {
    display: flex;
    gap: 25px;
}

.navbar a {
    text-decoration: none;
    color: #222;
    font-weight: 600;
}

.consult-btn {
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 30px;
    background: #b22222;
    color: #ffffff;
}

.menu-btn {
    display: none;
    border: none;
    background: transparent;
    font-size: 28px;
    cursor: pointer;
}

/* HERO */

.hero {
    height: 100vh;
    background-image:url("https://static.vecteezy.com/system/resources/thumbnails/043/500/990/small/modern-living-room-design-with-gallery-wall-fresh-clean-light-contemporary-room-interior-photo.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.hero-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    color: white;
    max-width: 900px;
    padding: 20px;
}

.hero-content span {
    font-size: 18px;
    letter-spacing: 3px;
}

.hero-content h1 {
    font-size: 70px;
    margin: 25px 0;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-buttons a {
    padding: 15px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
}

.hero-buttons a:first-child {
    background: #b22222;
    color: white;
}

.hero-buttons a:last-child {
    background: white;
    color: black;
}

/* STATISTICS */

.stats {
    padding: 100px 8%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat-card {
    padding: 40px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
}

.stat-card h2 {
    font-size: 50px;
    color: #b22222;
}

/* BRANDS */

.brands {
    padding: 100px 0;
    text-align: center;
}

.section-title {
    margin-bottom: 50px;
}

.slider {
    overflow: hidden;
}

.slide-track {
    display: flex;
    width: calc(180px * 16);
    animation: move 25s linear infinite;
}

.slide-track img {
    width: 140px;
    margin: 0 20px;
}

@keyframes move {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* TABLET */

@media (max-width:992px) {

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 50px;
    }
}

/* MOBILE */

@media (max-width:768px) {

    .header {
        flex-wrap: wrap;
    }

    .menu-btn {
        display: block;
    }

    .navbar {
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: center;
        padding-top: 20px;
    }

    .navbar.active {
        display: flex;
    }

    .consult-btn {
        display: none;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .stats {
        grid-template-columns: 1fr;
    }
}
.services,
.style-quiz,
.why-us {
    padding: 100px 8%;
}

.service-grid,
.why-grid {
    display: grid;
    gap: 25px;
}

.service-grid {
    grid-template-columns: repeat(3, 1fr);
}

.why-grid {
    grid-template-columns: repeat(4, 1fr);
}

.service-card,
.why-card {
    overflow: hidden;
    text-align: center;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
}

.service-card img {
    width: 100%;
    border-radius: 15px;
}

.service-card h3 {
    margin: 20px 0;
}

.service-btn,
.quiz-btn {
    border: none;
    padding: 14px 24px;
    border-radius: 30px;
    cursor: pointer;
    background: #b22222;
    color: white;
}

.quiz-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

#quizResult {
    margin-top: 30px;
    text-align: center;
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .8);
    z-index: 9999;
}

.modal-content {
    width: 90%;
    max-width: 1000px;
    background: white;
    margin: 60px auto;
    padding: 30px;
    border-radius: 20px;
}

.close-modal {
    float: right;
    font-size: 35px;
    cursor: pointer;
}

.modal-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.modal-gallery img {
    width: 100%;
    border-radius: 15px;
}

@media (max-width: 992px) {

    .service-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .service-grid,
    .why-grid,
    .modal-gallery {
        grid-template-columns: 1fr;
    }
}
/* PORTFOLIO */

.portfolio {

    padding: 100px 8%;
}

.portfolio-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}

.project-card {

    overflow: hidden;

    border-radius: 20px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
}

.project-card img {

    width: 100%;

    display: block;
}

.project-content {

    padding: 25px;
}

.project-buttons a {

    display: inline-block;

    padding: 12px 20px;

    margin: 20px 0;

    border-radius: 30px;

    background: #b22222;

    color: white;

    text-decoration: none;
}

.social-links {

    display: flex;

    gap: 15px;
}

.social-links a {

    width: 45px;

    height: 45px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    background: #f3f3f3;

    color: #222;
}

/* TEAM */

.team {

    padding: 100px 8%;

    background: #f8f8f8;
}

.team-grid {

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 25px;
}

.team-card {

    text-align: center;

    padding: 25px;

    background: white;

    border-radius: 20px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
}

.team-card img {

    width: 150px;

    border-radius: 50%;

    margin-bottom: 20px;
}

/* RESPONSIVE */

@media (max-width: 992px) {

    .portfolio-grid {

        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {

        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .portfolio-grid {

        grid-template-columns: 1fr;
    }

    .team-grid {

        grid-template-columns: 1fr;
    }
}

.calculator,
.meeting {

    padding: 100px 8%;
}

.calculator-box,
.meeting-box {

    max-width: 900px;

    margin: auto;

    padding: 40px;

    border-radius: 20px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
}

.form-group {

    margin-bottom: 20px;
}

.form-group label {

    display: block;

    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.room-grid input,
.meeting-box input,
.meeting-box select {

    width: 100%;

    padding: 15px;

    border: 1px solid #ddd;

    border-radius: 10px;
}

.room-grid {

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 20px;

    margin: 30px 0;
}

#calculateBtn,
#meetingBtn,
.share-btn {

    display: inline-block;

    width: 100%;

    padding: 15px;

    border: none;

    border-radius: 10px;

    background: #b22222;

    color: white;

    cursor: pointer;

    text-decoration: none;

    text-align: center;

    margin-top: 20px;
}

.result-box {

    text-align: center;

    margin-top: 30px;
}

.result-box h2 {

    margin-top: 10px;

    font-size: 40px;
}

.meeting-box {

    display: flex;

    flex-direction: column;

    gap: 20px;
}

@media (max-width: 992px) {

    .room-grid {

        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .room-grid {

        grid-template-columns: 1fr;
    }
}
/* TESTIMONIALS */

.testimonials,
.faq,
.contact {

    padding: 100px 8%;
}

.testimonial-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.testimonial-card {

    padding: 30px;

    border-radius: 20px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);

    text-align: center;
}

.stars {

    font-size: 24px;

    margin: 15px 0;
}

/* FAQ */

.faq-container {

    max-width: 900px;

    margin: auto;
}

details {

    margin-bottom: 20px;

    padding: 20px;

    border-radius: 10px;

    border: 1px solid #ddd;
}

summary {

    cursor: pointer;

    font-weight: 600;
}

/* CONTACT SECTION */

.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

.contact-form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-sizing: border-box;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

/* FOOTER */

.footer {

    background: #111;

    color: white;

    padding: 80px 8% 20px;
}

.footer-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 40px;
}

.footer ul {

    list-style: none;
}

.footer li {

    margin-bottom: 10px;
}

.footer a {

    color: white;

    text-decoration: none;
}

.footer-social {

    display: flex;

    gap: 15px;

    margin-top: 20px;
}

.footer-social a {

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, .1);
}

.copyright {

    text-align: center;

    margin-top: 50px;

    border-top: 1px solid rgba(255, 255, 255, .1);

    padding-top: 20px;
}

/* RESPONSIVE */

@media (max-width: 992px) {

    .testimonial-grid {

        grid-template-columns: 1fr;
    }

    .footer-grid {

        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .footer-grid {

        grid-template-columns: 1fr;
    }
}


/* FLOATING WHATSAPP */

.floating-whatsapp {

    position: fixed;

    bottom: 25px;

    right: 25px;

    width: 65px;

    height: 65px;

    border-radius: 50%;

    background: #25d366;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 30px;

    color: white;

    text-decoration: none;

    z-index: 1000;
}

/* DARK MODE BUTTON */

.dark-mode-btn {

    position: fixed;

    bottom: 110px;

    right: 25px;

    width: 55px;

    height: 55px;

    border: none;

    border-radius: 50%;

    cursor: pointer;

    z-index: 1000;
}

/* SCROLL BUTTON */

.scroll-top {

    position: fixed;

    bottom: 180px;

    right: 25px;

    width: 55px;

    height: 55px;

    border: none;

    border-radius: 50%;

    cursor: pointer;

    display: none;

    z-index: 1000;
}

.scroll-top.show {

    display: block;
}

/* DARK MODE */

body.dark {

    background: #121212;

    color: white;
}

body.dark .header,
body.dark .service-card,
body.dark .project-card,
body.dark .team-card,
body.dark .stat-card,
body.dark .calculator-box,
body.dark .meeting-box {

    background: #1e1e1e;

    color: white;
}

/* BETTER TABLET RESPONSIVENESS */

@media (max-width: 1024px) {

    .header {

        padding: 15px 3%;
    }

    .hero-content h1 {

        font-size: 52px;
    }

    .team-grid {

        grid-template-columns: repeat(2, 1fr);
    }
}

/* BETTER MOBILE RESPONSIVENESS */

@media (max-width: 768px) {

    .header {

        flex-wrap: wrap;
    }

    .logo img {

        height: 55px;
    }

    .hero {

        height: auto;

        min-height: 100vh;
    }

    .hero-content {

        padding-top: 120px;
    }

    .hero-content h1 {

        font-size: 34px;
    }

    .hero-buttons {

        flex-direction: column;
    }

    .hero-buttons a {

        width: 100%;
    }

    .floating-whatsapp,
    .dark-mode-btn,
    .scroll-top {

        transform: scale(.85);
    }
}
