html {
    scroll-behavior: smooth;
}

::selection {
    background-color: #bae6fd;
    color: #075985;
}

/* Custom scrollbar - sky blue theme */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f0f9ff;
}
::-webkit-scrollbar-thumb {
    background: #38bdf8;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0ea5e9;
}

/* ===================== HERO SECTION ===================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&display=swap');

.hero-section {
    background-color: #06263d;
}

.hero-bg-image {
    background-image: url('/images/bg.jpeg');
    background-size: cover;
    background-position: center;
}

.contact-bg {
    position: relative;
    background-image: url('/images/contact-bg.jpeg') !important;
    background-size: cover;
    background-position: center;
}

.contact-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8); /* 50% black overlay */
    z-index: 0;
}

.contact-bg > * {
    position: relative;
    z-index: 1;
}

.hero-overlay {
    background: linear-gradient(
        180deg,
        rgba(6, 38, 61, 0.95) 0%,
        rgba(37, 99, 140, 0.88) 50%,
        rgba(6, 38, 61, 0.96) 100%
    );
}

.hero-logo {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    border: 4px solid rgba(255, 255, 255, 0.08);
}

.hero-badge {
    background-color: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.35);
    color: #7dd3fc;
    letter-spacing: 0.08em;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #38bdf8;
    display: inline-block;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    color: #38bdf8;
    line-height: 1.1;
}

.hero-btn-primary {
    background-color: #38bdf8;
    color: #06263d;
    box-shadow: 0 10px 25px -5px rgba(56, 189, 248, 0.45);
}
.hero-btn-primary:hover {
    background-color: #0ea5e9;
}

.hero-btn-outline {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
}
.hero-btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.06);
}

.hero-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===================== FEATURED PRODUCTS SECTION ===================== */
.catalogue-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    color: #082f49;
    line-height: 1.15;
}

    .show-less-text {
        display: none;
    }

    button[aria-expanded="true"] .show-more-text {
        display: none;
    }

    button[aria-expanded="true"] .show-less-text {
        display: inline;
    }

    button[aria-expanded="false"] .show-more-text {
        display: inline;
    }

    button[aria-expanded="false"] .show-less-text {
        display: none;
    }
