    /* Featured Products */
        .section {
            padding: 80px 0;
        }

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

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            position: relative;
            padding-bottom: 15px;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 25%;
            width: 50%;
            height: 3px;
            background-color: var(--secondary);
        }

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

        .products {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }

        .product-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid var(--border);
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .product-image {
            height: 200px;
            background-color: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            /* padding: 20px; */
            border-bottom: 1px solid var(--border);
            position: relative;
        }

        .product-image img {
            max-width: 100%;
            /* max-height: 160px; */
            transition: transform 0.3s ease;
        }

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

        .product-details {
            padding: 25px;
        }

        .product-name {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .product-category {
            background-color: rgba(0, 60, 113, 0.1);
            color: var(--primary);
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 500;
            display: inline-block;
            margin-bottom: 15px;
        }

        .product-specs {
            font-size: 0.95rem;
            color: var(--gray);
            margin-bottom: 20px;
            min-height: 90px;
        }

        .view-details {
            display: inline-block;
            padding: 10px 25px;
            background-color: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 500;
            transition: all 0.3s;
        }

        .view-details:hover {
            background-color: var(--primary-light);
        }

        /* Categories Section */
        .categories-section {
            background-color: var(--light-gray);
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }

        .category-card {
            background-color: white;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 250px;
            display: flex;
            align-items: flex-end;
        }

        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .category-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: transform 0.5s ease;
            z-index: 1;
        }

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

        .category-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 60, 113, 0.8) 0%, rgba(0, 60, 113, 0.2) 100%);
            z-index: 2;
        }

        .category-name {
            position: relative;
            z-index: 3;
            padding: 20px;
            color: white;
        }

        .category-name h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        .category-name a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
        }

        .category-name a:hover {
            color: var(--secondary);
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            border-radius: 8px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid var(--border);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 25px;
        }

        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .service-card p {
            color: var(--gray);
        }

        /* About Section */
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-image {
            flex: 1;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .about-image img {
            width: 100%;
            display: block;
            transition: transform 0.5s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-text {
            flex: 1;
        }

        .about-text h2 {
            color: var(--primary);
            margin-bottom: 25px;
        }

        .about-text p {
            margin-bottom: 20px;
            color: var(--gray);
        }

        .about-features {
            margin-top: 30px;
        }

        .about-features li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .about-features li i {
            color: var(--secondary);
            font-size: 1.2rem;
            margin-right: 10px;
            margin-top: 5px;
        }

        /* Cases Section */
        .cases-section {
            background-color: var(--light-gray);
        }

        .case-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .case-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .case-image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

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

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

        .case-content {
            padding: 25px;
        }

        .case-content h3 {
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .case-content p {
            color: var(--gray);
            margin-bottom: 20px;
        }

        .read-more {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }

        .read-more:hover {
            color: var(--secondary);
        }

   