/* ====================== Header ======================= */
/* BASIC RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* NAVBAR MAIN */
.navbar {
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    position: fixed; /* Scroll par jamaye rakhne ke liye */
    top: 0;
    left: 0;
    width: 100%;
    min-height: 80px;
    z-index: 9999; /* Isse sabse upar rakha hai taaki images iske upar na aayein */
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    transition: all 0.3s ease; /* Smoothness ke liye */
}



/* DESKTOP LINKS */
.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li { margin-left: 30px; }

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.nav-links a:hover, .nav-links a.active { color: #D4AF37; }

/* HAMBURGER DESIGN (Chota aur Clean) */
.hamburger {
    display: none; /* Laptop par hide */
    flex-direction: column;
    cursor: pointer;
    z-index: 3000;
    width: 24px; /* Fix Width */
}

.line {
    width: 100%;
    height: 2px; /* Patli premium line */
    background-color: #D4AF37;
    margin: 3px 0; /* Sahi gap */
    transition: all 0.3s ease;
}

/* ================= RESPONSIVE (IPAD & PHONE) ================= */
@media (max-width: 1024px) {
    .navbar { padding: 0 5%; } /* Tablet/iPad padding */
}

@media (max-width: 768px) {
    .navbar { 
        height: 70px; /* Ise 20px se 70px kiya taaki logo dikhe */
        padding-left: 20px; /* Logo aur kinare ke beech thoda gap */
        display: flex;
        align-items: center;
    }

    .hamburger {
        display: flex; 
        width: 25px;   /* 2px se 25px kiya taaki lines ki width dikhe */
        margin-right: 15px; 
    }

    .logo-img {
        height: 50px; /* Logo ko mobile ke hisaab se adjust kiya */
    }

    .nav-links {
        position: fixed;
        top: 70px; /* Navbar ke bilkul niche se khulega */
        right: -100%;
        height: auto; 
        width: 60%;
        background: #111;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 20px 0;
        transition: 0.4s ease-in-out;
        box-shadow: -5px 5px 15px rgba(0,0,0,0.5);
        border-bottom-left-radius: 15px;
        z-index: 10000;
    }

    .nav-links.active { right: 0; }

    .nav-links li { margin: 20px 0; }

    .nav-links a { font-size: 20px; }

    /* X ANIMATION - transform waisa hi hai jaisa aapne diya tha */
    .hamburger.active .line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .line:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hamburger .line {
        height: 2px;
        margin: 2px 0;
        background-color: #D4AF37; /* Lines ka golden color */
        width: 100%; /* Line poori width le */
    }
}
/* Logo Container */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Logo Image Style */
.logo-img {
    height: 80px; /* Height thodi badha di hai premium look ke liye */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.2)); /* Halka golden glow */
    transition: all 0.4s ease;
    
}

/* Logo Hover Effect */
.logo-img:hover {
    transform: scale(1.08); /* Hover par halka sa bada hoga */
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5)); /* Glow badh jayega */
}


/* ==========================Hero Home=============================== */
/* HERO SECTION STYLE */
/* ================= HERO SECTION STYLE ================= */
.hero {
    height: 90vh; 
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('image/herobanner.webp'); 
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-content h4 {
    color: #D4AF37; 
    letter-spacing: 3px;
    font-weight: 300;
    margin-bottom: 10px;
    animation: fadeInUp 1s ease;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    animation: fadeInUp 1.2s ease;
}

.hero-content h1 span { color: #D4AF37; }

.hero-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
    color: #cccccc; 
    animation: fadeInUp 1.4s ease;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1.6s ease;
}

.btn-gold {
    background-color: #D4AF37;
    color: black;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-outline {
    border: 2px solid #ffffff;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s;
}

/* ================= MOBILE RESPONSIVE (Hero & PDF) ================= */
@media screen and (max-width: 768px) {
    .hero {
        padding-top: 100px;
        height: auto;
        min-height: 80vh;
        background-position: center !important;
    }

    /* Buttons ko ek ke niche ek karne ke liye updated code */
    .hero-btns {
        flex-direction: column; /* Ise row se column kiya upar-neeche ke liye */
        gap: 15px;
        align-items: center;
    }

    /* Mobile par dono buttons ki width barobar karne ke liye */
    .btn-gold, .btn-outline {
        width: 85%; /* Mobile screen ke hisaab se wide buttons */
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    /* PDF Container Adjustments */
    .pdf-container {
        width: 100%;
        height: 80vh;
        margin-top: 60px;
    }

    .close-pdf {
        top: 10px;
        right: 10px;
        font-size: 40px;
        width: 45px;
        height: 45px;
    }
}

/* ================= PDF MODAL MAIN ================= */
.pdf-modal {
    display: none; 
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.95);
    justify-content: center;
    align-items: center;
}

.pdf-modal.show-pdf {
    display: flex !important;
}

.close-pdf {
    position: fixed;
    top: 20px;
    right: 20px;
    color: #D4AF37;
    font-size: 50px;
    cursor: pointer;
    font-weight: bold;
    z-index: 100001;
    line-height: 1;
    background: rgba(0, 0, 0, 0.6);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.pdf-container {
    position: relative;
    width: 95%;
    height: 85vh;
    background: #fff;
    border: 2px solid #D4AF37;
    margin-top: 40px;
}

#pdfFrame {
    width: 100%;
    height: 100%;
    border: none;
}
/* ============================About us=============================== */
/* ================= ABOUT SECTION ================= */
.about {
    padding: 80px 10%;
    background-color: #ffffff;
    overflow: hidden;
}

.about-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

/* --- IMAGE SECTION WITH HOVER --- */
.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 1000px; /* 3D effect ke liye */
}

.about-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 4px;
    box-shadow: 20px 20px 0px #D4AF37; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Smooth bounce effect */
    border: 1px solid #eee;
}

/* Image Hover Effect (Wapas add kar diya gaya hai) */
.about-image:hover img {
    transform: translate(-10px, -10px) scale(1.02); /* Thoda zoom aur move */
    box-shadow: 30px 30px 0px #1a1a1a; /* Black shadow on hover */
}

/* --- TEXT SECTION --- */
.about-text {
    flex: 1;
    min-width: 320px;
    text-align: left; /* Always Left start */
    display: flex;
    flex-direction: column;
}

.sub-title {
    display: block;
    color: #D4AF37;
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.about-text h2 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-text h2 span { color: #D4AF37; }

.about-text p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 16px;
}

/* Feature List */
.features {
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.icon { color: #D4AF37; font-size: 16px; }

.feature-item p {
    margin: 0;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 15px;
}

/* Premium Button */
.btn-dark {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #1a1a1a;
    width: fit-content; /* Button jitna text hai utni hi width le */
}

.btn-dark:hover {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #D4AF37;
}

/* ================= RESPONSIVE SETTINGS ================= */

/* Tablet (iPad/Large Phones) */
@media screen and (max-width: 1024px) {
    .about { padding: 60px 5%; }
    .about-wrapper { gap: 40px; }
}

/* Mobile (Button Center, Content Left) */
@media screen and (max-width: 768px) {
    .about { padding: 50px 20px; }

    .about-wrapper {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
        margin-bottom: 40px;
    }

    .about-image img {
        width: 85%; /* Mobile par image size adjusted */
        box-shadow: 15px 15px 0px #D4AF37;
    }

    /* Alignment Fix */
    .about-text {
        align-items: flex-start; /* Baaki sab left rahega */
    }

    .btn-dark {
        align-self: center; /* SIRF Button center hoga */
        margin-top: 10px;
    }
}

/* ======================PRODUCTS SECTION STYLE===================== */
/* SHOP SECTION - PREMIUM PRODUCT GRID */
/* SHOP SECTION - No Change in Base Style */
.shop {
    padding: 100px 10%;
    background-color: #f4f4f4;
    text-align: center;
    overflow: hidden; /* Slider bahar na jaye */
}

.shop-header {
    margin-bottom: 60px;
}

.shop-header h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.shop-header h2 span {
    color: #D4AF37;
}

/* Updated Slider Layout - Fixed Height/Width Logic */
.product-grid {
    display: flex; /* Flexbox for horizontal slider */
    gap: 30px; /* Space between cards */
    overflow-x: auto; 
    scroll-behavior: smooth;
    padding: 30px 10px; /* Padding for hover effect shadow */
    cursor: grab;
    scrollbar-width: none; /* Firefox hide scrollbar */
    user-select: none; /* Dragging ke waqt text select nahi hoga */
}

.product-grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari hide scrollbar */
}

.product-grid:active {
    cursor: grabbing;
    scroll-behavior: auto; /* Drag ke waqt smooth scroll off for better control */
}

/* Individual Card - Fixed Height & Width */
.product-card {
    background: #ffffff;
    border: none;
    border-radius: 0px; 
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    
    /* Yahan se size fix hoga */
    width: 320px; 
    min-width: 320px; /* Desktop par size nahi badlega */
    flex-shrink: 0;
    display: flex;
    flex-direction: column; /* Content align rakhne ke liye */
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Image Fixed Height */
.product-img {
    height: 350px; /* Sabhi images ki height same rakhi hai */
    overflow: hidden;
    position: relative;
    background-color: #f9f9f9;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    cursor: zoom-in; /* Takki user ko pata chale ki click hoga */
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

/* Info Section - Fixed Height for Content */
.product-info {
    padding: 25px 15px;
    border: 1px solid #eee;
    border-top: none;
    flex-grow: 1; /* Space barabar baantne ke liye */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 220px; /* Fixed height for text area */
}

/* --- UPDATE: Name height fix (2-3 lines) --- */
.product-info h3 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 600;
    /* Multiline truncation logic */
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Yahan 2 ya 3 line set kar sakte ho */
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 48px; /* Fixed height taaki card niche na khiske */
}

.stars {
    color: #D4AF37;
    font-size: 14px;
    margin-bottom: 12px;
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    display: block;
}

.tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #D4AF37;
    color: #000;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.add-to-cart {
    width: 100%;
    background-color: #1a1a1a;
    color: #ffffff;
    border: 1px solid #1a1a1a;
    padding: 12px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background-color: transparent;
    color: #1a1a1a;
    border: 1px solid #D4AF37;
}

/* --- ADDITION: Image Popup Modal Styles --- */
.modal {
    display: none;
    position: fixed;
    z-index: 99999; /* Sabse upar */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 90%;
    max-height: 85%;
    border: 2px solid #D4AF37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
}

/* MOBILE RESPONSIVE */
@media screen and (max-width: 768px) {
    .shop {
        padding: 60px 20px;
    }
    .product-card {
        width: 280px;
        min-width: 280px;
    }
    .product-img {
        height: 300px;
    }
}
/* ==========================Servics===================== */
/* SPECIALITY SECTION - LUXURY ALIGNMENT */
.speciality {
    padding: 100px 10%;
    background-color: #000000; /* Pure Black - Premium Look */
    color: #ffffff;
    position: relative;
    overflow: hidden; /* Extra safety for mobile */
}

.sec-title {
    text-align: center;
    margin-bottom: 70px;
}

.gold-text {
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 5px; 
    font-size: 13px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.sec-title h2 {
    font-size: clamp(2rem, 5vw, 3rem); /* Responsive heading for all devices */
    color: #ffffff;
    font-weight: 600;
    line-height: 1.2;
}

.sec-title h2 span {
    color: #D4AF37; 
}

.line {
    width: 80px;
    height: 2px;
    background: #D4AF37;
    margin: 25px auto;
}

/* Grid Layout - Optimized for Laptop/Tablet/Phone */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px; 
}

/* Individual Speciality Box */
.spec-box {
    background: #0a0a0a; 
    padding: 60px 40px;
    border-radius: 0px; 
    border: 1px solid #1a1a1a;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Golden top border animation */
.spec-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #D4AF37;
    transform: scaleX(0);
    transition: 0.4s ease;
}

.spec-box:hover::before {
    transform: scaleX(1);
}

.spec-icon-wrap {
    margin-bottom: 30px;
}

/* Large Numbers */
.spec-number {
    font-size: 60px;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.05); 
    line-height: 1;
    transition: 0.5s;
    display: block;
}

.spec-box:hover .spec-number {
    color: rgba(212, 175, 55, 1); 
    transform: translateY(-5px);
}

.spec-box h3 {
    font-size: 22px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #ffffff;
    font-weight: 600;
}

.spec-box p {
    color: #999; 
    font-size: 15px;
    line-height: 1.8;
}

/* YAHAN UPDATE KIYA HAI: Golden border hata diya */
.active-spec {
    border: 1px solid #1a1a1a; 
}

.spec-box:hover {
    background: #111111;
    border-color: #D4AF37; /* Sirf hover par golden border aayega */
    transform: translateY(-10px); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* ================= ALL SYSTEM RESPONSIVE ================= */

/* For iPad and Tablets */
@media screen and (max-width: 1024px) {
    .speciality {
        padding: 80px 5%;
    }
    .spec-grid {
        gap: 20px;
    }
}

/* For Mobile Phones */
@media screen and (max-width: 768px) {
    .speciality {
        padding: 60px 20px;
    }
    .sec-title {
        margin-bottom: 50px;
    }
    .sec-title h2 {
        font-size: 2rem;
    }
    .spec-box {
        padding: 40px 20px;
    }
    .spec-grid {
        grid-template-columns: 1fr; /* Mobile par cards poori width lenge */
    }
    .active-spec {
        border: 1px solid #1a1a1a !important; /* Phone par 2nd number normal dikhega */
    }
}


/* ======================Gallary Section============================== */

.gallery {
    padding: 100px 10%;
    background-color: #000000;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Default 3 columns */
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    height: 350px;
    overflow: hidden;
    background: #111;
    border: 1px solid #1a1a1a;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Button Style */
.gallery-controls { margin-top: 30px; }

.btn-gold {
    background: transparent;
    color: #D4AF37;
    border: 2px solid #D4AF37;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-gold:hover {
    background: #D4AF37;
    color: #000;
}

/* RESPONSIVE SETTINGS */
@media screen and (max-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); } /* iPad par 2 columns */
    .gallery-item { height: 300px; }
}

@media screen and (max-width: 768px) {
    .gallery { padding: 60px 20px; }
    .gallery-grid { 
        grid-template-columns: repeat(2, 1fr); /* Phone par 2 columns standard */
        gap: 10px;
    }
    .gallery-item { height: 200px; }
}

@media screen and (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; } /* Small phone par 1 column */
}
/* Updated Popup Modal Styles */
.image-modal {
    display: none; 
    position: fixed;
    /* Isse header ke upar aane ke liye 9999 kiya hai */
    z-index: 9999; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95); /* Thoda aur dark */
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 90%;
    max-height: 80%;
    border: 2px solid #D4AF37;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

.close-btn {
    position: absolute;
    /* Top aur Right ko thoda adjust kiya hai */
    top: 20px;
    right: 30px;
    color: #D4AF37; /* Gold color taaki saaf dikhe */
    font-size: 60px; /* Size thoda bada */
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    z-index: 10000; /* Button image ke bhi upar rahe */
    transition: 0.3s;
}

.close-btn:hover {
    color: #fff;
    transform: scale(1.2);
}

/* Mobile ke liye close button thoda chota */
@media screen and (max-width: 768px) {
    .close-btn {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }
}

/* =======================Contact & Footer=====================*/

/* FOOTER STYLE */
.footer-section {
    background-color: #000000; /* Black */
    color: #ffffff;
    padding: 70px 10% 20px;
    border-top: 2px solid #D4AF37; /* Top Golden Border */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-box h3 {
    color: #D4AF37; /* Golden Heading */
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-box p {
    color: #888; /* Grey Text */
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-box ul {
    list-style: none;
}

.footer-box ul li {
    margin-bottom: 10px;
}

.footer-box ul li a {
    color: #888;
    text-decoration: none;
    transition: 0.3s;
}

.footer-box ul li a:hover {
    color: #D4AF37;
    padding-left: 5px;
}

.social-links a {
    color: #D4AF37;
    margin-right: 15px;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #D4AF37;
    padding: 5px 10px;
    border-radius: 5px;
    transition: 0.3s;
}

.social-links a:hover {
    background: #D4AF37;
    color: black;
}

/* Bottom Copyright */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #222;
}

.footer-bottom p {
    color: #555;
    font-size: 14px;
}

.gold-text {
    color: #D4AF37;
}

/* MOBILE RESPONSIVE */
@media screen and (max-width: 768px) {
    .footer-content {
        text-align: center;
    }
}
