.elementor-67714 .elementor-element.elementor-element-2e72aca{--display:flex;}/* Start custom CSS for html, class: .elementor-element-a6b8ad3 *//* Thank You Page Custom Styling */
.thank-you-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background-color: #f8f9fa;
    padding: 20px;
    font-family: 'Poppins', sans-serif;
}

.thank-you-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 500px;
    width: 100%;
    text-align: center;
}

/* Logo Setup */
.ty-logo-box {
    margin-bottom: 25px;
}

.ty-logo {
    max-width: 100px; /* Logo ka size yahan se set karein */
    height: auto;
    animation: fadeInDown 0.8s ease;
}

.success-icon {
    margin-bottom: 20px;
}

.thank-you-card h1 {
    color: #333;
    font-size: 32px;
    margin-bottom: 15px;
}

.thank-you-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.booking-details {
    background: #f1f3f5;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.ty-phone {
    display: block;
    color: #e63946; /* Aapka brand color */
    font-weight: bold;
    font-size: 20px;
    text-decoration: none;
    margin-top: 5px;
}

.back-home-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #007bff; /* Button color */
    color: #fff!important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.back-home-btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
    .thank-you-card { padding: 30px 20px; }
    .thank-you-card h1 { font-size: 26px; }
}/* End custom CSS */