@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --gold: #D4AF37;
    --dark-gold: #b38728;
    --black: #0a0a0a;
    --white: #ffffff;
    --gradient: linear-gradient(45deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
}

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

body {
    background-color: var(--black);
    color: var(--white);
    font-family: 'Playfair Display', serif;
}

/* --- Navbar (Injected via JS) --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo .brand-name {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

/* --- Hero Slider --- */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-img {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: scale(1.1);
    transition: transform 6s linear;
}

.slide.active .slide-img {
    transform: scale(1);
}

.hero-content {
    text-align: center;
    max-width: 900px;
}

.hero-content span {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 5px;
    display: block;
    margin-bottom: 20px;
    font-size: 16px;
}

.hero-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-style: italic;
    color: #ddd;
}

.btn-gold {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 15px 35px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.5s;
}

.btn-gold:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}


/* services  */


/* Card Glow and Shadow */
.category-card {
    background: #111;
    border-radius: 5px;
    padding-bottom: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}

/* Sold Graphic/Badge Style (Optional) */
.category-card::after {
    content: 'PURE 22K';
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: #000;
    font-size: 10px;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 2px;
    z-index: 5;
    letter-spacing: 1px;
}

.card-img {
    position: relative;
    overflow: hidden;
    height: 300px; /* Fixed height for symmetry */
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9); /* Subtle dark look for premium feel */
}
/* --- Category Section Styles --- */
.category-section {
    padding: 80px 6%;
    background-color: var(--black);
    text-align: center;
}

.section-title {
    margin-bottom: 50px;
}

.section-title span {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
}

.section-title h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin-top: 10px;
    color: var(--white);
}

.title-line {
    width: 80px;
    height: 2px;
    background: var(--gradient);
    margin: 20px auto;
}

/* Grid Layout */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: 0.4s;
}

.card-img {
    position: relative;
    height: 350px;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

/* Hover Effect */
.category-card:hover .card-img img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.category-card:hover .overlay {
    opacity: 1;
}

.shop-now {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    padding: 10px 25px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
}

.shop-now:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: black;
}

.category-card h3 {
    margin-top: 15px;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 1px;
}




/* contact  */


.contact-page {
    background: #0a0a0a;
    padding-top: 120px;
}

.contact-container {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    gap: 50px;
    padding: 50px 5%;
}

.contact-info {
    flex: 1;
}

.contact-form-box {
    flex: 1;
    background: #111;
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.input-group {
    margin-bottom: 20px;
}

.input-group input, 
.input-group select, 
.input-group textarea {
    width: 100%;
    padding: 12px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    font-family: inherit;
    outline: none;
}

.input-group select option {
    background: #111;
}

.input-group input:focus, 
.input-group select:focus {
    border-color: var(--gold);
}

#form-status {
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
}



/* testimonial  */


/* --- Testimonial Slider --- */
.testimonial-section {
    padding: 80px 0;
    background: #000;
    overflow: hidden; /* Bahar ka area chhupane ke liye */
}

.testimonial-container {
    display: flex;
    width: 100%;
}

.testimonial-track {
    display: flex;
    width: calc(350px * 6); /* Card width * Total cards */
    animation: scrollInfinite 20s linear infinite;
}

/* Mouse le jaane par slider ruk jayega */
.testimonial-track:hover {
    animation-play-state: paused;
}

@keyframes scrollInfinite {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-350px * 3)); } /* Jitne original cards hain utna move */
}

.testimonial-card {
    width: 320px;
    margin: 0 15px;
    background: #111;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.client-img {
    width: 80px;
    height: 80px;
    margin: 15px auto;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid var(--gold);
}

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

.testimonial-card .stars {
    color: var(--gold);
    margin-bottom: 10px;
}

.testimonial-card h4 {
    font-family: 'Cinzel', serif;
    color: #fff;
    margin-top: 10px;
}

.testimonial-card span {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 1px;
}


/* footer */


.main-footer {
    background: #050505;
    color: #fff;
    padding: 80px 8% 20px;
    border-top: 2px solid #D4AF37;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 50px;
}

.gold-text {
    font-family: 'Cinzel', serif;
    color: #D4AF37;
    margin-bottom: 15px;
}

.footer-col h3 {
    color: #D4AF37;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #D4AF37;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #bbb; text-decoration: none; transition: 0.3s; }
.footer-links a:hover { color: #D4AF37; padding-left: 8px; }

/* Social Icons */
.social-icons { margin-top: 15px; display: flex; gap: 15px; }
.social-icons a {
    width: 40px;
    height: 40px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #D4AF37;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: 0.4s;
}
.social-icons a:hover { background: #D4AF37; color: #000; transform: translateY(-5px); }

/* Developer Section Styling */
.dev-name {
    color: #D4AF37 !important;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    margin: 10px 0;
}

.mail-icon-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #bbb;
    margin-top: 10px;
    background: rgba(255,255,255,0.05);
    padding: 8px 12px;
    border-radius: 5px;
}

.mail-icon-link img { width: 25px; }

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #222;
    color: #666;
    font-size: 0.8rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .footer-col h3::after { left: 50%; transform: translateX(-50%); }
    .social-icons { justify-content: center; }
    .mail-icon-link { justify-content: center; }
}




