   .hero {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 50px;
        }

        .hero-text {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            border-radius: 20px;
            text-align: left;
        }

        .glossy-btn {
            background: linear-gradient(145deg, #fd7b93, #0072ff);
            color: rgb(255, 255, 255);
            border: none;
            padding: 12px 30px;
            font-size: 16px;
            border-radius: 50px;
            box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
            transition: all 0.3s ease-in-out;
        }

        .glossy-btn:hover {
            background: linear-gradient(145deg, #fb6984, #fd7b93);
            box-shadow: 0 8px 20px #fd7b93;
            transform: scale(1.05);
        }

        .glossy-outline-btn {
            background: transparent;
            border: 2px solid #fd7b93;
            color: #fd7b93;
            padding: 12px 30px;
            font-size: 16px;
            border-radius: 50px;
            transition: all 0.3s ease-in-out;
        }

        .glossy-outline-btn:hover {
            background: #fd7b93;
            color: white;
            box-shadow: 0 3px 7px rgba(0, 123, 255, 0.3);
            transform: scale(1.05);
        }

        .hero-text h1 {
            font-size: 42px;
            margin-bottom: 20px;
        }

        .hero-text p {
            margin-bottom: 20px;
            font-size: 18px;
        }

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

        .btn {
            background: #ed7b93;
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 6px;
        }

        .btn-outline {
            border: 2px solid #ed7b93;
            padding: 8px 18px;
            border-radius: 6px;
            color: #ed7b93;
            margin-left: 10px;
            text-decoration: none;
        }

        .features {
            padding: 50px;
            background: #fff;
            text-align: center;
        }

        .feature-list {
            display: flex;
            justify-content: space-around;
            margin-top: 30px;
        }

        .feature-card {
            background: #f1f5f9;
            padding: 5px;
            width: 100%;
        }

        .footer {
            text-align: center;
            padding: 20px;
            background: #f1f5f9;
            margin-top: 30px;
        }

        .register-container {
            max-width: 400px;
            margin: 50px auto;
            padding: 30px;
            background: #fff;
            border-radius: 8px;
        }

        .register-container h2 {
            text-align: center;
            margin-bottom: 20px;
        }

        .register-container input {
            width: 100%;
            padding: 10px;
            margin-bottom: 14px;
            border: 1px solid #ccc;
            border-radius: 6px;
        }

        .register-container button {
            width: 100%;
            padding: 12px;
            background: #ed7b93;
            color: #fff;
            border: none;
            border-radius: 6px;
            font-size: 16px;
        }

        .hero-img {
            text-align: center;
            background-color: transparent;
            /* Match this with your page background */
            padding: 0;
            margin: 0;
            border: none;

        }

        .feature-card {
            aspect-ratio: 16 / 9;
            position: relative;
            overflow: hidden;
            border-radius: 2px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
            margin-bottom: 10px;
        }

        .feature-card:hover {
            transform: scale(1.02);
        }

        .feature-card video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.8);
        }

        .feature-card .overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.65);
            opacity: 0;
            transition: opacity 0.4s ease;
            backdrop-filter: blur(4px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: #fff;
            text-align: center;
            padding: 10px;
        }

        .feature-card:hover .overlay {
            opacity: 1;
        }

        .feature-card .overlay h5 {
            font-size: 1.4rem;
            font-weight: bold;
        }

        .feature-card .overlay p {
            font-size: 0.875rem;
            line-height: 1.4;
            max-height: 120px;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 15px;
        }

        .feature-card .overlay button {
            border-radius: 25px;
        }
        @media (max-width: 575.98px) {
            .hero-text h1 {
                font-size: 23px !important;
                margin-bottom: 15px;
                text-align: center !important;
            }
        }

        @media (min-width: 576px) and (max-width: 991.98px) {
            .hero-text h1 {
                font-size: 28px !important;
                margin-bottom: 20px;
                text-align: center !important;
            }
        }

