.container{
    background-color: rgba(0, 0, 0, 0.010);
    display: grid;
    grid-template-columns: repeat(2,1fr);
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 1%;
}
.box{
    /* border: 1px solid black; */
    margin-top: 20px;
} 
.box:nth-child(2){
    background-color: pink;
    height: 415.16px;
    width: 640px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
}

.box:nth-child(2)::before {
    content: "";
    position: absolute;
    top: -50px; /* Adjust as needed */
    left: -50px; /* Adjust as needed */
    width: 100%;
    height: 100%;
    background: url('your-svg-file-path.svg') no-repeat center;
    background-size: contain; /* Or 'cover', depending on how you want it to scale */
    z-index: -1; /* Ensure it stays behind the image */
}

.box:nth-child(3)
{
    grid-column: 1/-1;
    grid-row: 2/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.home-hero{
    height: 369.2px;
    width: 600px;
}
@media (max-width: 768px) {
    .container{
        grid-template-columns: repeat(1,1fr);
    }
}


/** number increment start-container*/
/* Default styles */
.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    text-align: center;
}

.stat-item {
    flex: 1;
    margin: 0 10px;
}

.circle {
    background-color: #E8F2FF;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #333;
    margin: 0 auto 20px;
}

.description {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.sub-description {
    font-size: 1rem;
    color: #555;
}

/* Scroll Animation */
@keyframes scrollEffect {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.stat-item {
    animation: scrollEffect 1s ease-in-out;
}

/* Media Query for Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .stat-item {
        margin-bottom: 30px;
        width: 100%;
    }

    .circle {
        width: 150px;
        height: 150px;
        font-size: 1.5rem;
    }

    .description {
        font-size: 1rem;
    }

    .sub-description {
        font-size: 0.9rem;
    }
}

/** start container */

/* form start here */
/* Form container styles */
.form-container {
    max-width: 100%; /* Full width */
    margin: 50px auto;
    background-color: #ffffff; /* White background for the form */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    background-color: #f2f6fc; /* Light blue background similar to the screenshot */
}

h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
}

form {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 20px; /* Space between input groups */
    justify-content: space-between;
}

.input-group {
    flex: 1 1 calc(25% - 20px); /* Each input takes up 25% width minus the gap */
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    font-size: 14px;
    color: #333;
}

.input-group input {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 10px;
    background-color: #e9eff8; /* Light blue background for inputs */
}

.required {
    color: red;
}

.captcha {
    flex: 1 1 100%; /* Make captcha full width on large screens */
    margin-bottom: 30px;
    text-align: left;
}

.submit-btn {
    padding: 16px 35px;
    background-color: #4f8ab7; /* Blue background for the button */
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease;
    width: 100%; /* Button spans full width */
}

.submit-btn:hover {
    background-color: #3b6c92; /* Darker blue on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Stack form fields on small screens */
    .input-group {
        flex: 1 1 100%; /* Each input will take full width */
    }

    .submit-btn {
        width: 100%;
    }
}


/* form end here */