body {
    font-family: "Poppins", sans-serif;
    background-color: #ffffff;
}
.card {
    border-radius: 1rem;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.en {
    font-family: "Poppins", sans-serif;
}

.ta-m {
    font-family: "Mukta Malar", sans-serif;


}

.ta-c {
    font-family: "Catamaran", sans-serif;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* footer {
    background-color: #222;
} */

.navbar {
    background-color: #b50909;
}

.hero {
    background-color: #ff950041;
    color: #000;
}
footer {
    background-color: #b30000;
    color: white;
}
/* .card {
    border: 1px solid #ffcc00;
} */

/* Ensuring all boxes are the same height */
.icon-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px; /* Minimum height to ensure consistency */
}

/* Adjustments for icon and text styling */
.icon-box i {
    color: #ffcc00; /* Yellow for icons */
    margin-bottom: 20px;
}

.icon-box h4 {
    color: #b30000; /* Red for headings */
    font-weight: bold;
    font-size: 1.2rem;
}

.icon-box p {
    color: #000; /* Muted text color for description */
}

/* Adding some padding and a subtle shadow to each box */
.icon-box {
    padding: 30px;
    border-radius: 10px;
    background-color: rgb(255 248 87 / 11%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.icon-box:hover {
    transform: translateY(-5px); /* Hover effect */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Testimonial Box Styling */
.testimonial-box {
    background-color: #c4c2be6b;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 200px; /* Uniform box height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-box .lead {
    font-size: 1.1rem;
    color: #333;
    font-style: italic;
}

.testimonial-box p {
    margin-bottom: 0;
}

.testimonial-box .font-weight-bold {
    color: #b30000; /* Red color for the name */
    font-size: 1.1rem;
    margin-top: 10px;
}

.testimonial-box .text-muted {
    color: #777;
    font-size: 0.9rem;
}

.testimonial-box:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px); /* Hover effect */
}

/* Ensure the section has some space and padding */
#testimonials {
    padding-top: 50px;
    padding-bottom: 50px;
}

/* Form Container Styling */

.form-container {
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.form-border {
    background: #ffcc00;
}

.form-container h2 {
    font-weight: 600;
    padding-bottom: 10px;
}

.form-container .form-label {
    font-weight: bold;
    color: #333;
}

.form-container .form-control {
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.form-container .form-control:focus {
    border-color: #ffcc00;
    box-shadow: 0 0 5px rgba(255, 204, 0, 0.6);
}

.form-container .btn-warning {
    background-color: #ffcc00;
    color: #333;
    border-radius: 8px;
    margin-bottom: 20px;
}

.form-container .btn-warning:hover {
    background-color: #ff8000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-container .col-md-4 {
        margin-bottom: 20px;
    }
}
