/* General body styling for consistent font and background */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Container for main content sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}
.container h2 {
    font-size: 40px;
    font-weight: bold; /* or font-weight: 700; */
}
/* Header/Hero section background - consistent with visa.html */
.bg-breadcrumb {
    background-image: url('img/place-flying-sunset-sky-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 5rem 0; /* Adjust padding as needed for desired height */
}
.bg-breadcrumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Overlay for readability */
    z-index: 1;
}
.bg-breadcrumb .container {
    position: relative;
    z-index: 2;
}



/* Animations from style.css */
@keyframes fadeInDown {
    0% { transform: translateY(-30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}
@keyframes fadeInUp {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}
@keyframes slideInRight {
    0% { transform: translateX(50px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

/* Scroll Animation Styles for this page's content */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-up.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Floating buttons styles */
.floating-btn {
    position: fixed;
    z-index: 999;
    border-radius: 50%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Added shadow for better visibility */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* WhatsApp on bottom right */
#whatsapp-btn {
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
}

/* Call on bottom left */
#call-btn {
    bottom: 20px;
    left: 20px;
    background-color: #007bff;
    color: white;
}

/* Glow animation for WhatsApp */
@keyframes glow-whatsapp {
    0%, 100% { box-shadow: 0 0 10px #25d366; }
    50% { box-shadow: 0 0 20px #25d366; }
}

.glow-whatsapp {
    animation: glow-whatsapp 1.5s infinite ease-in-out;
}

/* Glow animation for Call */
@keyframes glow-call {
    0%, 100% { box-shadow: 0 0 10px #007bff; }
    50% { box-shadow: 0 0 20px #007bff; }
}

.glow-call {
    animation: glow-call 1.5s infinite ease-in-out;
}



/* In css/visa-requirements.css or css/style.css */

.visa-countries {
    background-color: #f8f9fa; /* Light background for the section */
}
.visa-countries h1{
    font-size: 50px;
}

.country-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    height: 100%; /* Ensure cards have equal height */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distribute content nicely */
}

.country-card:hover {
    transform: translateY(-10px);
}

.country-card img {
    width: 80px; /* Adjust flag size as needed */
    height: auto;
    margin-bottom: 20px;
}

.country-card h4 {
    color: #007bff; /* Primary color for headings */
    font-weight: 600;
    margin-bottom: 15px;
}

.country-card p {
    color: #6c757d; /* Muted color for text */
    font-size: 13px;
    line-height: 1.6;
}







/* In css/visa-requirements.css or css/style.css */

/* Why Choose Us Section */
.choose-us {
    background-color: #f8f9fa; /* Light background */
}
.choose-us h1{
    font-size: 50px;
}
.feature-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 40px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    height: 100%; /* Ensure equal height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    color: #007bff; /* Primary color for icons */
    margin-bottom: 20px;
}

.feature-card h5 {
    color: #343a40; /* Darker text for heading */
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-card p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    background-color: #ffffff; /* White background */
}
.how-it-works h1{
    font-size: 40px;
}

.how-it-works-card {
    background-color: #f8f9fa; /* Light background for cards */
    border-radius: 10px;
    padding: 40px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    height: 100%; /* Ensure equal height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.how-it-works-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.how-it-works-icon {
    color: #007bff; /* Primary color for icons */
    margin-bottom: 20px;
}

.how-it-works-card h5 {
    color: #343a40;
    font-weight: 600;
    margin-bottom: 15px;
}

.how-it-works-card p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
}

/* Call to Action/Contact Info Section */
.contact-cta {
    background-color: #007bff; /* Primary background color, fallback if image not loaded */
    color: #ffffff;
}

.contact-cta h4 {
    font-weight: 700;
}

.contact-cta .btn-warning {
    background-color: #ffc107; /* Warning color for button */
    border-color: #ffc107;
    color: #212529 !important; /* Ensure text is dark */
    font-weight: 600;
}

.contact-cta .btn-warning:hover {
    background-color: #e0a800;
    border-color: #e0a800;
}

/* Quick Inquiry Section */
.quick-inquiry {
    background-color: #f8f9fa; /* Light background */
}

.quick-inquiry .form-control,
.quick-inquiry .form-select {
    border-radius: 50px; /* Rounded corners for inputs */
    padding: 15px 25px;
    border: 1px solid #ced4da;
}

.quick-inquiry .form-control:focus,
.quick-inquiry .form-select:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

.quick-inquiry .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    font-weight: 600;
}

.quick-inquiry .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.quick-inquiry .img-fluid {
    max-width: 100%;
    height: auto;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 991.98px) {
    .bg-breadcrumb {
        padding: 3rem 0;
    }
    .bg-breadcrumb h3 {
        font-size: 2.5rem;
    }
    .visa-countries h1,
    .choose-us h1 {
        font-size: 2.5rem;
    }
    .how-it-works h1 {
        font-size: 2.2rem;
    }
    .country-card,
    .feature-card,
    .how-it-works-card {
        padding: 20px;
    }
    .contact-cta .d-flex {
        flex-direction: column;
        align-items: center;
    }
    .contact-cta .d-flex > div {
        margin-bottom: 15px;
        margin-right: 0 !important;
    }
    .contact-cta .btn-warning {
        margin-top: 15px;
    }
    .quick-inquiry .img-fluid {
        margin-top: 30px;
    }
}

@media (max-width: 767.98px) {
    .container {
        padding: 1rem;
    }
    .bg-breadcrumb h3 {
        font-size: 2rem;
    }
    .visa-countries h1,
    .choose-us h1 {
        font-size: 2rem;
    }
    .how-it-works h1 {
        font-size: 1.8rem;
    }
    .country-card,
    .feature-card,
    .how-it-works-card {
        margin-bottom: 20px;
    }
    .quick-inquiry .col-lg-6 {
        width: 100%;
    }
    .footer-item {
        margin-bottom: 30px;
    }
    .floating-btn {
        padding: 15px; /* Smaller padding for smaller screens */
        font-size: 1.2rem; /* Adjust icon size */
    }
    #whatsapp-btn {
        bottom: 15px;
        right: 15px;
    }
    #call-btn {
        bottom: 15px;
        left: 15px;
    }
}

@media (max-width: 575.98px) {
    .bg-breadcrumb h3 {
        font-size: 1.8rem;
    }
    .visa-countries h1,
    .choose-us h1,
    .how-it-works h1 {
        font-size: 1.5rem;
    }
    .contact-cta h4 {
        font-size: 1.2rem;
    }
    .contact-cta .fa-3x {
        font-size: 2em !important;
    }
    .quick-inquiry .form-control,
    .quick-inquiry .form-select {
        padding: 10px 20px;
    }
    .quick-inquiry .btn-primary {
        width: 100%;
    }
    .floating-btn {
        padding: 12px; /* Even smaller padding for very small screens */
        font-size: 1rem; /* Adjust icon size */
    }
    #whatsapp-btn {
        bottom: 10px;
        right: 10px;
    }
    #call-btn {
        bottom: 10px;
        left: 10px;
    }
}