.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(15px, 5vw, 40px);
    box-sizing: border-box;
}

/* GENERAL RESET */
html {
    min-height: 100%;
    font-size: clamp(14px, 1.5vw, 16px);
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Times New Roman", Times, serif;
    background-color: #fafafa;
    color: #333;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

/* HEADER */
header {
    background-color: #0b2a4a; /* Royal Blue */
    color: #ffffff;
    padding: clamp(12px, 3vw, 15px) clamp(20px, 5vw, 40px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: clamp(8px, 2vw, 15px);
}

.logo-area img {
    height: clamp(45px, 8vw, 60px);
    width: auto;
    background: #ffffff;
    padding: clamp(6px, 1.5vw, 8px);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(244, 210, 122, 0.4);
    transition: transform 0.3s ease;
    object-fit: contain;
}

.logo-area img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(244, 210, 122, 0.6);
}

.logo-area h2 {
    margin: 0;
    font-size: clamp(16px, 3vw, 22px);
    color: #f4d27a; /* Gold */
}

/* NAVIGATION */
nav a {
    color: #f4d27a; /* Gold */
    text-decoration: none;
    margin-left: clamp(12px, 2vw, 18px);
    font-size: clamp(11px, 1.5vw, 13px);
}

nav a:hover {
    text-decoration: underline;
}

/* HERO SECTION */
.hero {
    padding: clamp(15px, 5vw, 20px) clamp(20px, 5vw, 40px);
    text-align: center;
    background-color: #ffffff;
    margin-bottom: -20px;
}

.hero h3 {
    font-size: clamp(28px, 7vw, 38px);
    margin-bottom: clamp(8px, 2vw, 12px);
    color: #0b2a4a;
}

.hero p {
    font-size: clamp(14px, 2vw, 18px);
    color: #555;
}

/* LEGACY SECTION */
.legacy {
    padding: clamp(40px, 8vw, 70px) clamp(20px, 5vw, 40px);
    background-color: #f3f6fa;
    text-align: center;
}

.legacy h3 {
    font-size: clamp(24px, 6vw, 30px);
    margin-bottom: clamp(8px, 2vw, 12px);
    color: #0b2a4a;
}

.legacy p {
    max-width: 850px;
    margin: auto;
    font-size: clamp(14px, 2vw, 16px);
    color: #555;
}

/* FOOTER */
footer {
    background-color: #0b2a4a;
    color: #ffffff;
    text-align: center;
    padding: clamp(20px, 4vw, 25px);
    margin-top: auto;
}

/* JEWELLERY COLLECTIONS SECTION */
.collections {
    padding: clamp(15px, 4vw, 20px) clamp(20px, 5vw, 40px) 0;
    background-color: #ffffff;
}

.collections h3 {
    text-align: center;
    font-size: clamp(24px, 6vw, 32px);
    margin-bottom: clamp(30px, 5vw, 40px);
    color: #0b2a4a;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: clamp(12px, 3vw, 15px);
    max-width: 1200px;
    margin: auto;
    width: 100%;
}

.collection-card {
    border: 1px solid #e5e5e5;
    text-align: center;
    padding: clamp(15px, 3vw, 20px);
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.collection-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.collection-card img {
    width: 100%;
    height: clamp(160px, 30vw, 220px);
    object-fit: cover;
    margin-bottom: clamp(8px, 2vw, 12px);
}

.collection-card h4 {
    margin: 0;
    font-size: clamp(14px, 2vw, 16px);
    color: #0b2a4a;
    border-top: 2px solid #f4d27a;
    padding-top: clamp(8px, 2vw, 12px);
}
/* CUSTOM DESIGN SECTION */
.custom-design {
    padding: clamp(40px, 8vw, 80px) clamp(20px, 5vw, 40px);
    background-color: #f3f6fa;
}

.custom-design h3 {
    text-align: center;
    font-size: clamp(24px, 6vw, 32px);
    margin-bottom: clamp(8px, 2vw, 10px);
    color: #0b2a4a;
}

.custom-design p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto clamp(25px, 5vw, 40px);
    color: #555;
    font-size: clamp(14px, 2vw, 16px);
}

.custom-form {
    max-width: 600px;
    width: 100%;
    margin: auto;
    background: #ffffff;
    padding: clamp(20px, 4vw, 30px);
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-sizing: border-box;
}

.custom-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: #0b2a4a;
    font-size: clamp(13px, 1.5vw, 14px);
}

.custom-form input,
.custom-form textarea {
    width: 100%;
    padding: clamp(8px, 1.5vw, 10px);
    margin-bottom: clamp(15px, 3vw, 20px);
    border: 1px solid #ccc;
    font-size: clamp(12px, 1.5vw, 13px);
    border-radius: 4px;
    box-sizing: border-box;
}

.custom-form textarea {
    resize: vertical;
    min-height: clamp(80px, 20vh, 100px);
}

.custom-form button {
    width: 100%;
    background-color: #0b2a4a;
    color: #f4d27a;
    border: none;
    padding: clamp(10px, 2vw, 12px);
    font-size: clamp(12px, 1.5vw, 13px);
    cursor: pointer;
    border-radius: 4px;
    transition: opacity 0.3s ease;
}

.custom-form button:hover {
    opacity: 0.9;
}
/* SCHEMES SECTION */
.schemes {
    padding: clamp(40px, 8vw, 80px) clamp(20px, 5vw, 40px);
    background-color: #ffffff;
}

.schemes h3 {
    text-align: center;
    font-size: clamp(24px, 6vw, 32px);
    color: #0b2a4a;
    margin-bottom: clamp(8px, 2vw, 10px);
}

.schemes p {
    text-align: center;
    color: #555;
    margin-bottom: clamp(30px, 5vw, 40px);
    font-size: clamp(14px, 2vw, 16px);
}

/* SLIDER */
.scheme-slider {
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.scheme-track {
    display: flex;
    gap: clamp(15px, 3vw, 25px);
    animation: scrollSchemes 25s linear infinite;
}

.scheme-slider:hover .scheme-track {
    animation-play-state: paused;
}

.scheme-card {
    min-width: clamp(200px, 50vw, 260px);
    background: #fff;
    border: 1px solid #e5e5e5;
    text-align: center;
    padding: clamp(12px, 2vw, 15px);
    border-radius: 8px;
    flex-shrink: 0;
}

.scheme-card img {
    width: 100%;
    height: clamp(140px, 25vw, 180px);
    object-fit: cover;
    border-radius: 6px;
}

.scheme-card h4 {
    margin: clamp(10px, 2vw, 15px) 0 0;
    font-size: clamp(14px, 2vw, 18px);
    color: #0b2a4a;
    border-top: 2px solid #f4d27a;
    padding-top: clamp(8px, 1.5vw, 10px);
}

/* ANIMATION */
@keyframes scrollSchemes {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* WHY CHOOSE US */
.why-choose {
    padding: clamp(40px, 8vw, 80px) clamp(20px, 5vw, 40px);
    background-color: #f3f6fa;
}

.why-choose h3 {
    text-align: center;
    font-size: clamp(24px, 6vw, 32px);
    color: #0b2a4a;
    margin-bottom: clamp(30px, 5vw, 40px);
}

.why-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: clamp(12px, 3vw, 15px);
    width: 100%;
}

.why-card {
    background: #ffffff;
    padding: clamp(20px, 3vw, 25px);
    border: 1px solid #e5e5e5;
    text-align: center;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.why-card h4 {
    margin-bottom: clamp(8px, 1.5vw, 10px);
    color: #0b2a4a;
    font-size: clamp(14px, 2vw, 16px);
}

.why-card p {
    color: #555;
    font-size: clamp(12px, 1.5vw, 13px);
    margin: 0;
}

/* VISIT SHOWROOM */
.visit-showroom {
    padding: clamp(40px, 8vw, 80px) clamp(20px, 5vw, 40px);
    background-color: #ffffff;
    text-align: center;
}

.visit-showroom h3 {
    font-size: clamp(24px, 6vw, 32px);
    color: #0b2a4a;
    margin-bottom: clamp(8px, 2vw, 12px);
}

.visit-showroom p {
    color: #555;
    max-width: 700px;
    margin: 0 auto clamp(15px, 3vw, 25px);
    font-size: clamp(14px, 2vw, 16px);
}

.visit-showroom a {
    display: inline-block;
    background-color: #0b2a4a;
    color: #f4d27a;
    padding: clamp(10px, 2vw, 12px) clamp(20px, 4vw, 30px);
    text-decoration: none;
    font-size: clamp(12px, 1.5vw, 13px);
    border-radius: 4px;
    transition: opacity 0.3s ease;
}

.visit-showroom a:hover {
    opacity: 0.9;
}
/* CUSTOM DESIGN – FINAL FORM LAYOUT */
.custom-design-page {
    padding: clamp(40px, 8vw, 80px) clamp(20px, 5vw, 40px);
    background-color: #f3f6fa;
}

.custom-design-card {
    max-width: 600px;
    width: 100%;
    margin: auto;
    background: #ffffff;
    padding: clamp(25px, 5vw, 40px);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-sizing: border-box;
}

.custom-design-title {
    text-align: center;
    margin-bottom: clamp(20px, 4vw, 30px);
}

.custom-design-title h2 {
    color: #0b2a4a;
    margin-bottom: clamp(8px, 1.5vw, 10px);
    font-size: clamp(22px, 5vw, 28px);
}

.custom-design-title p {
    color: #555;
    font-size: clamp(12px, 1.5vw, 13px);
    line-height: 1.6;
    margin: 0;
}

.custom-design-form {
    display: flex;
    flex-direction: column;
}

.custom-design-form label {
    margin-bottom: 6px;
    font-weight: 600;
    color: #0b2a4a;
    font-size: clamp(12px, 1.5vw, 14px);
}

.custom-design-form input,
.custom-design-form textarea {
    padding: clamp(8px, 1.5vw, 12px);
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: clamp(12px, 2vw, 18px);
    font-size: clamp(12px, 1.5vw, 13px);
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
}

.custom-design-form textarea {
    min-height: clamp(100px, 25vh, 120px);
    resize: vertical;
}

.custom-design-form button {
    background: #0b2a4a;
    color: #ffffff;
    padding: clamp(10px, 2vw, 12px);
    border: none;
    font-size: clamp(12px, 1.5vw, 13px);
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.custom-design-form button:hover {
    background: #123c66;
}

.single-column {
    grid-template-columns: 1fr !important;
    max-width: 600px;
}

/* ================================
   CUSTOM DESIGN – FINAL FIX
   ================================ */

.custom-design-page {
    background-color: #f3f6fa;
    padding: 80px 20px;
}

.custom-design-card {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border: 1px solid #ddd;
}

.custom-design-title {
    text-align: center;
    margin-bottom: 30px;
}

.custom-design-title h2 {
    color: #0b2a4a;
    margin-bottom: 10px;
}

.custom-design-title p {
    color: #555;
    font-size: 12px;
    line-height: 1.6;
}

/* FORCE VERTICAL FORM */
.custom-design-form {
    display: block !important;
}

.custom-design-form label {
    display: block;
    margin: 18px 0 6px;
    font-weight: 600;
    color: #0b2a4a;
}

.custom-design-form input,
.custom-design-form textarea {
    width: 100% !important;
    padding: 12px;
    border: 1px solid #ccc;
    font-size: 12px;
    display: block;
}

.custom-design-form textarea {
    resize: vertical;
    min-height: 120px;
}

.custom-design-form button {
    margin-top: 25px;
    width: 100%;
    padding: 14px;
    background-color: #0b2a4a;
    color: #f4d27a;
    border: none;
    cursor: pointer;
    font-size: 13px;
}
/* ===============================
   CUSTOM DESIGN PAGE
================================ */

.custom-design-page {
    background: #f4f7fb;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.custom-design-card {
    background: #ffffff;
    width: 100%;
    max-width: 650px;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.custom-design-title h2 {
    text-align: center;
    color: #0b2a4a;
    margin-bottom: 10px;
}

.custom-design-title p {
    text-align: center;
    color: #555;
    font-size: 13px;
    margin-bottom: 30px;
}

.custom-design-form {
    display: flex;
    flex-direction: column;
}

.custom-design-form label {
    margin-bottom: 6px;
    font-weight: 600;
    color: #0b2a4a;
}

.custom-design-form input,
.custom-design-form textarea {
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 18px;
    font-size: 12px;
    width: 100%;
}

.custom-design-form textarea {
    min-height: 110px;
    resize: vertical;
}

.custom-design-form button {
    background: #0b2a4a;
    color: #ffffff;
    padding: 12px;
    border: none;
    font-size: 13px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.custom-design-form button:hover {
    background: #123c66;
}
/* ------------------------------
   Custom Design Section Spacing
--------------------------------*/

.custom-design-section {
    padding: 80px 0;              /* space from top & bottom */
    background-color: #f6f8fb;     /* soft contrast */
}

.custom-design-card {
    max-width: 700px;
    margin: 10px auto;
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Make sure previous section does not stick */
#jewellery {
    margin-bottom: -20px;
}
/* ------------------------------
   Scroll Fade Animation
--------------------------------*/
.fade-in-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-section {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s ease;
}

.fade-section.show {
    opacity: 1;
    transform: translateY(0);
}
/* ------------------------------
   Mobile Responsive Fix
--------------------------------*/
@media (max-width: 768px) {

    .custom-design-section {
        padding: 50px 15px;
    }

    .custom-design-card {
        padding: 25px;
    }

    .custom-design-form input,
    .custom-design-form textarea {
        width: 100%;
        font-size: 13px;
    }

    .custom-design-form button {
        width: 100%;
    }

    .section-title {
        font-size: 24px;
        text-align: center;
    }

    .section-subtitle {
        text-align: center;
        font-size: 12px;
    }
}
.page-hero {
    padding: clamp(20px, 4vw, 30px) clamp(20px, 5vw, 40px);
    text-align: center;
    background: #f5f7fa;
}

.legacy-story {
    padding: clamp(40px, 8vw, 60px) clamp(20px, 5vw, 40px);
}

.legacy-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 5vw, 40px);
    align-items: center;
    width: 100%;
}

.legacy-image img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.legacy-highlights {
    padding: clamp(30px, 5vw, 50px) clamp(20px, 5vw, 40px);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: clamp(12px, 3vw, 15px);
    max-width: 1200px;
    margin: auto;
    width: 100%;
}

.highlight-card {
    background: #ffffff;
    padding: clamp(20px, 3vw, 25px);
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    font-size: clamp(12px, 1.5vw, 14px);
}
.showroom-map iframe {
    width: 100%;
    height: clamp(300px, 50vh, 400px);
    border: none;
    display: block;
}

.showroom-gallery {
    padding: clamp(40px, 8vw, 60px) clamp(20px, 5vw, 40px);
    text-align: center;
}

.showroom-gallery h3 {
    color: #0b2a4a;
    font-size: clamp(24px, 6vw, 32px);
    margin: 0 0 clamp(24px, 5vw, 32px);
}

.showroom-section-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: clamp(24px, 5vw, 34px);
    width: 100%;
}

.showroom-category {
    text-align: center;
}

.showroom-category h4 {
    color: #0b2a4a;
    font-size: clamp(18px, 4vw, 24px);
    margin: 0 0 clamp(10px, 2vw, 14px);
    padding-bottom: 8px;
    border-bottom: 2px solid #f4c542;
    display: inline-block;
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: clamp(12px, 2vw, 15px);
    width: 100%;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

.showroom-info {
    padding: clamp(30px, 5vw, 40px) clamp(20px, 5vw, 40px);
    text-align: center;
    background: #0b2a4a;
    color: #fff;
}

.navigate-btn {
    display: inline-block;
    margin-top: clamp(12px, 2vw, 18px);
    padding: clamp(10px, 2vw, 12px) clamp(20px, 4vw, 30px);
    background: #f4c542;
    color: #0b2a4a;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
    font-size: clamp(12px, 1.5vw, 14px);
}

.navigate-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

.contact-numbers {
    padding: clamp(40px, 8vw, 55px) clamp(20px, 5vw, 40px) clamp(50px, 10vw, 70px);
    background: #fdf3d0;
    text-align: center;
}

.contact-numbers h2 {
    color: #0b2a4a;
    font-size: clamp(24px, 6vw, 30px);
    margin-bottom: clamp(20px, 4vw, 28px);
}

.contact-number-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: clamp(12px, 3vw, 18px);
    width: 100%;
}

.contact-number-card {
    display: flex;
    flex-direction: column;
    gap: clamp(6px, 1.5vw, 8px);
    padding: clamp(18px, 3vw, 22px) clamp(15px, 3vw, 20px);
    background: #0b2a4a;
    border: 1px solid rgba(244,197,66,0.25);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-number-card:hover {
    transform: translateY(-4px);
    border-color: #f4c542;
    box-shadow: 0 12px 30px rgba(15,46,77,0.2);
}

.contact-number-card span {
    color: #f4c542;
    font-size: clamp(13px, 1.5vw, 15px);
    font-weight: 600;
}

.contact-number-card strong {
    color: #ffffff;
    font-size: clamp(16px, 3vw, 20px);
    letter-spacing: 0.5px;
}
@media(max-width: 768px) {
    .legacy-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .showroom-gallery {
        padding: clamp(30px, 5vw, 45px) clamp(15px, 4vw, 20px);
    }

    .showroom-gallery h3 {
        font-size: clamp(20px, 5vw, 28px);
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
        gap: 12px;
    }

    .schemes {
        padding: clamp(30px, 5vw, 50px) clamp(15px, 4vw, 20px);
    }

    .why-choose {
        padding: clamp(30px, 5vw, 50px) clamp(15px, 4vw, 20px);
    }

    .custom-design-section {
        padding: clamp(30px, 5vw, 50px) clamp(15px, 4vw, 20px);
    }

    .collection-grid,
    .scheme-grid,
    .why-grid {
        gap: clamp(10px, 2vw, 20px);
    }

    section {
        padding: clamp(30px, 5vw, 60px) clamp(15px, 4vw, 20px);
    }
}

@media(max-width: 480px) {
    .legacy-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .contact-number-grid {
        grid-template-columns: 1fr;
    }

    .header-container {
        width: 95%;
    }

    .menu {
        gap: 10px;
    }

    .menu li a {
        font-size: 14px;
    }

    nav {
        margin-left: 0;
        gap: 10px;
    }
}

/* JEWELLERY CATEGORIES PAGE */
.jewellery-categories {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

.category-section {
    margin-bottom: 60px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.category-section h2 {
    color: #0b2a4a;
    margin-bottom: 20px;
    border-bottom: 3px solid #f4d27a;
    padding-bottom: 10px;
}

.subcategory-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 20px;
    background: #f0f0f0;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 12px;
}

.tab-btn:hover {
    background: #e0e0e0;
}

.tab-btn.active {
    background: #0b2a4a;
    color: #f4d27a;
    border-color: #0b2a4a;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.product-grid.hidden {
    display: none;
}

.product-card {
    border: 1px solid #e5e5e5;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 10px;
}

.product-card p {
    margin: 0;
    color: #333;
    font-size: 12px;
}
/* ========= JEWELLERY DROPDOWN PREMIUM ========= */

/* ===== Jewellery Dropdown ===== */

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    width: 240px;
    border-radius: 15px;
    padding: 15px 0;
    box-shadow: 0px 15px 30px rgba(0,0,0,0.15);
    display: none;
    z-index: 9999;
    pointer-events: auto;
    margin-top: -5px;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 25px;
    color: #0f2e4d;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
    cursor: pointer;
}

.dropdown-menu li a:hover {
    background: #f3f6fb;
    padding-left: 35px;
}

/* Show dropdown */
.dropdown:hover .dropdown-menu {
    display: block;
    pointer-events: auto;
}

/* ===== Submenu (Gold → categories) ===== */

.submenu {
    position: relative;
}

.submenu > a::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 20px;
}

.submenu-menu {
    position: absolute;
    top: 0;
    left: calc(100% - 5px);
    width: 220px;
    background: #ffffff;
    border-radius: 10px;
    padding: 10px 0;
    box-shadow: 0px 15px 30px rgba(0,0,0,0.15);
    display: none;
    animation: fadeIn 0.3s ease-in-out;
    pointer-events: auto;
}

.submenu-menu li a {
    padding: 12px 18px;
}

.submenu:hover .submenu-menu {
    display: block;
    pointer-events: auto;
}

/* Animation */
@keyframes fadeIn {
    from {opacity: 0; transform: translateY(10px);}
    to {opacity: 1; transform: translateY(0);}
}
.header {
    background: #0f2e4d;
    padding: clamp(8px, 2vw, 10px) 0;
    position: relative;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(15px, 3vw, 30px);
}

/* Menu in one line */
.menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 15px);
    margin: 0;
    padding: 0;
}

.menu li {
    position: relative;
}

.menu li a {
    text-decoration: none;
    color: #f4c542;
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 500;
    transition: 0.3s;
}

.menu li a:hover {
    color: white;
}

/* ===== Navbar Horizontal Alignment Fix ===== */
nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

nav .dropdown {
    list-style: none;
    position: relative;
    padding-bottom: 5px;
}

nav .dropdown > a {
    display: block;
}
/* ===============================
   PREMIUM MEGA MENU
================================ */

.mega-parent {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: min(90vw, 900px);
    padding: clamp(20px, 4vw, 30px) clamp(20px, 3vw, 40px);
    display: flex;
    gap: clamp(20px, 3vw, 40px);
    flex-wrap: wrap;

    background: linear-gradient(135deg, #0c2d48, #071c2c);
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);

    visibility: hidden;
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
    transition: all 0.4s ease;
    z-index: 999;
}

.mega-parent:hover .mega-menu {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Columns */
.mega-column {
    min-width: clamp(150px, 30vw, 220px);
}

.mega-column h4 {
    font-size: clamp(13px, 1.5vw, 16px);
    margin-bottom: 12px;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(212,175,55,0.5);
    padding-bottom: 6px;
}

.mega-column strong {
    display: block;
    margin-top: 12px;
    margin-bottom: 4px;
    color: #ffffff;
    font-size: clamp(12px, 1.5vw, 13px);
}

.mega-column a {
    display: block;
    text-decoration: none;
    color: #dcdcdc;
    font-size: clamp(11px, 1.3vw, 12px);
    padding: 4px 0;
    transition: 0.3s ease;
}

.mega-column a:hover {
    color: #ffffff;
    padding-left: 8px;
}

/* Smooth underline effect */
.mega-parent > a {
    position: relative;
}

.mega-parent > a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #d4af37;
    left: 0;
    bottom: -5px;
    transition: width 0.3s;
}

.mega-parent:hover > a::after {
    width: 100%;
}
.mega-parent {
    position: relative;
}

nav {
    position: relative;
}


.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-name {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}


.header-container {
    max-width: 1400px;
    margin: 0 auto;
}

.menu {
    white-space: nowrap;
}

.menu li a {
    white-space: nowrap;
}

.mega-parent {
    position: static;
}

.mega-menu {
    left: 0 !important;
    right: 0;
    margin: 0 auto;
    transform: translateX(0) translateY(20px) !important;
}

.mega-parent:hover .mega-menu {
    transform: translateX(0) translateY(0) !important;
}

.menu li a {
    padding: 8px 0;
    line-height: 1.2;
}

nav {
    margin-left: 100px;
}
.custom-design-section {
    padding: 0;
    background: #f9f9f9;
    display: flex;
    justify-content: center;
}

.form-container {
    background: white;
    padding: 40px;
    width: 500px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.form-container h2 {
    margin-bottom: 20px;
    text-align: center;
}

.form-container label {
    display: block;
    margin-top: 15px;
}

.form-container input,
.form-container textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
}

.btn-submit {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background: navy;
    color: white;
    border: none;
    cursor: pointer;
}
/* Reset */
section{
    width:100%;
    padding:0;
    box-sizing:border-box;
}

/* =====================================
   SCHEMES SECTION
===================================== */

.schemes {
    padding: 30px 40px;
    background-color: #ffffff;
}

.schemes h3 {
    text-align: center;
    font-size: 32px;
    color: #0b2a4a;
    margin-bottom: 10px;
}

.schemes p {
    text-align: center;
    color: #555;
    margin-bottom: 40px;
}

.scheme-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.scheme-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scheme-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.scheme-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.scheme-card h4 {
    margin: 0;
    font-size: 18px;
    color: #0b2a4a;
    border-top: 2px solid #f4d27a;
    padding-top: 12px;
}

/* =====================================
   WHY CHOOSE US SECTION
===================================== */

.why-choose {
    padding: 30px 40px;
    background-color: #f3f6fa;
}

.why-choose h3 {
    text-align: center;
    font-size: 32px;
    color: #0b2a4a;
    margin-bottom: 40px;
}

.why-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.why-card {
    background: #ffffff;
    padding: 30px 20px;
    border: 1px solid #e5e5e5;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.why-card h4 {
    margin-bottom: 12px;
    color: #0b2a4a;
    font-size: 18px;
}

.why-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

#schemes {
    margin-bottom: -20px;
}
/* =========================================
   GLOBAL SECTION CONSISTENCY FIX
========================================= */

section{
    width:100%;
    box-sizing:border-box;
}

/* Container Alignment Fix */
.collections,
.schemes,
.why-choose,
.visit-showroom{
    max-width:1200px;
    margin:0 auto;
    padding-left:20px;
    padding-right:20px;
}

/* Fix uneven spacing */
#custom-design {
    margin-bottom: -20px;
}

/* ===============================
   COLLECTIONS GRID POLISH
================================ */

.collection-grid{
    gap:30px;
}

.collection-card{
    border-radius:8px;
}

/* ===============================
   SCHEMES GRID FIX
================================ */

.scheme-grid{
    max-width:1200px;
    margin:0 auto;
    gap:30px;
}

.scheme-card{
    border-radius:8px;
}

/* ===============================
   WHY CHOOSE GRID FIX
================================ */

.why-grid{
    max-width:1200px;
    margin:0 auto;
    gap:30px;
}

.why-card{
    border-radius:8px;
}

/* ===============================
   SHOWROOM ALIGNMENT FIX
================================ */

.visit-showroom{
    max-width:900px;
    margin:0 auto;
}

/* ===============================
   REMOVE SIDE STICKING ISSUE
================================ */

.collections,
.schemes,
.why-choose,
.visit-showroom{
    box-sizing:border-box;
}

/* ===============================
   SMOOTH CARD HOVER ENHANCEMENT
   (No background change)
================================ */

.collection-card:hover,
.scheme-card:hover,
.why-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 25px rgba(0,0,0,0.08);
}

/* ===============================
   SECTION TITLE SPACING POLISH
================================ */

.collections h3,
.schemes h3,
.why-choose h3{
    margin-bottom:50px;
}

/* ===============================
   MOBILE RESPONSIVE CLEAN FIX
================================ */

@media(max-width:768px){

    section{
        padding:60px 15px;
    }

    .collection-grid,
    .scheme-grid,
    .why-grid{
        gap:20px;
    }

}
/* ===============================
   Dynamic Jewellery Page
================================ */

.jewellery-container{
    max-width:1200px;
    margin:80px auto;
    padding:0 20px;
}

.page-title{
    text-align:center;
    font-size:28px;
    color:#0b2a4a;
    margin-bottom:40px;
}

.sub-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.sub-card{
    padding:20px;
    background:#ffffff;
    text-align:center;
    border:1px solid #eee;
    text-decoration:none;
    color:#0b2a4a;
    font-weight:600;
    transition:0.3s ease;
}

.sub-card:hover{
    background:#0b2a4a;
    color:#f4d27a;
    transform:translateY(-5px);
}

.image-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
    gap:20px;
}

.image-card{
    overflow:hidden;
    border-radius:6px;
}

.image-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:0.4s ease;
}

.image-card:hover img{
    transform:scale(1.08);
}
/* ===============================
   ULTRA PREMIUM CATEGORY DESIGN
================================ */

.category-page{
    max-width:1400px;
    margin:80px auto;
    padding:0 40px;
}

.category-hero{
    text-align:center;
    margin-bottom:50px;
}

.category-hero h1{
    font-size:36px;
    font-weight:600;
    color:#0b2a4a;
    letter-spacing:1px;
}

/* GRID FIX */
.category-grid{
    display:flex;
    flex-wrap:wrap;
    gap:30px;
    justify-content:center;
}

/* CARDS */
/* ===============================
   PREMIUM SUBCATEGORY CARDS
================================ */

.category-grid{
    display:flex;
    flex-wrap:wrap;
    gap:40px;
    justify-content:center;
    margin-top:40px;
}

.category-card{
    width:320px;
    height:200px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    position:relative;
    overflow:hidden;

    background:linear-gradient(135deg,#0b2a4a,#123c66);
    box-shadow:0 20px 45px rgba(0,0,0,0.25);
    transition:0.4s ease;
}

.category-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,0.35);
}

/* Text Styling */
.card-title{
    font-size:24px;
    font-weight:600;
    color:#f4d27a;
    letter-spacing:1px;
    transition:0.3s ease;
}

/* Hover gold glow */
.category-card:hover .card-title{
    text-shadow:0 0 15px rgba(244,210,122,0.6);
}

.category-card:hover{
    transform:translateY(-8px);
    background:linear-gradient(135deg,#0b2a4a,#123c66);
}

.category-card:hover .card-title{
    color:#f4d27a;
}



/* PRODUCT GRID FIX
.product-grid{
    display:flex;
    flex-wrap:wrap;
    gap:30px;
    justify-content:center;
}

.product-card{
    width:280px;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
    transition:0.4s ease;
}

.product-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:0.5s ease;
}

.product-card:hover{
    transform:translateY(-10px);
}

.product-card:hover img{
    transform:scale(1.07);
}*/
   .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
}

.image-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
 
/* ===============================
   LUXURY BREADCRUMB
================================ */

.lux-breadcrumb{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    margin-bottom:40px;
    font-size:14px;
    font-weight:500;
}

.lux-breadcrumb a{
    text-decoration:none;
    color:#0b2a4a;
    padding:6px 14px;
    border-radius:20px;
    background:#f4f6f9;
    transition:0.3s ease;
}

.lux-breadcrumb a:hover{
    background:#0b2a4a;
    color:#f4d27a;
}

.lux-breadcrumb span{
    color:#bbb;
    font-size:18px;
}

.lux-breadcrumb .active{
    background:#0b2a4a;
    color:#f4d27a;
    padding:6px 18px;
    border-radius:20px;
}
/* ===============================
   PREMIUM GOLD TABS UPGRADE
================================ */

.tabs-container{
    width:100%;
    display:flex;
    justify-content:center;
    margin-bottom:60px;
}

/* ===============================
   LUXURY TAB CONTAINER
================================ */

.tabs{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    padding:20px 40px;
    border-radius:60px;

    background:linear-gradient(135deg,#0b2a4a,#123c66);
    box-shadow:0 20px 45px rgba(0,0,0,0.25);
}

/* Inner tabs text color change */
.tab-link{
    text-decoration:none;
    padding:10px 22px;
    border-radius:30px;
    font-size:15px;
    font-weight:600;
    color:#f4d27a;
    transition:all 0.3s ease;
}

/* Hover */
.tab-link:hover{
    background:#f4d27a;
    color:#0b2a4a;
    transform:translateY(-3px);
}
.tab-link.active{
    background:linear-gradient(135deg,#d4af37,#f4d27a);
    color:#0b2a4a;
    box-shadow:0 8px 18px rgba(212,175,55,0.4);
}

/* ===============================
   IMAGE MODAL FIXED
================================ */

.image-modal{
    display:none;          /* IMPORTANT */
    position:fixed;
    z-index:9999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9);
    align-items:center;
    justify-content:center;
}

.image-modal.active{
    display:flex;
}

.image-modal img{
    max-width:80%;
    max-height:80%;
    border-radius:10px;
    box-shadow:0 20px 60px rgba(0,0,0,0.5);
}

.close-btn{
    position:absolute;
    top:40px;
    right:60px;
    font-size:40px;
    color:white;
    cursor:pointer;
}
/* ===============================
   ULTRA PREMIUM BREADCRUMB
================================ */

.breadcrumb-wrapper{
    display:flex;
    justify-content:center;
    margin:40px 0 60px;
}

.breadcrumb-inner{
    background:linear-gradient(135deg,#0b2a4a,#123c66);
    padding:14px 35px;
    border-radius:50px;
    box-shadow:0 20px 45px rgba(0,0,0,0.2);
    display:flex;
    align-items:center;
    gap:15px;
    font-size:14px;
    font-weight:500;
}

.breadcrumb-inner a{
    text-decoration:none;
    color:#f4d27a;
    transition:0.3s ease;
}

.breadcrumb-inner a:hover{
    color:#ffffff;
}

.breadcrumb-inner span{
    color:#ddd;
}

.breadcrumb-inner .active{
    background:#f4d27a;
    color:#0b2a4a;
    padding:5px 15px;
    border-radius:20px;
    font-weight:600;
}
/* =============================
   PREMIUM BREADCRUMB DESIGN
============================= */

.premium-breadcrumb{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    margin:30px 0 50px;
    background:linear-gradient(135deg,#0e2a47,#153b63);
    padding:14px 30px;
    border-radius:50px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
    width:fit-content;
    margin-left:auto;
    margin-right:auto;
}

.premium-breadcrumb .crumb{
    text-decoration:none;
    color:#f4c86a;
    font-weight:600;
    padding:8px 18px;
    border-radius:30px;
    transition:all 0.3s ease;
}

.premium-breadcrumb .crumb:hover{
    background:rgba(255,255,255,0.1);
    color:#fff;
}

.premium-breadcrumb .crumb.active{
    background:#f4c86a;
    color:#0e2a47;
    font-weight:700;
}

.premium-breadcrumb .divider{
    color:#ffffff80;
    font-size:18px;
}
/* ===============================
   NAVY BLUE CATEGORY TABS
================================ */

.subcategories-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    margin-top:50px;
}

.sub-card{
    background:linear-gradient(135deg,#0e2a47,#163a5f);
    color:#f4c86a;
    text-decoration:none;
    padding:60px 20px;
    border-radius:20px;
    font-size:22px;
    font-weight:600;
    text-align:center;
    transition:all 0.4s ease;
    box-shadow:0 15px 35px rgba(0,0,0,0.1);
    position:relative;
}

.sub-card:hover{
    background:#f4c86a;
    color:#0e2a47;
    transform:translateY(-8px);
    box-shadow:0 25px 50px rgba(0,0,0,0.2);
}
.container{
    padding:40px;
}

.main-title{
    text-align:center;
    font-size:36px;
    margin:40px 0;
    color:#0b2c4d;
}

.breadcrumb{
    text-align:center;
    margin-bottom:30px;
    font-size:16px;
}

.breadcrumb a{
    text-decoration:none;
    color:#8b3dff;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.card{
    background:#f3f3f3;
    padding:40px 20px;
    text-align:center;
    border-radius:12px;
    font-size:20px;
    font-weight:600;
    transition:0.3s;
}

.card:hover{
    background:#0b2c4d;
    color:#fff;
}

.card a{
    text-decoration:none;
    color:inherit;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.product-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:10px;
}

.no-product{
    text-align:center;
    grid-column:1/-1;
}
.card-link{
    text-decoration:none;
    color:inherit;
    display:block;
}

.card{
    cursor:pointer;
}

/* OUR LEGACY PAGE LAYOUT */
.legacy-grid {
    align-items: start;
}

.legacy-image-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.legacy-image-stack img {
    width: 100%;
    max-width: 560px;
    max-height: 300px;
    object-fit: cover;
    border-radius: 12px;
    cursor: zoom-in;
    box-shadow: 0 10px 25px rgba(0,0,0,0.10);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.legacy-image-stack img:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.14);
}

.legacy-history-card {
    margin-top: 24px;
    padding: 18px 20px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}

.legacy-history-card h3 {
    margin-bottom: 10px;
    color: #0b2a4a;
    font-size: 22px;
}

.legacy-history-card ul {
    margin: 0;
    padding-left: 20px;
    line-height: 1.8;
}

.image-modal img {
    max-width: 92vw;
    max-height: 92vh;
    object-fit: contain;
}

@media (max-width: 992px) {
    .legacy-image-stack img {
        max-width: 100%;
        max-height: 260px;
    }
}

/* OUR LEGACY HERO SPACING TUNE */
.legacy-hero {
    padding: 14px 20px;
    margin-bottom: 8px;
}

.legacy-hero h1 {
    margin: 8px 0 4px;
}

.legacy-hero p {
    margin: 0;
}

.legacy-story {
    padding-top: 24px;
    padding-bottom: 34px;
}

/* HOME HERO -> TRENDING COLLECTIONS GAP REDUCE */
#jewellery .container.collections {
    padding-top: 34px;
}

#jewellery .collections h3 {
    margin-top: 0;
}

/* ===============================
   
/* ===============================
   MOBILE NAVBAR - HAMBURGER MENU
================================ */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: #f4d27a;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 768px) {

    .hamburger { display: flex; }

    .brand-name {
        font-size: 11px;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }

    .logo-img { height: 50px; }

    #main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0f2e4d;
        z-index: 1000;
        padding: 10px 0 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }

    #main-nav.open { display: block; }

    .menu {
        flex-direction: column;
        gap: 0;
        white-space: normal;
    }

    .menu li a {
        display: block;
        padding: 12px 20px;
        font-size: 15px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        white-space: normal;
    }

    .mega-menu {
        position: static !important;
        width: 100% !important;
        transform: none !important;
        visibility: hidden;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, opacity 0.3s ease;
        background: #071c2c;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        display: block !important;
    }

    .mega-menu.mobile-open {
        visibility: visible;
        opacity: 1;
        max-height: 600px;
        padding: 15px 20px;
    }

    .mega-column { min-width: unset; margin-bottom: 15px; }
    .mega-column h4 { font-size: 13px; margin-bottom: 8px; }
    .mega-column a { font-size: 13px; padding: 5px 0; }

    .header-container { width: 95%; position: relative; }
    nav { margin-left: 0; }

    .collections, .schemes, .why-choose, .visit-showroom {
        padding-left: 15px;
        padding-right: 15px;
    }

    .collection-grid, .scheme-grid, .why-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .collection-card img { height: 160px; }
    .category-page { padding: 0 15px; margin: 40px auto; }

    .grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
        padding: 0 10px;
    }

    .tabs { padding: 12px 15px; border-radius: 30px; gap: 10px; }
    .tab-link { font-size: 13px; padding: 8px 14px; }
}

/* Desktop: full name show, short hide */
.brand-short { display: none; }
.brand-full  { display: inline; }

@media (max-width: 768px) {
    .brand-full  { display: none; }
    .brand-short {
        display: inline;
        font-size: 13px;
        white-space: nowrap;
        letter-spacing: 0.5px;
    }
}

/* Mobile: full name, one line, small font */
@media (max-width: 768px) {
    .brand-full {
        display: inline;
        font-size: 10px;
        white-space: nowrap;
        letter-spacing: 0.3px;
    }
    .brand-short { display: none; }
}

/* Mobile: increase header height */
@media (max-width: 768px) {
    .header {
        padding: 18px 0;
    }
    .logo-img {
        height: 55px;
    }
}

/* Mobile: brand name 3 lines */
@media (max-width: 768px) {
    .brand-full {
        display: inline-block !important;
        font-size: 13px !important;
        white-space: normal !important;
        line-height: 1.4;
        max-width: 90px;
        word-break: break-word;
    }
}

/* Collection grid — 5 cards one line */
.collection-grid {
    grid-template-columns: repeat(5, 1fr) !important;
}

@media (max-width: 900px) {
    .collection-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 500px) {
    .collection-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ===============================
   SIMPLE JEWELS DROPDOWN
================================ */

.simple-dropdown {
    position: relative;
}

.simple-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #0f2e4d;
    list-style: none;
    margin: 0;
    padding: 8px 0;
    min-width: 180px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 9999;
}

.simple-menu.open {
    display: block;
}

.simple-menu li a {
    display: block;
    padding: 10px 20px;
    color: #f4d27a;
    font-size: 14px;
    text-decoration: none;
    transition: 0.2s;
    white-space: nowrap;
}

.simple-menu li a:hover {
    background: rgba(244, 210, 122, 0.15);
    padding-left: 28px;
    color: #ffffff;
}

/* Mobile simple menu */
@media (max-width: 768px) {
    .simple-menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
        background: #071c2c;
        padding: 0;
    }

    .simple-menu li a {
        padding: 10px 30px;
        font-size: 13px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
}

/* Explore More Button */
.explore-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 20px;
    background: #0b2a4a;
    color: #f4d27a;
    text-decoration: none;
    font-size: 12px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.explore-btn:hover {
    background: #123c66;
}

/* Collection grid — 3 top, 2 bottom centered */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.collection-grid .collection-card:nth-child(4) {
    grid-column: 1 / 2;
    margin-left: 50%;
    transform: translateX(-50%);
}

.collection-grid .collection-card:nth-child(5) {
    grid-column: 2 / 3;
    margin-left: 50%;
    transform: translateX(-50%);
}

/* Collection grid — 3 top row, 2 bottom centered — FINAL */
.collection-grid {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.collection-grid .collection-card {
    width: calc(33.33% - 25px);
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .collection-grid .collection-card {
        width: calc(50% - 15px);
    }
}

@media (max-width: 480px) {
    .collection-grid .collection-card {
        width: 100%;
    }
}

/* 3+2 layout fix */
.collection-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 25px !important;
    max-width: 1000px;
    margin: 0 auto;
}

.collection-grid .collection-card {
    flex: 0 0 calc(33.33% - 18px) !important;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .collection-grid .collection-card {
        flex: 0 0 calc(50% - 15px) !important;
    }
}

@media (max-width: 480px) {
    .collection-grid .collection-card {
        flex: 0 0 100% !important;
    }
}

/* Row 2 — 2 cards centered */
.collection-grid-row2 {
    display: flex;
    justify-content: center;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.collection-grid-row2 .collection-card {
    width: calc(33.33% - 13px);
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .collection-grid-row2 .collection-card {
        width: calc(50% - 13px);
    }
}

@media (max-width: 480px) {
    .collection-grid-row2 {
        flex-direction: column;
    }
    .collection-grid-row2 .collection-card {
        width: 100%;
    }
}

/* Spacing between collection rows */
.collection-grid {
    margin-bottom: 25px !important;
}

/* ===============================
   THEME: ROYAL GOLD & DEEP NAVY
================================ */

:root {
    --primary: #0a1f3d;
    --accent: #c9a84c;
    --bg: #fdf8f0;
    --text: #2c2c2c;
    --light: #f5efe0;
}

body {
    background-color: var(--bg) !important;
    color: var(--text) !important;
}

/* Header */
.header {
    background: var(--primary) !important;
}

.menu li a {
    color: var(--accent) !important;
}

.brand-name {
    color: #ffffff !important;
}

/* Sections alternating bg */
#jewellery, .visit-showroom {
    background-color: #ffffff !important;
}

#why-choose-us {
    background-color: var(--light) !important;
}

/* Cards */
.collection-card, .why-card {
    background: #ffffff !important;
    border-color: #e8dcc8 !important;
}

.collection-card h4 {
    border-top-color: var(--accent) !important;
    color: var(--primary) !important;
}

.why-card h4 {
    color: var(--primary) !important;
}

/* Explore button */
.explore-btn {
    background: var(--primary) !important;
    color: var(--accent) !important;
}

.explore-btn:hover {
    background: var(--accent) !important;
    color: var(--primary) !important;
}

/* Section headings */
.collections h3, .why-choose h3, .visit-showroom h3 {
    color: var(--primary) !important;
}

/* Footer */
footer {
    background-color: var(--primary) !important;
}

.site-footer {
    padding: 36px 20px !important;
    border-top: 1px solid rgba(201,168,76,0.35);
    color: #ffffff;
}

.footer-inner {
    width: min(96%, 1120px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
    gap: 28px;
    align-items: start;
}

.footer-quick-access {
    margin-top: 18px;
}

.footer-brand-block h3,
.footer-quick-access h4 {
    color: var(--accent);
    margin: 0 0 12px;
}

.footer-brand-block {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    width: 76px;
    height: 76px;
    object-fit: contain;
    background: #ffffff;
    border-radius: 8px;
    padding: 8px;
    flex: 0 0 76px;
}

.footer-brand-block p {
    margin: 6px 0;
    color: rgba(255,255,255,0.82);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    padding: 8px 14px;
    border: 1px solid rgba(201,168,76,0.34);
    border-radius: 6px;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.footer-links a:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.footer-signature {
    grid-column: 2;
    justify-self: end;
    margin-top: -10px;
    color: rgba(255,255,255,0.74);
    font-size: 14px;
    letter-spacing: 0.4px;
    text-align: right;
}

.footer-signature p {
    margin: 0 0 5px;
}

.footer-signature span {
    color: var(--accent);
    font-weight: 700;
}

.footer-signature a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
}

.footer-signature a:hover {
    color: var(--accent);
}

@media (max-width: 768px) {
    .site-footer {
        padding: 28px 14px !important;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 22px;
        text-align: center;
    }

    .footer-brand-block {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }

    .footer-logo {
        width: 58px;
        height: 58px;
        flex-basis: 58px;
        padding: 6px;
    }

    .footer-links {
        justify-content: center;
        gap: 8px;
    }

    .footer-links a {
        padding: 7px 10px;
        font-size: 14px;
    }

    .footer-signature {
        grid-column: 1;
        justify-self: center;
        margin-top: 0;
        text-align: center;
    }
}

/* Simple dropdown */
.simple-menu {
    background: var(--primary) !important;
}

.simple-menu li a {
    color: var(--accent) !important;
}

.simple-menu li a:hover {
    background: rgba(201,168,76,0.15) !important;
    color: #fff !important;
}

/* Mega menu */
.mega-menu {
    background: linear-gradient(135deg, #0a1f3d, #061428) !important;
}

/* Keep all top navigation links visible on live widths */
.header-container {
    width: min(96%, 1320px) !important;
    gap: 18px;
}

.brand {
    flex-shrink: 0;
}

#main-nav {
    flex: 1;
    min-width: 0;
}

.menu {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px 14px !important;
}

.menu li a {
    font-size: clamp(15px, 1.12vw, 18px) !important;
    font-weight: 700 !important;
    white-space: nowrap;
}

@media (min-width: 769px) and (max-width: 1180px) {
    .brand-name {
        font-size: 14px !important;
    }

    .menu {
        gap: 8px 10px !important;
    }
}

/* ================================
   COMPREHENSIVE RESPONSIVE BREAKPOINTS
   ================================ */

/* Small Phones: 320px - 480px */
@media (max-width: 480px) {
    html {
        font-size: 13px;
    }

    body {
        line-height: 1.5;
    }

    .container {
        padding: 0 12px;
    }

    .header-container {
        width: 95%;
        gap: 10px;
    }

    .hamburger {
        display: flex !important;
    }

    #main-nav {
        display: none !important;
    }

    #main-nav.open {
        display: flex !important;
    }

    .menu {
        flex-direction: column;
        gap: 0;
    }

    .menu li {
        border-bottom: 1px solid rgba(244,197,66,0.15);
    }

    .menu li a {
        padding: 14px 12px;
        display: block;
        font-size: 13px;
    }

    /* All grids to single column */
    .collection-grid,
    .scheme-grid,
    .why-grid,
    .gallery-grid,
    .contact-number-grid,
    .legacy-highlights {
        grid-template-columns: 1fr !important;
    }

    /* Responsive text sizes */
    h1, .page-title {
        font-size: 22px !important;
    }

    h2 {
        font-size: 20px !important;
    }

    h3 {
        font-size: 18px !important;
    }

    h4 {
        font-size: 15px !important;
    }

    /* Sections */
    section {
        padding: 30px 12px !important;
    }

    .custom-design,
    .custom-design-page,
    .legacy-story {
        padding: 25px 12px !important;
    }

    /* Custom design card */
    .custom-design-card {
        padding: 20px 15px;
    }

    /* Images */
    .collection-card img,
    .scheme-card img,
    .product-card img {
        height: 150px;
    }

    .gallery-grid img {
        aspect-ratio: 4 / 3;
    }

    /* Buttons */
    .visit-showroom a,
    .explore-btn,
    .navigate-btn,
    .custom-form button {
        width: 100%;
        padding: 12px 15px;
    }

    /* Forms */
    .custom-form {
        padding: 15px;
    }

    .custom-form input,
    .custom-form textarea {
        font-size: 13px;
        padding: 10px;
    }

    .legacy-grid {
        grid-template-columns: 1fr;
    }

    .schemes-hero {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .contact-number-card {
        padding: 15px 12px;
    }
}

/* Tablets: 481px - 768px */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }

    /* All large grids to 2 columns where appropriate */
    .collection-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .scheme-grid,
    .why-grid,
    .gallery-grid,
    .contact-number-grid,
    .legacy-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Text sizes */
    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 20px;
    }

    /* Images */
    .collection-card img,
    .scheme-card img {
        height: 180px;
    }

    /* Legacy grid */
    .legacy-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Schemes hero */
    .schemes-hero {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }

    /* Hero slider */
    .hero-slider {
        min-height: 420px;
    }

    /* Sections */
    section {
        padding: 40px 15px;
    }

    .showroom-gallery {
        padding: 35px 15px;
    }

    /* Footer grid */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .f-brand {
        grid-column: 1 / -1;
        justify-content: center;
    }
}

/* Laptops: 769px - 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 95%;
        padding: 0 20px;
    }

    .collection-grid,
    .scheme-grid,
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-number-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mega-menu {
        width: min(85vw, 800px);
        gap: 25px;
    }

    .mega-column {
        min-width: 140px;
    }
}

/* Large Desktops: 1025px - 1440px */
@media (min-width: 1025px) and (max-width: 1440px) {
    .container {
        max-width: 1200px;
    }

    .collection-grid,
    .scheme-grid,
    .why-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-number-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Extra-Large / Ultrawide: 1441px - 2560px */
@media (min-width: 1441px) {
    html {
        font-size: 16px;
    }

    .container {
        max-width: min(90%, 1600px);
    }

    .collection-grid,
    .scheme-grid,
    .why-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 25px;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .contact-number-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .collection-card img,
    .scheme-card img {
        height: 260px;
    }

    .gallery-grid img {
        height: auto;
    }

    .mega-menu {
        width: min(85vw, 1000px);
        gap: 40px;
        padding: 35px 50px;
    }

    .mega-column {
        min-width: 250px;
    }

    /* Larger sections */
    section {
        padding: 80px 40px;
    }

    h1, .page-title {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 28px;
    }
}

/* 4K Displays: 2560px and above */
@media (min-width: 2560px) {
    html {
        font-size: 18px;
    }

    .container {
        max-width: min(85%, 2000px);
    }

    .collection-grid,
    .scheme-grid,
    .why-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 35px;
    }

    .gallery-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 25px;
    }

    .contact-number-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .collection-card img,
    .scheme-card img,
    .product-card img {
        height: 320px;
    }

    .gallery-grid img {
        height: auto;
        aspect-ratio: 16 / 12;
    }

    /* Larger padding */
    section {
        padding: 100px 60px;
    }

    .custom-design-card {
        max-width: 800px;
        padding: 50px;
    }

    /* Header */
    .header {
        padding: 20px 60px;
    }

    .logo-img {
        height: 90px;
    }

    .brand-name {
        font-size: 24px;
    }

    .menu li a {
        font-size: 18px;
        margin-left: 35px;
    }

    /* Text sizes */
    h1, .page-title {
        font-size: 48px;
    }

    h2 {
        font-size: 40px;
    }

    h3 {
        font-size: 36px;
    }

    h4 {
        font-size: 24px;
    }

    p {
        font-size: 18px;
        line-height: 1.8;
    }

    /* Buttons */
    button,
    a.explore-btn,
    a.navigate-btn {
        padding: 16px 40px;
        font-size: 16px;
    }

    /* Forms */
    .custom-form input,
    .custom-form textarea {
        padding: 14px;
        font-size: 15px;
    }

    .mega-menu {
        width: min(80vw, 1200px);
        gap: 50px;
        padding: 40px 60px;
    }

    .mega-column {
        min-width: 280px;
    }

    .mega-column h4 {
        font-size: 18px;
    }

    .mega-column a {
        font-size: 14px;
    }
}

/* Portrait Tablets (Landscape to Portrait transition): 600px - 768px */
@media (min-width: 600px) and (max-width: 768px) {
    .collection-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .scheme-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-number-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Landscape phones: 768px landscape */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-slider {
        height: 60vh;
        min-height: 350px;
    }

    section {
        padding: 25px 15px;
    }

    h1, h2, h3 {
        margin-bottom: 10px;
    }

    .collection-grid,
    .scheme-grid,
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

/* Prevent horizontal scrolling everywhere */
html, body {
    overflow-x: hidden !important;
}

* {
    box-sizing: border-box;
}

/* Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Ensure tables are responsive */
table {
    width: 100%;
    border-collapse: collapse;
    overflow-x: auto;
}

/* Ensure videos and iframes are responsive */
iframe,
video {
    max-width: 100%;
    height: auto;
    display: block;
}
