/* Base Styles */
body {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 10px;
    z-index: 1000;
}

.navbar {
    position: relative;
}

.navbar-toggler:focus, .navbar-toggler:hover {
    outline: none;
    box-shadow: none;
}

.navbar-toggler {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1100;
    border: none;
    outline: none;
    padding: 0;
    cursor: pointer;
    background-color: transparent;
}

.navbar-toggler-icon {
    background-color: #2a9ae5;
    width: 30px;
    height: 2px;
    display: block;
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    background-color: #2a9ae5;
    width: 30px;
    height: 2px;
    position: absolute;
    left: 0;
    transition: none;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

.navbar-collapse {
    display: none;
    position: absolute;
    top: 10px;
    left: 0;
    width: 140px;
    padding: 10px;
    border-radius: 5px;
}

.navbar-toggler:hover + .navbar-collapse,
.navbar-toggler:focus + .navbar-collapse,
.navbar-collapse:hover {
    display: block;
}

.navbar .navbar-nav {
    flex-direction: column;
}

.navbar .navbar-nav .nav-item {
    margin: 0px 0;
    color: #2a9ae5;
}

.navbar-dark .navbar-nav .nav-link {
    color: #2a9ae5;
}

.nav-link:hover {
    color: rgba(157, 0, 255, 0.5);
}

ul {
    list-style-type: none; /* Removes the dots */
    padding: 0; /* Removes default padding */
    margin: 0; /* Removes default margin */
}

li {
    margin: 0; /* Adds some spacing between the items */
    padding: 10px 0;
}

a {
    text-decoration: none; /* Removes the underline */
}

img {
    max-width: 100%;
    height: auto;
}

/* Main Content Area */
.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;
    background-color: #f4f4f4;
}

.main-content img {
    width: 100%;
    height: auto;
}

/* FAQ Section */
.faq-section {
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.faq-section h2 {
    text-align: center;
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.search-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 20px;
}

.search-box input {
    width: 60%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 10px;
}

.search-box button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #3949ab;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.faq-container {
    border-top: 1px solid #ddd;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 18px;
    color: #333;
}

.faq-answer {
    display: none;
    padding: 0 20px 15px 20px;
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

.faq-toggle {
    font-size: 24px;
    color: #3949ab;
}

.final-content-footer {
    margin-bottom: 1px;
    background-color: #d4c9c9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    padding: 0px;
    text-align: center;
}

.final-content-footer h2 {
    margin: 0;
    font-size: 2.5rem;
    color: darkblue;
    margin-bottom: 5px;
    font-weight: bold;
}

.social-icons {
    margin-bottom: 10px;
}

.footer-link {
    font-size: 2rem;
    margin: 0 5px;
    text-decoration: none;
    transition: transform 0.3s;
}

.footer-link:hover {
    transform: scale(1.1);
}

/* Specific colors for each icon */
.footer-link i.fa-facebook-f {
    color: #3b5998;
}

.footer-link i.fa-twitter {
    color: #00acee;
}

.footer-link i.fa-instagram {
    color: #C13584;
}

.footer-link i.fa-youtube {
    color: #FF0000;
}
/* Responsive Design */
@media (max-width: 768px) {
    body{
        margin: 0;
        padding: 0;
    }
    .main-content {
        display: block;
        height: 250px v;
    }
    .move{
        height: 250px !important;
    }

    .faq-section {
        padding: 15px;
        width: auto;
    }

    .search-box input {
        width: 100%;
        margin-bottom: 10px;
    }

    .faq-question {
        font-size: 16px;
        padding: 10px 15px;
    }

    .faq-answer {
        padding: 0 15px 10px 15px;
    }

    .final-content-footer {
        width: auto;
        bottom: 1 !important;
        padding: 20px;
    }

    .final-content-footer h2 {
        font-size: 1.5rem;
    }

    .footer-link {
        font-size: 1rem;
        margin: 5px 0;
    }
}

@media (max-width: 767px) {
    .navbar-collapse {
        width: 100px; /* Reduce width for mobile */
        padding: 5px; /* Reduce padding for mobile */
    }

    .navbar .navbar-nav .nav-item {
        padding: 4px 0; /* Reduce padding for each item */
        font-size: 15px; /* Reduce font size for mobile */
    }

    .text-overlay {
        display: none;
    }
    .move{
        height: 300px;
    }
}