.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;
}

.main-container {
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
    height: 700px;
}

.left-panel {
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 0;
    height: 100%;
    position: relative;
    border-right: 1px solid var(--border-color);
    overflow: hidden;
}

.left-panel img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}


.right-panel {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.section-number {
    color: #e2e8f0;
    font-size: 120px;
    font-weight: 900;
    line-height: 0.8;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
}

.service-section {
    border-radius: 12px;
}

.main-heading {
    font-size: 40px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.1;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
}

.description {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 400px;
}

.main {
    border-radius: 12px;
    background-color: azure;
}

.button {
    width: fit-content;
}

.cta-button:hover {
    background: #3730a3;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

.regenerate-btn {
    position: absolute;
    bottom: 100px;
    right: 20px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

tr:nth-child(even) {
    background-color: black;
    /* light gray */
}


@media (max-width: 992px) {
    .main-container {
        height: auto;
        margin: 1rem;
    }

    .right-panel {
        padding: 40px 30px;
    }

    .main-heading {
        font-size: 36px;
    }

    .section-number {
        font-size: 80px;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .main {
        flex-direction: column;
        padding: 20px 0;
    }

    .left-panel,
    .right-panel {
        width: 100%;
        padding: 20px 15px;
    }

    .left-panel {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        padding: 30px 15px;
    }

    .right-panel {
        text-align: center;
        align-items: center;
    }

    .main-heading {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .description {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .section-number {
        font-size: 60px;
        margin-bottom: 10px;
    }

    .button {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }

    .left-panel img {
        max-height: 250px;
        width: auto;
    }
}

.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;

    }
}