.carousel-item img {
    height: auto;  /* Remove the fixed height */
    max-height: 100%;  /* Allow the image to take the full height of the container */
    width: 100%;  /* Maintain 100% width */
    object-fit: contain;  /* Ensure the full image is shown without clipping */
    padding: 10px;  /* Optional: Add padding for spacing */
}

.carousel-title {
    display: none;  /* Hide the title to avoid layout conflicts */
}

/* Custom Styles for Carousel Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.3);  /* Semi-transparent background */
    border-radius: 50%;  /* Circle shape for better visibility */
    padding: 20px;  /* Add padding for larger icon size */
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: rgba(0, 0, 0, 0.8);  /* Darker on hover */
}

/* Override the default control button background */
.carousel-control-prev,
.carousel-control-next {
    width: 2%;  /* Reduce size */
    background: none;  /* Remove default background */
    color: #ffffff;  /* Make the arrow buttons white */
}

.carousel-control-prev {
    left: 20px;  /* Move the "previous" button 10px inside from the left edge */
}

.carousel-control-next {
    right: 20px;  /* Move the "next" button 10px inside from the right edge */
}

@media (max-width: 768px) {
    .carousel-item img {
        max-height: 250px;  /* Use max-height for mobile devices */
    }
}

.card {
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.02);  /* Slight zoom effect on hover */
}

.card-title {
    font-weight: 600;
    font-size: 1.2rem;
}

.card-footer {
    border-top: none;
    text-align: center;
}

.footer h5 {
    font-size: 1.2rem;
    border-bottom: 1px solid #888;
    padding-bottom: 10px;
}

.footer-link {
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.footer-link:hover {
    border-bottom: 1px solid #ffffff;
}

.premium-icons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.premium-icons .bi,
.premium-icons .fas,
.premium-icons img {
    margin: 0 10px;  /* Add spacing between icons */
    color:
}

.premium-icons .bi:hover,
.premium-icons .fas:hover {
    transform: scale(1.1);  /* Slightly enlarge the icon on hover */
    transition: transform 0.2s ease-in-out;
}

/* Premium Feature List Styles */
.premium-feature-list {
    display: flex;
    flex-direction: column;  /* Stack icons and text vertically */
    align-items: center;     /* Center the content */
    justify-content: center; /* Align vertically */
}

/* Individual Feature Item */
.premium-feature-item {
    margin-bottom: 20px;  /* Add spacing between each item */
}

/* Icon Styles */
.premium-feature-item i {
    font-size: 4rem;  /* Make the icons larger */
    transition: transform 0.3s ease, color 0.3s ease;  /* Smooth hover effects */
}

/* Text Styles */
.premium-feature-item p {
    font-weight: bold;
    font-size: 1.2rem;
    color: #343a40;  /* Dark text color */
}

/* Hover Effects for Icons */
.premium-feature-item i:hover {
    transform: scale(1.1);  /* Enlarge slightly on hover */
}

/* Customize individual icon colors */
.premium-icons .bi-x-circle-fill {
    color: #dc3545;  /* No Ads Icon - red */
}

.premium-icons .bi-camera-video-fill {
    color: #17a2b8;  /* Video Recording Icon - cyan */
}

.premium-icons .bi-star-fill {
    color: #ffc107;  /* Premium Star Icon - gold */
}

/* Horizontal Divider Styling */
.section-divider {
    border: none;  /* Remove default border */
    height: 2px;   /* Set custom height */
    background: linear-gradient(to right, #007bff, #6c757d, #007bff);  /* Gradient color */
    margin: 40px auto;  /* Space around the divider */
    width: 70%;  /* Width of the divider */
}

body, html {
    font-family: 'Arial', sans-serif;
    line-height: 1.7;
    background-color: #f8f9fa;
}