/* Enhanced Product Card Styling */
.products {
    padding: 60px 0;
}

.light-background {
    background-color: #f8f9fa; /* Matches Stats Section light-background */
}

.product-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: scale(1.05) translateY(-10px); /* Zoom out with lift */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-image {
    height: 400px; /* Adjusted to fit tallest image (1265px) with aspect ratio */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.card-body {
    padding: 20px;
    background: #ffffff;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.card-title {
    font-size: 1.25rem;
    color: #1e1e1e;
    font-weight: 600;
    margin-bottom: 10px;
}

.card-text {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.text-success {
    color: #28a745 !important;
    font-size: 1.1rem;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn-cute {
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-primary {
    background-color: #007bff;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #6c757d;
    color: #fff;
    border: none;
}

.btn-secondary:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
}

.btn-cute i {
    font-size: 1rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e1e1e;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Cute and Modern Touches */
.product-card {
    background: linear-gradient(135deg, #fff 0%, #f0f2f5 100%);
}

.card-body {
    border-top: 2px solid #007bff;
}

/*contact*/
/* Contact Section Styling */
.contact {
    padding: 60px 0;
}

.light-background {
    background-color: #f8f9fa; /* Matches Stats Section light-background */
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e1e1e;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.info-item {
    margin-bottom: 20px;
}

.info-item i {
    font-size: 1.5rem;
    color: #007bff;
    margin-right: 15px;
}

.info-item h3 {
    font-size: 1.2rem;
    color: #1e1e1e;
    margin-bottom: 5px;
}

.info-item p {
    font-size: 0.9rem;
    color: #666;
}

.form-control {
    border-radius: 5px;
    border: 1px solid #ced4da;
    padding: 10px;
    font-size: 0.9rem;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.loading, .error-message, .sent-message {
    margin-top: 10px;
    font-size: 0.9rem;
}

.sent-message {
    color: #28a745;
}

.error-message {
    color: #dc3545;
}