.main-bg{
    width: 100vw;
    height: 90vh;
    background-image: url('../../assets/images/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; 
}

.container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 90vh;
    width: 100vw;
    padding: 20px;
    box-sizing: border-box;
    text-align: left;
}

.content {
    max-width: 100%; /* Ensure content does not overflow */
    word-wrap: break-word; /* Handle long words */
}

.welcome{
    font-size: 30px;
    font-weight: 600;
}

.brand-name{
    color: #4f5aed;
    font-size: 100px;
    font-weight: 600;
}

.services{
    background-color: #613EEA;
        display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 90vh;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    text-align: left;
}

.services .content{
    width: 70%;
    margin: 0 auto;
}
.services img{
    height: 285px; width: 100%; display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 10px; /* Reduce padding on smaller screens */
    }
}


