.hero {
    position: relative;
    height: 280px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-heading {
    color: white;
    font-size: 3.5rem;
    text-align: center;
    z-index: 1;
}

.description-section {
    padding: 50px 15px;
}

.description-heading {
    font-size: 4rem;
    margin-bottom: 20px;
    color: rgb(46, 6, 116);
}

.description-text {
    font-size: 20px;
    line-height: 1.5;
    color: rgb(4, 4, 72);
}

.description-image {
    max-width: 100%;
    height: auto;
}

.explore-button {
    background-color: #201654;
    color: white;
    padding: 10px 20px;
    border-radius: 15px;
    text-transform: none;
    margin-top: 15px;
    transition: background-color 0.3s, transform 0.2s;
}

.explore-button:hover {
    background-color: #876b9f;
    transform: translateY(-2px);
}

.explore-button:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(8, 37, 67, 0.5);
}

/**/

.section-heading {
    font-size: 3.3rem;
    margin-bottom: 40px;
    margin-top: 90px;
    text-align: center;
    color: rgb(46, 6, 116);
}

.custom-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease-in-out;
    height: 100%;
}

.custom-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-img {
    height: 300px;
    background-size: cover;
    background-position: center;
}

.card-body {
    padding: 15px;
}

.card-title {
    font-size: 1.75rem;
    margin-bottom: 10px;
    color: #2e0674;
}

.card-text {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #333;
}

@media (max-width: 768px) {
    .custom-card {
        margin-bottom: 20px;
    }

    .col-sm-6 {
        margin-bottom: 20px;
    }
}

.why-choose-us-section .row {
    justify-content: flex-start !important;
    margin-left: 0; 
    margin-right: 0; 
    padding-left: 15px; 
    padding-right: 15px;
}


.whatsapp-icon {
    background-color: #fcfbfd; 
    border-radius: 50%; 
    box-shadow: 0 2px 5px rgba(15, 15, 15, 0.3); 
    padding: 18px; 
}