/* Generic Input Box */
/* Add to your CSS file */
/* Add to your help.css */


.success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    display: none; /* Default state */
}

.popup-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    max-width: 400px;
}

.popup-content h3 {
    color: var(--primary-color);;
    margin-bottom: 15px;
}

.popup-content button {
    background: var(--primary-color);;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.contact-form .input-box.focused span {
    top: 0px;
    font-size: 12px;
    color: var(--primary-color);
}


.input-box {
    position: relative;
    display: inline-block;
    width: 250px;
}

/* Only for Dropdown Input */
.dropdown-container input {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 2px solid black; /* Bottom border only */
    font-size: 16px;
    cursor: pointer;
    background: transparent;
}

.dropdown-container input[value=""] + .custom-dropdown {
    display: none !important;
}
.dropdown-container input:empty {
    background-image: none;
}

/* Dropdown Arrow (Only for Dropdown Input) */
.dropdown-container::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 14px;
    color: var(--primary-color);
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Label Styling */
.input-box span {
    position: absolute;
    top: 5px;
    left: 10px;
    font-size: 14px;
    color: #666;
}

/* Dropdown Menu */
/* Add to help.css */
.product-dropdown {
    position: relative; /* Add this */
    display: none; /* Keep initial hidden state */
}

.custom-dropdown {
    position: absolute;
    top: 100%; /* Position below input */
    left: 0;
    z-index: 999; /* Increase z-index */
    width: 100%;
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}


/* Dropdown Options */
.dropdown-option {
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.dropdown-option:hover {
    background: var(--primary-bg); 
   color: var(--light-color);
}

/* Custom Scrollbar */
.custom-dropdown::-webkit-scrollbar {
    width: 6px; /* Thin scrollbar */
}

.custom-dropdown::-webkit-scrollbar-track {
    background: var(--primary-bg); /* Same as dropdown background */
    border-radius: 8px;
}

.custom-dropdown::-webkit-scrollbar-thumb {
    background: var(--primary-bg); /* Darker purple */
    border-radius: 8px;
}

.faq-container {
    width: 90%;
    max-width: 600px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Heading */
.faq-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* FAQ Item */
.faq-item {
    border-bottom: 1px solid #ddd;
}

/* FAQ Question */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    font-size: 18px;
    text-align: left;
    padding: 15px;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease-in-out;
}

.faq-question:hover {
    background:#c883d464 ;
}

/* Icon */
.icon {
    font-size: 22px;
    font-weight: bold;
}

/* FAQ Answer */
.faq-answer {
    display: none;
    padding: 15px;
    font-size: 16px;
    color: #555;
    animation: fadeIn 0.3s ease-in-out;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .faq-container {
        width: 95%;
    }
}



/* Generic Input Box */
.input-box {
    position: relative;
    display: inline-block;
    width: 250px;
}

/* Only for Dropdown Input */
.dropdown-container input {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 2px solid black; /* Bottom border only */
    font-size: 16px;
    cursor: pointer;
    background: transparent;
}

/* Dropdown Arrow (Only for Dropdown Input) */
.dropdown-container::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 14px;
    color: var(--primary-color);
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Label Styling */
.input-box span {
    position: absolute;
    top: 5px;
    left: 10px;
    font-size: 14px;
    color: #666;
}

/* Dropdown Menu */
.order-dropdown {
    position: absolute;
    width: 100%;
    background: var(--light-grey-color) ;
    /* border-radius: 5px; */
    box-shadow: 0px 4px 6px #0000001a;
    display: none;
    z-index: 100;
    max-height: 150px;
    overflow-y: auto;
}


/* Dropdown Options */
.dropdown-option {
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.dropdown-option:hover {
    background: var(--primary-bg); 
   color: var(--light-color);
}

/* Custom Scrollbar */
.order-dropdown::-webkit-scrollbar {
    width: 6px; /* Thin scrollbar */
}

.order-dropdown::-webkit-scrollbar-track {
    background: var(--primary-bg); /* Same as dropdown background */
    border-radius: 8px;
}

.order-dropdown::-webkit-scrollbar-thumb {
    background: var(--primary-bg); /* Darker purple */
    border-radius: 8px;
}


@media (max-width: 425px) {
    .contact-info-content p {
        font-size: 12px;
        font-weight: bold;
    }

    .contact-info-content {
        margin-left: 0px;
    }

    .contact-info-icon i {
        font-size: 18px;
    }

    .contact-form {
        padding: 0 0px;
    }

    .contact-form .input-box input[type="submit"] {
        padding: 5px;
    }
}