/* ============================================
   Global Trade Hub - Premium Business Theme
   Colors: White, Royal Blue, Yellow, Green
   ============================================ */

:root {
    --primary: #1a3a8a;
    --primary-dark: #0f2461;
    --primary-light: #2d52b8;
    --accent: #f5b800;
    --accent-dark: #e0a800;
    --green: #28a745;
    --green-dark: #1e7e34;
    --white: #ffffff;
    --light: #f8f9fa;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --dark: #1a1a2e;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: #333;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--dark);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: 80px 0;
}

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

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
}

.section-title p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-title .title-line {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    margin: 15px auto;
    border-radius: 2px;
}

/* ============================================
   Buttons
   ============================================ */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 58, 138, 0.4);
    color: var(--white);
}

.btn-accent-custom {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--dark);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-accent-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 184, 0, 0.4);
    color: var(--dark);
}

.btn-green-custom {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-green-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
    color: var(--white);
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* ============================================
   Top Bar
   ============================================ */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.9);
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar a {
    color: rgba(255,255,255,0.9);
}

.top-bar a:hover {
    color: var(--accent);
}

.top-bar .social-links a {
    margin-left: 12px;
    font-size: 0.9rem;
}

/* ============================================
   Header / Navigation
   ============================================ */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
}

.navbar-brand span {
    color: var(--accent);
}

.navbar-brand i {
    color: var(--primary);
    margin-right: 8px;
}

.navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 600;
    padding: 10px 18px !important;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
    background: rgba(26, 58, 138, 0.05);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 50%;
}

/* Mega Dropdown */
.mega-dropdown {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
    max-height: 500px;
    overflow-y: auto;
}

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu .category-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    color: var(--dark);
    font-weight: 500;
}

.mega-menu .category-item:hover {
    background: rgba(26, 58, 138, 0.08);
    color: var(--primary);
    transform: translateX(5px);
}

.mega-menu .category-item i {
    color: var(--accent);
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Header Action Buttons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-actions .icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 58, 138, 0.08);
    color: var(--primary);
    transition: var(--transition);
    border: none;
}

.header-actions .icon-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.header-actions .call-btn {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    transition: var(--transition);
}

.header-actions .call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(40, 167, 69, 0.4);
    color: var(--white);
}

.header-actions .whatsapp-btn {
    background: #25d366;
    color: var(--white);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.header-actions .whatsapp-btn:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    color: var(--white);
}

/* 3 Dot Menu */
.dot-menu {
    position: relative;
}

.dot-menu-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-sm);
    padding: 10px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
}

.dot-menu:hover .dot-menu-dropdown,
.dot-menu.show .dot-menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dot-menu-dropdown a {
    display: block;
    padding: 10px 15px;
    color: var(--dark);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.dot-menu-dropdown a:hover {
    background: rgba(26, 58, 138, 0.08);
    color: var(--primary);
    padding-left: 20px;
}

.dot-menu-dropdown a i {
    color: var(--accent);
    margin-right: 10px;
    width: 20px;
}

/* ============================================
   Hero Slider
   ============================================ */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

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

.hero-slide.active {
    opacity: 1;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 58, 138, 0.85) 0%, rgba(15, 36, 97, 0.7) 100%);
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 700px;
    padding: 0 15px;
}

.hero-slide-content h1 {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    animation: slideInLeft 0.8s ease;
}

.hero-slide-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
    animation: slideInLeft 1s ease;
}

.hero-slide-content .btn {
    animation: slideInLeft 1.2s ease;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.hero-slider-dot.active {
    background: var(--accent);
    width: 35px;
    border-radius: 6px;
}

.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.hero-slider-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--dark);
}

.hero-slider-arrow.prev { left: 20px; }
.hero-slider-arrow.next { right: 20px; }

.hero-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: var(--accent);
    z-index: 3;
    transition: width 0.1s linear;
}

/* ============================================
   Cards
   ============================================ */
.premium-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.premium-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.premium-card .card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: var(--light);
}

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

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

.premium-card .card-body {
    padding: 20px;
}

.premium-card .card-body h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.premium-card .card-body p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.premium-card .card-footer-custom {
    padding: 0 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Category Card */
.category-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.04);
}

.category-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.category-card .cat-image {
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(26,58,138,0.05), rgba(245,184,0,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card .cat-image i {
    font-size: 3.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.category-card:hover .cat-image i {
    color: var(--accent);
    transform: scale(1.2);
}

.category-card .cat-body {
    padding: 20px;
}

.category-card .cat-body h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.category-card .cat-body p {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

/* Product Card */
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.product-card .product-image {
    height: 240px;
    overflow: hidden;
    position: relative;
    background: var(--light);
}

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

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

.product-card .product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.product-card .product-stock {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.product-card .stock-in {
    background: rgba(40, 167, 69, 0.9);
    color: var(--white);
}

.product-card .stock-out {
    background: rgba(220, 53, 69, 0.9);
    color: var(--white);
}

.product-card .product-body {
    padding: 20px;
}

.product-card .product-body h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-card .product-body h5 a {
    color: var(--dark);
}

.product-card .product-body h5 a:hover {
    color: var(--primary);
}

.product-card .product-company {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 8px;
}

.product-card .product-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.product-card .product-mrp {
    font-size: 0.9rem;
    color: var(--gray);
    text-decoration: line-through;
}

.product-card .product-desc {
    color: var(--gray);
    font-size: 0.85rem;
    margin: 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card .product-actions {
    padding: 0 20px 20px;
    display: flex;
    gap: 10px;
}

.product-card .btn-view {
    flex: 1;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 10px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
    border: none;
    transition: var(--transition);
}

.product-card .btn-view:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 58, 138, 0.3);
    color: var(--white);
}

.product-card .btn-inquiry {
    width: 45px;
    height: 42px;
    background: var(--green);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.product-card .btn-inquiry:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
}

/* ============================================
   Why Choose Us
   ============================================ */
.why-choose-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
}

.why-choose-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.why-choose-card .icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(26,58,138,0.1), rgba(245,184,0,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.why-choose-card:hover .icon-wrap {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.why-choose-card .icon-wrap i {
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.why-choose-card:hover .icon-wrap i {
    color: var(--white);
}

.why-choose-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-choose-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ============================================
   Statistics
   ============================================ */
.statistics-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(245, 184, 0, 0.1);
    border-radius: 50%;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item .stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    backdrop-filter: blur(10px);
}

.stat-item .stat-icon i {
    font-size: 1.5rem;
    color: var(--accent);
}

.stat-item .stat-value {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 5px;
}

.stat-item .stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
}

/* ============================================
   Testimonials
   ============================================ */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-card .quote-icon {
    font-size: 2rem;
    color: var(--accent);
    opacity: 0.3;
    margin-bottom: 15px;
}

.testimonial-card .testimonial-text {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card .testimonial-rating {
    color: var(--accent);
    margin-bottom: 15px;
}

.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-card .author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-card .author-info h6 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.testimonial-card .author-info span {
    color: var(--gray);
    font-size: 0.85rem;
}

/* ============================================
   Partner Logos
   ============================================ */
.partner-slider {
    overflow: hidden;
    padding: 20px 0;
}

.partner-item {
    text-align: center;
    padding: 20px;
}

.partner-item .partner-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.partner-item .partner-logo:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.partner-item .partner-logo i {
    font-size: 2rem;
    color: var(--primary);
}

/* ============================================
   FAQ Accordion
   ============================================ */
.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: var(--radius-sm) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-accordion .accordion-button {
    background: var(--white);
    color: var(--dark);
    font-weight: 600;
    padding: 20px 25px;
    border: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--primary);
    color: var(--white);
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    filter: brightness(0) invert(1);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.faq-accordion .accordion-body {
    padding: 20px 25px;
    color: #555;
    font-size: 0.95rem;
}

/* ============================================
   Inquiry Banner
   ============================================ */
.inquiry-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius);
    padding: 50px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.inquiry-banner::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: rgba(245, 184, 0, 0.15);
    border-radius: 50%;
}

.inquiry-banner h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.inquiry-banner p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: rgba(255,255,255,0.9);
}

/* ============================================
   Footer
   ============================================ */
.main-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.main-footer h5 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.main-footer h5::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--accent);
    margin-top: 10px;
    border-radius: 2px;
}

.main-footer a {
    color: rgba(255,255,255,0.7);
    display: block;
    padding: 6px 0;
    transition: var(--transition);
    font-size: 0.9rem;
}

.main-footer a:hover {
    color: var(--accent);
    padding-left: 8px;
}

.main-footer .footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    display: block;
}

.main-footer .footer-logo span {
    color: var(--accent);
}

.main-footer .social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    padding: 0;
}

.main-footer .social-links a:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-3px);
    padding-left: 0;
}

.main-footer .newsletter-form {
    position: relative;
}

.main-footer .newsletter-form input {
    width: 100%;
    padding: 12px 20px;
    border-radius: 50px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 0.9rem;
}

.main-footer .newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.main-footer .newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    border: none;
    border-radius: 50px;
    padding: 0 20px;
    background: var(--accent);
    color: var(--dark);
    font-weight: 600;
    transition: var(--transition);
}

.main-footer .newsletter-form button:hover {
    background: var(--accent-dark);
}

.main-footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 0.85rem;
}

/* ============================================
   WhatsApp Float Button
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================
   Back to Top
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: none;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    color: var(--white);
}

/* ============================================
   Breadcrumb
   ============================================ */
.breadcrumb-section {
    background: linear-gradient(135deg, rgba(26,58,138,0.05), rgba(245,184,0,0.05));
    padding: 30px 0;
}

.breadcrumb-section h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.breadcrumb {
    margin-bottom: 0;
    background: transparent;
    padding: 0;
}

.breadcrumb a {
    color: var(--primary);
    font-weight: 500;
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb .active {
    color: var(--gray);
}

/* ============================================
   Page Hero
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-hero p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
}

/* ============================================
   Forms
   ============================================ */
.form-control, .form-select {
    border-radius: var(--radius-sm);
    border: 2px solid var(--gray-light);
    padding: 12px 18px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(26, 58, 138, 0.1);
}

.form-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

/* ============================================
   Product Details
   ============================================ */
.product-gallery .main-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 15px;
    height: 400px;
    background: var(--light);
}

.product-gallery .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery .thumb-images {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-gallery .thumb-images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.product-gallery .thumb-images img:hover,
.product-gallery .thumb-images img.active {
    border-color: var(--primary);
}

.product-info h1 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.product-info .product-price-detail {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin: 15px 0;
}

.product-info .product-mrp-detail {
    font-size: 1.1rem;
    color: var(--gray);
    text-decoration: line-through;
}

.product-info .stock-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
}

.product-info .stock-in {
    background: rgba(40, 167, 69, 0.1);
    color: var(--green);
}

.product-info .stock-out {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.product-spec-table {
    width: 100%;
}

.product-spec-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--gray-light);
}

.product-spec-table td:first-child {
    font-weight: 600;
    color: var(--dark);
    width: 40%;
}

.product-spec-table td:last-child {
    color: var(--gray);
}

/* ============================================
   Search Results
   ============================================ */
.search-box {
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 10px 45px 10px 20px;
    border-radius: 50px;
    border: 2px solid var(--gray-light);
    font-size: 0.9rem;
    transition: var(--transition);
}

.search-box input:focus {
    border-color: var(--primary);
    outline: none;
}

.search-box button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: var(--primary);
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    transition: var(--transition);
}

.search-box button:hover {
    background: var(--primary-dark);
}

.search-results {
    position: absolute;
    top: 110%;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.search-results.show {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid var(--gray-light);
    transition: var(--transition);
    color: var(--dark);
}

.search-result-item:hover {
    background: rgba(26, 58, 138, 0.05);
}

.search-result-item img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 12px;
}

.search-result-item .info h6 {
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.search-result-item .info span {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ============================================
   Scroll Animations
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Loading Animation
   ============================================ */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--gray-light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   Glassmorphism
   ============================================ */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
    .hero-slider { height: 400px; }
    .hero-slide-content h1 { font-size: 2rem; }
    .hero-slide-content p { font-size: 1rem; }
    .section-title h2 { font-size: 1.8rem; }
    .section-padding { padding: 50px 0; }
    .stat-item .stat-value { font-size: 2rem; }
    .inquiry-banner { padding: 30px 20px; }
    .inquiry-banner h2 { font-size: 1.5rem; }
    .mega-menu { position: fixed; top: 0; left: 0; right: 0; max-height: 100vh; overflow-y: auto; padding: 15px; }
    .page-hero h1 { font-size: 1.8rem; }
    .whatsapp-float { width: 50px; height: 50px; font-size: 1.5rem; bottom: 20px; right: 20px; }
    .back-to-top { bottom: 20px; left: 20px; }
}
