/* 🔥 Glassmorphism Effect */
.feedback-container {
    padding-top: 10px; /* Adjust based on your navbar height */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(50px); /* Prevents overlap */
}

.feedback-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    transition: 0.3s ease-in-out;
    position: relative;
}
.feedback-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.feedback-header {
    color: white;
    text-align: center;
    font-weight: bold;
    border-radius: 12px;
    padding: 15px;
}
.feedback-form label {
    font-weight: 600;
    color: #333;
}
.feedback-input {
    border-radius: 8px;
    padding: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease-in-out;
}
.feedback-input:focus {
    border: 2px solid #ff1744;
    box-shadow: 0 0 10px rgba(255, 23, 68, 0.2);
}
.feedback-btn {
    background: linear-gradient(45deg, #ff4d4d, #ff1744);
    border: none;
    color: white;
    font-weight: bold;
    padding: 12px;
    border-radius: 8px;
    transition: 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.feedback-btn:hover {
    background: linear-gradient(45deg, #ff1744, #d50000);
    box-shadow: 0 5px 15px rgba(255, 23, 68, 0.3);
}

/* Feedback Card Design */
.feedback-card {
    min-width: 320px;
    flex: 1;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background: linear-gradient(to right, #f8f9fa, #ffffff);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Hover Effect */
.feedback-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

/* Feedback Message Style */
.feedback-message {
    font-size: 0.95rem;
    color: #333;
    font-style: italic;
}
/* cards section */
.container {
    margin-top: 100px; /* Adjust this value based on your navbar height */
}
.icon-circle {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card:hover {
    transform: translateY(-3px);
    transition: 0.3s ease-in-out;
}
.promo-img {
    width: 80%; /* Adjust size as needed */
    max-width: 600px; /* Prevents it from being too large */
    display: block;
    margin: 0 auto; /* Centers the image */
}
