/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */


/* Container & Layout Structure */
.single-project-wrapper {
    background-color: #fcfbf9;
}

.single-project-hero {
    background: #2b2338;
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.hero-title {
    font-size: 38px;
    margin-top: 10px;
    color: #ffffff;
}

.breadcrumb-text {
    font-size: 14px;
    color: #d1d5db;
}

.single-project-container {
    display: flex !important;
    gap: 40px !important;
    max-width: 1200px !important;
    margin: 50px auto !important;
    padding: 0 20px !important;
}

/* Sticky Left Sidebar */
.single-project-sidebar {
    width: 30% !important;
    position: sticky !important;
    top: 90px !important;
    height: fit-content !important;
    align-self: flex-start !important;
}

.sidebar-box {
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
}

.menu-box {
    background: #2b2338;
    color: #ffffff;
}

.sidebar-heading {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    background: #ffffff;
    margin-bottom: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.sidebar-nav li a {
    display: flex;
    justify-content: space-between;
    padding: 14px 18px;
    color: #111827;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.sidebar-nav li.active, .sidebar-nav li:hover {
    background: #eef2ff;
}

.sidebar-nav li.active a, .sidebar-nav li:hover a {
    color: #2563eb;
}

.contact-box {
    background: #251e2e;
    color: #ffffff;
}

/* Right Main Content */
.single-project-content {
    width: 70% !important;
}

.main-featured-image img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 25px;
}

.section-main-title {
    font-size: 30px !important;
    font-weight: 700 !important;
    color: #2b2338 !important;
    margin-bottom: 15px !important;
}

.project-main-description {
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 30px;
}

/* 2x2 Feature Grid (Image-1 Style) */
.project-features-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    background-color: #ffffff !important;
    border-radius: 16px !important;
    border: 1px solid #f0f0f0 !important;
    overflow: hidden !important;
    margin: 35px 0 !important;
}

.feature-card-item {
    padding: 30px !important;
    border-right: 1px solid #f0f0f0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
}

.feature-card-item:nth-child(2n) {
    border-right: none !important;
}

.feature-card-item:nth-last-child(-n+2) {
    border-bottom: none !important;
}

.feature-icon-wrapper {
    width: 48px !important;
    height: 48px !important;
    background-color: #e6f9f0 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 20px !important;
}

.feature-icon-wrapper img {
    width: 22px !important;
    height: 22px !important;
    object-fit: contain !important;
}

.feature-item-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #2b2338 !important;
    margin-bottom: 10px !important;
}

.feature-item-desc {
    font-size: 14px !important;
    color: #666666 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* FAQ Accordion Styling */
.project-faq-section {
    margin-top: 40px;
}

.faq-section-title {
    font-size: 28px;
    color: #2b2338;
    margin-bottom: 10px;
}

.faq-section-desc {
    color: #666666;
    margin-bottom: 25px;
}

.faq-accordion-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 15px;
    padding: 20px;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
}

.faq-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question {
    font-size: 16px;
    font-weight: 700;
    color: #2b2338;
    margin: 0;
}

.faq-icon-toggle {
    font-size: 20px;
    font-weight: bold;
    color: #2b2338;
}

.faq-accordion-body {
    margin-top: 20px;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.faq-content-inner {
    display: flex;
    gap: 20px;
    align-items: center;
}

.faq-img-box img {
    width: 140px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
}

.faq-text-box p {
    font-size: 14px;
    color: #555555;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .single-project-container {
        flex-direction: column !important;
    }
    .single-project-sidebar, .single-project-content {
        width: 100% !important;
    }
    .project-features-grid {
        grid-template-columns: 1fr !important;
    }
    .feature-card-item {
        border-right: none !important;
    }
    .faq-content-inner {
        flex-direction: column;
    }
    .faq-img-box img {
        width: 100%;
        height: auto;
    }
}