        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --green-deep:   #132E1E;
    --green-mid:    #1E4730;
    --green-light:  #2D6648;
    --amber:        #C8892A;
    --amber-light:  #E8A93A;
    --cream:        #FAF7F0;
    --cream-mid:    #F1EBE0;
    --cream-dark:   #E2D8C8;
    --text-dark:    #1A1A1A;
    --text-mid:     #4A4035;
    --text-muted:   #8A7E70;
    --white:        #FFFFFF;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', 'Helvetica Neue', sans-serif;
  }
:root {
    --brand-green: #2d5a27;      /* Primary Green */
    --brand-yellow: #ffc107;     /* Badge/Action Yellow */
    --brand-text: #1a1a1a;       /* Dark Text */
    --brand-light: #f9f9f9;      /* Background shade */
}
        html, body { max-width: 100%; overflow-x: hidden; }
        body { font-family: 'Outfit', sans-serif; margin: 0; background: #fdfdfb; }

        /* --- 1. TOP HEADER --- */
        .top-header {
            background: var(--forest);
            color: #fff;
            font-size: 13px;
            padding: 10px 0;
            position: relative;
            z-index: 1100;
        }

        /* --- 2. NAVBAR & LOGO --- */
        .navbar-wrapper {
               background: rgba(19, 46, 30, 0.9);
            height: 90px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1050;
        }

        .logo-container {
            position: absolute;
            top: -15px; /* Fixed overlap for stability */
            left: 60px;
            z-index: 1200;
        }
       .logo-container a{color:white;text-decoration:none;font-size:24px;} 
	   .logo-container a span{color:#f3f3f3;padding-left:5px;}
        .logo-container img {height: 80px;top: 20px;position: relative;border-radius: 5px;}

        .nav-main {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            height: 90px;
            margin: 0;
        }

        .nav-item-custom {
            list-style: none;
            padding: 0 15px;
            height: 100%;
            display: flex;
            align-items: center;
        }

        .nav-link-custom {
            text-decoration: none;
            color:#cbcbcb;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 13px;
        }

        /* --- 3. UPDATED MEGA MENU (FULL LIST) --- */
        .has-mega { position: static !important; }

        .mega-menu {
            position: absolute;
            top: 90px;
            left: 0;
            width: 100%;
            background: white;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            border-top: 3px solid var(--gold);
            padding: 40px 0;
            opacity: 0;
            visibility: hidden;
            transition: 0.3s all ease;
            z-index: 1000;
        }

        .nav-item-custom:hover .mega-menu {
            opacity: 1;
            visibility: visible;
        }

        .mega-column h6 {
                color: #24582a;
            font-family: 'Cinzel', serif;
            font-weight: 700;
            font-size: 14px;
            margin-bottom: 12px;
            border-bottom: 1px solid #eee;
            padding-bottom: 5px;
        }

        .mega-links { list-style: none; padding: 0; margin-bottom: 20px; }
        .mega-links a {
            display: block;
            padding: 3px 0;
            color: #000;
            text-decoration: none;
            font-size: 13px;
        }
        .mega-links a:hover { color: var(--gold); padding-left: 5px; transition: 0.2s; }

        /* --- 4. CAROUSEL --- */
        .carousel-item { height:50vh; }
        .carousel-item img { opacity: 0.7; object-fit: cover; height: 100%; width: 100%; }

        .caption-overlay {
            background: rgba(11, 32, 26, 0.85);
            backdrop-filter: blur(10px);
            padding: 50px;
            border-left: 10px solid var(--gold);
            max-width: 650px;
            text-align: left;
        }

        .caption-overlay h2 { font-size: 3.5rem; margin-bottom: 15px; }

        /* --- 5. ABOUT US --- */
        .about-section { padding: 100px 0; background: #fff; }
        .gold-line { width: 60px; height: 3px; background: var(--gold); margin-bottom: 20px; }
		/* --- PRODUCT RANGE SECTION --- */
    .product-range { padding: 100px 0; background: #fdfdfb; }
    .product-card {
        background: #fff;
        border: 1px solid #eee;
        padding: 40px 20px;
        text-align: center;
        transition: all 0.3s ease;
        height: 100%;
        position: relative;
        overflow: hidden;
    }
    .product-card:hover {
        border-color: var(--gold);
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    }
    .product-card i {
        font-size: 3rem;
        color: var(--gold);
        margin-bottom: 20px;
        display: block;
    }
    .product-card h4 {
        font-family: 'Cinzel', serif;
        font-size: 1.2rem;
        color: var(--forest);
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .product-card p {
        font-size: 0.9rem;
        color: #666;
        line-height: 1.6;
    }
    .section-title { margin-bottom: 60px; }
	
	/* --- PARALLAX CORE --- */
    .parallax-window {
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    /* --- ABOUT SECTION WITH PARALLAX --- */
    .about-section { 
        padding: 120px 0; 
	background-image: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9));}
    }

    /* --- PRODUCT RANGE GRID --- */
    .product-range { 
        padding: 100px 0; 
        background: #f4f4f2; 
    }
    
    .product-card {
        background: #fff;
        border: 1px solid #e0e0e0;
        padding: 35px 20px;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        height: 100%;
        border-radius: 4px;
    }

    .product-card:hover {
        transform: translateY(-12px);
        border-color: var(--gold);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .product-card .material-icons-outlined {
        font-size: 3.2rem;
        color: var(--gold);
        margin-bottom: 20px;
    }

    .product-card h4 {
        font-family: 'Cinzel', serif;
        font-size: 1.1rem;
        color: var(--forest);
        margin-bottom: 12px;
        font-weight: 700;
    }

    .product-card p {
        font-size: 0.85rem;
        color: #777;
        margin: 0;
    }

    /* Section Header */
    .section-tag {
        color: var(--gold);
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        display: block;
        margin-bottom: 10px;
    }
	
	/* --- PARALLAX SETTINGS --- */
    .parallax-section {
        position: relative;
        padding: 100px 0;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        /* Using a subtle organic background image */
        background-image: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)), 
                          url('https://images.unsplash.com/photo-1500651230702-0e2d8a49d4ad?q=80&w=1920');
    }

    /* --- ENHANCED PRODUCT CARDS --- */
    .product-grid-item {
        margin-bottom: 30px;
    }

    .enhanced-card {
        background: #ffffff;
        border: 1px solid rgba(212, 175, 55, 0.2);
        padding: 40px 20px;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        height: 100%;
        border-radius: 8px;
        position: relative;
        z-index: 1;
    }

    .enhanced-card::before {
        content: "";
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: linear-gradient(135deg, var(--gold), var(--forest));
        opacity: 0;
        z-index: -1;
        transition: opacity 0.4s ease;
        border-radius: 8px;
    }

    .enhanced-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .enhanced-card:hover h4, 
    .enhanced-card:hover p, 
    .enhanced-card:hover .material-icons-outlined {
        color: #fff !important;
    }

    .enhanced-card:hover::before {
        opacity: 1;
    }

    .enhanced-card .material-icons-outlined {
        font-size: 3.5rem;
        color: var(--gold);
        margin-bottom: 20px;
        transition: color 0.3s ease;
    }

    .enhanced-card h4 {
        font-family: 'Cinzel', serif;
        font-size: 1.1rem;
        color: var(--forest);
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .enhanced-card p {
        font-size: 0.85rem;
        color: #666;
        margin: 0;
    }

    .gold-divider-center {
        width: 80px;
        height: 3px;
        background: var(--gold);
        margin: 20px auto 40px;
    }
/* --- DARK PARALLAX PRODUCT RANGE --- */
    .product-range-dark {
        position: relative;
        padding: 100px 0;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        /* Dark overlay with a high-quality organic background image */
        background-image: linear-gradient(rgba(11, 32, 26, 0.95), rgba(11, 32, 26, 0.15)), 
                          url('https://images.unsplash.com/photo-1543258103-a62bdc069871?q=80&w=1920');
        color: #ffffff;
    }

    .section-header-white h2 {
        font-family: 'Cinzel', serif;
        color: #ffffff;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .gold-line-center {
        width: 70px;
        height: 3px;
        background: var(--gold);
        margin: 20px auto 50px;
    }

    /* --- GLASS CARDS --- */
    .glass-card {
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(212, 175, 55, 0.2);
        padding: 45px 20px;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        height: 100%;
        border-radius: 12px;
    }

    .glass-card:hover {
        background: rgba(212, 175, 55, 0.1);
        border-color: var(--gold);
        transform: translateX(-50px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .glass-card .material-icons-outlined {
        font-size: 3.5rem;
        color: var(--gold);
        margin-bottom: 20px;
        display: block;
    }

    .glass-card h4 {
        font-family: 'Cinzel', serif;
        font-size: 1.1rem;
       color: var(--bs-yellow);
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 15px;
    }

    .glass-card p {
        font-size: 0.85rem;
        color: #fff;
        margin-bottom: 0;
        line-height: 1.6;
    }


.gold-line-center {
    width: 60px;
    height: 3px;
    background: #D4AF37;
    margin: 20px auto 40px;
}

.text-gold {
    color: var(--bs-yellow) !important;
}

/* Base State for Glass Card */
/* Container Setup */
.glass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    overflow: hidden; /* Keeps the "glow" inside the rounded corners */
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
}

/* The Animated Gradient Background (Hidden by default) */
.glass-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center, 
        rgba(212, 175, 55, 0.15) 0%, 
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

/* The Unique "Border Trace" Effect */
.glass-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px; /* Thickness of the border */
    background: linear-gradient(135deg, transparent, var(--bs-yellow), #D4AF37, transparent);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Hover State Trigger */
.glass-card:hover {
    transform: scale(1.05); /* Slight expansion instead of just lifting */
    border-color: transparent; /* Hide the static border */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.glass-card:hover::before {
    opacity: 1;
}

.glass-card:hover::after {
    opacity: 1;
    transform: scale(1); /* The border "grows" into place */
}

/* Icon Animation: "Floating" effect on hover */
.glass-card .material-icons-outlined {
    display: inline-block;
    color: #ffffff;
    font-size: 3rem;
    transition: all 0.4s ease;
}

.glass-card:hover .material-icons-outlined {
   color: var(--bs-yellow);
    transform: translateY(-5px) scale(1.1);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* Text Polish */
.glass-card h4 {
    margin-top: 15px;
    font-weight: 600;
    transition: color 0.4s ease;
}

.glass-card:hover h4 {
    color: var(--bs-yellow);
    letter-spacing: 1px; /* Subtle expansion for elegance */
}







    /* Remove horizontal scroll if any */
    .row { --bs-gutter-x: 1.5rem; }
	
	/* --- CUSTOMER ORDER PROCESS (DARK PARALLAX) --- */
    .order-process-section {
        padding: 100px 0;
        background-attachment: fixed;
        background-position: center;
        background-image: linear-gradient(rgba(11, 32, 26, 0.9), rgba(11, 32, 26, 0.5)), 
                          url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?q=80&w=1920');
        color: #fff;
    }

    .step-card {
        text-align: center;
        padding: 30px;
        position: relative;
    }

    .step-number {
        font-family: 'Cinzel', serif;
        font-size: 4rem;
        color: rgba(212, 175, 55, 0.2);
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        font-weight: 700;
    }

    .step-card i {
        font-size: 3rem;
        color: #ffc107;
        margin-bottom: 20px;
        position: relative;
        z-index: 2;
    }

    .step-card h4 {
        font-family: 'Cinzel', serif;
        font-size: 1.2rem;
           color: var(--bs-yellow);
        margin-bottom: 15px;
        text-transform: uppercase;
    }

    /* --- SATISFIED CUSTOMERS (TESTIMONIALS) --- */
    .testimonials-section {
        padding: 0px 0 50px;
        background: #fff;
    }

    .testimonial-card {
        background: #f9f9f7;
        padding: 40px;
        border-left: 5px solid var(--gold);
        height: 100%;
        transition: 0.3s;
    }

    .testimonial-card:hover {
        box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    }

    .quote-icon {
        font-size: 2rem;
        color: var(--gold);
        opacity: 0.5;
        margin-bottom: 20px;
    }

    .client-info h5 {
        font-family: 'Outfit', sans-serif;
        font-weight: 600;
        margin-bottom: 0;
        color: var(--forest);
    }

    .client-info span {
        font-size: 0.8rem;
        color: var(--gold);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .star-rating {
        color: var(--gold);
        margin-bottom: 15px;
    }
	
	/* --- ENQUIRY & CONTACT SECTION --- */
    .enquiry-section {
        padding: 100px 0;
        background: #ffffff;
    }

    .contact-info-card {
        background: var(--forest);
        color: #fff;
        padding: 60px;
        height: 100%;
        border-radius: 4px;
        position: relative;
        overflow: hidden;
    }

    .contact-method {
        display: flex;
        align-items: flex-start;
        margin-bottom: 30px;
    }

    .contact-method i {
        font-size: 1.5rem;
        color: var(--gold);
        margin-right: 20px;
        margin-top: 5px;
    }

    .contact-method h5 {
        font-family: 'Cinzel', serif;
        font-size: 1rem;
        color: var(--gold);
        margin-bottom: 5px;
        text-transform: uppercase;
    }

    /* --- FORM STYLING --- */
    .enquiry-form .form-control, 
    .enquiry-form .form-select {
        border: none;
        border-bottom: 1px solid #ddd;
        border-radius: 0;
        padding: 12px 5px;
        background: transparent;
        font-size: 0.95rem;
        transition: 0.3s;
        margin-bottom: 5px;
    }

    .enquiry-form .form-control:focus {
        box-shadow: none;
        border-color: var(--gold);
    }

    .enquiry-form label {
        font-weight: 600;
        font-size: 0.7rem;
        text-transform: uppercase;
        color: var(--forest);
        letter-spacing: 1px;
        margin-top: 15px;
    }

    .submit-btn {
        background: var(--forest);
        color: #fff;
        border: none;
        padding: 15px 40px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        transition: 0.3s;
        margin-top: 30px;
        width: 100%;
    }

    .submit-btn:hover {
        background: var(--gold);
        color: var(--forest);
    }
	
	/* --- LIGHT PARALLAX CORE --- */
    .parallax-light {
        position: relative;
        padding: 100px 0;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        /* Using a very light, soft organic texture */
        background-image: linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)), 
                          url('https://images.unsplash.com/photo-1508717272800-9fff97da7e8f?q=80&w=1920');
        border-top: 1px solid #f0f0f0;
        border-bottom: 1px solid #f0f0f0;
    }

    /* --- PRODUCT CARDS (LIGHT THEME) --- */
    .product-card-light {
        background: #ffffff;
        border: 1px solid #e8e8e8;
        padding: 40px 20px;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        height: 100%;
        border-radius: 4px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    }

    .product-card-light:hover {
        transform: translateY(-10px);
        border-color: var(--gold);
        box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
    }

    .product-card-light .material-icons-outlined {
        font-size: 3rem;
        color: var(--gold);
        margin-bottom: 15px;
        display: block;
    }

    .product-card-light h4 {
        font-family: 'Cinzel', serif;
        font-size: 1.1rem;
        color: var(--forest);
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .product-card-light p {
        font-size: 0.85rem;
        color: #777;
        margin: 0;
        line-height: 1.5;
    }

    .section-title-gold {
        color: var(--gold);
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        font-size: 0.9rem;
    }
	
	/* --- GLOSSY ENQUIRY SECTION --- */
    .enquiry-glossy-bg {
        padding: 100px 0;
        position: relative;
        /* Light Parallax Background */
        background-attachment: fixed;
        background-position: center;
        background-image: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), 
                          url('https://images.unsplash.com/photo-1495570689269-d883b1224443?q=80&w=1920');
    }

    .glossy-container {
        background: rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.6);
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
        overflow: hidden;
    }

    .enquiry-sidebar {
        background: linear-gradient(135deg, var(--forest) 0%, #163a30 100%);
        color: #fff;
        padding: 60px 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .enquiry-form-side {
        padding: 60px;
        background: rgba(255, 255, 255, 0.7);
    }

    /* Glossy Input Fields */
    .glossy-input {
        background: rgba(255, 255, 255, 0.5) !important;
        border: 1px solid rgba(212, 175, 55, 0.2) !important;
        border-radius: 8px !important;
        padding: 12px 15px !important;
        font-size: 0.95rem;
        transition: all 0.3s ease;
    }

    .glossy-input:focus {
        background: #fff !important;
        border-color: var(--gold) !important;
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.1) !important;
        transform: translateY(-2px);
    }

    .form-label-custom {
        font-weight: 600;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--forest);
        margin-bottom: 8px;
        display: block;
    }

    /* Glossy Button */
    .btn-glossy {
        background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%);
        color: var(--forest);
        border: none;
        padding: 15px;
        border-radius: 8px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        transition: 0.3s;
        width: 100%;
        margin-top: 20px;
        box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    }

    .btn-glossy:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
        color: #000;
    }

    .contact-item {
        display: flex;
        align-items: center;
        margin-bottom: 25px;
    }

    .contact-item i {
        width: 40px;
        height: 40px;
        background: rgba(212, 175, 55, 0.2);
        color: var(--gold);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
    }
	
	/* --- LUXURY FOOTER STYLING --- */
    footer {
        background: var(--forest);
        color: #ffffff;
        padding: 80px 0 30px;
        font-family: 'Outfit', sans-serif;
    }

    .footer-logo {
        height: 80px;
        background: #fff;
        padding: 10px;
        border-radius: 5px;
        margin-bottom: 25px;
    }

    .footer-heading {
        font-family: 'Cinzel', serif;
        color: var(--gold);
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 25px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .footer-links {
        list-style: none;
        padding: 0;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-size: 0.9rem;
        transition: 0.3s;
        display: flex;
        align-items: center;
    }

    .footer-links a:hover {
        color: var(--gold);
        transform: translateX(5px);
    }

    .footer-links a i {
        font-size: 8px;
        margin-right: 10px;
        color: var(--gold);
    }

    /* Helpdesk Specific */
    .helpdesk-info {
        background: rgba(212, 175, 55, 0.05);
        padding: 20px;
        border-radius: 10px;
        border: 1px solid rgba(212, 175, 55, 0.1);
    }

    .helpdesk-item {
        display: flex;
        margin-bottom: 15px;
    }

    .helpdesk-item i {
        color: var(--gold);
        font-size: 1.2rem;
        margin-right: 15px;
        margin-top: 3px;
    }

    .helpdesk-item p {
        margin: 0;
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.8);
    }

    .footer-bottom {
        margin-top: 60px;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.5);
    }

    .social-circle {
        width: 35px;
        height: 35px;
        background: rgba(255, 255, 255, 0.1);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #fff;
        margin-right: 10px;
        transition: 0.3s;
    }

    .social-circle:hover {
        background: var(--gold);
        color: var(--forest);
    }
    :root {
    --gold-primary: #D4AF37;
    --gold-secondary: #f3cf7a;
    --dark-bg: #0a0a0a;
}

.order-process-section {
    background-color: var(--dark-bg);
    padding: 80px 0;
    color: white;
    overflow: hidden;
}

/* Gold Gradient Line under Header */
.gold-gradient-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    margin: 20px auto;
}

/* The Progress Wrapper Line (Desktop only) */
@media (min-width: 768px) {
    .process-wrapper {
        position: relative;
        background: linear-gradient(90deg, transparent 10%, rgba(212, 175, 55, 0.2) 50%, transparent 90%);
        background-size: 100% 2px;
        background-repeat: no-repeat;
        background-position: center 45px; /* Aligns with the icon center */
    }
}

/* The Step Card */
.step-card {
    padding: 40px 25px;
    text-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
    z-index: 2;
}

.step-header {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Floating Step Number */
.step-number {
    position: absolute;
    top: -20px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    z-index: -1;
    transition: all 0.5s ease;
}

/* Icon Container */
.icon-circle {
    width: 90px;
    height: 90px;
    line-height: 90px;
    background: #1a1a1a;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    font-size: 2rem;
   color: var(--bs-yellow);
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.step-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.step-card p {
    font-size: 0.9rem;
    color: #a0a0a0;
    line-height: 1.6;
    transition: color 0.3s ease;
}

/* UNIQUE HOVER ANIMATION */
.step-card:hover {
    background: rgba(212, 175, 55, 0.35);
    transform: translateY(-15px);
}

.step-card:hover .icon-circle {
    background: #ffc107;
    color: #000;
    transform: rotateY(360deg);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
    border-color: var(--gold-secondary);
}

.step-card:hover .step-number {
    color: rgba(212, 175, 55, 0.1);
    top: -30px;
}

.step-card:hover h4 {
    color: var(--bs-yellow);
}

.step-card:hover p {
    color: #fff;
}

/* Tracking Widest helper */
.tracking-widest {
    letter-spacing: 4px;
}

/* 1. Ensure the icon has a high z-index and clear transition */
.icon-circle i {
    position: relative;
    z-index: 5;
    transition: all 0.4s ease;
}

/* 2. Fix the Hover State */
.step-card:hover .icon-circle {
    background: #7 !important; /* Gold background */
    transform: rotateY(360deg);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
    border-color: #fff;
	background: var(--bs-yellow) !important;
}

/* 3. CRITICAL: Change Icon Color to Dark when background is Gold */
.step-card:hover .icon-circle i {
    color: #000000 !important; /* This makes the icon visible again */
    transform: scale(1.2); /* Slightly grow the icon for effect */
}

/* 4. Ensure FontAwesome is weighted correctly */
.fa-solid, .fas {
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}


.enquiry-glossy-dark {
    background: #050505;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Background Glowing Orbs */
.glow-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(50px);
}
.orb-1 { top: -100px; left: -100px; }
.orb-2 { bottom: -100px; right: -100px; }

/* The Glass Card */
.glass-portal-premium {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    position: relative;
    z-index: 1;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.border-end-glass {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/* Floating Icon Animation */
.floating-icon-wrapper {
    font-size: 5rem;
    animation: float 4s ease-in-out infinite;
}

.gold-glow-icon {
    color: #D4AF37;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Inputs Styling */
.gloss-input-group input, 
.gloss-input-group select, 
.gloss-input-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
    color: white;
    transition: all 0.3s ease;
}

.gloss-input-group input:focus, 
.gloss-input-group textarea:focus {
    background: rgba(212, 175, 55, 0.05);
    border-color: #D4AF37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    outline: none;
}

/* Liquid Gold Button */
.btn-liquid-gold {
    width: 100%;
    background: linear-gradient(135deg, #D4AF37 0%, #f3cf7a 100%);
    color: #000;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-weight: 800;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

.btn-liquid-gold:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
    letter-spacing: 1px;
}

/* Trust Pills */
.trust-pills {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.t-pill {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #D4AF37;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Dropdown Menu Glass Look */
.gloss-input-group select {
    appearance: none; /* Default arrow hatane ke liye */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23D4AF37' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 25px;
    cursor: pointer;
}

/* Jab Dropdown Khulta hai (The Options List) */
.gloss-input-group select option {
    background-color: #1a1a1a; /* Dark background for options */
    color: #fff;
    padding: 15px;
}

/* Hover effect for Select (Bootstrap Fix) */
.form-select:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

/* Glossy Dropdown animation (if using Bootstrap JS) */
.dropdown-menu {
    background: rgba(20, 20, 20, 0.9) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    border-radius: 12px !important;
    padding: 10px !important;
    margin-top: 10px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
}

.dropdown-item {
    color: #fff !important;
    border-radius: 8px;
    padding: 10px 20px !important;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(212, 175, 55, 0.1) !important;
    color: #D4AF37 !important;
    transform: translateX(5px);
}

.footer-awesome {
    background: linear-gradient(to bottom, #0a0a0a, #000);
    padding: 100px 0 40px;
    color: #fff;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-logo {
    max-height: 60px;
    filter: brightness(1.2);
}

.brand-quote {
    color: #a0a0a0;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    border-left: 3px solid #D4AF37;
    padding-left: 20px;
}

/* Social Buttons */
.social-btn {
    display: inline-flex;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    transition: 0.3s;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-btn:hover {
    background: #D4AF37;
    color: #000;
    transform: translateY(-5px);
}

/* Premium Help Cards */
.help-card-premium {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.help-card-premium h6 {
    font-weight: 700;
    margin: 15px 0 5px;
    color: #D4AF37;
}

.help-card-premium p {
    font-size: 0.9rem;
    margin-bottom: 5px;
    word-break: break-word;
}

.help-card-premium small {
    color: #666;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.icon-wrap {
    font-size: 1.8rem;
    color: #fff;
    transition: 0.4s;
}

/* Hover & Active State */
.help-card-premium:hover, .active-card {
    background: rgba(212, 175, 55, 0.05);
    border-color: #D4AF37;
    transform: translateY(-10px);
}

.help-card-premium:hover .icon-wrap {
    color: #D4AF37;
    transform: scale(1.2);
}

/* Bottom Bar */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    margin: 60px 0 30px;
}

.footer-bottom-awesome p {
    font-size: 0.9rem;
    color: #666;
}

.legal-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    margin-left: 20px;
    transition: 0.3s;
}

.legal-links a:hover {
    color: #D4AF37;
}

.tracking-widest {
    letter-spacing: 4px;
}

/* Parallax Section Styling */
.enquiry-glossy-dark {
    position: relative;
    padding: 100px 0;
    /* Dark overlay taaki text aur gold color khul ke dikhe */
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), 
                      url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?q=80&w=1920'); 
    background-attachment: fixed; /* Ye parallax create karta hai */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

/* Glassmorphism Portal */
.glass-portal-premium {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

/* Responsive fix: Mobile pe parallax heavy hota hai toh wahan normal rahega */
@media (max-width: 768px) {
    .enquiry-glossy-dark {
        background-attachment: scroll;
    }
}

/* Premium Dark Footer Theme */
.footer-awesome {
    background-color: #111111 !important; /* Deep Dark Background */
    padding: 80px 0 30px;
    color: #ffffff;
    position: relative;
}

/* Brand Quote Styling */
.brand-quote {
    color: #cccccc;
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Trade Helpdesk Section */
.trade-helpdesk-giant {
    background: rgba(255, 255, 255, 0.03); /* Subtle glass effect */
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2); /* Soft Gold Border */
}

/* Help Cards */
.help-card-premium {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 15px;
    transition: 0.3s;
    border: 1px solid transparent;
}

.help-card-premium:hover, .active-card {
    border-color: #D4AF37;
    transform: translateY(-5px);
}

.icon-wrap i {
    color: #D4AF37;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.help-card-premium h6 {
    color: #D4AF37;
    font-weight: 700;
    margin-bottom: 5px;
}

/* Social Buttons */
.social-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #222;
    color: #D4AF37;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
    text-decoration: none;
}

.social-btn:hover {
    background: #D4AF37;
    color: #000;
}

/* Divider & Bottom */
.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.5), transparent);
    margin: 50px 0 30px;
}

.legal-links a {
    color: #888;
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.legal-links a:hover {
    color: #D4AF37;
}

.text-gold {
    color: #D4AF37 !important;
}

/* Header Fixed Position */
.navbar-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    transition: 0.4s;
    z-index: 1000;
}
.btn-quote{background: #c8892a;
    text-transform: uppercase;
    padding: 2px 10px !important;
    letter-spacing: 1px;
    border-radius: 25px !important;
    font-size: 10px !important;
    position: relative;
    top: 5px;}

/* ─── HERO ───────────────────────────────────────── */
  #hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;top:-100px;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1596040033229-a9821ebd058d?q=90&w=1920');
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    animation: subtle-zoom 14s ease-in-out infinite alternate;
  }

  @keyframes subtle-zoom {
    from { transform: scale(1.04); }
    to   { transform: scale(1.00); }
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      105deg,
      rgba(10,25,16,0.88) 0%,
      rgba(10,25,16,0.65) 55%,
      rgba(10,25,16,0.25) 100%
    );
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 0 5%;
    margin-top: 72px;
  }

  .hero-content .eyebrow {
    color: var(--amber-light);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .hero-content .eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--amber);
  }

  .hero-content h1 {
    color: var(--cream);
    font-weight: 300;
    font-style: italic;
    margin-bottom: 1.2rem;
  }
  .hero-content h1 strong {
    font-weight: 500;
    font-style: normal;
    color: var(--white);
    display: block;
  }

  .hero-sub {
    color: rgba(250,247,240,0.75);
    font-size: 1.05rem;
    font-weight: 300;
    max-width: 520px;
    margin-bottom: 2.5rem;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--amber);
    color: var(--green-deep);
    padding: 0.85rem 2rem;
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--amber);
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }
  .btn-primary:hover { background: var(--amber-light); border-color: var(--amber-light); }

  .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--cream);
    padding: 0.85rem 2rem;
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid rgba(250,247,240,0.45);
    border-radius: 2px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
  }
  .btn-outline:hover { border-color: var(--cream); background: rgba(250,247,240,0.08); }

  .hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(250,247,240,0.5);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
  }
  .hero-scroll-hint::after {
    content: '';
    width: 1px;
    height: 36px;
    background: rgba(200,137,42,0.6);
    display: block;
  }
  @keyframes bounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(6px); }
  }

/* Trust Strip Enhanced Design */
.trust-container {
    background: #111; /* Dark professional base */
    padding: 20px 0;
    position: relative;
    z-index: 10;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.trust-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
    cursor: default;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon-box {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    font-size: 1.2rem;
    transition: 0.3s;
}

.trust-item:hover .trust-icon-box {
    background: #D4AF37;
    color: #fff;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-label {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.trust-sub {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
}

.trust-sep {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.5), transparent);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .trust-sep { display: none; }
    .trust-wrapper { justify-content: center; }
    .trust-item { width: 45%; }
}

/* About Section Base */
.about-section {
    background-color: #ffffff;
    font-family: 'Outfit', sans-serif; /* Matches your existing font */
}

/* Clear Image Styling */
.about-img-container {
    position: relative;
    padding: 40px;
    text-align: center;left: -5%;
}

.floating-img {
    max-height: 500px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1)); /* Adds depth without a box background */
    transition: transform 0.4s ease;
}

.about-img-container:hover .floating-img {
    transform: translateY(-10px);
}

/* Experience Seal */
.experience-seal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #111;
    color: #fff;
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 2px solid #D4AF37;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.experience-seal .year {
    font-size: 1.8rem;
    font-weight: 700;
    color: #D4AF37;
    line-height: 1;
}

.experience-seal .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Typography & Features */
.section-eyebrow {
    letter-spacing: 3px;
    font-size: 0.9rem;
}

.feat-item {
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feat-item i {
    color: #D4AF37;
}

.btn-primary-custom {
    background: #111;
    color: #fff;
    padding: 16px 45px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;float: left;
}

.btn-primary-custom:hover {
    background: #D4AF37;
    color: #111;
}

/* Deep Dark Background for Stats */
.stats-section-dark {
   background: rgba(19, 46, 30);
    padding: 80px 0;
    font-family: 'Outfit', sans-serif; /* Consistent font */
}

.stats-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

/* Glassmorphism Card on Dark Background */
.stat-card-dark {
    background: rgba(255, 255, 255, 0.03);
    padding: 35px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1); /* Subtle Gold Border */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-card-dark:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: #D4AF37;
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.stat-icon-gold {
    font-size: 2.2rem!important;
    color: #D4AF37; /* Gold Icons */
    opacity: 0.9;
}

.stat-num-light {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff; /* White numbers for high contrast */
    line-height: 1;
}

.stat-num-light small {
    font-size: 1.1rem;
    color: #D4AF37;
    margin-left: 4px;
}

.stat-label-gold {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 5px;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .stat-card-dark {
        padding: 20px;
    }
    .stat-num-light {
        font-size: 2rem;
    }
}

/* Product Section Styling */
.products-section {
    background: #ffffff;
    font-family: 'Outfit', sans-serif;
}

.products-static-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Force 4 products in a row */
    gap: 25px;
}

.prod-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.16);
    transition: all 0.3s ease;
    border-radius: 4px;
    overflow: hidden;
}

.prod-card:hover {
    box-shadow: 0 5px 35px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

.prod-img-box {
    height: 220px;
    overflow: hidden;
}

.prod-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.prod-card:hover .prod-img-box img {
    transform: scale(1.05);
}

.prod-card-body {
    padding: 20px;
    text-align: left;max-height: 140px;
    min-height: 140px;position:relative;
}

.prod-cat {
    color: #D4AF37;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
	
}

.prod-card-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.prod-card-body p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Explore More Button */
.btn-more-products {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid #111;
    transition: 0.3s;
}

.btn-more-products:hover {
    background: #D4AF37;
    border-color: #D4AF37;
    color: #111;
}

/* Responsive Fixes */
@media (max-width: 1024px) {
    .products-static-grid { grid-template-columns: repeat(2, 1fr); } /* Tablets: 2 columns */
}

@media (max-width: 576px) {
    .products-static-grid { grid-template-columns: 1fr; } /* Mobile: 1 column */
}
.mt50{margin:100px 0px;}

/*******process*******/
 /* ─── PROCESS ────────────────────────────────────── */
  #process {
    background: var(--green-deep);
    padding: 7rem 5%;
  }

  .process-header {
    text-align: center;
    margin-bottom: 5rem;
  }
  .process-header .eyebrow { margin-bottom: 0.8rem; }
  .process-header h2 { color: var(--cream); }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
  }

  .process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: rgba(200,137,42,0.3);
    z-index: 0;
  }

  .process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
  }

  .step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid var(--amber);
    background: var(--green-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--amber);
    margin-bottom: 1.5rem;
    flex-shrink: 0;
    transition: background 0.2s;
  }
  .process-step:hover .step-num {
    background: var(--amber);
    color: var(--green-deep);
  }

  .process-step h4 {
    font-family: var(--serif);
    font-size: 1.15rem;
    color: var(--cream);
    margin-bottom: 0.6rem;
  }

  .process-step p {
    font-size: 0.83rem;
    color: rgba(250,247,240,0.55);
    font-weight: 300;
    line-height: 1.6;
  }
  
  
  .process-section-dark {
    background-color: #0d1e16;
    padding: 100px 0;
    font-family: 'Outfit', sans-serif;
}

.process-wrapper-main {
    position: relative;
    padding-top: 20px;
}

/* --- The Connecting Line --- */
.global-connector-line {
    position: absolute;
    top: 62px; /* Center of the circle */
    left: 12%;
    right: 12%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
    overflow: hidden;
}

.global-connector-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: #D4AF37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.7);
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Line fills when hovering anywhere in the section */
.process-wrapper-main:hover .global-connector-line::after {
    width: 100%;
}

/* --- The Step Circle --- */
.process-node {
    text-align: center;
    position: relative;
    z-index: 2;
}

.icon-circle {
    width: 85px;
    height: 85px;
    background: #0d1e16; /* Hide line behind circle */
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    font-size: 1.8rem;
    margin: 0 auto 25px;
    position: relative; /* Necessary for absolute number */
    transition: all 0.4s ease;
}

/* --- THE FIXED NUMBER (Stay on top of circle) --- */
.step-num {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #D4AF37;
    color: #0d1e16;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0d1e16;
    z-index: 5;
    transition: 0.3s;
}

/* Hover Effects */
.process-node:hover .icon-circle {
    background: #D4AF37;
    color: #0d1e16;
    transform: scale(1.1);
    border-color: #fff;
}

.process-node:hover .step-num {
    background: #fff;
    transform: scale(1.1);
}

.node-text h4 { color: #fff; font-weight: 600; transition: 0.3s; }
.process-node:hover h4 { color: #D4AF37; }
.node-text p { color: rgba(255,255,255,0.5); font-size: 0.85rem; max-width: 200px; margin: 0 auto; }

/* Mobile Fix */
@media (max-width: 991px) {
    .global-connector-line { display: none; }
}

/* --- TESTIMONIALS & CERTIFICATIONS SECTION --- */
#testimonials {
    background-color: #faf7f0 !important; /* Cream Background from image_1.png */
    font-family: 'Outfit', sans-serif;
    color: #1a1a1a;
}

#testimonials h2.serif {
    color: #0d1e16; /* Dark Green from image */
    font-weight: 500;
}

.text-gold { color: #d4af37 !important; }
.bg-dark-green { background-color: #0d1e16 !important; }

/* Testimonial Card Styling */
.testimonial-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 4px;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.15); /* Tan/Gold Accent */
    transition: all 0.3s ease;
    height: 100%;
    margin: 10px; /* Space for carousel items */
}

.testimonial-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transform: translateY(-5px);
}

.quote-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.quote-text::before {
    content: '“'; /* Quote from image */
    position: absolute;
    top: -20px;
    left: -15px;
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.2);
    font-family: serif;
}

.quote-accent-end {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.15);
    font-family: serif;
    font-weight: 700;
}

.client-meta-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.client-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.client-info h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-top: -3px;
}

/* Owl Carousel Customization */
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #d4af37; /* Gold dots */
}

/* Certifications Styling */
.certifications-row {
    border-top: 1px solid rgba(0,0,0,0.04);
}

.cert-item {
    padding: 0 10px;
}

.cert-icon {
    font-size: 1.8rem;
    color: rgba(0,0,0,0.4); /* Subtle grey icons */
    margin-bottom: 20px;
}

.cert-item h5 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0d1e16;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.cert-item p {
    font-size: 0.75rem;
    color: rgba(0,0,0,0.5);
    line-height: 1.5;
    margin: 0;
}

.bg-cream { background-color: #fdfaf3; }

.test-card {
    background: #fff;
    padding: 40px;
    margin: 15px 5px;
    border-radius: 2px;
    border-left: 4px solid #d4af37; /* As per Capture2222.JPG */
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    position: relative;
    transition: 0.3s;
}

.test-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.08); }

.test-quote-mark {
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.15);
    position: absolute;
    top: 10px;
    right: 30px;
}

.test-card blockquote {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 25px;
}

.test-author { display: flex; align-items: center; gap: 15px; }

.test-avatar {
    width: 45px; height: 45px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 0.8rem;
}

.author-info .test-name { display: block; font-weight: 700; color: #111; }
.author-info .test-location { font-size: 0.75rem; color: #888; }

/* --- Custom Arrows Styling --- */
.custom-nav-box { display: flex; gap: 10px; justify-content: flex-end; }
.btn-nav {
    width: 45px; height: 45px;
    border: 1px solid #d4af37;
    background: transparent;
    color: #d4af37;
    border-radius: 50%;
    transition: 0.3s;
}
.btn-nav:hover { background: #d4af37; color: #fff; }

/* Hide default Owl Nav if any */
.owl-nav { display: none; }
.mt50a{padding:50px 0px 0px 0px;}

/* --- Certifications Enhancement --- */
.certifications-row {
   
    padding-bottom: 50px;
}

.cert-card {
    padding: 30px 15px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Icon Styling */
.cert-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.08); /* Light Gold Tint */
    color: #d4af37; /* Gold Color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: 0.3s ease;
}

/* Typography */
.cert-content h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0d1e16; /* Your Dark Green theme */
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cert-content p {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

/* Hover Effects */
.cert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.cert-card:hover .cert-icon-wrap {
    background: #d4af37;
    color: #fff;
    transform: rotateY(360deg); /* Subtle spin */
}

/* Responsive Fix for Mobile (2 cards per row) */
@media (max-width: 767px) {
    .cert-card {
        padding: 20px 10px;
    }
    .cert-icon-wrap {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

.enquiry-dark {
    background-color: #0d1e16; /* Dark Green */
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.left-panel-inner {
    background: rgba(255, 255, 255, 0.03);
}

.bg-form-dark {
    background-color: #08120e; /* Solid Darker Black/Green */
}

.dark-label {
    color: rgba(255, 255, 255, 0.4);
    
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}

.dark-input {
    width: 100%;
    padding: 12px 15px;
    background-color: #111c17 !important; /* Input background */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #fff !important;
    font-size: 0.9rem;
}

.dark-input:focus {
    border-color: #d4af37;
    outline: none;
}

.btn-gold {
    background-color: #d4af37;
    color: #0d1e16;
    border: none;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-gold:hover {
    background-color: #f7e1ac;
    transform: translateY(-2px);
}

.text-gold { color: #d4af37; }

/* Desktop Max Width to keep it centered and professional */
@media (min-width: 1200px) {
    .enquiry-dark .container {
        max-width: 1100px;
    }
}

/* --- JET BLACK FOOTER (ZERO SPACE) --- */
footer.footer-section {
    background-color: #08120e; /* Exact Jet Black/Green Shade */
    color: #ffffff;
    margin-top: 0 !important;   /* No space at top */
    margin-bottom: 0 !important; /* No space at bottom */
    border-top: 1px solid rgba(212, 175, 55, 0.15); /* Thin gold line to separate from content */
}

/* Typography & Colors */
.footer-logo-text { font-size: 1.6rem; font-weight: 700; }
.footer-logo-text span { color: #d4af37; }
.footer-desc { color: #888; font-size:0.75rem;text-align: left; }
.text-gold { color: #d4af37; }

.footer-heading {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Links */
.footer-links li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: #d4af37;
}

/* Social Icons (Gray to Gold) */
.social-link {
    display: inline-flex;
    width: 35px; height: 35px;
    background: #1a1a1a;
    color: #888;
    border-radius: 4px;
    margin-right: 8px;
    align-items: center; justify-content: center;
    transition: 0.3s;
}

.social-link:hover {
    background: #d4af37;
    color: #08120e;
}

/* Bottom Bar */
.footer-bottom {
   
}

.copyright, .footer-legal a {
    font-size: 0.75rem;
    color: #555;
}

.footer-legal a:hover { color: #fff; }
#flonnect-my-app{display:none;}


.custom-testimonial-card {
    border-left: 5px solid #b5a46d !important; /* Woh yellow/gold border */
    background-color: #ffffff;
    transition: transform 0.3s ease;
}

.custom-testimonial-card:hover {
    transform: translateY(-5px);
}

.bg-gold {
    background-color: #b5a46d !important;
}

.border-gold {
    border-color: #b5a46d !important;
}

.carousel-indicators [data-bs-target] {
    opacity: 0.5;
}

.carousel-indicators .active {
    opacity: 1;
}
.certifications-row{background-color: #faf7f0 !important;
    font-family: 'Outfit', sans-serif;
    color: #1a1a1a;}
h1.responsive-headline{font-size: 2.5rem !important;font-weight: 300;
    font-style: italic;
    margin-bottom: 1.2rem;}
	
 /* Product Page specific adjustments */
    .product-main-content {
        padding-top: 150px; /* Space for fixed nav */
        padding-bottom: 80px;
    }
    .product-img-container {
        border: 1px solid #ddd;
        padding: 15px;
        border-radius: 12px;
        background: #fff;
        transition: transform 0.3s ease;
    }
    .product-img-container:hover {
        transform: translateY(-5px);
    }
    .description-box {
        font-size: 1.1rem;
        color: #444;
        margin-bottom: 30px;
        line-height: 1.8;
    }
    .breadcrumb-item a {
        color: #c9933f;
        text-decoration: none;
    }
    .btn-gold-action {
        background: #c9933f;
        color: #000;
        font-weight: 700;
        border: none;
    }
    .btn-gold-action:hover {
        background: #b07d30;
        color: #fff;
    }
    .inside-page header#home {
        min-height: auto !important;
        height: auto !important;
        background: #0c231e !important; /* Dark theme for subpages */
        padding-bottom: 20px;
    }
.form-panel-inner p{font-size:15px;}
a.btn-quote{font-size:10px;}
.col-lg-12{padding:0px !important;}
.prod-card-body h3 a{text-decoration:none; color:#000;}
.custom-testimonial-card .card-text{height:200px;overflow:hidden;}
/* Accessibility aur Visibility ke liye CSS */
    .custom-carousel-btn {
        border: 2px solid #b5a46d !important; /* Border thoda thick kiya */
        color: #b5a46d;
        width: 45px;  /* Fixed width */
        height: 45px; /* Fixed height */
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        background: transparent;
        font-size: 1.2rem; /* Icon size bada kiya */
    }

    .custom-carousel-btn:hover {
        background-color: #b5a46d; /* Hover par fill hoga */
        color: #ffffff !important;   /* Icon white ho jayega */
        transform: scale(1.1);      /* Thoda sa bada hoga */
    }

    /* Screen reader fix aur focus outline */
    .custom-carousel-btn:focus {
        box-shadow: 0 0 0 3px rgba(181, 164, 109, 0.5);
    }
	
	
	
	/***Responsive**********/
	/* --- Desktop Styles (Default) --- */
.logo-container {
    display: inline-block;
    vertical-align: middle;
    
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-img {
    height: 55px; /* Desktop pe bada logo */
    width: auto;
    margin-right: 12px;
}

.logo-text {
    color: #fff;
    font-weight: 700;
    font-size: 26px; /* Desktop text size */
    text-transform: capitalize;
    letter-spacing: 1px;
}

.logo-text .highlight {
    color: #d4af37; /* Gold color */
}

/* --- Mobile Styles (Responsive) --- */
@media only screen and (max-width: 767px) {
    .logo-container {
        padding: 10px 0;left:0px;
        max-width: 70%; /* Toggle ke liye jagah chhadi */
    }
.logo-container img {
    height: 80px;
}
    .logo-link {
        background: rgba(0, 0, 0, 0.5); /* Capsule effect */
        padding: 5px 12px;
        border-radius: 30px;
        border: 1px solid rgba(212, 175, 55, 0.2);
    }

    .logo-img {
        height: 30px; /* Mobile pe chota logo */
        margin-right: -25px;
    }

    .logo-text {
        font-size: 16px; /* Mobile text size */
    }

    /* Toggle button ko logo ke barabar alignment */
    .mobile-btn {
        top: 15px !important;
    }
}



/* Footer aur Name ko ek line mein align karne ke liye */
.custom-testimonial-card .card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.custom-testimonial-card .card-text {
    flex-grow: 1; /* Ye message box ko stretch karega taaki footer niche align ho jaye */
}

.custom-testimonial-card .mt-auto {
    border-top: 1px solid #eee; /* Light line taaki alignment saaf dikhe */
    padding-top: 15px;
}

/* Mobile specific navigation styling */
@media (max-width: 767px) {
    #testimonialCarousel .carousel-item {
        padding: 0 10px; /* Side spacing fix */
    }
    
    .custom-carousel-btn {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
}


/* Buttons Styling */
.custom-carousel-btn {
    background: #fff !important;
    border: 1px solid #ddd !important;
    width: 45px; height: 45px;
    color: #0c231e;
    transition: 0.3s;
}
.custom-carousel-btn:hover { background: #0c231e !important; color: #fff !important; }

/* Desktop per 3 Cards ki height ek jaisi dikhe */
@media (min-width: 768px) {
    .custom-testimonial-card { min-height: 300px; }
}

.prod-meta {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cat-name {
    font-size: 11px;
    font-weight: 700;
    color: var(--bs-yellow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: solid 1px var(--bs-yellow);
    padding: 5px 10px;
    border-radius: 15px;
    position: absolute;
    top: -129%;
    background: #883e00;
}

.separator {
    color: #ddd;
    font-size: 12px;
}

.sub-cat-name {
    font-size: 11px;
    font-weight: 500;
    color: #666;
    text-transform: capitalize;
}

.prod-card-body h3 {
    margin-top: 0;
    font-size: 18px;
    font-weight: 600;
}

.prod-card-body p {
    color: #777;
    font-size: 13px;
    line-height: 1.5;
}


/* Card Wrapper Alignment */
.prod-card {
    text-align: left !important;
    display: flex;
    flex-direction: column;
    height: 100%;border-radius:5%;
}

.prod-card-body {
    padding: 15px;
    text-align: left !important; /* Force left align */
}

/* Meta Info (Category & Sub-cat) */
.prod-meta-info {
    display: flex;
    justify-content: flex-start; /* Items ko left se shuru karega */
    align-items: center;
    margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
}

.meta-cat {
    color: #c9933f;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.meta-sep {
    color: #ddd;
    margin: 0 8px;
}

.meta-sub {
    color: #888;
    font-size: 10px;
    font-weight: 500;
}

/* Heading & Paragraph */
.prod-card-body h3 {
    text-align: left !important;
    font-size: 17px;
    margin: 8px 0;
    color: #222;
    font-weight: 600;
}

.prod-card-body p {
    text-align: left !important;
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Button Alignment */
.view-btn-gold {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Button text left align */
    color: #c9933f;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.view-btn-gold i {
    margin-left: 8px;
}
.products-main-wrapper .prod-card {
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    overflow: hidden;
}

/* 2. Body section jo button ko niche dhakele-ga */
.products-main-wrapper .prod-card-body {
    padding: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    text-align: left !important;
}

/* 3. Category aur Sub-cat meta info */
.products-main-wrapper .prod-meta-info {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center;
    margin-bottom: 10px;
}

.products-main-wrapper .meta-cat {
    color: #c9933f;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.products-main-wrapper .meta-sep { 
    margin: 0 8px; 
    color: #ddd; 
}

.products-main-wrapper .meta-sub { 
    color: #888; 
    font-size: 11px; 
}

/* 4. Title & Description fix */
.products-main-wrapper .prod-card-body h3 {
    font-size: 19px !important;
    font-weight: 600 !important;
    margin-bottom: 10px !important;
    color: #222 !important;
    text-align: left !important;
}

.products-main-wrapper .prod-card-body p {
    font-size: 13px !important;
    color: #666 !important;
    line-height: 1.6 !important;
    text-align: left !important;
    margin-bottom: 20px !important;
    /* Description ki height limit taaki button ek line mein rahein */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 5. View Details Button Fix - MAGIC margin-top: auto */
.products-main-wrapper .view-btn-gold {
    margin-top: auto !important; 
    color: #c9933f !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding-top: 0px;
    border-top: 1px solid #f5f5f5;
}

.products-main-wrapper .view-btn-gold i { 
    margin-left: 8px; 
}

/* Hover Effect */
.products-main-wrapper .prod-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
    
}

/* ==========================================================================
   DIRECT OVERRIDE: NO HTML CHANGE ONLY BUTTONS & SEARCH BAR EFFECT
   ========================================================================== */

/* 1. सर्च बार का नया लुक और फोकस इफेक्ट */
.products-section .input-group {
    border-radius: 50px !important; /* चौकोर से राउंड कैप्सूल शेप */
    overflow: hidden;
    background: #ffffff;
    transition: all 0.3s ease-in-out;
    border: 1px solid #ced4da !important;
}

/* जब सर्च बार पर क्लिक (Focus) होगा */
.products-section .input-group:focus-within {
    border-color: #1a1a1a !important; /* फोकस होने पर डार्क बॉर्डर */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08) !important; /* हल्का सा शैडो */
}

/* सर्च इनपुट फील्ड */
.products-section #product-search {
    font-size: 0.95rem;
    color: #333;
}


/* 2. मुख्य कैटेगरी बटन्स (.filter-btn) का होवर और एक्टिव लुक */
.products-section .filter-btn {
    border-radius: 30px !important; /* बटन्स को राउंड शेप देने के लिए */
    padding: 7px 18px !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    transition: all 0.2s ease-in-out !important;
}

/* बटन पर माउस ले जाने (Hover) और Active होने पर */
.products-section .filter-btn:hover,
.products-section .filter-btn.active {
    background-color: #1a1a1a !important; /* सॉलिड ब्लैक बैकग्राउंड */
    border-color: #1a1a1a !important;
    color: #ffffff !important; /* वाइट टेक्स्ट */
}


/* 3. सब-कैटेगरी छोटे बटन्स (.sub-filter-btn) */
.products-section .sub-filter-btn {
    border-radius: 20px !important;
    font-size: 0.85rem !important;
    padding: 4px 12px !important;
    transition: all 0.2s ease !important;
}

/* सब-बटन का होवर और एक्टिव इफेक्ट */
.products-section .sub-filter-btn:hover,
.products-section .sub-filter-btn.active {
    background-color: #6c757d !important; /* स्मूथ ग्रे बैकग्राउंड */
    border-color: #6c757d !important;
    color: #ffffff !important;
}

/****new css 26/06/26 ****/
/* --- SECTION WRAPPER FIX --- */
.vbrand-sp-section {
    background: #fff;
    padding: 100px 0;
    font-family: 'Inter', sans-serif;
    position: relative;
    display: block;
    width: 100%;
    height: auto !important; 
    clear: both;
}

/* Gallery Metadata text styling */
.gallery-head {
    margin-bottom: 40px;
    font-size: 16px;
    color: #666;
    text-align: left;
    width: 100%;
}
.gh-count {
    font-weight: 600;
    background: #f5f5f0;
    padding: 4px 10px;
    border-radius: 4px;
    color: #111;
    margin-right: 8px;
}

/* --- BOOTSTRAP GRID RESET --- */
#products-portfolio .row {
    display: flex;
    flex-wrap: wrap;
    height: auto;
    --bs-gutter-x: 30px; 
    row-gap: 50px; /* Yeh rows ke beech 50px ka gap fix karega */
}

/* --- NEW CORE CARD LAYOUT --- */
.prod-card {
    display: flex;
    flex-direction: column;
    height: 100%; 
    margin-bottom: 0 !important; /* Row-gap use kar rahe hain isliye margin 0 kiya */
}

.vbrand-sp-grid-wrapper {
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    height: 100%;
    width: 100%;
}

.vbrand-sp-premium-card {
    background: transparent;
    box-shadow: none;
    padding: 0;
    border: none;
    border-radius: 0 !important;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* --- IMAGE FRAME --- */
.vbrand-sp-img-frame.prod-photo {
    width: 100%;
    aspect-ratio: 4 / 4;
    background: transparent; 
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 16px !important;
}

.vbrand-sp-img-frame img.pp-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 30px !important;
    display: block;
    transition: transform .8s cubic-bezier(.16,1,.3,1);
}

.vbrand-sp-grid-wrapper:hover .vbrand-sp-img-frame img.pp-img {
    transform: scale(1.04);
}

.pp-cat {
    display: none;
}

/* --- TYPOGRAPHY & BADGES --- */
.prod-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 15px;
}

.vbrand-sp-item-title {
    font-size: 20px;
    font-weight: 500;
    color: #111;
    margin: 10px 0 4px 0;
    line-height: 1.3;
    letter-spacing: -.3px;
    text-align: left;
}

.latin {
    font-size: 14px;
    font-style: italic;
    color: #888;
    margin-bottom: 12px;
    text-align: left;
}

.prod-body p {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    margin: 0 0 16px 0;
    text-align: left;
}

.prod-certs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto; 
    padding-bottom: 5px;
}

.prod-cert {
    font-size: 11px;
    font-weight: 500;
    color: #444;
    background: #f1f0ea;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
}

/* --- RESPONSIVE CONTROLS --- */
@media(max-width:991px){
    .vbrand-sp-section { padding: 80px 0; }
    #products-portfolio .row { --bs-gutter-x: 20px; }
}

@media(max-width:767px){
    .vbrand-sp-section { padding: 60px 0; }
    .gallery-head { margin-bottom: 25px; }
    #products-portfolio .row { 
        --bs-gutter-x: 15px; 
        row-gap: 30px; /* Mobile par gap adjust kiya */
    }
    .prod-card { margin-bottom: 0 !important; }
    .vbrand-sp-item-title { font-size: 16px; }
    .latin { font-size: 12px; }
    .prod-body p { font-size: 13px; }
}

/* Update: Badge Design in Yellow */
.cat-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #70aa43;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    padding: 6px 14px;
    border-radius: 6px;
    z-index: 2;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Update: Certificates in subtle Green tone */
.prod-cert {
    font-size: 11px;
    font-weight: 600;
    color: var(--brand-green);
    background: #e8f5e9; /* Light green tint */
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(45, 90, 39, 0.2);
}
/* Card hover border and shadow */
.vbrand-sp-grid-wrapper:hover .vbrand-sp-premium-card {
    
}

/* Title hover color */
.vbrand-sp-grid-wrapper:hover .vbrand-sp-item-title {
    color: var(--brand-green);
    transition: 0.3s;
}
.f-contact-item.d-flex span{text-align:left;}

/***** New Css for product page**********/
 .prd-page .products-main-wrapper { padding-top: 130px; padding-bottom: 80px; background: #f9f9f9; }
 .prd-page .page-title-section { margin-bottom: 50px; }
 .prd-page .gold-divider { width: 60px; height: 3px; background: #c9933f; margin: 15px auto; }
 .prd-page .prod-card { background:transparent; border: 1px solid #eee; border-radius: 25px; transition: all 0.3s ease; height: 100%; overflow: hidden; }
    .prd-page .prod-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
    .prd-page .prod-img-box { height: 220px; overflow: hidden; }
    .prd-page .prod-img-box img { width: 100%; height: 100%; object-fit: cover; }
    .prd-page .prod-card-body { padding: 20px; text-align: center; }
    .prd-page .view-btn-gold { display: inline-block; margin-top: 15px; color: #c9933f; font-weight: 700; text-transform: uppercase; font-size: 0.8rem; text-decoration: none; }
    .prd-page .prod-item-filter { transition: 0.3s; }
   .prd-page .sub-filter-btn.active { background-color: #c9933f !important; color: #fff !important; }
     .prd-page .vbrand-sp-item-title {
    font-size: 20px;
    font-weight: 500;
    margin: -75px 0 4px -2px;
    line-height: 1.3;
    letter-spacing: -.3px;
    text-align: left;
    color: #fff !important;
    z-index: 99;
  /* background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));*/
    padding-left: 8px;height:75px;border-radius:25px;    font-weight: 900;
}
.prd-page .products-main-wrapper .prod-card {background:transparent !important;}
.prd-page .prod-body {padding:0px;}
.prd-page .products-main-wrapper .prod-card:hover {box-shadow: unset !important;}
.prd-page .vbrand-sp-img-frame{border-radius:10px;}
.catalog-btn{border: solid 1px #fff;
    color: #fff;
    text-decoration: none;
    padding: 15px;}