body {
    overflow-x: hidden;  /* prevent horizontal scroll */
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

/* ==============================
   Hero Section
============================== */

.ef-page-hero {
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 30vh;        
    display: flex;          
    align-items: center;     
    justify-content: center;  
    text-align: center;      
    background-image: url('../img/bg-3.png');
    height: 40vh;
}

.page-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 50px;
    font-weight: 700;
    color: #000 !important;
}

.breadcrumb-link {
    font-size: 25px;
    color: #000 !important;
}

.breadcrumb-link a {
    color: #000 !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-link a:hover {
    color: #6255FA !important;
}

.breadcrumb-link .separator {
    margin: 0 8px;
    color: #000;
}

.breadcrumb-link .active {
    color: #6255FA !important;
    font-weight: 400;
}

.section-title {
    font-family: "Afacad", sans-serif;
    margin-bottom: 55px;
}

.section-title .sub-heading {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: #6255FA !important;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title .sub-heading i {
    color: #6255FA !important;
    margin-right: 8px;
    font-size: 20px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000 !important;
    line-height: 1.4;
    margin: 0;
}

.section-title h2 span {
    color: #6255FA !important;
}

.section-heading-wrapper {
    text-align: left;
}

.section-heading .sub-heading {
    display: block;
    color: #6255FA !important;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.section-heading .sub-heading i {
    margin-right: 8px;
}

.section-heading h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000 !important;
}

.section-heading h2 span {
    color: #6255FA !important;
}

.pricing-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.pricing-card .card-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.card-icon i {
    font-size: 2.5rem;
    color: #6255FA !important;
}

.pricing-card .card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pricing-card .price {
    font-size: 2.5rem;
    color: #6255FA !important;
    margin-bottom: 1rem;
}

.pricing-card .features li {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.pricing-card .features li i {
    color: #6255FA !important;
    margin-right: 8px;
}

.btn-purple {
    background-color: #6255FA !important;
    color: white !important;
    border: none;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn-purple:hover {
    background-color: #4e48c7 !important;
    color: white !important;
}

.pricing-card button {
    background-color: #6255FA !important;
    color: white !important;
    border: none;
    padding: 10px 25px;
    cursor: pointer;
    border-radius: 50px;
    margin-top: 10px;
    font-weight: bold;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.pricing-card button:hover {
    transform: scale(1.1);
    background-color: #aea2e4 !important;
}

@media (min-width: 992px) {
    .pricing-card {
        min-height: 100%;
    }
}

/* ====== Animation and transform for slide-in effects ====== */

.card-slide-left {
    transform: translateX(-50px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.card-slide-right {
    transform: translateX(50px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.card-slide-left.aos-animate,
.card-slide-right.aos-animate {
    transform: translateX(0);
    opacity: 1;
}

.pricing-card:hover {
    transform: scale(1.05);
    z-index: 10;
}

.btn-whatsapp {
    background-color: #6255FA !important;
    color: white !important;
    font-weight: 600 !important;
    width: 37%;
    margin-bottom: 1rem;
    transition: background-color 0.3s ease;
}

.btn-whatsapp:hover {
    background-color:#443ab8 !important;
    color: white !important;
}

@media(max-width:480px){
    .btn-whatsapp{
        width:45%
    }
}