﻿#intro {
    display: flex;
    align-items: center;
    padding: 60px 0; /* Adjusted padding to be equal top and bottom */
    min-height: 500px; /* Ensure minimum height for the hero section */
    display: flex;
    align-items: center;
}

#intro .intro-img {
    display: flex;
    align-items: center;
    justify-content: center;
}
    #intro .row {
        min-height: 400px; /* Minimum height for the content row */
    }

    #intro .pricing-tagline {
        background-color: rgba(255, 255, 255, 0.15);
        border-radius: 5px;
        padding: 10px 15px;
        margin: 15px 0;
        display: inline-block;
        border-left: 4px solid #18d26e; /* Green accent border */
        backdrop-filter: blur(5px); /* Creates a frosted glass effect */
    }

    #intro .highlight-text {
        display: block;
        color: #fff;
        font-size: 22px;
        font-weight: 800;
        margin-bottom: 5px;
    }

    #intro .price-text {
        color: #18d26e; /* Bright green for emphasis */
        font-size: 24px;
        font-weight: 800;
    }

/* Hero Carousel Styles */
#heroCarousel {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 5px solid rgba(255, 255, 255, 0.2);
}

    #heroCarousel .carousel-item {
        height: 400px; /* Fixed height for the carousel */
    }

        #heroCarousel .carousel-item img {
            object-fit: cover;
            width: 100%;
            height: 100%;
        }

    #heroCarousel .carousel-caption {
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 5px;
        padding: 10px;
        bottom: 20px;
    }

        #heroCarousel .carousel-caption h5 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
        }

        #heroCarousel .carousel-caption p {
            font-size: 14px;
            margin: 0;
        }

    #heroCarousel .carousel-indicators {
        bottom: 0;
    }

    #heroCarousel .carousel-control-prev,
    #heroCarousel .carousel-control-next {
        width: 10%;
    }

/* Responsive adjustments */
@media (max-width: 991px) {
    #heroCarousel .carousel-item {
        height: 300px;
    }

    #heroCarousel .carousel-caption {
        bottom: 10px;
    }
}

@media (max-width: 767px) {
    #intro .intro-img {
        margin-top: 30px;
    }

    #heroCarousel .carousel-caption {
        display: none !important;
    }
}

/* Key Benefits Section */
#key-benefits {
    padding: 60px 0;
    background: #f5f8fd;
}

    #key-benefits .benefits-boxes {
        margin-top: 30px;
    }

    #key-benefits .benefit-box {
        padding: 30px;
        position: relative;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
        transition: all 0.3s ease-in-out;
        border-radius: 8px;
        z-index: 1;
        min-height: 185px;
        margin-bottom: 30px;
    }

        #key-benefits .benefit-box:hover {
            transform: translateY(-5px);
        }

    #key-benefits .benefit-icon {
        margin-bottom: 15px;
    }

        #key-benefits .benefit-icon i {
            font-size: 32px;
            line-height: 1;
            color: #007bff;
        }

    #key-benefits .benefit-box h4 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    #key-benefits .benefit-box p {
        font-size: 14px;
        margin-bottom: 0;
    }

#client-testimonials {
    padding: 60px 0;
    background-color: #f5f8fd;
}

    #client-testimonials .testimonial-item {
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
        margin: 30px 0;
        padding: 30px;
        background: #fff;
        border-radius: 8px;
        text-align: center;
    }

    #client-testimonials .testimonial-content p {
        font-style: italic;
        margin: 0 0 15px 0;
        padding: 0 100px;
        font-size: 18px;
        line-height: 1.6;
        position: relative;
        color: #444;
    }

        #client-testimonials .testimonial-content p .fa-quote-left,
        #client-testimonials .testimonial-content p .fa-quote-right {
            color: #007bff;
            font-size: 20px;
            padding: 0 10px;
        }

    #client-testimonials .testimonial-content h4 {
        font-size: 18px;
        color: #111;
        margin-bottom: 5px;
        font-weight: bold;
    }

    #client-testimonials .testimonial-content h5 {
        font-size: 16px;
        color: #777;
        font-weight: normal;
    }

.benefits-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.benefit-item {
    display: inline-flex;
    align-items: center;
    margin: 5px 10px;
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
}

    .benefit-item i.fas.fa-check-circle {
        color: #4caf50; /* Green checkmark */
        font-size: 1.3rem;
        margin-right: 8px;
    }

/* For responsive design */
@media (max-width: 768px) {
    .benefit-item {
        font-size: 1.1rem;
    }
}