    .fw-medium {
        font-weight: 600 !important;
    }

    .fw-semi-bold {
        font-weight: 700 !important;
    }


    /* Hero Section Styles */
    .hero-section {
        background: var(--light);
        padding: 4rem 0 0 0;
        position: relative;
        overflow: hidden;
    }

    .hero-content {
        text-align: center;
        padding: 2rem 0 3rem 0;
        position: relative;
        z-index: 2;
    }

    .hero-title {
        font-size: 3.5rem;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        color: var(--primary);
        font-weight: 600;
        /* margin-bottom: 2.5rem; */
        line-height: 1.4;
    }

    .video-play-btn {
        display: inline-flex;
        align-items: center;
        border: 2px solid var(--primary);
        color: var(--primary);
        padding: 1rem 2.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all .5s ease;
        /* box-shadow: 0 8px 25px rgba(47, 187, 4, 0.3); */
        /* margin-bottom: 3rem; */
        position: relative;
        overflow: hidden;
    }

    .video-play-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left .5s;
    }

    .video-play-btn:hover::before {
        left: 100%;
        color: ;
    }

    .video-play-btn:hover {
        transform: translateY(-2px);
        color: var(--primarty);
    }

    .video-play-btn i {
        margin-right: 0.8rem;
        font-size: 1.2rem;
    }

    .hero-image-container {
        position: relative;
        width: 100%;
        height: 600px;
        overflow: hidden;
        z-index: 10;
    }

    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s ease;
    }

    .hero-image:hover {
        transform: scale(1.02);
    }

    /* Decorative Elements */
    .hero-section {
        position: relative;
        z-index: 2;
        overflow: hidden;
    }

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* Cover full height of the hero section */
        background: linear-gradient(135deg, rgba(47, 187, 4, 0.05) 0%, rgba(24, 29, 56, 0.02) 100%),
        url("../images/product-bg.jpg");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        z-index: 1;
        mix-blend-mode: overlay;
        /* blend the image into content */
        opacity: 0.3;
        /* adjust to suit your design */
    }


    /* Modal Styles */
    .modal-content {
        border: none;
        border-radius: 15px;
        overflow: hidden;
    }

    .modal-header {
        background: var(--primary);
        color: white;
        border-bottom: none;
    }

    .modal-header .btn-close {
        filter: invert(1);
    }

    .video-container {
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 56.25%;
        /* 16:9 aspect ratio */
    }

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.5rem;
        }

        .hero-subtitle {
            font-size: 1.1rem;
        }

        .hero-content {
            padding: 1.5rem 0 2rem 0;
        }

        .hero-image-container {
            height: 400px;
        }

        .video-play-btn {
            padding: 0.8rem 2rem;
            font-size: 1rem;
        }
    }

    @media (max-width: 576px) {
        .hero-title {
            font-size: 2rem;
        }

        .hero-subtitle {
            font-size: 1rem;
        }

        .hero-image-container {
            height: 300px;
        }

        .video-play-btn {
            padding: 0.7rem 1.5rem;
            font-size: 0.95rem;
        }
    }
