/* Additional styles for sections */
.why-choose-us,
.product-services,
.internet-packages {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.why-choose-us h2,
.product-services h2,
.internet-packages h2 {
    text-align: center;
    margin-bottom: 30px;
}

h2 {
    font-size: 3em;
            color: #333;
            margin-bottom: 20px;
            text-align: center;
            letter-spacing: 2px;
            background: linear-gradient(90deg, rgba(0,136,255,1) 0%, rgba(0,204,136,1) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
}

.card {
    margin: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    opacity: 0;
    /* Start invisible */
    transform: translateY(50px);
    /* Start position (below) */
    transition: all 1s ease-in-out;
    /* Smooth animation */
}

/* When the card becomes visible */
.card.show {
    opacity: 1;
    transform: translateY(0);
    /* Move card to original position */
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

.card-body .material-icons {
    font-size: 100px;
    /* Larger size for modern icons */
    margin-bottom: 15px;
    color: #FFA500;
    /* Icon color */
}

.card-body img {
    max-width: 80px;
    /* Ensure the image doesn't exceed the width of the card */
    height: auto;
    /* Maintain aspect ratio */
    margin-bottom: 15px;
    display: block;
}

.card-title {
    margin-top: 15px;
    font-weight: bold;
}

.card-text {
    margin-top: 10px;
}