/* General Reset */
body, h1, h2, p {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.site-header {
    position: fixed; /* Make header stay on top */
    top: 0;
    left: 0;
    width: 100%;
    background-color: #002f4b;
    color: white;
    z-index: 1000;
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-container h1 {
    margin: 0;
    font-size: 1.5rem;
}

.header-container nav a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.header-container nav a:hover {
    text-decoration: underline;
}

.banner img {
    width: 100%;
    height: auto;
    margin-top: 70px; /* Push banner below fixed header */
}

.welcome-section {
    background-color: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
    border-radius: 10px;
    max-width: 900px;
    margin: 40px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.welcome-section h1 {
    font-size: 2.5em;
    color: #002f4b; /* IFB Red */
    margin-bottom: 15px;
}

.welcome-section h1 span {
    color: #002f4b;
    font-weight: bold;
}

.welcome-section p {
    font-size: 1.2em;
    color: #555;
    line-height: 1.6;
}



/* SERVICES SECTION */
.services {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 30px;
    background: #fff;
    flex-wrap: wrap;
}
.service-item {
    text-align: center;
    background: #f4f4f4;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out;
}
.service-item:hover {
    transform: scale(1.05);
}
.service-img {
    width: 220px;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
.service-item h3 {
    margin-top: 10px;
}

/* ABOUT SECTION */
.about {
    background: #f9f9f9;
    padding: 50px 20px;
    text-align: center;
}
.section-title {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #333;
}
.tagline {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #555;
}
.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: auto;
}
.about-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.about-box h3 {
    color: #0073e6;
    margin-bottom: 10px;
}
.about-box p {
    color: #555;
    line-height: 1.6;
}

/* FAQ SECTION */
.faq {
    background: #fff;
    padding: 30px;
}
.faq h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #0b3d91;
}
.faq-item {
    margin-bottom: 10px;
}
.faq-question {
    background: #0b3d91;
    color: white;
    padding: 12px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
}
.faq-question:hover {
    background: #092c6c;
}
.faq-answer {
    display: none;
    padding: 10px;
    background: #f4f4f4;
    border-left: 4px solid #0b3d91;
    margin-top: 5px;
}

/* CONTACT FORM */
#contact {
    background: #f9f9f9;
    padding: 40px 20px;
    border-radius: 10px;
    max-width: 600px;
    margin: auto;
}
#contact h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}
form .form-group {
    margin-bottom: 15px;
}
form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}
form input, form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}
form textarea {
    resize: none;
}
.error-message {
    color: red;
    font-size: 12px;
}
.btn-submit {
    display: block;
    width: 100%;
    background: #007BFF;
    color: white;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.btn-submit:hover {
    background: #0056b3;
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
}
.modal-content {
    background-color: white;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 700px;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
}
.close {
    color: #aaa;
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}
.close:hover {
    color: red;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        padding: 10px 0;
    }
    .services {
        flex-direction: column;
        align-items: center;
    }
    .service-img {
        width: 90%;
        height: auto;
    }
}

/* Main Content */
main {
    padding: 20px;
    background: #f9f9f9;
}

/* Footer */
footer {
    background-color: #002f4b;
    color: white;
    padding: 20px;
    text-align: center;
}

footer a {
    color: #f4d03f;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Floating Call Button */
.call-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #28a745;
    color: white;
    font-size: 24px;
    padding: 15px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 999;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.call-button:hover {
    background-color: #218838;
}
