@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');



/* General Styles */
:root {
    --primary-color: #FF6B38;
    --text-dark: #333333;
    --bg-light: #F5F8FF;
}

body {
    font-family: 'Arial', sans-serif;
}
h1,h2,h3,h4,h5,h6,p{
    color: black;
}
.language-selector select {
    border: none;
    background-color: transparent;
    font-size: 0.9rem;
    cursor: pointer;
    width: 119%;
}

/* Navbar Styles */
.navbar {
    padding: 1rem 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}


/* Toggle Button */
.navbar-toggler {
    padding: 0.5rem;
    border: none;
    background-color: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Navigation Links */
.nav-link {
    color: var(--text-dark);
    margin: 0 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

/* Contact Button */
.btn-contact {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: #e55a2d;
    transform: translateY(-2px);
}

/* Language Selector */
.language-selector select {
    border: none;
    background-color: transparent;
    font-size: 0.9rem;
    cursor: pointer;
}

/* Mobile Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: white;
        padding: 1rem;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        margin-top: 1rem;
    }

    .nav-link {
        margin: 0.5rem 0;
        padding: 0.5rem 1rem;
        border-radius: 5px;
    }

    .nav-link:hover {
        background-color: var(--bg-light);
    }

    .nav-link:after {
        display: none;
    }

    .btn-contact {
        width: 100%;
        margin: 0.5rem 0;
    }

    #languageSelector {
        font-size: 18px;
        padding: 6px 9px;
        border: 1px solid #ddd;
        border-radius: 5px;
        width: 300px;
        cursor: pointer;
    }

    .language-selector select {
        width: 100%;
        padding: 0.5rem;
        border: 1px solid #e0e0e0;
        border-radius: 5px;
    }
}

/* Animation for mobile menu */
@media (max-width: 991.98px) {
    .navbar-collapse {
        transform-origin: top;
        animation: slideDown 0.3s ease forwards;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* CSS */
.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    MARGIN-TOP: 3%;
    MARGIN-BOTTOM: 3%;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
}

.faq-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 10px 20px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    color: grey;
}

.tab-btn.active {
    /* background: #ff6b33; */
    /* color: white; */
    color: BLACK;
    FONT-WEIGHT: BOLD;
    border: 2px solid #ff6b33;
}

.faq-content {
    display: none;
}

.faq-content.active {
    display: block;
}

.faq-item {
    border: 1px solid #eee;
    margin-bottom: 10px;
    border-radius: 8px;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 16px;
}

.arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.faq-item.active .arrow {
    transform: rotate(-135deg);
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
}

.faq-item.active .faq-answer {
    display: block;
}
/* Mobile Responsive CSS */
@media screen and (max-width: 768px) {
    .faq-container {
        padding: 15px;
        margin: 0 10px;
    }

    h1 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    /* Make tabs scrollable horizontally on mobile */
    .faq-tabs {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
        gap: 5px;
        justify-content: flex-start;
        margin-bottom: 20px;
    }

    .tab-btn {
        padding: 8px 15px;
        font-size: 14px;
        flex: 0 0 auto;
        border-radius: 15px;
    }

    .faq-question {
        padding: 15px 15px 8px;
        margin-bottom: 0px !important;
    }

    .faq-question h3 {
        font-size: 14px;
        line-height: 1.4;
        padding-right: 25px; /* Space for arrow */
    }

    .arrow {
        width: 8px;
        height: 8px;
        border-right: 1.5px solid #333;
        border-bottom: 1.5px solid #333;
    }

    .faq-answer {
        padding: 0 15px 15px;
        font-size: 14px;
    }

    .faq-item {
        margin-bottom: 8px;
    }
}

/* For extra small devices */
@media screen and (max-width: 375px) {
    .faq-container {
        padding: 10px;
    }

    h1 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .tab-btn {
        padding: 6px 12px;
        font-size: 13px;
    }

    .faq-question h3 {
        font-size: 13px;
    }

    .faq-answer {
        font-size: 13px;
    }
}

/* Hide scrollbar but keep functionality */
.faq-tabs::-webkit-scrollbar {
    display: none;
}

.faq-tabs {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
