﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Navbar background */
.custom-navbar {
    background-color: #000000; /* black */
}

    /* Menu text golden */
    .custom-navbar .nav-link {
        color: #FFD700 !important; /* gold */
        font-weight: 500;
    }

/* Brand (logo/text) */
.text-gold {
    color: #FFD700 !important;
    font-weight: bold;
}

/* Hover effect */
.custom-navbar .nav-link:hover {
    color: #ffcc00 !important;
}

/* Active menu */
.custom-navbar .nav-link.active {
    color: #ffffff !important;
}
/* Navbar brand container */
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

    /* Logo image */
    .navbar-brand img {
        height: 60px; /* adjust as needed */
        width: auto;
        object-fit: contain;
    }

/* Mobile responsive */
@media (max-width: 576px) {
    .navbar-brand img {
        height: 45px;
    }
}
/* Brand container */
.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

    /* Logo */
    .brand-logo img {
        height: 60px;
        width: auto;
        margin-right: 10px;
    }

    /* Text styling (premium gold look) */
    .brand-logo span {
        font-size: 30px;
        font-weight: 700;
        font-family: 'Playfair Display', serif;
        /* Gold gradient */
        background: linear-gradient(45deg, #FFD700, #FFC107, #FFB300);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        letter-spacing: 1px;
    }

        /* Hover effect */
        .brand-logo span:hover {
            text-shadow: 0 0 8px rgba(255, 215, 0, 0.7);
        }

/* Mobile responsive */
@media (max-width: 576px) {
    .brand-logo img {
        height: 45px;
    }

    .brand-logo span {
        font-size: 20px;
    }
}

.carousel-item img {
    height: 450px;
    object-fit: cover;
}

/* Mobile responsive */
@media (max-width: 576px) {
    .carousel-item img {
        height: 220px;
    }
}

.foot-logo {
    height: 60px;
    width: auto;
    margin-right: 10px;
}
/* Image box */
.img-box {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

    /* Image */
    .img-box img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    /* Hover zoom */
    .img-box:hover img {
        transform: scale(1.1);
    }

/* Mobile responsive */
@media (max-width: 576px) {
    .img-box img {
        height: 200px;
    }
}
/* Banner Background */
.banner-section {
    background: url('https://images.unsplash.com/photo-1717409014701-8e630ff057f3?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTh8fGdvbGQlMjBqZXdlbGxlcnl8ZW58MHwwfDB8fHww') no-repeat center;
    background-size: cover;
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

    /* Dark overlay */
    .banner-section::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.6);
        top: 0;
        left: 0;
    }

/* Content */
.banner-content {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 2;
}

    /* Heading */
    .banner-content h1 {
        font-size: 50px;
        font-weight: 700;
        color: #FFD700;
        font-family: 'Playfair Display', serif;
    }

    /* Subtext */
    .banner-content p {
        font-size: 20px;
        margin: 15px 0;
    }

/* Button */
.btn-gold {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(45deg, #FFD700, #FFC107);
    color: #000;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

    .btn-gold:hover {
        background: #fff;
        color: #000;
    }

.breadcrumb-box {
    margin-top: 15px;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: #FFD700;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white !important;
}

/* separator color */
.breadcrumb-item + .breadcrumb-item::before {
    color: white !important;
}
/* Mobile responsive */
@media (max-width: 576px) {
    .banner-section {
        height: 35vh;
    }

    .banner-content h1 {
        font-size: 30px;
    }

    .banner-content p {
        font-size: 16px;
    }
}

.contact-luxury {
    background: linear-gradient(135deg, #000, #1a1a1a);
    padding: 80px 0;
    color: #fff;
}

/* LEFT CARD */
.luxury-card {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

    .luxury-card h2 {
        color: #FFD700;
        font-family: 'Playfair Display', serif;
    }

    .luxury-card p {
        color: #ccc;
    }

.info-box p {
    margin: 10px 0;
}

/* SOCIAL */
.social i {
    font-size: 22px;
    margin-right: 10px;
    color: #FFD700;
    cursor: pointer;
}

/* FORM BOX */
.form-box {
    background: #111;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(255,215,0,0.1);
}

/* FLOATING INPUT */
.form-group {
    position: relative;
    margin-bottom: 25px;
}

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 10px;
        background: transparent;
        border: none;
        border-bottom: 1px solid #555;
        color: #fff;
    }

    .form-group label {
        position: absolute;
        top: 10px;
        left: 0;
        color: #aaa;
        transition: 0.3s;
    }

    /* FLOAT EFFECT */
    .form-group input:focus + label,
    .form-group input:valid + label,
    .form-group textarea:focus + label,
    .form-group textarea:valid + label {
        top: -12px;
        font-size: 12px;
        color: #FFD700;
    }

/* BUTTON */
.btn-luxury {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #FFD700, #FFC107);
    border: none;
    color: #000;
    font-weight: 600;
    border-radius: 30px;
}

/* RESPONSIVE */
@media (max-width:768px) {
    .luxury-card {
        margin-bottom: 30px;
    }
}

.gallery-box {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

    /* Image */
    .gallery-box img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    /* Hover Zoom */
    .gallery-box:hover img {
        transform: scale(1.1);
    }

    /* Gold Overlay */
    .gallery-box::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(0,0,0,0.4);
        opacity: 0;
        transition: 0.4s;
    }

    /* Show overlay */
    .gallery-box:hover::after {
        opacity: 1;
    }

    /* Optional gold border glow */
    .gallery-box:hover {
        box-shadow: 0 0 15px rgba(255,215,0,0.4);
    }

/* Mobile */
@media (max-width:576px) {
    .gallery-box img {
        height: 180px;
    }
}
/* Product Box */
.product-box {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

    /* Image */
    .product-box img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        transition: 0.4s ease;
    }

    /* Price Tag */
    .product-box span {
        position: absolute;
        bottom: 10px;
        left: 10px;
        background: #FFD700;
        color: #000;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 600;
    }

    /* Hover effect */
    .product-box:hover img {
        transform: scale(1.1);
    }

/* Tablet */
@media (max-width: 992px) {
    .product-box img {
        height: 220px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .product-box img {
        height: 180px;
    }

    .product-box span {
        font-size: 12px;
        padding: 4px 10px;
    }
}

/* INTRO */
.about-intro {
    padding: 100px 0 60px;
    background: #fff;
}

    .about-intro h1 {
        font-size: 42px;
        color: #000;
    }

    .about-intro p {
        color: #777;
    }

/* CARDS */
.about-cards {
    padding: 60px 0;
    background: #f8f8f8;
}

.about-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    border-top: 3px solid transparent;
}

    .about-card:hover {
        border-bottom: 3px solid #D4AF37;
        transform: translateY(-5px);
    }

    .about-card h3 {
        color: #D4AF37;
    }

/* IMAGE BLOCK */
.about-image-block {
    padding: 80px 0;
}

.image-box {
    position: relative;
}

    .image-box img {
        width: 100%;
        border-radius: 12px;
    }

.image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.6);
    padding: 15px 25px;
    color: #FFD700;
}



/* MOBILE */
@media (max-width:768px) {

    .about-intro h1 {
        font-size: 26px;
    }

    .about-card {
        padding: 20px;
    }
}
/* TIMELINE */
.about-timeline {
    padding: 80px 0;
    background: #fff;
}

.timeline {
    position: relative;
    margin-left: 20px;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 2px;
        height: 100%;
        background: #D4AF37;
    }

.timeline-item {
    margin-bottom: 30px;
    padding-left: 25px;
    position: relative;
}

    .timeline-item::before {
        content: '';
        position: absolute;
        left: -6px;
        top: 5px;
        width: 12px;
        height: 12px;
        background: #D4AF37;
        border-radius: 50%;
    }

    .timeline-item h4 {
        color: #D4AF37;
    }


/* QUOTE */
.brand-quote {
    padding: 60px 0;
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    color: #000;
    font-size: 22px;
    font-style: italic;
}
/* ABOUT INTRO SECTION */
.about-intro {
    padding: 50px 20px;
    background: linear-gradient(to bottom, #ffffff, #f9f9f9);
    text-align: center;
}

    /* HEADING */
    .about-intro h1 {
        font-size: 42px;
        font-weight: 700;
        color: #000;
        letter-spacing: 1px;
        margin-bottom: 15px;
        font-family: 'Playfair Display', serif;
    }

        /* GOLD LINE UNDER HEADING */
        .about-intro h1::after {
            content: "";
            display: block;
            width: 70px;
            height: 3px;
            background: #D4AF37;
            margin: 10px auto 0;
            border-radius: 2px;
        }

    /* SUBTEXT */
    .about-intro p {
        font-size: 18px;
        color: #666;
        max-width: 600px;
        margin: 20px auto 0;
        line-height: 1.6;
    }

/* MOBILE RESPONSIVE */
@media (max-width:768px) {

    .about-intro {
        padding: 70px 15px;
    }

        .about-intro h1 {
            font-size: 26px;
        }

        .about-intro p {
            font-size: 15px;
        }
}
/* CARD BASE */
.about-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: 0.4s ease;
    border: 1px solid #eee;
}

/* ICON */
.icon-black {
    font-size: 40px;
    color: #000;
    margin-bottom: 15px;
    display: block;
    transition: 0.4s;
}

/* TEXT */
.about-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #D4AF37;
    transition: 0.4s;
}

.about-card p {
    color: #666;
    font-size: 15px;
    transition: 0.4s;
}

/* 🔥 HOVER EFFECT */
.about-card:hover {
    background: #000;
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

    /* ICON WHITE */
    .about-card:hover .icon-black {
        color: #fff;
    }

    /* HEADING GOLD */
    .about-card:hover h3 {
        color: #D4AF37;
    }

    /* PARAGRAPH WHITE */
    .about-card:hover p {
        color: #fff;
    }
/* SECTION BG */
.why-us {
    padding: 80px 0;
    background: #fff;
}

    /* HEADING */
    .why-us h2 {
        font-size: 42px;
        font-weight: 700;
        color: #000;
        letter-spacing: 1px;
        margin-bottom: 15px;
        font-family: 'Playfair Display', serif;
    }

/* BOX */
.why-box {
    width: 180px;
    height: 180px;
    margin: 20px auto;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #D4AF37;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
    position: relative;
}

    /* ICON */
    .why-box i {
        font-size: 40px;
        color: #D4AF37;
        margin-bottom: 10px;
        transition: 0.4s;
    }

    /* TEXT */
    .why-box h5 {
        font-size: 16px;
        color: #000;
        margin: 0;
        transition: 0.4s;
    }

    /* 🔥 HOVER EFFECT */
    .why-box:hover {
        background: #000;
        box-shadow: 0 0 20px rgba(212,175,55,0.6);
    }

        /* ICON WHITE */
        .why-box:hover i {
            color: #fff;
        }

        /* TEXT GOLD */
        .why-box:hover h5 {
            color: #D4AF37;
        }

    /* OPTIONAL GOLD RING ANIMATION */
    .why-box::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 2px dashed transparent;
        transition: 0.4s;
    }

    .why-box:hover::before {
        border-color: #D4AF37;
        transform: rotate(180deg);
    }

/* MOBILE */
@media (max-width:768px) {

    .why-box {
        width: 140px;
        height: 140px;
    }

        .why-box i {
            font-size: 28px;
        }

        .why-box h5 {
            font-size: 14px;
        }
}
/* SECTION */
.about-split-new {
    padding: 80px 0;
    background: #fff;
}

/* TEXT */
.about-text h2 {
    font-size: 34px;
    color: #000;
    margin-bottom: 15px;
    position: relative;
}

    /* GOLD LINE */
    .about-text h2::after {
        content: "";
        width: 60px;
        height: 3px;
        background: #D4AF37;
        display: block;
        margin-top: 10px;
    }

.about-text p {
    color: #666;
    line-height: 1.7;
    margin: 20px 0;
}

/* LIST */
.about-text ul {
    list-style: none;
    padding: 0;
}

    .about-text ul li {
        margin-bottom: 10px;
        font-size: 15px;
    }

        .about-text ul li i {
            color: #D4AF37;
            margin-right: 8px;
        }

/* IMAGE */
.about-img img {
    border-radius: 12px;
    transition: 0.4s;
}

    /* HOVER IMAGE */
    .about-img img:hover {
        transform: scale(1.05);
    }

/* MOBILE */
@media (max-width:768px) {

    .about-text {
        text-align: center;
        margin-bottom: 30px;
    }

        .about-text h2 {
            font-size: 24px;
        }

            .about-text h2::after {
                margin: 10px auto;
            }
}

.price-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-radius: 20px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

    .price-card:hover {
        transform: translateY(-5px);
    }

    /* Text */
    .price-card h3 {
        font-size: 26px;
        font-weight: 700;
    }

    .price-card p {
        margin: 5px 0;
        opacity: 0.9;
    }

    .price-card span {
        font-size: 14px;
        opacity: 0.8;
    }

/* Icon */
.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* Colors */
.gold-card {
    background: linear-gradient(135deg, #d18b00, #ffb700);
}

.gold-light {
    background: linear-gradient(135deg, #f5b400, #ffd95a);
}

.silver-card {
    background: linear-gradient(135deg, #9ea3a8, #cfd4da);
    color: #000;
}

.platinum-card {
    background: linear-gradient(135deg, #6c7a89, #aab7c4);
}

@media (max-width:768px) {
    .price-card {
        padding: 18px;
    }

        .price-card h3 {
            font-size: 20px;
        }

    .icon-box {
        width: 50px;
        height: 50px;
    }
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* important */
}

    /* image styling */
    .icon-box img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* crop kore perfectly fit korbe */
        border-radius: 50%;
    }

.about-unique {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff8f0, #ffe6cc);
}

/* Text */
.about-text h5 {
    color: #d4a017;
    font-weight: 600;
    letter-spacing: 2px;
}

.about-text h2 {
    font-size: 40px;
    font-weight: 700;
    margin: 10px 0;
}

.about-text p {
    color: #555;
    margin-bottom: 20px;
}

/* Features */
.about-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

    .about-features div {
        background: #fff;
        padding: 8px 15px;
        border-radius: 20px;
        font-size: 14px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    }

    .about-features i {
        color: gold;
        margin-right: 5px;
    }

/* Button */
.btn-gold {
    background: linear-gradient(45deg, #d4a017, #ffcc33);
    padding: 10px 25px;
    border-radius: 25px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

/* Image Layout */
.about-img-box {
    position: relative;
    text-align: center;
}

.img-main {
    width: 85%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Floating image */
.img-float {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 50%;
    border-radius: 15px;
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

    .lightbox img {
        max-width: 90%;
        max-height: 80%;
    }

.close-btn {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    background: none;
    color: white;
    border: none;
    cursor: pointer;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.gallery-box::after {
    pointer-events: none;
}

.dropdown-menu {
    background: black !important;
}

.dropdown-item {
    color: #FFD700 !important;
}

    .dropdown-item:hover {
        background: black !important;
    }
/* BACKGROUND */
.login-bg {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)), url('img/bg.webp') no-repeat center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* LOGIN BOX */
.login-box {
    width: 380px;
    padding: 40px;
    border-radius: 20px;
    /* Glass Effect */
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Glow */
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
    text-align: center;
    color: #fff;
}

    /* TITLE */
    .login-box h2 {
        text-align: center;
        margin-bottom: 30px;
        color: #FFD700;
        font-family: 'Playfair Display', serif;
    }

/* INPUT */
.form-group {
    position: relative;
    margin-bottom: 25px;
}

    .form-group input {
        width: 100%;
        padding: 10px;
        background: transparent;
        border: none;
        border-bottom: 1px solid #aaa;
        color: #fff;
    }

    .form-group label {
        position: absolute;
        top: 10px;
        left: 0;
        color: #aaa;
        transition: 0.3s;
    }

    /* FLOAT LABEL */
    .form-group input:focus + label,
    .form-group input:valid + label {
        top: -12px;
        font-size: 12px;
        color: #FFD700;
    }

/* BUTTON */
.btn-gold {
    padding: 10px;
    border-radius: 30px;
    background: linear-gradient(45deg, #FFD700, #FFC107);
    border: none;
    font-weight: 600;
    color: #000;
    transition: 0.3s;
}

    .btn-gold:hover {
        background: linear-gradient(45deg, #FFD700, #FFC107);
    }

/* LINKS */
.gold-link {
    color: #FFD700;
    text-decoration: none;
}

    .gold-link:hover {
        text-decoration: underline;
    }

/* MOBILE */
@media (max-width:576px) {
    .login-box {
        width: 90%;
        padding: 25px;
    }
}

.login-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

    /* INPUT */
    .form-group input {
        width: 100%;
        padding: 12px 5px;
        background: transparent;
        border: none;
        border-bottom: 1px solid rgba(255,255,255,0.5);
        color: #fff;
        font-size: 15px;
        outline: none;
    }

    /* LABEL */
    .form-group label {
        position: absolute;
        top: 12px;
        left: 5px;
        color: #ccc;
        font-size: 14px;
        pointer-events: none;
        transition: 0.3s;
    }

    /* 🔥 FLOAT EFFECT */
    .form-group input:focus + label,
    .form-group input:valid + label {
        top: -10px;
        font-size: 12px;
        color: #FFD700;
    }
/* FULL PAGE */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #1f2a38;
}

/* MAIN CONTAINER */
.register-container {
    width: 900px;
    height: 550px;
    margin: 50px auto;
    display: flex;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

/* LEFT IMAGE */
.register-left {
    width: 50%;
}

    .register-left img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* RIGHT FORM */
.register-right {
    width: 50%;
    padding: 40px;
}

    .register-right h2 {
        margin-bottom: 30px;
        color: #000;
    }

/* FORM */
.form-group {
    position: relative;
    margin-bottom: 25px;
}

    .form-group input {
        width: 100%;
        padding: 10px;
        border: none;
        border-bottom: 1px solid #999;
        outline: none;
        background: transparent;
    }

    /* LABEL */
    .form-group label {
        position: absolute;
        top: 10px;
        left: 0;
        color: #777;
        transition: 0.3s;
    }

    /* FLOAT */
    .form-group input:focus + label,
    .form-group input:valid + label {
        top: -10px;
        font-size: 12px;
        color: #d4af37;
    }

/* BUTTON */
.register-right button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #FFD700, #FFC107);
    border: none;
    color: #000;
    font-weight: 600;
    border-radius: 25px;
    margin-top: 10px;
    cursor: pointer;
}

/* LINK */
.login-link {
    margin-top: 15px;
    font-size: 14px;
}

    .login-link a {
        color: #d4af37;
        text-decoration: none;
    }

@media (max-width: 768px) {
    .register-container {
        flex-direction: column;
        width: 90%;
        height: auto;
    }

    .register-left {
        height: 200px;
        width: 100%;
    }

    .register-right {
        width: 100%;
    }
}
