/* _______________________________________________________________________________ */
/* Section Container with Top/Bottom Padding  */
.products-section {
    position: relative;
    padding: clamp(60px, 8vw, 100px) 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    overflow: hidden;
}

/* Linear black overlay */
.products-section::before {
    content: "";
    position: absolute;
    inset: 0;

    /* Linear black overlay */
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 1.0),
            /* top */
            rgba(0, 0, 0, 0),
            /* middle */
            rgba(0, 0, 0, 1.0)
            /* bottom */
        );

    z-index: 1;
}

/* Keep content above overlay */
.products-section .container {
    position: relative;
    z-index: 2;
}

/* Section Title Styling */
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--accent-gold);
    line-height: 1.2;
}

.section-title span {
    color: #fff;
}

/* Grid Layout - Desktop (3 Columns) */
.product-grid {
    display: grid;
    /* Uses 3 columns by default, but we'll manage specific breakpoints below */
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(15px, 3vw, 30px);
}

/* Individual Product Card */
.product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    /* Refined Luxury Shadow */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.05);

    border-radius: 30px;
    padding: clamp(20px, 4vw, 35px);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;

    /* For GSAP */
    opacity: 0;
    transform: translateY(30px);
    border-color: var(--accent-gold);
}

.product-card:hover {
    border-color: transparent;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(212, 175, 55, 0.2);
}


.product-card:hover .product-img-wrapper img {
    transform: scale(1.1) rotate(3deg);
    filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.6));
}


.product-img-wrapper {
    height: clamp(100px, 15vw, 160px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.product-img-wrapper img {
    max-width: 90%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.1) rotate(5deg);
}

.product-name {
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 5px;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin: 0;
}

/* --- RESPONSIVE UPDATES --- */
/* --- RESPONSIVE BREAKPOINTS --- */

/* 1. Large Tablets & Small Laptops (e.g., iPad Pro) */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        /* Maintains 3 columns */
        gap: 20px;
    }

    .product-card {
        padding: 25px;
    }
}

/* 2. Tablets & Landscape Phones (e.g., iPad Mini, Pixel Tablet) */
@media (max-width: 991px) {
    .products-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Switches to 2 columns */
        gap: 20px;
    }

    .section-title {
        margin-bottom: 40px !important;
    }
}

/* 3. Mobile Devices (Forced 2-Column Layout) */
@media (max-width: 767px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Force 2 columns */
        gap: 12px;
        /* Tighter gap for small screens */
    }

    .product-card {
        padding: 15px;
        border-radius: 20px;
        /* Softer corners for mobile */
    }

    .product-img-wrapper {
        height: 110px;
        /* Reduced height to keep cards compact */
        margin-bottom: 10px;
    }

    .product-name {
        font-size: 0.85rem;
        /* Smaller text to prevent wrapping */
        letter-spacing: 0.5px;
    }

    .product-price {
        font-size: 0.95rem;
    }
}

/* 4. Extra Small Devices (Very narrow phones) */
@media (max-width: 380px) {
    .product-grid {
        gap: 8px;
        /* Minimal gap */
    }

    .product-card {
        padding: 10px;
    }

    .product-img-wrapper {
        height: 90px;
    }
}
































/* ----------------------------------------------------------- */
.ticker-section {
    background-color: #000;
    /* Deep black matching your image */
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
    overflow: hidden;
    width: 100%;
}

.ticker-wrapper {
    display: flex;
    width: 100%;
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: scroll-left 30s linear infinite;
    /* Adjust '30s' to change speed */
}

.ticker-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--accent-gold);
    /* Using your gold theme color */
    padding: 0 40px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: capitalize;
    position: relative;
}

/* Optional: Small dot separator between items */
.ticker-item::after {
    content: "•";
    position: absolute;
    right: 0;
    color: rgba(212, 175, 55, 0.4);
}

/* The Animation */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        /* This must be exactly half of the ticker-content width if duplicated */
        transform: translateX(-50%);
    }
}

/* Pause on hover to make it readable */
.ticker-section:hover .ticker-content {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .ticker-item {
        font-size: 0.8rem;
        padding: 0 20px;
    }

    .ticker-section {
        padding: 10px 0;
    }
}

















/* Product  Section */
/* --------------------------------------- */
.gemstone-products {
    padding: 100px 0;
    /* background: var(--bg-dark); */
    /* background: radial-gradient(circle at center, var(--bg-green) 0%, var(--bg-dark) 100%); */

    background: url(../img/bg/bg-7.png);
    background-size: cover;
    background-repeat: no-repeat;

}

.product-layout-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 25px;
    /* Increased vertical gap for shadow room */
}

.gem-product-card {
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 40px 10px 40px 10px;
    /* Luxury asymmetrical cut */
    padding: 40px 25px 25px;
    text-align: center;
    transition: all 0.5s ease;
    backdrop-filter: blur(100px);
    border-color: var(--accent-gold);

}

/* Floating Badge */
.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-gold);
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Image with Glow Effect */
.gem-img-area {
    position: relative;
    height: 200px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--accent-gold);
    filter: blur(60px);
    opacity: 0.15;
    z-index: 1;
}

.gem-img-area img {
    height: 100%;
    z-index: 2;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.8));
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Card Hover */
.gem-product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.gem-product-card:hover img {
    transform: scale(1.15) rotate(5deg);
}

/* Typography & Info */
.gem-rating {
    color: var(--accent-gold);
    font-size: 0.7rem;
    margin-bottom: 10px;
}

.gem-info h5 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.gem-meta {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    margin-bottom: 15px;
}

/* Pricing Section */
.price-container {
    margin-bottom: 25px;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    margin-bottom: -5px;
}

.new-price {
    display: block;
    color: var(--accent-gold);
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

/* WhatsApp Luxury Style */
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid rgba(37, 211, 102, 0.5);
    color: #25D366;
    background: rgba(37, 211, 102, 0.05);
    padding: 14px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s ease;
}

.whatsapp-btn:hover {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}

/* --- MOBILE RESPONSIVE SLIDER --- */
@media (max-width: 767px) {
    .product-layout-wrapper {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 20px 20px 60px;
        scrollbar-width: none;
    }

    .product-layout-wrapper::-webkit-scrollbar {
        display: none;
    }

    .gem-product-card {
        min-width: 85%;
        scroll-snap-align: center;
        border-radius: 30px 10px 30px 10px;
    }
}






















/* Video Section  */
.video-section {
    padding: 120px 0;
    /* background: radial-gradient(circle at top right, var(--bg-green) 0%, var(--bg-green) 100%); */

    background-color: var(--white);

}

.video-container {
    position: relative;
    height: 550px;
    border-radius: 60px 0 60px 0;
    /* Asymmetric luxury cut */
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--glass-border);
    background: var(--bg-dark);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.video-thumbnail {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    /* filter: brightness(0.7); */
}

/* Glassmorphism Overlay */
.video-overlay-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 20, 33, 0.8), transparent);
    transition: all 0.5s ease;
}

/* Cinematic Hover effect */
.video-container:hover .video-thumbnail {
    transform: scale(1.1);
}

.video-container:hover .video-overlay-content {
    background: rgba(11, 20, 33, 0.4);
    backdrop-filter: blur(2px);
}

/* Play Button Design */
.play-btn {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
}

.video-container:hover .play-btn {
    background: var(--accent-gold);
    color: var(--bg-dark);
    transform: scale(1.1);
    border-color: var(--accent-gold);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.4);
}

/* Asymmetric Border Accent on Container */
.video-container::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 45px 0 45px 0;
    pointer-events: none;
    z-index: 1;
}

.tracking-widest {
    letter-spacing: 0.3em;
}

@media (max-width: 768px) {
    .video-container {
        height: 350px;
        border-radius: 40px 0 40px 0;
    }

    .play-btn {
        width: 70px;
        height: 70px;
        font-size: 1.2rem;
    }
}




/* Glass Modal Background */
.glass-modal-style {
    background: rgba(11, 20, 33, 0.7) !important;
    backdrop-filter: blur(25px) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    border-radius: 30px !important;
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.1);
}

/* Elegant Floating Close Button */
.luxury-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: 0.3s;
}

.luxury-close:hover {
    color: var(--accent-gold);
}

.video-frame-wrapper {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}








/* About Us */

.solution-section {
    padding: 100px 0;
    /* background: var(--bg-dark); */
    /* background: url(../img/bg/bg-7.png); */
    background-size: cover;
    background-repeat: no-repeat;


    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 1.0),
            /* top */
            rgba(0, 0, 0, 0),
            /* middle */
            rgba(0, 0, 0, 1.0)
            /* bottom */
        );


}

.solution-card-wrapper {
    /* background: rgba(255, 255, 255, 0.02); */
    border: 1px solid var(--glass-border);
    border-radius: 60px 0 60px 0;
    /* Signature Cut */
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.solution-image-box {
    position: relative;
    background: rgba(212, 175, 55, 0.05);
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-image-box img {
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    max-height: 600px;
    object-fit: cover;
    object-position: 50% 35%;
}

.glass-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgb(255, 255, 255);
    border: 1px solid var(--glass-border);
    padding: 5px 15px;
    font-size: 0.7rem;
    color: var(--accent-gold);
    border-radius: 50px;
}

.solution-content {
    padding: clamp(30px, 5vw, 60px);
}

.text-gold {
    color: var(--accent-gold);
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-text h6 {
    color: white;
    margin-bottom: 5px;
    font-weight: 600;
}

.benefit-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* --- MOBILE RESPONSIVE (MATCHING DESIGN) --- */
@media (max-width: 767px) {
    .solution-card-wrapper {
        border-radius: 40px 0 40px 0;
        margin: 0 10px;
    }

    .solution-image-box {
        min-height: 250px;
    }

    .solution-content {
        text-align: left;
        /* Keeps the luxury list aligned */
        padding: 30px 20px;
    }

    .benefit-item {
        gap: 15px;
    }
}


















