/* styles.css */

/* General page styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    margin: 0;
    padding: 0;
}

h1, h3 {
    color: #003366;
    font-weight: bold;
}

p {
    font-size: 1.1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.text-center {
    text-align: center;
}

/* Contact Form Styles */
form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

form .form-group {
    margin-bottom: 1.5rem;
}

form label {
    font-weight: bold;
    color: #003366;
}

form .form-control {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form .form-control:focus {
    border-color: #28a745;
    box-shadow: 0 0 5px rgba(40, 167, 69, 0.5);
}

form button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
}

form button:hover {
    background-color: #218838;
}

/* FAQ Accordion Styles */
#accordion .card {
    border: 1px solid #ddd;
    margin-bottom: 1rem;
    border-radius: 8px;
}

#accordion .card-header {
    background-color: #f1f1f1;
    border-bottom: 1px solid #ddd;
    padding: 1rem;
}

#accordion .card-body {
    background-color: #fff;
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
}

#accordion .btn-link {
    text-decoration: none;
    font-size: 1.2rem;
    color: #003366;
}

#accordion .btn-link:hover {
    color: #28a745;
}

/* Live Chat Section */
#chatButton {
    background-color: #17a2b8;
    color: white;
    font-size: 1.2rem;
    padding: 12px 24px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#chatButton:hover {
    background-color: #138496;
}

#chatbox {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

#chatbox p {
    font-size: 1.1rem;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
    .container {
        padding: 1rem;
    }

    form {
        padding: 1.5rem;
    }

    #accordion .card-body {
        padding: 1rem;
    }

    #chatButton {
        font-size: 1rem;
        padding: 10px 20px;
    }
}


/* Footer Section Styling */
.footer-section {
    background-color: #002856;
    color: #fff;
    padding-top: 40px;
    font-family: Arial, sans-serif;
}

.footer-top {
    background-color: #00bfff; /* Light blue background for Social Media */
    text-align: center;
    padding: 20px;
}

.footer-top h2 {
    font-size: 1.8rem;
    color: #002856;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.social-img {
    width: 60px; /* Set a fixed size for all social media images */
    height: 60px;
    transition: transform 0.3s ease, opacity 0.3s ease; /* Smooth transition on hover */
}

.social-icons a:hover .social-img, .footer-social-icons a:hover .social-img {
    transform: scale(1.1); /* Slightly enlarge icon on hover */
    opacity: 0.8; /* Reduce opacity on hover for effect */
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col {
    flex: 1;
    padding: 10px;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-col ul {
    list-style-type: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #b0c4de;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: #1ee9e9;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.footer-social-icons a {
    color: #b0c4de;
    font-size: 1.3rem;
    transition: color 0.3s;
}

.footer-social-icons a:hover {
    color: #00ff00;
}

.footer-col form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col input[type="email"] {
    padding: 10px;
    border: 1px solid #b0c4de;
    border-radius: 4px;
    background: #002856;
    color: #fff;
}

.footer-col button {
    padding: 10px;
    background-color: #00bfff;
    color: #002856;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.footer-col button:hover {
    background-color: #007f00; /* Green on hover */
}

.footer-bottom-bar {
    text-align: center;
    padding: 20px;
    background-color: #003366;
    color: #b0c4de;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom-bar p {
    margin: 0;
}

.payment-icons img {
    width: 300px;
    margin-left: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-bar {
        flex-direction: column;
    }
}