body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
}


.hero-section {
    position: relative;
    height: 100vh;
    background-image: url('../img/DigitopHero.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content a:hover, .btn-color:hover {
    background: white !important;
    color: #8b5cf6 !important;
}

.hero-content a, .btn-color {
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.text-el {
    color: #8b5cf6 !important;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 1rem;
    background-color: #f9f9f9;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card .card-title {
    font-weight: 700;
    color: #0f0f0f;
}

.card .card-text {
    color: #6c757d;
}

.card i {
    background-color: #8b5cf6;
    color: white;
    padding: 1rem;
    border-radius: 50%;
    display: inline-block;
}

@media (max-width: 767px) {
    .card i {
        font-size: 2rem;
        padding: 0.75rem;
    }

    .card .card-title {
        font-size: 1.2rem;
    }
}

.swiper-slide {
    height: auto !important;
}

.swiper-slide .card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.swiper-slide .card-body {
    flex: 1;
}

.i-style{
    width: 80px;
    height: 80px;
}

footer .text-muted {
    color: white !important;
}