body, html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            color: #333;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 5px 0;
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-size: 28px;
            font-weight: 700;
            color: #1e3a8a !important;
            letter-spacing: 1px;
        }
        
        .navbar-brand span {
            color: #dc2626;
        }
        
        .nav-link {
            color: #333 !important;
            font-weight: 500;
            margin: 0 15px;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .nav-link:hover {
            color: #1e3a8a !important;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: #1e3a8a;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .btn-primary-custom {
            background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
            border: none;
            padding: 12px 35px;
            border-radius: 50px;
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
        }
        
        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
			color: white;
        }
        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            padding: 100px 0 60px;
            margin-top: 80px;
            color: white;
        }
        
        .page-header h1 {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 10px;
        }
        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            position: relative;
            overflow: hidden;
            margin-top: 80px;
            padding: 80px 0;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            top: -200px;
            right: -200px;
            animation: float 6s ease-in-out infinite;
        }
        
        .hero-section::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
            bottom: -150px;
            left: -150px;
            animation: float 8s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-30px); }
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            color: white;
        }
        
        .hero-content h1 {
            font-size: 56px;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero-content .highlight {
            color: #fbbf24;
        }
        
        .hero-content p {
            font-size: 18px;
            opacity: 0.9;
            margin-bottom: 30px;
            line-height: 1.8;
        }
        
        .hero-image {
            position: relative;
            z-index: 2;
        }
        
        .hero-image img {
            width: 100%;
            max-width: 500px;
            filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
            animation: floatImage 3s ease-in-out infinite;
        }
        
        @keyframes floatImage {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        .gst-badge {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 15px 25px;
            border-radius: 50px;
            display: inline-block;
            margin-top: 20px;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        /* Features Section */
        .features-section {
            padding: 100px 0;
            background: #f8f9fa;
        }
        
        .section-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #1e3a8a;
        }
        
        .section-subtitle {
            font-size: 18px;
            color: #64748b;
            margin-bottom: 60px;
        }
        
        .feature-card {
            padding: 40px 30px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
            border: 2px solid transparent;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
            border-color: #1e3a8a;
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 32px;
            color: white;
            box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
        }
        
        .feature-card h4 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #1e293b;
        }
        
        .feature-card p {
            color: #64748b;
            line-height: 1.8;
        }
        
        /* About Section */
        .about-section {
            padding: 100px 0;
            background: white;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-image {
            flex: 1;
            position: relative;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h2 {
            font-size: 42px;
            font-weight: 700;
            color: #1e3a8a;
            margin-bottom: 20px;
        }
        
        .about-text p {
            font-size: 17px;
            line-height: 1.8;
            color: #475569;
            margin-bottom: 20px;
        }
        
        .dna-highlight {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
        }
        
        /* Product Section */
        .product-section {
            padding: 100px 0;
            background: #f8f9fa;
        }
        
        .product-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0,0,0,0.15);
        }
        
        .product-image {
            position: relative;
            overflow: hidden;
            height: 300px;
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .product-image img {
            max-width: 80%;
            height: auto;
            transition: all 0.3s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
        .product-content {
            padding: 30px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        
        .product-content h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #1e293b;
        }
        
        .product-content p {
            color: #64748b;
            line-height: 1.8;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .product-content .btn {
            margin-top: auto;
        }
        
        /* Featured Products Section */
        .featured-products-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
            position: relative;
            overflow: hidden;
        }
        
        .featured-products-section::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: rgba(30, 58, 138, 0.05);
            border-radius: 50%;
            top: -100px;
            right: -100px;
        }
        
        .swiper {
            width: 100%;
            padding: 20px 0 60px 0;
        }
        
        .swiper-slide {
            height: auto;
        }
        
        .featured-product-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 2px solid transparent;
        }
        
        .featured-product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(30, 58, 138, 0.15);
            border-color: #1e3a8a;
        }
        
        .featured-product-image {
            position: relative;
            height: 280px;
            overflow: hidden;
            background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
        }
        
        .featured-product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            z-index: 2;
            box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
        }
        
        .featured-product-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: all 0.4s ease;
        }
        
        .featured-product-card:hover .featured-product-image img {
            transform: scale(1.1) rotate(3deg);
        }
        
        .featured-product-content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .featured-product-title {
            font-size: 20px;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 20px;
            line-height: 1.4;
            min-height: 56px;
        }
        
        .product-specs {
            flex-grow: 1;
            margin-bottom: 20px;
        }
        
        .spec-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
            padding: 10px;
            background: #f8fafc;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .spec-item:hover {
            background: #e0e7ff;
            transform: translateX(5px);
        }
        
        .spec-icon {
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
            margin-right: 12px;
            flex-shrink: 0;
        }
        
        .spec-details {
            flex-grow: 1;
        }
        
        .spec-label {
            font-size: 12px;
            color: #64748b;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 3px;
        }
        
        .spec-value {
            font-size: 14px;
            color: #1e293b;
            font-weight: 600;
        }
        
        .featured-product-footer {
            padding: 0 30px 30px;
            margin-top: auto;
        }
        
        .btn-view-details {
            width: 100%;
            padding: 14px;
			background: linear-gradient(135deg, #075E54 0%, #25D366 100%);
            /* background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%); */
            border: none;
            border-radius: 12px;
            color: white;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(30, 58, 138, 0.2);
        }
        
        .btn-view-details:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
            background: linear-gradient(135deg, #075E54 0%, #25D366 100%);

        }
        
        /* Swiper Navigation Buttons */
        .swiper-button-next,
        .swiper-button-prev {
            background: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 20px;
            color: #1e3a8a;
            font-weight: 900;
        }
        
        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background: #1e3a8a;
            box-shadow: 0 8px 30px rgba(30, 58, 138, 0.3);
        }
        
        .swiper-button-next:hover:after,
        .swiper-button-prev:hover:after {
            color: white;
        }
        
        /* Swiper Pagination */
        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: #cbd5e1;
            opacity: 1;
            transition: all 0.3s ease;
        }
        
        .swiper-pagination-bullet-active {
            background: #1e3a8a;
            width: 30px;
            border-radius: 6px;
        }
        
        /* Blog Section */
        .blog-section {
            padding: 100px 0;
            background: white;
        }
        
        .blog-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
        }
        
        .blog-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(59, 130, 246, 0.9) 100%);
            opacity: 0;
            transition: all 0.4s ease;
            z-index: 1;
        }
        
        .blog-card:hover::before {
            opacity: 1;
        }
        
        .blog-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
        }
        
        .blog-image {
            position: relative;
            height: 250px;
            overflow: hidden;
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
        }
        
        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s ease;
        }
        
        .blog-card:hover .blog-image img {
            transform: scale(1.1);
            opacity: 0.3;
        }
        
        .blog-date {
            position: absolute;
            top: 20px;
            left: 20px;
            background: white;
            color: #1e3a8a;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            z-index: 2;
            transition: all 0.3s ease;
        }
        
        .blog-card:hover .blog-date {
            background: #fbbf24;
            color: #1e293b;
        }
        
        .blog-category {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(30, 58, 138, 0.9);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 500;
            font-size: 13px;
            z-index: 2;
        }
        
        .blog-content {
            padding: 30px;
            position: relative;
            z-index: 2;
            transition: all 0.4s ease;
        }
        
        .blog-card:hover .blog-content {
            color: white;
        }
        
        .blog-content h3 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #1e293b;
            transition: all 0.3s ease;
            line-height: 1.4;
        }
        
        .blog-card:hover .blog-content h3 {
            color: white;
        }
        
        .blog-excerpt {
            color: #64748b;
            line-height: 1.7;
            margin-bottom: 20px;
            font-size: 15px;
            transition: all 0.3s ease;
        }
        
        .blog-card:hover .blog-excerpt {
            color: rgba(255, 255, 255, 0.9);
        }
        
        .blog-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 20px;
            border-top: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }
        
        .blog-card:hover .blog-meta {
            border-top-color: rgba(255, 255, 255, 0.3);
        }
        
        .blog-author {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .author-avatar {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 14px;
        }
        
        .author-name {
            font-weight: 500;
            font-size: 14px;
            color: #475569;
            transition: all 0.3s ease;
        }
        
        .blog-card:hover .author-name {
            color: white;
        }
        
        .blog-read-more {
            color: #1e3a8a;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        .blog-card:hover .blog-read-more {
            color: white;
            gap: 10px;
        }
        
        .blog-read-more i {
            transition: all 0.3s ease;
        }
        
        /* Contact Section */
        .contact-section {
            padding: 100px 0;
            background: white;
        }
        
        .contact-card {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            border-radius: 20px;
            padding: 50px;
            color: white;
            box-shadow: 0 20px 50px rgba(30, 58, 138, 0.3);
        }
        
        .contact-info {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 24px;
            flex-shrink: 0;
        }
        
        .contact-details h4 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .contact-details p {
            margin: 0;
            opacity: 0.9;
            line-height: 1.6;
        }
        
        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .contact-form h3 {
            color: #1e3a8a;
            font-weight: 700;
            margin-bottom: 30px;
        }
        
        .form-control {
            padding: 15px;
            border-radius: 10px;
            border: 2px solid #e2e8f0;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: #1e3a8a;
            box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
        }
        
        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: #f8f9fa;
        }
        
        .cta-content {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            border-radius: 30px;
            padding: 80px 60px;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-content::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            top: -100px;
            right: -100px;
        }
        
        .cta-content h2 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
        }
        
        .cta-content p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
            position: relative;
        }
        
        .btn-light-custom {
            background: white;
            color: #1e3a8a;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .btn-light-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        /* Footer */
        .footer {
            background: #1e293b;
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer h5 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 25px;
            color: #fbbf24;
        }
        
        .footer ul {
            list-style: none;
            padding: 0;
        }
        
        .footer ul li {
            margin-bottom: 12px;
        }
        
        .footer ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer ul li a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            line-height: 40px;
            text-align: center;
            margin-right: 10px;
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background: #1e3a8a;
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 40px;
            padding-top: 25px;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 36px;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .cta-content {
                padding: 50px 30px;
            }
            
            .cta-content h2 {
                font-size: 28px;
            }
            
            .about-content {
                flex-direction: column;
            }
        }
		.breadcrumb {
            background: transparent;
            padding: 0;
            margin-top: 20px;
        }
        
        .breadcrumb-item {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .breadcrumb-item a {
            color: white;
            text-decoration: none;
            font-weight: 500;
        }
        
        .breadcrumb-item.active {
            color: #fbbf24;
        }
        
        /* Categories Section */
        .categories-section {
            padding: 80px 0;
        }
        
        .section-intro {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-intro h2 {
            font-size: 38px;
            font-weight: 700;
            color: #1e3a8a;
            margin-bottom: 15px;
        }
        
        .section-intro p {
            font-size: 17px;
            color: #64748b;
        }
        
        /* Category Card */
        .category-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            height: 100%;
        }
        
        /* .category-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(59, 130, 246, 0.9) 100%);
            opacity: 0;
            transition: all 0.4s ease;
            z-index: 1;
        } */
        
        .category-card:hover::before {
            opacity: 1;
        }
        
        .category-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(30, 58, 138, 0.2);
        }
        
        .category-image {
            position: relative;
            height: auto;
            overflow: hidden;
            background: #ffffff;
			/* background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%); */
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
			border-bottom:1px solid #cccccc;
        }
        
        .category-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: all 0.4s ease;
            position: relative;
            z-index: 0;
        }
        
        /* .category-card:hover .category-image img {
            transform: scale(1.15) rotate(3deg);
            opacity: 0.3;
        } */
        
        .category-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            z-index: 2;
            box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
            transition: all 0.3s ease;
        }
        
        /* .category-card:hover .category-badge {
            background: #fbbf24;
            color: #1e293b;
        }
         */
        .category-content {
            padding: 30px;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
			border:0px solid #ff0000;
			min-height:400px;
			display:flex;
			flex-direction:column;
			justify-content:space-evenly;
        }
        
       /*  .category-card:hover .category-content {
            color: white;
        }
         */
        .category-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: white;
            margin-bottom: 20px;
            box-shadow: 0 5px 20px rgba(30, 58, 138, 0.2);
            transition: all 0.3s ease;
        }
        
       /*  .category-card:hover .category-icon {
            background: white;
            color: #1e3a8a;
            transform: scale(1.1);
        } */
        
        .category-name {
            font-size: 24px;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }
        
        /* .category-card:hover .category-name {
            color: white;
        }
         */
        .category-description {
            color: #64748b;
            line-height: 1.7;
            margin-bottom: 20px;
            font-size: 15px;
            transition: all 0.3s ease;
        }
        
        /* .category-card:hover .category-description {
            color: rgba(255, 255, 255, 0.9);
        }
         */
        .category-stats {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }
        
       /*  .category-card:hover .category-stats {
            border-top-color: rgba(255, 255, 255, 0.3);
        } */
        
        .category-count {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            color: #1e3a8a;
            transition: all 0.3s ease;
        }
        
        /* .category-card:hover .category-count {
            color: white;
        } */
        
        .category-arrow {
            width: 40px;
            height: 40px;
            background: #f8fafc;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1e3a8a;
            transition: all 0.3s ease;
        }
        
        /* .category-card:hover .category-arrow {
            background: white;
            transform: translateX(5px);
        } */
		
		 /* About Section */
        .about-main-section {
            padding: 100px 0;
            background: white;
        }
        
        .about-content-wrapper {
            display: flex;
            align-items: center;
            gap: 60px;
        }
        
        .about-image-container {
            flex: 1;
            position: relative;
        }
        
        .about-main-image {
            width: 100%;
            border-radius: 30px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
            transition: all 0.4s ease;
        }
        
        .about-main-image:hover {
            transform: scale(1.02);
            box-shadow: 0 40px 80px rgba(30, 58, 138, 0.2);
        }
        
        .about-image-badge {
            position: absolute;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            color: white;
            padding: 25px 35px;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(30, 58, 138, 0.3);
        }
        
        .about-image-badge h3 {
            font-size: 32px;
            font-weight: 800;
            margin: 0;
            line-height: 1;
        }
        
        .about-image-badge p {
            font-size: 14px;
            margin: 5px 0 0 0;
            opacity: 0.9;
        }
        
        .about-text-container {
            flex: 1;
        }
        
        .section-label {
            color: #1e3a8a;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            display: inline-block;
            padding: 8px 20px;
            background: rgba(30, 58, 138, 0.1);
            border-radius: 20px;
        }
        
        .about-text-container h2 {
            font-size: 42px;
            font-weight: 800;
            color: #1e293b;
            margin-bottom: 25px;
            line-height: 1.2;
        }
        
        .dna-highlight {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
        }
        
        .about-text-container p {
            font-size: 17px;
            line-height: 1.9;
            color: #475569;
            margin-bottom: 20px;
        }
        
        .about-text-container p strong {
            color: #1e293b;
            font-weight: 700;
        }
        
        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 35px;
        }
        
        .about-feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px;
            background: #f8fafc;
            border-radius: 15px;
            transition: all 0.3s ease;
        }
        
        .about-feature-item:hover {
            background: #e0e7ff;
            transform: translateX(5px);
        }
        
        .about-feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            flex-shrink: 0;
        }
        
        .about-feature-text {
            font-size: 15px;
            font-weight: 600;
            color: #1e293b;
            margin: 0;
        }
        
        /* Vision Mission Section */
        .vision-mission-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
            position: relative;
            overflow: hidden;
        }
        
        .vision-mission-section::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: rgba(30, 58, 138, 0.05);
            border-radius: 50%;
            top: -100px;
            right: -100px;
        }
        
        .vm-header {
            text-align: center;
            margin-bottom: 70px;
        }
        
        .vm-header h2 {
            font-size: 42px;
            font-weight: 800;
            color: #1e293b;
            margin-bottom: 15px;
        }
        
        .vm-header p {
            font-size: 18px;
            color: #64748b;
        }
        
        .vm-card {
            background: white;
            border-radius: 30px;
            padding: 50px 40px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .vm-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            transition: all 0.3s ease;
        }
        
        .vm-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 70px rgba(30, 58, 138, 0.15);
        }
        
        .vm-card:hover::before {
            width: 100%;
            opacity: 0.05;
        }
        
        .vm-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            color: white;
            margin-bottom: 30px;
            box-shadow: 0 15px 35px rgba(30, 58, 138, 0.3);
            transition: all 0.3s ease;
        }
        
        .vm-card:hover .vm-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .vm-title {
            font-size: 28px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 20px;
        }
        
        .vm-description {
            font-size: 16px;
            line-height: 1.9;
            color: #475569;
            margin-bottom: 25px;
        }
        
        .vm-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .vm-list li {
            padding: 12px 0;
            color: #475569;
            font-size: 15px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .vm-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: #1e3a8a;
            background: rgba(30, 58, 138, 0.1);
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 12px;
            flex-shrink: 0;
            margin-top: 2px;
        }
        
        /* Stats Section */
        .stats-section {
            padding: 80px 0;
            background: white;
        }
        
        .stats-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .stat-card {
            text-align: center;
            padding: 40px 20px;
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            border-radius: 20px;
            color: white;
            transition: all 0.3s ease;
        }
        
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(30, 58, 138, 0.3);
        }
        
        .stat-icon {
            font-size: 48px;
            margin-bottom: 20px;
            opacity: 0.9;
        }
        
        .stat-number {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 10px;
            line-height: 1;
        }
        
        .stat-label {
            font-size: 15px;
            opacity: 0.9;
            font-weight: 500;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: #f8f9fa;
        }
        
        .cta-content {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            border-radius: 30px;
            padding: 80px 60px;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-content::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            top: -100px;
            right: -100px;
        }
        
        .cta-content h2 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
        }
        
        .cta-content p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
            position: relative;
        }
        
        .btn-light-custom {
            background: white;
            color: #1e3a8a;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            font-size: 16px;
        }
        
        .btn-light-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        /* Footer */
        .footer {
            background: #1e293b;
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer h5 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 25px;
            color: #fbbf24;
        }
        
        .footer ul {
            list-style: none;
            padding: 0;
        }
        
        .footer ul li {
            margin-bottom: 12px;
        }
        
        .footer ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer ul li a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            line-height: 40px;
            text-align: center;
            margin-right: 10px;
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background: #1e3a8a;
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 40px;
            padding-top: 25px;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
        }
        
        /* Responsive */
        @media (max-width: 991px) {
            .about-content-wrapper {
                flex-direction: column;
            }
            
            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 36px;
            }
            
            .about-text-container h2 {
                font-size: 32px;
            }
            
            .vm-header h2 {
                font-size: 32px;
            }
            
            .stats-container {
                grid-template-columns: 1fr;
            }
            
            .cta-content {
                padding: 50px 30px;
            }
            
            .cta-content h2 {
                font-size: 28px;
            }
        }
		
		 /* Main Content */
        .products-container {
            padding: 60px 0;
        }
        
        /* Sidebar Filter */
        .filter-sidebar {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            position: sticky;
            top: 100px;
            max-height: calc(100vh - 120px);
            overflow-y: auto;
        }
        
        .filter-sidebar::-webkit-scrollbar {
            width: 6px;
        }
        
        .filter-sidebar::-webkit-scrollbar-thumb {
            background: #1e3a8a;
            border-radius: 10px;
        }
        
        .filter-header {
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 2px solid #e2e8f0;
        }
        
        .filter-header h3 {
            font-size: 22px;
            font-weight: 700;
            color: #1e3a8a;
            margin: 0;
        }
        
        /* Accordion Styles */
        .accordion-button {
            background: #f8fafc;
            color: #1e293b;
            font-weight: 600;
            border: none;
            padding: 15px 20px;
            font-size: 16px;
            text-decoration: none;
        }
        
        .accordion-button:not(.collapsed) {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            color: white;
            box-shadow: none;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border: none;
        }
        
        .accordion-button::after {
            filter: brightness(0) invert(0);
        }
        
        .accordion-button:not(.collapsed)::after {
            filter: brightness(0) invert(1);
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 10px;
            border-radius: 12px !important;
            overflow: hidden;
        }
        
        .accordion-body {
            padding: 15px 20px;
            background: white;
        }
        
        .category-link {
            text-decoration: none;
            color: inherit;
            flex-grow: 1;
        }
        
        .category-link:hover {
            color: inherit;
        }
        
        .product-checkbox {
            display: flex;
            align-items: center;
            padding: 10px 15px;
            margin-bottom: 8px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: #f8fafc;
        }
        
        .product-checkbox:hover {
            background: #e0e7ff;
            transform: translateX(5px);
        }
        
        .product-checkbox input[type="checkbox"] {
            width: 18px;
            height: 18px;
            margin-right: 12px;
            cursor: pointer;
            accent-color: #1e3a8a;
        }
        
        .product-checkbox label {
            cursor: pointer;
            margin: 0;
            flex-grow: 1;
            font-size: 14px;
            color: #475569;
            font-weight: 500;
        }
        
        .product-checkbox input[type="checkbox"]:checked + label {
            color: #1e3a8a;
            font-weight: 600;
        }
        
        /* Products Grid */
        .products-content {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        
        .category-section {
            margin-bottom: 50px;
        }
        
        .category-heading {
            font-size: 32px;
            font-weight: 700;
            color: #1e3a8a;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #e0e7ff;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .category-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
        }
        
        .products-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        .product-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
            border: 2px solid transparent;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(30, 58, 138, 0.15);
            border-color: #1e3a8a;
        }
        
        .product-image-wrapper {
            position: relative;
            /* height: 250px; */
            overflow: hidden;
            background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
        }
        
        .product-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            /* padding: 30px; */
            transition: all 0.4s ease;
        }
        
        .product-card:hover .product-image-wrapper img {
            transform: scale(1.1) rotate(3deg);
        }
        
        .product-info {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .product-category-tag {
            color: #64748b;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
            display: inline-block;
            padding: 4px 12px;
            background: rgba(30, 58, 138, 0.1);
            border-radius: 12px;
            width: fit-content;
        }
        
        .product-name {
            font-size: 20px;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 12px;
            line-height: 1.4;
        }
        
        .product-description {
            color: #64748b;
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 20px;
            flex-grow: 1;
			max-height:250px;
			overflow-y:auto;
        }
        
        .product-footer {
            margin-top: auto;
            padding-top: 20px;
            border-top: 1px solid #e2e8f0;
        }
        
        .btn-enquire {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            border: none;
            border-radius: 12px;
            color: white;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            text-decoration: none;
        }
        
        .btn-enquire:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
            color: white;
        }
        
        .btn-enquire i {
            font-size: 18px;
        }
        
        /* Selected Products Section */
        .selected-products-section {
            display: none;
        }
        
        .selected-products-section.show {
            display: block;
        }
        
        .selected-heading {
            font-size: 32px;
            font-weight: 700;
            color: #dc2626;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #fecaca;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .selected-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
        }
        
        .clear-selection-btn {
            background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
            border: none;
            padding: 10px 25px;
            border-radius: 25px;
            color: white;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            margin-left: auto;
        }
        
        .clear-selection-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(220, 38, 38, 0.3);
        }
        
        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 80px 20px;
            background: #f8fafc;
            border-radius: 20px;
        }
        
        .empty-state i {
            font-size: 80px;
            color: #cbd5e1;
            margin-bottom: 20px;
        }
        
        .empty-state h3 {
            color: #1e293b;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .empty-state p {
            color: #64748b;
        }
        
        /* Mobile Filter Toggle */
        .mobile-filter-btn {
            display: none;
            width: 100%;
            margin-bottom: 20px;
            padding: 15px;
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            border: none;
            border-radius: 12px;
            color: white;
            font-weight: 600;
            font-size: 16px;
        }
        
        /* Footer */
        .footer {
            background: #1e293b;
            color: white;
            padding: 60px 0 20px;
            margin-top: 80px;
        }
        
        .footer h5 {
            color: #fbbf24;
            margin-bottom: 20px;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 40px;
            padding-top: 25px;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
        }
        
        /* Responsive */
        @media (max-width: 991px) {
            .filter-sidebar {
                position: fixed;
                top: 0;
                left: -100%;
                width: 320px;
                max-width: 85%;
                height: 100vh;
                max-height: 100vh;
                z-index: 1050;
                transition: all 0.3s ease;
                border-radius: 0;
            }
            
            .filter-sidebar.show {
                left: 0;
            }
            
            .mobile-filter-btn {
                display: block;
            }
            
            .filter-overlay {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0,0,0,0.5);
                z-index: 1040;
            }
            
            .filter-overlay.show {
                display: block;
            }
            
            .products-row {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 32px;
            }
            
            .products-content {
                padding: 20px;
            }
            
            .category-heading {
                font-size: 24px;
            }
        }