:root {
    --primary-color: #038e9e;
    --dark-color: #000000;
    --light-color: #ffffff;
    --gray-light: #f8f9fa;
}

.hero-section {

    display: flex;
    justify-content: center;
    align-items: center;
}



.hero-title {
    font-weight: 700 !important;
    color: black;
    text-align: center;
    margin-bottom: 20px;
}

.hero-bg {
    height: 560px !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-image: url(../img/joule-dashboard-bg.svg);
    background-size: cover;
    background-position: center top;
    z-index: -2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(29, 52, 112, 0.9) 0%, rgba(31, 100, 173, 0.8) 100%); */
    z-index: -1;
}

.chat-container {
    margin: 0 auto;
    width: 90%;
    max-width: 800px;
    height: 60vh;
    background-color: var(--light-color);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.chat-header {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 15px 20px;
    display: flex;
    align-items: center;
}

.bot-avatar {
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
}

.bot-info h5 {
    margin: 0;
    font-weight: 600;
}

.bot-info p {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.8;
}

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: linear-gradient(to bottom, rgba(3, 142, 158, 0.05), rgba(3, 142, 158, 0.01));
}

.message {
    margin-bottom: 15px;
    max-width: 80%;
}

.user-message {
    margin-left: auto;
    background-color: #038e9e52;
    color: black;
    border-radius: 18px 18px 18px 18px;
    padding: 10px 15px;
}

.bot-message {
    background-color: var(--light-color);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--dark-color);
    border-radius: 18px 18px 18px 18px;
    padding: 10px 15px;
}

.chat-footer {
    padding: 15px;
    background-color: var(--light-color);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}



.feature-icon {
    font-size: 22px;
    color: #038e9e;
    margin-right: 8px;
}

.form-control {
    margin-bottom: 7px;
    border-radius: 6px;
    padding: 12px;
    background-color: #f8f9fa;
    border: 1px solid #e2e8f0;
}

.feature-item {
    gap: 10px;
    font-size: 22px;
    color: black;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.form-control:focus {
    box-shadow: none;
}

.btn-send {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.suggestion-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
    width: 80%;
}

.suggestion-btn {
    background-color: var(--light-color);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 18px;
    padding: 10px 15px;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
}

.suggestion-btn:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.typing-indicator {
    display: flex;
    padding: 5px 10px;
    background-color: var(--gray-light);
    border-radius: 10px;
    margin-bottom: 15px;
    width: fit-content;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin: 0 2px;
    opacity: 0.8;
    animation: typing 1s infinite ease-in-out;
}

.typing-dot:nth-child(1) {
    animation-delay: 0s;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

.faq-container {
    border-radius: 20px;

    max-width: 1360px;
    margin: 0 auto;
    padding: 1.5rem 1rem !important;
}

@media (max-width: 992px) {
    .hero-sections {
        padding: 20px 0 !important;
    }

    .chat-container {
        height: auto !important;
    }

    section.hero-section {
        padding: 40px 0 !important;
    }

    .hrlines {
        margin-bottom: 20px !important;
    }

    .cta-button {
        font-size: 18px !important;
    }

    .accordion-body {
        font-size: 16px !important;
    }

    .faqs-section {
        display: block !important;
        padding: 0 !important;
    }
}

.faqs {
    background-color: #038e9e;
}

.main-title {
    text-align: center;
    color: black;
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 2rem;
}

.accordion-item {
    border-radius: 10px;
    margin-bottom: 1rem;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.faqs-section {
    padding: 30px 39px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    gap: 40px;
}

.accordion-button {
    border-radius: 10px !important;
    font-weight: 600;
    color: #1a2b49;
    background-color: white;
    padding: 1rem;
    font-size: 0.95rem;
}

.accordion-button:not(.collapsed) {
    background-color: white;
    color: #1a2b49;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

.accordion-body {
    padding: 1rem;
    color: #6c757d;
    font-size: 18px;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a2b49'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.hrlines {
    margin: 0 auto;
    width: 20%;
    height: 3px;
    background-color: #038e9e;
}


.testimonial-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Ensures the stars stay at the bottom */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.Testimonials {
    font-size: 2rem !important;
}

@media (max-width: 767px) {

    .Testimonials {
        font-size: 1.75rem !important;
    }

}

.testmonials {
    color: white !important;
    background-color: #038e9e !important;
    font-size: 2rem !important;
}

.testmonials:hover {
    background-color: black !important;
}

.form-control:focus {
    box-shadow: none !important;
    border-color: #038e9e;
}

@media (max-width: 400px) {
    .feature-item {
        font-size: 19px;

    }
}