



/* GLOBAL SPACING */
.section-padding { padding: 90px 0 !important; }

/* TITLES */
.section-title { font-weight: 800; text-transform: uppercase; letter-spacing: 2px; }
.title-line { width: 60px; height: 3px; background: #198754; margin: 15px auto 50px; }

/* NAVBAR & LOGO */
.nav-logo { height: 75px !important; transition: transform 0.3s ease; }
.nav-logo:hover { transform: scale(1.05); }

/* HOVER UNDERLINE ANIMATION */
.hvr-underline { position: relative; color: #333 !important; }
.hvr-underline::after {
    content: ''; position: absolute; width: 0; height: 2px;
    bottom: 5px; left: 15px; background: #198754; transition: width 0.3s ease;
}
.hvr-underline:hover::after { width: calc(100% - 30px); }

/* MULTI-LEVEL DROPDOWN */
@media (min-width: 992px) {
    .custom-dropdown:hover > .dropdown-menu { display: block; animation: slideIn 0.3s ease; }
    .dropend:hover > .dropdown-menu { display: block; top: 0; left: 100%; margin-top: -5px; }
}

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

/* BRAND GRID (Reference Style) */
.brand-container {
    height: 120px; display: flex; align-items: center; justify-content: center;
    background: #fff; transition: 0.3s;
}
.brand-img { max-height: 60px; filter: grayscale(100%); opacity: 0.6; transition: 0.4s ease; }
.brand-container:hover .brand-img { filter: grayscale(0%); opacity: 1; transform: scale(1.1); }
.brand-container:hover { background: #f8f9fa; z-index: 2; box-shadow: 0 0 15px rgba(0,0,0,0.1); }

/* BUTTONS & CARDS */
.pulse-button { animation: pulse 2s infinite; }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(25, 135, 84, 0); }
    100% { box-shadow: 0 0 0 0 rgba(25, 135, 84, 0); }
}

.product-card .card { transition: 0.4s; border-radius: 0; }
.product-card:hover .card { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important; }

.hover-green:hover { color: #198754 !important; transition: 0.3s; }
.btn-xs { font-size: 11px; padding: 4px 12px; }






/* Search Bar Styling */
.search-bar {
    position: relative;
    display: flex;
    align-items: center;
    background: #f4f4f4;
    padding: 2px;
    border-radius: 50px;
    transition: all 0.4s ease;
    width: 40px; /* शुरुआत में सिर्फ आइकॉन दिखेगा */
    overflow: hidden;
    border: 1px solid transparent;
}

/* होवर करने पर या अंदर क्लिक होने पर सर्च बार खुलेगा */
.search-bar:hover, 
.search-bar:focus-within {
    width: 220px; /* यहाँ से आप चौड़ाई कंट्रोल कर सकते हैं */
    background: #fff;
    border-color: #198754; /* Green border on focus */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.search-bar input {
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    padding: 5px 10px 5px 40px;
    font-size: 14px;
    color: #333;
}

.search-bar button {
    position: absolute;
    left: 8px;
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.search-bar button i {
    font-size: 16px;
}

.search-bar:hover button i {
    color: #198754 !important; /* होवर पर आइकॉन हरा हो जाएगा */
}

/* मोबाइल के लिए एडजस्टमेंट */
@media (max-width: 991px) {
    .search-bar {
        width: 100%;
        margin-top: 15px;
        background: #f8f9fa;
        border: 1px solid #ddd;
    }
    .search-bar input {
        padding-left: 45px;
    }
}

/* डेस्कटॉप पर माउस ले जाते ही ड्रॉपडाउन खुलेगा */
@media (min-width: 992px) {
    .custom-dropdown:hover > .dropdown-menu {
        display: block !important;
        margin-top: 0; /* गैप खत्म करने के लिए ताकि माउस हटे नहीं */
    }
}

/* ड्रॉपडाउन एरो (तीर) को हमेशा दिखाने के लिए */
.dropdown-toggle::after {
    transition: transform 0.3s;
}

.custom-dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg); /* होवर पर तीर उल्टा होगा (Premium Look) */
}



/* About Section Icons */
.icon-box-sm {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.bg-light-success {
    background-color: #e8f5e9;
}

/* Image Wrapper with Badge */
.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    border-radius: 10px;
    text-align: center;
    min-width: 140px;
    animation: float 3s ease-in-out infinite;
}

/* Floating Animation for Badge */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Text Highlights */
.ls-2 { letter-spacing: 2px; }

/* Responsive adjustments */
@media (max-width: 991px) {
    .experience-badge {
        display: none !important;
    }
    .about-image-wrapper {
        padding: 0;
    }
}

/* Testimonial Specific Styling */
.testi-card {
    background: transparent;
    transition: 0.3s;
}

.quote-icon-box {
    position: absolute;
    bottom: 5px;
    right: -10px;
    background: #198754;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    border: 3px solid white;
}

#testiSlider p.h5 {
    line-height: 1.8;
    color: #666 !important;
}

/* Indicators Styling */
#testiSlider .carousel-indicators [data-bs-target] {
    opacity: 0.3;
}
#testiSlider .carousel-indicators .active {
    opacity: 1;
}

/* Section Background Alternation */
.bg-light {
    background-color: #fcfcfc !important; /* हल्का सा Off-white जो प्रीमियम लगे */
}





















/* --- Professional Category Card Effects --- */

/* कार्ड का मुख्य कंटेनर */
.product-card .card {
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 12px; /* थोड़े राउंड किनारे प्रीमियम लगते हैं */
    position: relative;
    border: 1px solid #f1f1f1 !important;
}

/* इमेज ज़ूम इफ़ेक्ट */
.product-card .card .img-wrapper {
    overflow: hidden; /* ज़ूम को बाहर जाने से रोकने के लिए */
}

.product-card .card img {
    transition: transform 0.8s ease;
}

/* होवर करने पर क्या होगा? */
.product-card:hover .card {
    transform: translateY(-10px); /* कार्ड ऊपर उठेगा */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important; /* गहरी शैडो */
    border-color: #198754 !important; /* हरा बॉर्डर (ब्रांड कलर) */
}

.product-card:hover img {
    transform: scale(1.1); /* इमेज हल्की सी ज़ूम होगी */
}

/* After Effect: कार्ड के नीचे एक पतली हरी लाइन जो होवर पर फैलेगी */
.product-card .card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: #198754;
    transition: all 0.4s ease;
    border-radius: 0 0 12px 12px;
}

.product-card:hover .card::after {
    width: 100%;
    left: 0;
}

/* टेक्स्ट एनीमेशन */
.product-card .card-body h6 {
    transition: color 0.3s ease;
}

.product-card:hover .card-body h6 {
    color: #198754 !important; /* होवर पर टाइटल हरा हो जाएगा */
}

.product-card .card-body p {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* टेक्स्ट को 3 लाइन तक सीमित रखेगा ताकि सब बराबर दिखें */
    -webkit-box-orient: vertical;
    overflow: hidden;
}
































/* --- Premium Service Hero --- */
.service-hero-premium {
    height: 400px;
    background: linear-gradient(rgba(25, 135, 84, 0.8), rgba(10, 50, 30, 0.9)), 
                url('/assets/images/products/new-arrivals.jpg') center/cover fixed;
    position: relative;
}

.hero-divider {
    width: 100px;
    height: 4px;
    background: #ffc107; /* Gold Line */
    margin-top: 20px;
}

/* --- Info Pills --- */
.info-pill {
    background: #f0fdf4;
    color: #198754;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid #dcfce7;
}

/* --- Manager Glassmorphism --- */
.manager-section {
    background: url('assets/images/about/about-bg.jpg') center/cover fixed;
    padding: 100px 0;
}

.glass-card {
    background: rgba(25, 135, 84, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

/* --- Interactive Cards --- */
.nav-interactive-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s ease;
}

.card-img-box {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.overlay-green {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(25, 135, 84, 0.4);
    opacity: 0;
    transition: 0.4s;
}

.nav-interactive-card:hover .overlay-green { opacity: 1; }
.nav-interactive-card:hover .card-img-box img { transform: scale(1.1); }

.card-content {
    transition: 0.4s;
    border-bottom: 4px solid #f1f1f1;
}

.nav-interactive-card:hover .card-content {
    border-bottom-color: #198754;
    transform: translateY(-5px);
}

/* --- Utility --- */
.hover-scale:hover {
    transform: scale(1.05);
    transition: 0.3s;
}
.fw-black { font-weight: 900; }
.ls-5 { letter-spacing: 5px; }














/* Athlete Profile Blobs    and pro shooters and productus delais */   
.blob-container { position: relative; width: 220px; height: 220px; margin: 0 auto; z-index: 1; }
.athlete-img { width: 100%; height: 100%; object-fit: cover; border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; border: 4px solid #fff; position: relative; z-index: 2; transition: 0.5s; }
.blob-animation { position: absolute; top: -10px; left: -10px; width: 110%; height: 110%; background: #ffc107; border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; z-index: 1; opacity: 0.2; animation: morph 8s linear infinite; }
.blob-blue { background: #198754; }

@keyframes morph {
    0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    50% { border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%; }
}

/* Gear Box Styling */
.list-group-item:hover { background: #f8f9fa; border-left: 4px solid #198754; padding-left: 1.5rem !important; transition: 0.3s; }
.gear-box { border-top: 4px solid #198754; }

/* Product Details Page Specifics */
.most-popular-badge { position: absolute; top: -15px; right: 20px; background: #ffc107; color: #fff; padding: 10px 15px; border-radius: 50% 50% 50% 0; font-weight: 900; font-size: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.price-box { border-left: 5px solid #198754; padding-left: 15px; }

/* Table Styling */
.table thead th { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: #999; border: none; }
.table tbody td { border-bottom: 1px solid #f1f1f1; padding: 15px 10px; }

/* Section Padding Utility */
.section-padding { padding: 90px 0; }
.fw-black { font-weight: 900; }























/* --- Catalog Styles --- */
.ls-5 { letter-spacing: 5px; }

/* Sidebar menu hover */
.catalog-side-menu a {
    color: #444;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
    border-bottom: 1px solid #f1f1f1;
}
.catalog-side-menu a:hover, .active-cat {
    color: #198754 !important;
    padding-left: 5px;
}

/* Product Card Catalog */
.product-card-catalog {
    transition: all 0.4s ease;
    border-radius: 15px;
    overflow: hidden;
}
.cat-img-box {
    position: relative;
    padding: 20px;
    background: #fff;
    overflow: hidden;
}
.cat-img-box img {
    transition: transform 0.6s ease;
}

/* Hover Overlay on Image */
.hover-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(25, 135, 84, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.product-card-catalog:hover .hover-overlay { opacity: 1; }
.product-card-catalog:hover img { transform: scale(1.1); }
.product-card-catalog:hover { transform: translateY(-8px); box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important; }

/* Sticky Sidebar Fix for Navbar height */
.sidebar-sticky {
    position: sticky;
    top: 100px;
}

/* Badge Styling */
.z-index-1 { z-index: 1; }




/* --- Catalog Multi-level Hover Effect --- */
@media (min-width: 992px) {
    /* माउस ले जाते ही मेनू खुलेगा */
    .custom-dropdown:hover > .dropdown-menu {
        display: block !important;
        margin-top: 0;
    }

    /* सब-मेनू (Bows, Arrows आदि) को दाईं तरफ खोलने के लिए */
    .dropend:hover > .dropdown-menu {
        display: block !important;
        position: absolute;
        left: 100%; /* दाईं तरफ खिसकाने के लिए */
        top: 0;
        margin-top: -5px;
        margin-left: 0;
        border-radius: 0 8px 8px 8px;
    }
}

/* मोबाइल पर टच इफ़ेक्ट के लिए */
.dropdown-item.dropdown-toggle::after {
    float: right;
    margin-top: 8px;
}





















/* Explore Range Section Styling */
.explore-range-section {
    background: #0f1215; /* Dark Base */
    background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png'); /* Subtle Texture */
    border-top: 4px solid #198754; /* Green border on top */
}

.range-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(25, 135, 84, 0.1) 0%, rgba(0,0,0,0.8) 100%);
}

.range-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px); /* Glass effect */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
}

.range-card:hover {
    transform: translateY(-10px);
    background: rgba(25, 135, 84, 0.05);
    border-color: #198754;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.range-emoji {
    font-size: 3.5rem;
    display: block;
    filter: drop-shadow(0 0 10px rgba(25, 135, 84, 0.5));
}

.range-card h3 {
    letter-spacing: 2px;
}

/* Button Glow Effect */
.btn-glow {
    box-shadow: 0 0 15px rgba(25, 135, 84, 0.4);
    transition: 0.3s;
}

.btn-glow:hover {
    box-shadow: 0 0 25px rgba(25, 135, 84, 0.7);
    transform: scale(1.05);
}

.btn-hover-fill:hover {
    background-color: #198754;
    color: white !important;
}

/* Animations for emoji/icon */
.range-card:hover .range-emoji {
    animation: pulse-green 1.5s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

























/* Multi-Level Hover Menu Logic */
@media (min-width: 992px) {
    .dropdown:hover > .dropdown-menu { display: block; margin-top: 0; }
    .dropend:hover > .dropdown-menu { 
        display: block; 
        position: absolute; 
        top: 0; 
        left: 100%; 
        margin-top: -5px; 
        border-radius: 0 5px 5px 5px;
    }
}

/* Sidebar Menu Styling */
.catalog-side-menu li a {
    display: block;
    padding: 10px 15px;
    color: #444;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: 0.3s;
}
.catalog-side-menu li a:hover, .catalog-side-menu li a.active-cat {
    background: #f8f9fa;
    color: #198754;
    border-left: 4px solid #198754;
}

/* Product Card Styling */
.product-card-catalog {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
}
.product-card-catalog:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

/* Variant Table Header like MyChoice */
.variant-search-bar {
    background-color: #f1f1f1;
    border-radius: 5px 5px 0 0;
    padding: 15px;
}
.table-variant thead th {
    background: #e9ecef;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}














/* Sidebar Elite Menu */
.catalog-side-menu li a {
    display: block;
    padding: 8px 12px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    border-radius: 5px;
}
.catalog-side-menu li a:hover, .active-cat {
    background: #f0fdf4;
    color: #198754 !important;
    font-weight: bold;
}

/* Product Card Catalog */
.product-card-catalog {
    transition: transform 0.3s ease;
}
.product-card-catalog:hover {
    transform: translateY(-8px);
}

.fw-black { font-weight: 900; }





/* Modern Elite Search Bar */
.search-wrapper {
    position: relative;
    width: 250px;
}

.ee-search-box {
    display: flex;
    align-items: center;
    background: #f1f3f5;
    border: 1px solid #e9ecef;
    border-radius: 50px;
    padding: 2px 15px;
    transition: all 0.3s ease;
}

.ee-search-box:focus-within {
    background: #fff;
    border-color: #198754;
    box-shadow: 0 0 15px rgba(25, 135, 84, 0.2);
    width: 280px; /* Expand slightly on focus */
}

.ee-search-box input {
    border: none;
    background: transparent;
    padding: 8px 5px;
    font-size: 13px;
    width: 100%;
    outline: none;
    color: #333;
    font-weight: 500;
}

.ee-search-box button {
    border: none;
    background: transparent;
    color: #198754;
    cursor: pointer;
    padding: 5px;
    transition: 0.2s;
}

.ee-search-box button:hover {
    transform: scale(1.2);
}

/* Suggestion Box Styling */
.search-results-dropdown {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 10px 0;
    border: 1px solid #eee;
}

@media (max-width: 991px) {
    .search-wrapper { width: 100%; margin-top: 15px; }
    .ee-search-box:focus-within { width: 100%; }
}

























/* ============================================================
   ULTRA RESPONSIVE FIXES (For Mobile & Tablets)
   ============================================================ */

/* 1. Mobile Typography & Spacing */
@media (max-width: 767px) {
    .section-padding { 
        padding: 50px 0 !important; /* Mobile par padding kam ki taaki user thake nahi */
    }
    
    h1.display-1, h1.display-2 { 
        font-size: 2.5rem !important; /* Bade headers ko mobile size kiya */
        letter-spacing: 2px !important;
    }

    h2.display-3, h2.display-4 {
        font-size: 2rem !important;
    }

    .section-title { 
        font-size: 1.5rem !important; 
    }

    /* Slider Height adjustment for mobile */
    #heroSlider, .carousel-item {
        height: 60vh !important;
    }
}

/* 2. Catalog & Product Grid Mobile Fix */
@media (max-width: 575px) {
    /* Product images ko mobile par adjust karna */
    .product-card-catalog .cat-img-box {
        padding: 10px;
    }
    
    .product-card-catalog img {
        max-height: 150px;
        object-fit: contain;
    }

    /* Variant Table ko mobile par readable banana */
    .table-variant {
        font-size: 11px !important;
    }
    
    .table-variant img {
        width: 30px !important;
    }

    /* Buttons mobile par full width */
    .btn-lg {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* 3. Sidebar Fix (Mobile par sidebar content ke upar bahut jagah leta hai) */
@media (max-width: 991px) {
    .sidebar-sticky {
        position: static !important;
        margin-bottom: 30px;
    }
    
    .catalog-side-menu {
        display: flex;
        overflow-x: auto; /* Mobile par menu slide ho jayega sideways */
        white-space: nowrap;
        padding-bottom: 10px;
        gap: 10px;
    }

    .catalog-side-menu li {
        border: 1px solid #eee;
        border-radius: 50px;
        padding: 5px 15px;
    }
    
    .catalog-side-menu li a {
        border-bottom: none !important;
        padding: 0 !important;
    }
}

/* 4. Navbar Logo Adjustment */
@media (max-width: 991px) {
    .nav-logo {
        height: 50px !important; /* Mobile par logo chota kiya */
    }
}








































