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

    body {
        background:  #FBF8F2;
        font-family: 'Inter', sans-serif;
        color: #21183F;
        overflow-x: hidden;
    }

    a {
        text-decoration: none;
    }

    img {
        width: 100%;
        display: block;
    }

    button {
        border: none;
        outline: none;
    }

    .mobile-sidebar {
        width: 320px !important;
        background: #0E072C;
    }

    .offcanvas-header {
        padding: 24px 22px;
    }

    .sidebar-logo {
        width: 100px;
    }

    .mobile-search {
        margin-bottom: 40px;
    }

    .mobile-search .input-group {
        height: 54px;
    }

    .mobile-search .form-control {
        border: none;
        border-radius: 0;
        background: #FBF8F2;
        color: #21183F;
        padding-left: 18px;
        box-shadow: none !important;
    }

    .mobile-search .form-control::placeholder {
        color: #7B758B;
    }

    .mobile-search .btn {
        width: 54px;
        border: none;
        border-radius: 0;
        background: #1B1246;
        color: #fff;
        transition: .3s;
    }

    .mobile-search .btn:hover {
        background: #2A1D63;
        color: #fff;
    }

    .mobile-nav {
        display: flex;
        flex-direction: column;
    }

    .mobile-nav a {
        color: #fff;
        font-size: 18px;
        padding: 18px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        letter-spacing: .5px;
        transition: .3s;
    }

    .mobile-nav a:hover {
        color: #D8B97A;
    }

    .main-header {
        background: #0E072C;
        padding: 22px 0 16px;
        border-bottom: 1px solid rgba(255,255,255,.05);
    }
    .main-header {
    position: relative;
    z-index: 1000;
}

    .header-inner {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 30px;
    }

    .logo-wrap {
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }

    .logo-wrap img {
        width: 120px;
        height: auto;
        object-fit: contain;
    }

    .header-center {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .search-box {
        width: 100%;
        max-width: 700px;
        margin-bottom: 30px;
    }

    .search-box .input-group {
        height: 40px;
    }

    .search-box .form-control {
        border: none;
        border-radius: 12px 0 0 12px;
        background: #FBF8F2;
        color: #21183F;
        font-size: 16px;
        padding: 0 10px;
        box-shadow: none !important;
    }

    .search-box .form-control::placeholder {
        color: #7B758B;
    }

    .search-box .btn-search {
        width: 58px;
        border: none;
        border-radius: 0;
        background: #1B1246;
        color: #fff;
        font-size: 20px;
        transition: .3s;
    }

    .search-box .btn-search:hover {
        background: #2A1D63;
        color: #fff;
    }

    .nav-menu {
        display: flex;
        align-items: center;
        gap: 54px;
        position: relative;
    }

    .nav-menu a {
        color: #fff;
        font-size: 19px;
        font-weight: 300;
        letter-spacing: .5px;
        transition: .3s;
        position: relative;
    }

    .nav-menu a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 0;
        height: 1px;
        background: #D8B97A;
        transition: .3s;
    }

    .nav-menu a:hover {
        color: #D8B97A;
    }

    .nav-menu a:hover::after {
        width: 100%;
    }
    
    
.nav-item-dropdown {
    position: relative;
}

.mega-menu {
    position: fixed;   
    top: 120px;        
    left: 0;
    width: 100vw;
    background: #0E072C;
    padding: 40px 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
}
.nav-item-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* COLUMN */
.mega-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mega-column h4 {
    font-size: 14px;
    color: #D8B97A;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 6px;
}

.mega-column a {
    font-size: 13px;
    color: #ffffff;
    opacity: 0.85;
    transition: 0.2s;
}

.mega-column a:hover {
    color: #D8B97A;
    opacity: 1;
    padding-left: 6px;
}


    .header-icons {
        display: flex;
        align-items: center;
        gap: 26px;
    }

    .icon-item {
        text-align: center;
        color: #fff;
        font-size: 15px;
        font-weight: 300;
        cursor: pointer;
        transition: .3s;
    }

    .icon-item:hover {
        color: #D8B97A;
    }

    .icon-item i {
        display: block;
        font-size: 28px;
        margin-bottom: 6px;
    }

    .mobile-toggle {
        display: none;
        background: transparent;
        color: #fff;
        font-size: 34px;
    }

    .offer-bar {
    background: linear-gradient(90deg, #B89A5D, #D2B377);
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 8px 20px;
}

.offer-text {
    color: #fff;
    font-size: 14px;
    letter-spacing: .2px;
    text-align: center;
    font-weight: 500;
}

.offer-btn {
    width: 150px;
    height: 44px;
    background: #0E072C;
    color: #fff;
    font-size: 14px;
    letter-spacing: .5px;
    transition: .3s;
    flex-shrink: 0;
}

.offer-btn:hover {
    background: #140A38;
}

.hero-section {
    position: relative;
    padding-bottom: 180px;
    overflow: visible;
}
    .hero-slider {
        position: relative;
        max-width: 1368px;
        margin: 0 auto;
    }

    .hero-slider,
.carousel,
.carousel-inner,
.carousel-item {
    overflow: visible;
}

    .carousel-item {
        position: relative;
    }

    .hero-image {
        width: 100%;
        height: 480px;
    }

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.hero-content {
    position: absolute;
    left: 50%;
    bottom: -90px;
    transform: translateX(-50%);
    width: 760px;
    background: #FBF8F2;
    text-align: center;
    padding: 42px 40px 34px;
    z-index: 999;
}
    .hero-content h1 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 60px;
        line-height: 1;
        font-weight: 500;
        color: #1F163F;
        margin-bottom: 18px;
    }

    .hero-content p {
        font-family: 'Cormorant Garamond', serif;
        font-size: 24px;
        line-height: 1.45;
        color: #0E072C;
        margin-bottom: 34px;
    }

    .hero-action {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 22px;
    }

    .hero-line {
        width: 210px;
        height: 1px;
        background: #D8D0C2;
    }

    .hero-btn {
        width: 182px;
        height: 58px;
        background: #0E072C;
        color: #fff;
        font-size: 15px;
        letter-spacing: 1px;
        transition: .3s;
    }

    .hero-btn:hover {
        background: #1B1246;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: auto;
        opacity: 1;
    }

    .slider-arrow {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: rgba(14, 7, 44, .92);
        backdrop-filter: blur(4px);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .3s;
    }

    .slider-arrow:hover {
        background: #1B1246;
    }

    .slider-arrow i {
        color: #fff;
        font-size: 20px;
    }

    .carousel-control-prev {
        left: 20px;
    }

    .carousel-control-next {
        right: 20px;
    }

    .carousel-indicators {
        bottom: -95px;
        gap: 14px;
        margin-bottom: 0;
    }

    .carousel-indicators button {
        width: 16px !important;
        height: 16px !important;
        border-radius: 50%;
        border: 1px solid #0E072C !important;
        background: transparent !important;
        opacity: 1 !important;
    }

    .carousel-indicators .active {
        background: #0E072C !important;
    }


    @media(max-width:1400px) {

        .offer-btn {
            right: 8%;
        }

        .hero-content h1 {
            font-size: 56px;
        }

    }

    @media(max-width:1200px) {

        .nav-menu {
            gap: 28px;
        }

        .nav-menu a {
            font-size: 17px;
        }

        .hero-content {
            width: 88%;
        }

    }

    @media(max-width:991px) {

        .main-header {
            padding: 14px 0;
        }

        .header-inner {
            align-items: center;
        }

        .mobile-toggle {
            display: block;
        }

        .logo-wrap img {
            width: 100px;
        }

        .header-center {
            display: none;
        }

        .icon-item span {
            display: none;
        }

        .icon-item i {
            font-size: 24px;
            margin: 0;
        }

        .offer-bar {
            flex-direction: column;
            gap: 14px;
            padding: 18px 20px;
        }

        .offer-btn {
            position: relative;
            right: auto;
            top: auto;
            transform: none;
        }

        .hero-section {
            padding-bottom: 80px;
        }

        .hero-image {
            height: 420px;
        }

        .hero-content {
            width: 92%;
            bottom: 20px;
            padding: 32px 22px;
        }

        .hero-content h1 {
            font-size: 46px;
        }

        .hero-content p {
            font-size: 20px;
        }

        .hero-line {
            width: 100px;
        }

    }

    @media(max-width:767px) {

        .hero-image {
            height: 420px;
        }

        .hero-content {
            width: 92%;
            padding: 26px 18px;
            bottom: 18px;
        }

        .hero-content h1 {
            font-size: 36px;
            margin-bottom: 14px;
        }

        .hero-content p {
            font-size: 18px;
            line-height: 1.5;
            margin-bottom: 24px;
        }

        .hero-action {
            gap: 12px;
        }

        .hero-line {
            width: 50px;
        }

        .hero-btn {
            width: 150px;
            height: 52px;
            font-size: 14px;
        }

        .carousel-control-prev,
        .carousel-control-next {
            display: none;
        }


        .offer-text {
            font-size: 14px;
            line-height: 1.5;
        }

    }

    .feature-section {
        padding: 60px 0;
    }

    .feature-card {
        text-align: center;
        padding: 20px 30px;
        position: relative;
    }

    .feature-card img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        margin-bottom: 25px;
    }

    .feature-title {
        font-size: 22px;
        color: #2d2d2d;
        margin-bottom: 10px;
    }

    .feature-link {
        text-decoration: underline;
        color: #6c6c86;
        font-size: 18px;
    }

    @media (min-width: 992px) {
        .feature-card.border-end-lg {
            border-right: 1px solid #cfcac3;
        }
    }

.content-section {
    padding: 80px 20px;
    text-align: center;
}

.main-heading {
    font-size: 48px;
    color: #1c1535;
    margin-bottom: 30px;
}

.lead-text {
    max-width: 900px;
    margin: 0 auto 25px;
    font-size: 18px;
    color: #6d6d6d;
}

.sub-text {
    margin-bottom: 40px;
    color: #6d6d6d;
}

.cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.cta-line {
    height: 1px;
    background-color: #bfbab2;
    flex: 1;
    max-width: 250px;
}

.btn-custom {
    padding: 12px 40px;
    border: 1px solid #1c1535;
    background: transparent;
    letter-spacing: 1px;
}

.btn-custom:hover {
    background-color: #1c1535;
    color: white;
    transition: background-color 0.3s, color 0.3s;
}

@media (max-width: 768px) {
    .hero-text {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .main-heading {
        font-size: 32px;
    }

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

    .cta-line {
        display: none;
    }
}

.signup-section {
    padding: 100px 20px;
    text-align: center;
}

.signup-title {
    font-size: 52px;
    color: #1c1535; 
    margin-bottom: 20px;
}

.signup-subtext {
    font-size: 20px;
    color: #6d6d6d;
    margin-bottom: 40px;
}

.btn-signup {
    background-color: #241b3a;
    color: #ffffff;
    padding: 14px 50px;
    letter-spacing: 1px;
    border: none;
    font-size: 16px;
}

.btn-signup:hover {
    background-color: #1a132c;
    color: #ffffff;
}

@media (max-width: 768px) {
    .signup-title {
        font-size: 34px;
    }

    .signup-subtext {
        font-size: 16px;
    }
}

.treasure-logo {
     max-width: 700px;   
    width: 100%;       
    height: auto;      
    margin: 0 auto;
    display: block;
}   

@media (max-width: 576px) {
    .treasure-logo {
        max-width: 90%;     
        margin-top: 20px;
    }
}

.footer{
    background:#0E072C;
    padding:55px 15px 28px;
    text-align:center;
}

.footer .footer-logo{
    margin-bottom:45px;
}

.footer .footer-logo img{
    width:150px;
    max-width:100%;
    height:auto;
}

.footer .footer-text{
    color:#ffffff;
    font-size:12px;
    line-height:1.8;
    font-family:Georgia, serif;
    letter-spacing:0.2px;
    max-width:900px;
    margin:0 auto;
    word-break:break-word;
}

.footer .footer-text a{
    color:#ffffff;
    text-decoration:underline;
}

.footer .footer-text span{
    color:#ffffff;
}

@media (max-width:768px){

    .footer{
        padding:45px 20px 25px;
    }

    .footer .footer-logo{
        margin-bottom:35px;
    }

    .footer .footer-logo img{
        width:130px;
    }

    .footer .footer-text{
        font-size:11px;
        line-height:1.7;
    }
}

@media (max-width:576px){

    .footer{
        padding:40px 15px 22px;
    }

    .footer .footer-logo{
        margin-bottom:30px;
    }

    .footer .footer-logo img{
        width:110px;
    }

    .footer .footer-text{
        font-size:10px;
        line-height:1.6;
    }

    .footer .footer-text span,
    .footer .footer-text a{
        display:inline;
    }
}

