/* General Styling */
body {
    line-height: 1.6;
    background-color: white;
    color: #333;
    margin: 0;
    padding: 0;
}

h2 {
    font-weight: bold;
    color: black;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
}

h2::after {
    content: '';
    display: none; /* This will remove the underline */
}


/* Common Box Styling */
.box {
    width: 100%;
    max-width: 300px; /* Restrict the max width */
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for realism */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin: 10px;
    padding: 20px;
    box-sizing: border-box; /* Includes padding in box dimensions */
}

/* Hover Effect */
.box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

/* Programs Section */
.programs .row {
    display: flex;
    flex-wrap: wrap; /* Ensures wrapping */
    justify-content: space-between; /* Space between cards */
    gap: 20px; /* Add consistent gap */
}

/* Adjust Columns */
.programs .col-md-4 {
    flex: 1 1 calc(33.333% - 20px); /* Three boxes in a row with gap */
    max-width: calc(33.333% - 20px); /* Responsive sizing */
    display: flex;
    justify-content: center;
    align-items: stretch; /* Ensures cards stretch evenly */
}

/* Card Styles */
.programs .card {
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    height: 100%; /* Ensures dynamic height adjustment */
}

/* Card Title Styles */
.programs .card-title {
    font-size: 1.5rem;
    color: black;
    margin-bottom: 10px;
    transition: color 0.3s;
    text-align: center;
}

.programs .card-title:hover {
    color: #f3d617;
}

/* Responsive Design */
@media (max-width: 768px) {
    .programs .col-md-4 {
        flex: 1 1 100%; /* Single box per row on smaller screens */
        max-width: 100%;
    }
}

/* Features Section */
.features .feature {
    width: 300px;
    height: 300px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.features .feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Testimonials Section */
/* Reset default margin and padding */
body, html {
    margin: 0;
    padding: 0;
}
/* Set the width of the container */
.testimonials {
    max-width: 1200px;  /* Adjust based on your needs */
    margin: 0 auto;
    padding: 20px;
}

/* Ensure the slider container has full width */
.testimonial-slider {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

/* Style for individual slides */
.testimonial-slider .slide {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    background-color: #f7f7f7;  /* Light background color for slides */
    border-radius: 10px;  /* Slightly rounded corners */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

/* Style for the testimonial text */
.testimonial-slider .slide blockquote {
    font-size: 18px;
    font-style: italic;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.testimonial-slider .slide footer {
    font-size: 16px;
    font-weight: bold;
    color: #555;
    margin-top: 15px;
}

/* Styling for the navigation arrows */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.owl-prev, .owl-next {
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 30px;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.owl-prev:hover, .owl-next:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

/* Optional: Add dots if you want pagination */
.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dots .owl-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.owl-dots .owl-dot.active {
    background-color: #007bff;
}

.owl-dots .owl-dot:hover {
    background-color: #0056b3;
}

/* Buttons Styling */
button {
    background-color: #f3d617; /* Dark Yellow */
    color: white;
    font-size: 1rem;
    padding: 11px 20px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

button:hover {
    background: #e0c800; /* Lighter Yellow on hover */
}

button.prev {
    left: 10px;
}

button.next {
    right: 10px;
}

/* FAQ Section */

.contact-form input, .contact-form textarea {
    border-radius: 0.375rem;
    /* width: 150px; */
     /* Optional: for rounded input borders */
}
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Remove default blue outline for focus */
.accordion-button:focus {
    box-shadow: none; /* Removes focus box-shadow (blue color) */
    border-color: #ccc; /* Optional: change the border color to something neutral */
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa; /* Optional: Light background when expanded */
    border-color: #ccc; /* Neutral border color when expanded */
}

.accordion-item .accordion-button {
    border: 1px solid #ccc; /* Default neutral border for accordion buttons */
}
.about, .programs, .features, .testimonials, .faq, .contact {
    animation: fadeInUp 1s ease-in-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .box {
        width: 100%;
        height: auto;
        padding: 20px;
    }

    .features .feature {
        width: 100%;
        height: auto;
    }

    blockquote {
        font-size: 1rem;
    }

    button {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
}

.textareaa text{
    width: 100px;
}