/* Hero Section */
.hero-section {
    position: relative;
    height: 100%;
    background-image: url('img/demo\ banner.jpg');
    background-size: cover;
    /* background-position: center; */
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

   /* Responsive Design */
   @media screen and (max-width: 768px) {
    .hero-section {
        height: 200px;
        background-position: center;
    }

    .hero-textpricing h1 {
        font-size: 28px;
    }

    .hero-textpricing p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 3vh 15px;
    }
}

/* video section */
.video-section {
    background-image: url('img/demo\ bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.mobile-frame {
    width: 80vw;
    height: 45vw;
    max-width: 642px;
    max-height: 287px;
    background-color: #000;
    border-radius: 30px;
    overflow: hidden;
    border: 5px solid #000;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.mobile-frame::before {
    content: '';
    width: 4px;
    height: 50px;
    background-color: #000;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 10px;
}

.camera {
    width: 12px;
    height: 12px;
    background-color: #000;
    border-radius: 50%;
    position: absolute;
    top: 35%;
    left: 1%;
}

.mobile-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .mobile-frame {
        width: 85vw;
        height: 38vw;
        max-width: 550px;
        max-height: 250px;
    }

    .camera {
        width: 11px;
        height: 11px;
        top: 28%;
        left: 2%;
    }

    .mobile-frame::before {
        height: 50px;
        left: 10px;
        top: 50%;
    }
}

@media (max-width: 480px) {
    .mobile-frame {
        width: 90vw;
        height: 42vw;
        max-width: 350px;
        max-height: 200px;
    }

    .camera {
        width: 9px;
        height: 9px;
        top: 29%;
        left: 2%;
    }

    .mobile-frame::before {
        height: 27px;
        left: 9px;
        top: 53%;
    }
}

/* Form Section */
.form-section {
    background-color: #efefef;
    padding: 30px;
    margin: 85px auto;
    width: 80%;
    border-radius: 20px;
    box-shadow: 4px 6px rgba(0, 0, 0, 0.3);

}

.form-section h2 {
    font-family: 'Rushford Clean';
    font-size: 1.5rem;
    color: #4a4a9a;
    margin-bottom: 100px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

form label {
    font-family: 'Rushford Clean';
    font-size: 1.2rem;
    color: #333;
    flex: 0 0 30%;
}

form input,
form textarea {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    box-shadow: 0 4px 6px -3px rgba(0, 0, 0, 0.4);
}


form input:focus,
form textarea:focus {
    border-color: #4a4a9a;
    outline: none;
}

form textarea {
    resize: none;
}

.register-btn {
    background: #4d4da5;
    color: white;
    padding: 4px 11px;
    border: none;
    border-radius: 22px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1.2rem;
    text-transform: uppercase;
    width: 120px;
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.4);
    font-family: 'Rushford Clean';

}

.register-btn:hover {
    background-color: #373773;
}

.required {
    color: rgba(255, 0, 0, 0.742);
    margin-left: 5px;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .form-section {
        width: 87%;
        padding: 20px;
        margin: 5px auto;
    }

    .form-section h2 {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

    .form-group {
        flex-direction: column;
        gap: 8px;
    }

    form label {
        flex: none;
        width: 100%;
        margin-bottom: 5px;
        font-size: 1rem;
    }

    form input,
    form textarea {
        width: 100%;
    }

    .register-btn {
        width: 100%;
        margin-top: 10px;
    }
}

@media screen and (max-width: 480px) {
    .form-section {
        padding: 15px;
    }

    .form-section h2 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    form {
        gap: 12px;
    }

    form label {
        font-size: 0.9rem;
    }

    form input,
    form textarea {
        padding: 8px;
        font-size: 0.8rem;
    }

    .register-btn {
        font-size: 1rem;
        padding: 8px;
    }
}
/* Tablet Devices */
@media screen and (max-width: 768px) {
    .register-btn {
        width: 3cm;
        padding: 8px 15px;
        font-size: 1.1rem;
        display: block;
    }
}

/* Mobile Devices */
@media screen and (max-width: 480px) {
    .register-btn {
        width: 30%;
        padding: 6px 12px;
        font-size: 1rem;
        border-radius: 18px;
        box-shadow: 1px 3px 4px rgba(0, 0, 0, 0.3);
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 320px) {
    .register-btn {
        font-size: 0.9rem;
        padding: 5px 10px;
        border-radius: 15px;
    }
}

.demo-sticker {
    position: absolute;
    right: -118px;
    top: -27px;
}

.demo-sticker2 {
    position: absolute;
    left: -34px;
    bottom: -31px;
}

.demo-sticker img,
.demo-sticker2 img {
    width: 67%;
    transform: rotate(10deg);
}

/* Hide on smaller screens */
@media screen and (max-width: 768px) {
    .demo-sticker,
    .demo-sticker2 {
        display: none;
    }
}
@media screen and (max-width: 1024px) {
    .demo-sticker,
    .demo-sticker2 {
        display: none;
    }
}


