.hero {
    text-align: center;
    padding: 150px 20px 0px 20px;
    background-color: #ffffff;
}

.hero h1 {
    color: var(--black-text-color);
    font-size: 36px;

}


.center-align {
    padding: 70px 20px 70px 20px;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
}

.content {
    background-color: #ffffff;
    padding: 30px;
    width: 80%;
    max-width: 1000px;
    border: 1px solid #cecece;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}



label span {    
    color: red;
    font-size: 20px;
}

.align {
    margin: 20px;
}

input,
textarea {
    width: 100%;
    display: block;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1.1rem;
    box-sizing: border-box;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    resize: vertical;
}

.marrgins {
    margin: 5px 0px 15px 0px;
}

input:hover,
textarea:hover {
    border-color: #007bff;
    box-shadow: 0 2px 6px rgba(0, 123, 255, 0.3);
}

input:focus,
textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.5);
}

.button-send button {
    padding: 15px 80px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.button-send button:hover {
    background-color: #0056b3;
}

.button-send {
    margin: 25px 0px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Loader CSS */
.loader {
    border: 4px solid #f3f3f3;
    /* Light grey */
    border-top: 4px solid #3498db;
    /* Blue */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 10px auto;
    /* Center the loader */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Message Styles */
.response-message {
    text-align: center;
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
}

.response-message.success {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
}

.response-message.error {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
}


@media (max-width: 768px) {
    .content {
        width: 100%;
        padding: 10px 5px ;
    }

    .align {
        margin: 15px 20px 15px 15px;
    }

    .button-send button {
        padding: 15px 80px;
        font-size: 18px;
    }

    .message {
        padding: 10px 30px;
        font-size: 0.9rem;
    }
}


@media (max-width: 480px) {

    .button-send button {
        padding: 12px 60px;
        font-size: 18px;
    }

    .message {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
}

.faqi {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #007bff;
}

.faq-section {
    padding: 40px 20px 40px 20px;
    max-width: 850px;
}

.w-col-8 {
    width: 100%;
}

.heading-70 {
    color: #ffffff;
    font-size: 40px;
    text-align: center;
    margin-bottom: 30px;
}


.faq-accordion-item {
    border-radius: 8px;
    background-color: #000000;
    margin-bottom: 20px;
    border: 1px solid #000000;
}

.accordion-item-trigger {
    padding: 18px 20px;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s ease;
    border-radius: 8px;
}

.accordion-item-trigger:hover {
    background-color: #1d1d1d;

}

.accordion-heading-landing {
    color: #f1f1f5;
    font-size: 20px;
    flex: 1;
    margin: 0;
}

.icon-3 {
    cursor: pointer;
    font-size: 28px;
    color: #f1f1f5;
    transition: transform 0.40s ease;
}

.icon-3.rotate {
    transform: rotate(-45deg);
}

.accordion-item-content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 1.0s ease;
}

.accordion-item-content.show {
    max-height: 600px;
}

.landing-faw-p {
    color: #b0b0b0;
    margin: 10px 20px 20px 20px;
    font-size: 16px;
}

.link-30 {
    text-decoration: none;
    color: var(--blue-button);
    font-weight: bold;
    transition: color 0.3s;
}

.link-30:hover {
    color: #3d9bff;
}



/* section Nine end */