* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
body {
    background-color: #f4f4f4;
}
 /* Carousel container */
 .carousel-inner {
    background-color: black; 
    border-radius: 30px;
}
.carousel-item {
    position: relative;
    width: 100%;    
}
.carousel-caption {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    color:white;
    text-align: left;
  
    
}
.carousel-caption h2 {
    font-weight: bold;
    font-size: 0.8rem;
}
.carousel-caption p {
    font-size: 0.5rem;
}
.icon-box {
    text-align: center;
    }
    
    .icon-box i {
    display: inline-block;
    width: 50px; /* Adjust size */
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color:white; /* Change to your preferred color */
    color: #7252ab;
    font-size: 24px;
    }
    .icon-box p {
    font-size: 10px; /* Adjust size as needed */
    margin-top: 5px; /* Adds some spacing */
    }
    .mt-2 {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .footer {
        width: 100%;
        position: fixed;
        bottom: 0;
        left: 0;
        background-color:#7252ab; /* Change background color if needed */
        padding: 10px 0;
        box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
        display: flex;
        justify-content: space-around;
        align-items: center;
        text-align: center;
    }
    
    .footer a {
        flex: 1;
        text-decoration: none;
        color: #333; /* Change text color if needed */
        font-size: 14px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer i {
        font-size: 20px;
        margin-bottom: 5px;
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
        .footer {
            font-size: 12px;
        }
        .footer i {
            font-size: 18px;
        }
    }
    
    
    .footer a {
    text-align: center;
    color:white;
    text-decoration: none;
    }
    
    .footer i {
    font-size: 1.7rem;
    display: block;
    }
    
    .footer p {
    margin-top: 5px;
    font-size: 0.7rem;
    color: white;
    }