/* ===========================
   CSS Reset / Default Styles
   =========================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img,
picture,
video,
canvas,
svg {
    max-width: 100%;
    display: block;
}

input,
button,
textarea,
select {
    font: inherit;
    border: none;
    outline: none;
    background: none;
}

h1,
h2,
h3,
.headline {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #222;
}

body,
p {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #444;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
}

button {
    cursor: pointer;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Root colors */
:root {
    --primary-color: #966528;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --headline: #331F00;
}

/* ================= Slider ================= */
.carousel,
.carousel-item {
    height: 100vh;
}

.carousel-item {
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* .carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
    animation: zoomLoop 12s ease-in-out infinite alternate;
}

@keyframes zoomLoop {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.15);
    }
} */

/* Caption (Left side) */
.carousel-caption {
    position: absolute;
    top: 44%;
    left: 9%;
    /* text left side e shift */
    transform: translateY(-50%);
    /* only vertical centering */
    z-index: 2;
    text-align: left;
    color: #fff;
    max-width: 600px;
    /* readability maintained */
    padding: 0 15px;
}

.serbtn {
    padding: 3px 16px;
    background-color: #9c6b2f;
    display: inline-block;
    color: #fff;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    margin-top: 20px;
}

.white-patch label {
    color: #fff;
}

.carousel-caption h5 {
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeInDown 1s ease forwards 0.5s;
}

.carousel-caption h2 {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1s;
    color: var(--light-color);
}

.carousel-caption p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.5s;
    color: var(--light-color);
}

.carousel-caption .btn-modern {
    padding: 12px 35px;
    font-size: 16px;
    border-radius: 30px;
    background: #ffcc00;
    color: #000;
    font-weight: bold;
    transition: 0.3s;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 2s;
}

.carousel-caption .btn-modern:hover {
    background: #fff;
    color: #000;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}




/* ================= About Section ================= */
.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 80px 10%;
    flex-wrap: wrap;
}

.about-content {
    flex: 1;
}

.headline {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.headline span {
    background: linear-gradient(90deg, #9c6b2f, #d4a95c, #9c6b2f);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    animation: shineText 3s linear infinite;
}

@keyframes shineText {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.moved {
    display: block;
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

.about-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: justify;
}

.btn-outline {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid #000;
    color: #000;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
}

.btn-outline:hover {
    background: #000;
    color: #fff;
}

.about-images {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-images img {
    width: 100%;
    border-radius: 4px;
}

.img-main {
    position: relative;
    z-index: 2;
}

.img-secondary {
    position: absolute;
    top: 40px;
    right: -60px;
    z-index: 1;
}

.award-box {
    position: absolute;
    bottom: 20px;
    left: -50px;
    background: #9c6b2f;
    color: #fff;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.4;
    border-radius: 3px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 99;
}

/* ================= Home Contact ================= */
.home-contact {
    background: url("../img/z.png") no-repeat center center/cover;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 60px 25px;
}

.home-contact h2 {
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.white-patch {
    background: rgba(255, 255, 255, 0.2);
    /* semi-transparent white */
    backdrop-filter: blur(10px);
    /* glass blur */
    -webkit-backdrop-filter: blur(10px);
    /* Safari support */
    padding: 25px;
    border-radius: 12px;
    /* smoother corners */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    /* soft shadow */
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* frosted border */
}


.home-contact input,
.home-contact textarea {
    border-radius: 25px;
    padding: 12px 15px;
}

.home-contact textarea {
    border-radius: 15px;
    resize: none;
    height: 120px;
}

.home-contact button {
    background: #c89252;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    transition: 0.3s;
}

.home-contact button:hover {
    background: #a6763c;
}

/* ================= Our Product ================= */
.our-product {
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: transform 0.3s ease;
    position: relative;
    background: #fff;
}

.img-box {
    overflow: hidden;

}

.our-product img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.our-product:hover img {
    transform: scale(1.1);
}

.our-product .info {
    padding: 15px;
}

.our-product .title {
    font-weight: 700;
    font-size: 25px;
    margin: 0;
    color: var(--primary-color);
}

.our-product .text {
    font-size: 15px;
    color: #222;
}

.our-product .arrow {
    position: absolute;
    bottom: 15px;
    right: 15px;
    transition: transform 0.3s ease;
}

.our-product:hover .arrow {
    transform: translateX(5px);
}

/* ================= Doors Section ================= */
.doors-section {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-height: 500px;
}

.doors-left {
    flex: 1;
    background: var(--headline);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 30px;
}

.doors-right {
    flex: 2;
    background: url("../img/b1.jpeg") no-repeat center center/cover;
    min-height: 400px;
}

/* .doors-box {
    background: #9c6b2f;
    color: #fff;
    max-width: 420px;
    padding: 40px 30px;
    position: absolute;
    left: 120px;
    z-index: 99;
    left: 50%;
    transform: translateX(-20%);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
} */

.doors-box h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    color: var(--light-color);
}

.doors-box h2 span {
    text-decoration: underline;
}

.doors-box p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.doors-box .btn-custom {
    background: #fff;
    color: #000;
    padding: 10px 25px;
    font-size: 14px;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.doors-box .btn-custom:hover {
    background: #000;
    color: #fff;
}

/* ********************back to top ************************** */


/* Button placement & show/hide */
/* Back to Top (left) */
#backToTop {
    position: fixed;
    left: 1rem;
    bottom: 1.5rem;
    z-index: 1040;
    opacity: 0;
    transform: translateY(16px) scale(.96);
    pointer-events: none;
    transition: opacity .28s ease, transform .28s ease;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .15);
    border: none;
    background-color: var(--headline);
}

#backToTop.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* WhatsApp (right) */
#whatsappBtn {
    position: fixed;
    right: 1rem;
    bottom: 1.5rem;
    z-index: 1040;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .15);
    transition: transform .25s ease;
}

#whatsappBtn:hover {
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}

/* right side social icon */
.icn-box {
    position: fixed;
    right: 0;
    top: 40%;
    z-index: 9999;
    animation: slideInRight 1s ease;
}

/* Desktop view */
.icn-bx-ul {
    list-style: none;
    margin: 0;
    padding: 4px 7px;
    border-radius: 5px;
    background: linear-gradient(45deg, #9c6b2f, #d4a95c);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.icn-bx-ul li {
    margin: 10px 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
}

.icn-bx-ul li:nth-child(1) {
    animation-delay: 0.2s;
}

.icn-bx-ul li:nth-child(2) {
    animation-delay: 0.4s;
}

.icn-bx-ul li:nth-child(3) {
    animation-delay: 0.6s;
}

.icn-bx-ul li:nth-child(4) {
    animation-delay: 0.8s;
}

.icn-bx-ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 22px;
    transition: 0.3s;
}

.icn-bx-ul li a:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.2) rotate(10deg);
    animation: bounce 0.5s;
}

/* Mobile bottom bar */
@media (max-width: 767px) {
    .icn-box {
        right: 0;
        left: 0;
        bottom: 0;
        top: auto;
        width: 100%;
        display: block;
        animation: fadeUp 1s ease;
    }

    .icn-bx-ul {
        display: flex;
        justify-content: space-around;
        /* equal spacing */
        align-items: center;
        width: 100%;
        border-radius: 0;
        padding: 10px 0;
        background: linear-gradient(45deg, #9c6b2f, #d4a95c);
    }

    .icn-bx-ul li {
        margin: 0;
        opacity: 1;
        transform: none;
        animation: none;
    }

    .icn-bx-ul li a {
        width: 40px;
        height: 40px;
        font-size: 20px;
        background: rgba(255, 255, 255, 0.15);
    }
}

/* Animations */
@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }
}



.custom-section {
    background-color: #fff;
    padding: 60px 0;
}

.custom-image img {
    transition: transform 0.3s ease;
}

.custom-image img:hover {
    transform: scale(1.05);
}

.custom-headline {
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

.custom-para {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    text-align: justify;
}



/* Hover open dropdown */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    /* remove gap */
}

/* Rotate arrow on hover */
.nav-item.dropdown .bi-chevron-down {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
    margin-left: 5px;
}

.nav-item.dropdown:hover .bi-chevron-down {
    transform: rotate(180deg);
}

/* Optional: dropdown hover style */
.dropdown-menu a:hover {
    background: #f8f9fa;
}