/* Page Header */
        .page-header {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/carousel-1.jpg') center/cover no-repeat;
            padding: 150px 0 580px;
            position: relative;
            margin-bottom: 3rem;
        }

        /* Navbar Styles - Centered header with menu below */
        .navbar {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            padding: 0.5rem 1rem;
        }

        .navbar-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .navbar-brand {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            margin: 0;
            padding: 15px 0 5px;
            text-align: center;
        }

        .navbar-brand h3 {
            font-size: 2.2rem;
            font-weight: 700;
            margin: 0;
            letter-spacing: 1px;
            text-align: center;
            width: 100%;
            color: var(--secondary);
        }

        .navbar-toggler {
            margin: 10px auto;
            border: 1px solid var(--primary);
            padding: 8px 15px;
            border-radius: 5px;
            background: white;
            transition: all 0.3s ease;
        }

        .navbar-toggler:hover {
            background: var(--primary);
        }

        .navbar-toggler:hover .navbar-toggler-icon {
            filter: brightness(0) invert(1);
        }

        .navbar-toggler-icon {
            width: 25px;
            height: 25px;
            transition: all 0.3s ease;
        }

        .navbar-collapse {
            width: 100%;
            text-align: center;
        }

        .navbar-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            margin: 5px 0 10px;
            gap: 20px;
            flex-wrap: wrap;
        }

        .nav-item {
            margin: 0;
            position: relative;
        }

        .nav-link {
            color: #333;
            font-weight: 500;
            font-size: 1rem;
            padding: 8px 15px !important;
            transition: all 0.3s ease;
            position: relative;
            text-transform: uppercase;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--primary);
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 15px;
            right: 15px;
            height: 2px;
            background: var(--primary);
        }

        .dropdown-toggle::after {
            content: "\f107";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            border: none;
            vertical-align: middle;
            margin-left: 5px;
            color: var(--primary);
        }

        .dropdown-menu {
            border: none;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-radius: 10px;
            padding: 10px;
            min-width: 200px;
            margin-top: 5px;
        }

        .dropdown-item {
            padding: 8px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .dropdown-item:hover,
        .dropdown-item.active {
            background: var(--primary);
            color: white;
        }

        /* Mobile Responsive */
        @media (max-width: 991.98px) {
            .navbar-brand h3 {
                font-size: 1.8rem;
            }
            
            .navbar-nav {
                flex-direction: column;
                gap: 5px;
            }
            
            .nav-item {
                width: 100%;
            }
            
            .nav-link {
                text-align: center;
                padding: 12px !important;
                border-bottom: 1px solid #f0f0f0;
            }
            
            .nav-link.active::after {
                display: none;
            }
            
            .dropdown-menu {
                text-align: center;
                background: #f9f9f9;
                margin: 0;
                box-shadow: none;
            }
            
            .dropdown-item {
                padding: 10px;
            }
        }

        @media (max-width: 576px) {
            .navbar-brand h3 {
                font-size: 1.5rem;
            }
        }

        /* Desktop */
        @media (min-width: 992px) {
            .navbar-brand h3 {
                font-size: 2.2rem;
            }
            
            .navbar-toggler {
                display: none;
            }
            
            .navbar-nav {
                margin: 5px 0 15px;
                gap: 25px;
            }
        }

        /* Carousel - Removed golden background */
        .carousel-container {
            position: relative;
            overflow: hidden;
        }

        .carousel-item {
            min-height: 600px;
            position: relative;
        }

        .carousel-item img {
            object-fit: cover;
            height: 600px;
        }

        .carousel-caption {
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            /* background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.3) 100%); */
        }

        .carousel-caption .container {
            max-width: 900px;
        }

        .carousel-caption h3 {
            font-size: 4rem;
            font-weight: 700;
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            margin-bottom: 20px;
            letter-spacing: 2px;
        }

        @media (max-width: 768px) {
            .carousel-item {
                min-height: 450px;
            }
            
            .carousel-item img {
                height: 450px;
            }
            
            .carousel-caption h3 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 576px) {
            .carousel-item {
                min-height: 350px;
            }
            
            .carousel-item img {
                height: 350px;
            }
            
            .carousel-caption h3 {
                font-size: 2rem;
            }
        }

        /* Product Cards Enhancement */
        .product-item {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            cursor: pointer;
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
            border: 1px solid rgba(246, 80, 5, 0.1);
        }

        .product-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(246, 80, 5, 0.15);
            border-color: transparent;
        }

        .product-image {
            position: relative;
            overflow: hidden;
            height: 250px;
            background: #f8f9fa;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-item:hover .product-image img {
            transform: scale(1.1);
        }

        .badge {
            font-size: 0.8rem;
            font-weight: 500;
            border-radius: 20px !important;
        }

        .product-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(246, 80, 5, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .product-item:hover .product-overlay {
            opacity: 1;
        }

        .product-overlay .btn {
            background: white;
            color: var(--primary);
            border: 2px solid var(--primary);
            font-weight: 600;
        }

        .product-overlay .btn:hover {
            background: var(--primary);
            color: white;
        }

        .product-content {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .product-content h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
        }

        .product-content p {
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

         .product-item .product-image img {
            height: 300px !important;
            object-fit: cover;
        }

        .text-primary {
            color: var(--primary) !important;
        }

        .text-muted {
            color: #666 !important;
        }

        /* Feature Cards */
        .feature-card {
            transition: all 0.3s ease;
            border: 1px solid rgba(246, 80, 5, 0.1);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(246, 80, 5, 0.1);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            line-height: 70px;
            text-align: center;
            background: rgba(246, 80, 5, 0.1);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-icon i {
            font-size: 2rem;
            color: var(--primary);
        }

        /* Section Header */
        .section-header {
            position: relative;
            padding-top: 20px;
            margin-bottom: 2rem;
        }

        .section-header::before,
        .section-header::after {
            position: absolute;
            content: "";
            left: 50%;
            transform: translateX(-50%);
            height: 2px;
        }

        .section-header::before {
            width: 50px;
            top: 0;
            background: var(--primary);
        }

        .section-header::after {
            width: 80px;
            top: 8px;
            background: var(--secondary);
        }

        .section-header h1 {
            font-size: 2rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Stats Section */
        .stats-section {
            background: linear-gradient(135deg, var(--primary) 0%, #ff7720 100%);
            padding: 50px 0;
            color: white;
            margin: 30px 0;
        }

        .stat-item {
            text-align: center;
            padding: 15px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
        }

        /* Testimonial Carousel */
        .testimonial-item {
            transition: all 0.3s ease;
        }

        .testimonial-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(246, 80, 5, 0.1) !important;
        }

        .testimonial-item i.fa-quote-left {
            color: var(--primary) !important;
        }

        .testimonial-item h5 {
            color: var(--primary) !important;
        }

        /* Blog Cards */
        .blog-card {
            transition: all 0.3s ease;
            border-radius: 10px;
            overflow: hidden;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(246, 80, 5, 0.1) !important;
        }

        .blog-card img {
            transition: transform 0.5s ease;
        }

        .blog-card:hover img {
            transform: scale(1.05);
        }

        .blog-card .btn-link {
            color: var(--primary) !important;
        }

        /* Footer */
        .footer {
            font-family: 'Open Sans', sans-serif;
        }

        .footer .text-primary {
            color: var(--primary) !important;
        }

        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
        }

        .btn-primary:hover {
            background-color: #e04a00;
            border-color: #e04a00;
        }

        .btn-outline-primary {
            color: var(--primary);
            border-color: var(--primary);
        }

        .btn-outline-primary:hover {
            background-color: var(--primary);
            border-color: var(--primary);
        }

        .bg-primary {
            background-color: var(--primary) !important;
        }

        .bg-secondary {
            background-color: var(--secondary) !important;
        }

        .text-secondary {
            color: var(--secondary) !important;
        }

        /* Top Bar */
        .top-bar {
            border-bottom: 1px solid #f0f0f0;
            font-size: 0.85rem;
        }

        .top-bar a:hover {
            color: var(--primary) !important;
        }

        /* WhatsApp Float */
        .whatsapp-float {
            position: fixed;
            bottom: 80px;
            right: 20px;
            z-index: 9999;
            transition: all 0.3s ease;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
        }

        .whatsapp-float img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .back-to-top {
            background-color: var(--primary) !important;
            border-color: var(--primary) !important;
        }

        .back-to-top:hover {
            background-color: #e04a00 !important;
            border-color: #e04a00 !important;
        }

      
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.marquee-content img {
    border-radius: 8px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.marquee-content img:hover {
    transform: scale(1.1);
}

.marquee-content .small {
    color: #333;
    font-size: 12px;
}
