@font-face {
    font-family: 'GeneralSansRegular';
    src: url(/assets/fonts/GeneralSans-Regular.woff2)
}
@font-face {
    font-family: 'GeneralSansRegularItalic';
    src: url(/assets/fonts/GeneralSans-RegularItalic.woff2)
}
@font-face {
    font-family: 'GeneralSansLight';
    src: url(/assets/fonts/GeneralSans-Light.woff2)
}
@font-face {
    font-family: 'BoskaLight';
    src: url(/assets/fonts/Boska-Light.woff2)
}
@font-face {
    font-family: 'BoskaItalicLight';
    src: url(/assets/fonts/Boska-LightItalic.woff2)
}
@font-face {
    font-family: 'BoskaItalicRegular';
    src: url(/assets/fonts/Boska-MediumItalic.woff2)
}    /* Include your font-face and styles here */
* {
    cursor: url('/storage/Artboard3.png'), auto !important;
    
}
body {
    
    font-family: 'GeneralSansRegular';
    background-color: #f6f5e9;
    overflow-x: hidden;
    cursor: url('/storage/Artboard2.png'), auto !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
}
p{
    font-family: 'GeneralSansRegular';

}

.banner-container {
    position: relative;
    width: 100%;
    justify-self: center;
    height: 100px;
    overflow: hidden;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    margin-bottom: 30px;
}

.banner-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
    position: absolute;
    /* top: 20px; */
    left: 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 1;
    filter: brightness(85%);
}

/* Zoom in and out classes */
.zoom-in {
    transform: scale(1.1); /* Adjust scale value for zoom effect */
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.zoom-out {
    transform: scale(1); /* Normal scale */
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.search-container {
    position: relative;
    z-index: 2;
    width: 50%;
    background-color: rgba(255, 255, 255, 0.466); /* Set a transparent white background */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Add a subtle border for visibility */
    border-radius: 15px;
}

.search-input {
    width: 100%;
    padding: 12px 12px 12px 40px;
    font-size: 20px;
    background-color: transparent; /* Transparent background */
    color: #ffffff; /* White text for contrast */
    border: none; /* Remove default border */
    outline: none; /* Remove outline on focus */
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.7); /* Make placeholder text slightly transparent */
}

.search-icon {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7); /* Adjust icon color for transparency */
}

.faq-container {
    display: flex;
    /* padding: 25px; */
    /* margin-top: 5%; */
    width: 100%;
    justify-self: center;
}

.faq-categories {
    position: sticky;
    width: 28%;
    padding: 20px;
    border-radius: 15px;
    margin-right: 20px;
    height: 50%;
    /* border: 1px solid #bebebe;  */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    background-color: #edecde00;
}
.faq-categories:hover {
    transform: translateY(-10px);
}

h2 {
    font-family: 'GeneralSansRegular';
    color: #1c1c1a !important;
}

.faq-categories h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #1c1c1a !important;
}

.faq-categories ul {
    list-style-type: none;
    padding: 0px;
}

.faq-categories li {
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-categories a {
    text-decoration: none;
    font-size: 20px;
    color: #333;
}

.faq-categories a:hover {
    text-decoration: underline;
}

.faq-content {
    width: 100%;
    padding: 12px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* border: 1px solid #bebebe;  */
    transition: transform 0.3s;
    background-color: #edecde00;
}
.faq-content:hover {
    transform: translateY(-10px);
}

.faq-content h2 {
    font-size: 28px;
    color: #4a4a4a;
    margin-bottom: 20px;

}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    background-color: #6a6a6a00;
    color: black;
    -webkit-text-stroke: 0.5px black; 
    font-weight: 500 !important;
    font-size: 16px;
    padding: 15px;
    width: 100%;
    text-align: left;
    border: none;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
}

.faq-question:hover {
    background-color: #edecde92;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 15px;
    /* background-color: #f9f9f9; */
    /* box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); */
    color: black;
    border-radius: 15px;
}

.faq-answer.active {
    max-height: 300px;
}

.faq-icon {
    font-size: 16px;
    transition: transform 0.3s;
    color: #ccc;
}

.faq-icon.open {
    transform: rotate(45deg);
}
/* Media Queries for Responsiveness */

/* For screens 1080px wide or less */
@media (max-width: 1080px) {
    .banner-container {
        height: 80px; /* Reduce height for medium screens */
    }

    .search-container {
        width: 60%; /* Slightly larger search container */
    }

    .faq-container {
        width: 89%; /* Make FAQ container the full width */
        padding: 20px;
    }

    .faq-categories {
        width: 25%; /* Make categories wider for better visibility */
        height: auto; /* Allow content to adjust based on height */
    }

    .faq-content {
        width: 70%; /* Adjust width for content */
    }
}

/* For screens 768px wide or less */
@media (max-width: 768px) {
    body {
        padding: 0 !important;
    }
    .top-nav {
        border-radius: 0 !important;
    }
    .banner-container {
        border-radius: 0 0 15px 15px !important;
    }
    .banner-container img {
        border-radius: 0 0 15px 15px !important;
    }
    .dropdownn {
        margin-left: 0 !important;
    }

    .banner-container {
        height: 70px; /* Adjust banner height */
    }

    .search-container {
        width: 80%; /* Increase search container width */
    }

    .faq-container {
        width: 89%; /* Full width for FAQ container */
        flex-direction: column; /* Stack FAQ items vertically */
        padding: 10px;
    }

    .faq-categories {
        width: 100%; /* Make categories full width */
        margin-right: 0;
        margin-bottom: 20px; /* Add space between categories and content */
    }

    .faq-content {
        width: 100%; /* Make content full width */
        margin-top: 20px;
    }
}

/* For screens 480px wide or less */
@media (max-width: 480px) {
    body {
        font-size: 16px; /* Decrease font size for small screens */
    }

    .search-container {
        width: 90%; /* Full width search container */
    }

    .faq-container {
        width: 89%; /* Full width for FAQ container */
        padding: 5px;
    }

    .faq-categories {
        width: 100%; /* Full width for categories */
        margin-right: 0;
        margin-bottom: 10px; /* Add space below categories */
        padding: 0 !important;
    }
    .faq-categories h2 {
        margin-left: 20px !important;
    }
    .faq-categories ul {
        padding: 0 20px 20px 20px !important;
    }

    .faq-content {
        width: 100%; /* Full width for content */
        margin-top: 10px;
        padding:  0 !important;
    }
    .faq-content h2 {
        margin-left: 20px !important;
    }
    .faq-item {
        margin: 0 20px !important;
    }

    .banner-container {
        height: 60px; /* Further reduce banner height */
    }

    .faq-question {
        font-size: 16px; /* Decrease font size of questions */
        font-weight: bold !important;
    }
    .faq-content h2 {
        font-size: 28px; /* Adjust FAQ heading size */
    }
}
