* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #f5f5f5;
    color: #333;
    -webkit-user-select: none;
    user-select: none;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    padding: 18px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

.nav a {
    margin: 0 12px;
    text-decoration: none;
    color: #444;
    font-size: 15px;
    transition: transform 0.2s ease, padding 0.3s ease;
}
.nav a:hover {
    background: #cccccc;
    padding: 5px;
    border-radius: 10%;
}

.quote-btn,
.btn-primary {
    background: #876a57;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s ease;
}

.quote-btn {
    padding: 10px 20px;
}

.btn-primary {
    margin-top: 20px;
    padding: 12px 30px;
    width: 40%;
    text-align: center;
}
.btn-primary:hover{
    transform: translateY(-10px);
    background-color: #624c3d;
}

.btn-outline {
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid #333;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    margin-top: 20px;
    transition: 0.3s ease;
    text-align: center;
}

.btn-outline:hover {
    background: #333;
    color: #fff;
}

.hero {
    height: 100vh;
    background: url('img1.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-left: 80px;
    position: relative;
    color: white;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    display: flex;
    flex-direction: column;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.2;
}

.hero h3 {
    margin-top: 10px;
    line-height: 1.2;
}

.section {
    padding: 50px 5px;
    background: white;
    margin-top: 60px;
}

.section h2,
.section p {
    text-align: center;
    padding-bottom: 25px;
}

.about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 120px 80px;
    background: #fafafa;
}

.about-text {
    width: 55%;
}

.about-text h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #222;
    text-align: left;
}

.about-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    max-width: 90%;
    text-align: justify;
}

.about-img {
    width: 45%;
    height: 420px;
    background: url('img3.jpg') center/cover no-repeat;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
    margin-left: 20px;
    margin-right: 20px;
}

.service-card {
    background: #fff;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
    padding: 120px 30px;
    background: #fafafa;
}

.why-img {
    width: 50%;
    height: 420px;
    background: url('img4.jpg') center/cover no-repeat;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.why-text {
    width: 50%;
}

.why-text h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #222;
    text-align: left;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 35px;
}

.icon {
    font-size: 15px;
    color: #b99767;
    margin-top: 4px;
}

.why-item h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

.why-item p {
    font-size: 15px;
    color: #777;
    line-height: 1.7;
    text-align: left;
}

.team-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    margin: 0 auto;
    max-width: 900px;
}

.team-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    width: 320px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.team-img {
    width: 100%;
    height: 220px;
    background: #ddd;
    border-radius: 12px;
    margin-bottom: 20px;
}

.team-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.team-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

#portfolio {
    background-color: burlywood;
}

#portfolio h2{
    margin-top: 40px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.portfolio-card {
    height: 300px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.portfolio-card img {
    width: 100%;
    height: 55%;
    object-fit: cover;
    display: block;
}

.portfolio-info {
    height: 45%;
    padding: 15px;
    text-align: center;
}

.portfolio-info h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #222;
}

.portfolio-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    padding-bottom: 0;
}

#contact {
    margin-left: 0px;
    margin-right: 0px;
}

.contact-cta {
    background: #ffffff;
    text-align: center;
}

.contact-cta h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 0;
}

.contact-cta p {
    font-size: 17px;
    color: #555;
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.7;
    padding-bottom: 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.footer {
    background: #2f2f2f;
    color: #ddd;
    padding: 80px 80px 40px;
    margin-top: 60px;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: #444;
    margin-bottom: 50px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.footer-col h3,
.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    max-width: 380px;
    font-weight: 100;
    line-height: 1.7;
    text-align: justify;
    color: #ccc;
    padding-bottom: 0;
}

.footer-col a {
    display: block;
    margin-bottom: 10px;
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #c2a178;
}

.footer-socials {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.social-icon {
    width: 42px;
    height: 42px;
    background: #3b3b3b;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
    line-height: 0;
}

.social-icon img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
    transition: 0.3s;
}

.social-icon:hover {
    background: #c2a178;
}

.footer-contact-row {
    margin-top: 50px;
    padding-top: 35px;
    border-top: 1px solid #444;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    font-size: 26px;
}

.contact-box h4 {
    margin: 0;
    font-weight: 100;
    font-size: 16px;
    color: #fff;
}

.contact-box p {
    margin: 4px 0 0 0;
    font-size: 15px;
    color: #ccc;
    padding-bottom: 0;
}

.copy {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #aaa;
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-70px);
    animation: fadeLeft 2s ease-out forwards;
}

.fade-right {
    opacity: 0;
    transform: translateX(70px);
    animation: fadeRight 2s ease-out forwards;
}

@keyframes fadeLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


@media (max-width: 900px) {

    .header {
        position: fixed;
        padding: 15px 25px;
    }
/* 
    .nav {
        display: none;
    } */

    .quote-btn {
        padding: 8px 14px;
        font-size: 14px;
    }

    .hero {
        padding: 120px 20px 60px;
        height: auto;
        text-align: center;
        justify-content: center;
    }

    .hero-content {
        max-width: 100%;
        align-items: center;
    }

    .hero h1 {
        font-size: 40px;
    }

    .btn-primary {
        width: auto;
    }

    .section {
        padding: 60px 25px;
    }

    .section h2 {
        font-size: 28px;
    }

    .about,
    .why {
        flex-direction: column;
        gap: 40px;
        padding: 60px 25px;
        text-align: center;
    }

    .about-text,
    .why-text {
        width: 100%;
    }

    .about-img,
    .why-img {
        width: 100%;
        height: 260px;
    }

    .about-text h2,
    .why-text h2 {
        text-align: center;
        font-size: 28px;
    }

    .about-text p {
        max-width: 100%;
        text-align: justify;
    }

    .service-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-grid {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    .team-card {
        width: 90%;
        max-width: 320px;
    }

    .portfolio-card {
        height: 260px;
    }

    .why-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .icon {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .why-item p {
        text-align: center;
    }

    .footer {
        padding: 60px 25px 40px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        align-items: center;
    }

    .footer-col p {
        margin: 0 auto;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-contact-row {
        flex-direction: column;
        gap: 30px;
    }

    .contact-box {
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {

    .header {
        position: fixed;
        /* padding: 15px 20px; */
        padding: 5px 10px;
    }

    .logo {
        font-size: 20px;
    }

    .quote-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .section {
        padding: 60px 5px;
    }

    .section h2 {
        font-size: 26px;
    }

    .about,
    .why {
        padding: 60px 20px;
    }

    .footer {
        padding: 40px 20px;
    }
}

#page-loader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.loader-logo {
    max-width: 60%;
    height: auto;
    display: block;
}
@media (max-width: 768px) {
    .loader-logo {
        max-width: 70%;
    }
}


.loader-logo {
    width: 150px;
    max-width: 70%;
    animation: logoFadeIn 2s ease forwards;
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

#page-loader.hide {
    opacity: 0;
    visibility: hidden;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}


.hamburger span {
    width: 24px;
    height: 2px;
    background: #000;
    transition: all 0.3s ease;
}

@media (max-width: 900px) {

    .header {
        /* position: fixed; */
        position: sticky;
    }

    .hamburger {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 24px 0;
        display: none;
        z-index: 999;
    }

    .nav.active {
        display: flex;
    }
    

    .quote-btn {
        display: none;
    }
}

@media (max-width: 768px) {

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        text-align: left;
    }

    .footer-col:first-child {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-col:nth-child(2) {
        align-self: flex-start;
    }

    .footer-col:nth-child(3) {
        align-self: flex-start;
    }

    .footer-col h4 {
        margin-bottom: 12px;
    }

    .footer-col a {
        display: block;
        margin-bottom: 8px;
    }
}

.technical-skills {
    text-align: center;
}

.skills-intro {
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.85;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}

.skill-card {
    background: #ffffff;
    padding: 28px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.skill-card img {
    height: 48px;
    max-width: 100px;
    object-fit: contain;
    display: block;
    margin: 0 auto 14px;
}

@media (max-width: 768px) {
    .skill-card img {
        height: 42px;
        max-width: 90px;
    }
}


.skill-card h4 {
    margin-bottom: 8px;
    font-weight: 600;
}

.skill-card p {
    font-size: 0.95rem;
    opacity: 0.8;
}

@media (max-width: 576px) {
    .skills-grid {
        gap: 20px;
    }
}

.what-we-do {
    text-align: center;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.section-subtitle {
    max-width: 720px;
    margin: 0 auto 40px;
    opacity: 0.85;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: auto;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
    margin-bottom: 20px;
    margin-top: 20px;
}

.carousel-item {
    min-width: 260px;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.carousel-item img {
    width: 100%;
    height: 80px;
    /* object-fit: cover; */
}

.carousel-item h4 {
    padding: 16px;
    font-weight: 600;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.1);
    color: #fff;
    border: none;
    font-size: 22px;
    padding: 10px 14px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}

.carousel-btn.prev {
    left: -10px;
}

.carousel-btn.next {
    right: -10px;
}

@media (max-width: 768px) {

    .carousel-item {
        min-width: 230px;
    }

    .carousel-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        font-size: 20px;
        background: rgba(0, 0, 0, 0.1);
    }

    .carousel-btn.prev {
        left: 8px;
    }

    .carousel-btn.next {
        right: 8px;
    }
}
.services-carousel{
        background: burlywood;
}
.services-carousel .service-card {
    min-width: 260px;
    padding: 32px 24px;
}

.services-carousel .service-card span {
    font-size: 34px;
    display: block;
    margin-bottom: 14px;
}

.services-carousel .service-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.works-wrapper .carousel-item,
.tv-wrapper .carousel-item,
.wardrobe-wrapper .carousel-item,
.pooja-wrapper .carousel-item,
.bedroom-wrapper .carousel-item,
.elevation-wrapper .carousel-item,
.plans-wrapper .carousel-item  {
    width: 250px;
    height: 240px;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 12px;
    background: #f4f4f4;
}

.works-wrapper .carousel-item img,
.tv-wrapper .carousel-item img,
.wardrobe-wrapper .carousel-item img,
.pooja-wrapper .carousel-item img,
.bedroom-wrapper .carousel-item img,
.elevation-wrapper .carousel-item img,
.plans-wrapper .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

.works-wrapper .carousel-item:hover img,
.tv-wrapper .carousel-item:hover img,
.wardrobe-wrapper .carousel-item:hover img,
.pooja-wrapper .carousel-item:hover img,
.bedroom-wrapper .carousel-item:hover img,
.elevation-wrapper .carousel-item:hover img,
.plans-wrapper .carousel-item:hover img  {
    transform: scale(1.08);
}

img {
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
}





.carousel-wrapper {
    touch-action: pan-y pinch-zoom;
    user-select: none;
    -webkit-user-select: none;
    cursor: grab; 
}

.carousel-wrapper:active {
    cursor: grabbing;
}

.carousel-track {
    will-change: transform; 
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.works-wrapper .carousel-track,
.tv-wrapper .carousel-track,
.wardrobe-wrapper .carousel-track,
.pooja-wrapper .carousel-track,
.bedroom-wrapper .carousel-track,
.elevation-wrapper .carousel-track,
.plans-wrapper .carousel-track {
    display: flex;
    gap: 24px;
}

@media (max-width: 768px) {
    .carousel-wrapper {
        cursor: default;
    }
    
    .carousel-track {
        transition-duration: 0.35s;
    }
}
