.elementor-20126 .elementor-element.elementor-element-24304e5{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-ff3688d *//* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Rajdhani', 'Segoe UI', sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        
        /* Projects Section */
        .projects-section {
       
            padding: 4rem 0;
        }
        
        .container {
            
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            color: #222;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 5px;
            background: #9C0002;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 2rem auto 0;
            font-size: 1.2rem;
            line-height: 1.8;
            font-weight: 500;
        }
        

        
        /* Project Details */
.project-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 6rem;
    background: #ffffff;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-content {
    padding: 0 3rem 3rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

        
        .project-details:hover .project-image img {
            transform: scale(1.05);
        }
        
        
        .project-category {
            display: inline-block;
            background: #9C0002;
            color: white;
            padding: 0.5rem 1.2rem;
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        
        .project-content h3 {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #222;
            line-height: 1.3;
        }
        
        .project-content p {
            color: #555;
            margin-bottom: 2rem;
            line-height: 1.8;
            font-size: 1.1rem;
            font-weight: 500;
        }
        
        .project-features {
            margin-bottom: 2rem;
        }
        
        .project-features h4 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #222;
            display: flex;
            align-items: center;
        }
        
        .project-features h4 i {
            margin-right: 0.5rem;
            color: #9C0002;
        }
        
        .features-list {
            list-style: none;
        }
        
        .features-list li {
            padding: 0.7rem 0;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            align-items: center;
        }
        
        .features-list li:last-child {
            border-bottom: none;
        }
        
        .features-list li i {
            color: #9C0002;
            margin-right: 0.8rem;
            font-size: 0.9rem;
        }
        
        .project-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            background: #f8f9fa;
            padding: 0.8rem 1.2rem;
            border-left: 3px solid #9C0002;
        }
        
        .meta-item i {
            color: #9C0002;
            margin-right: 0.8rem;
            font-size: 1.2rem;
        }
        
        .meta-item span {
            font-weight: 600;
            color: #444;
        }
        
        /* Accordion Styles */
        .accordion {
            margin-bottom: 2rem;
        }
        
        .accordion-header {
            background: #f8f9fa;
            padding: 0.5rem 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: left;
            border-left: 0px solid #9C0002;
            transition: all 0.3s ease;
        }
        
        .accordion-header:hover {
            background: #e9ecef;
        }
        
        .accordion-header h4 {
            font-size: 1rem;
            font-weight: 600;
            color: #222;
            margin: 0;
            display: flex;
            align-items: center;
        }
        
        .accordion-header h4 i {
            margin-right: 0.8rem;
            color: #9C0002;
        }
        
        .accordion-icon {
            transition: transform 0.3s ease;
            margin: 0;
        }
        
        .accordion.active .accordion-icon {
            transform: rotate(180deg);
        }
        
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: #ffffff;
        }
        
        .accordion.active .accordion-content {
            max-height: 500px;
        }
        
        .tech-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            padding: 1.5rem;
        }
        
        .tech-tag {
            background: rgba(156, 0, 2, 0.1);
            color: #9C0002;
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
            font-weight: 600;
            border: 1px solid rgba(156, 0, 2, 0.2);
        }
        
        .project-status {
            display: inline-flex;
            align-items: center;
            background: rgba(0, 100, 0, 0.1);
            color: #006400;
            padding: 0.8rem 1.5rem;
            font-weight: 700;
            margin-top: 1rem;
            border: 1px solid rgba(0, 100, 0, 0.2);
        }
        
        .project-status.completed {
            background: transparent;
            color: #006400;
            border-top: 1px solid rgba(0,0,0,0.2);
           
        }
        
      .project-status .fa-check-circle {
           margin-right: 0.5rem;
        }
        
        /* Under Construction Section */
        .construction-section {
            padding: 6rem 0;
            text-align: center;
            background: #ffffff;
            margin-top: 4rem;
            border: 1px solid #e0e0e0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .construction-icon {
            font-size: 5rem;
            color: #9C0002;
    
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        .construction-section h3 {
            font-size: 2.5rem;
            color: #222;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        
        .construction-section p {
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.2rem;
            line-height: 1.8;
            font-weight: 500;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .project-details {
                grid-template-columns: 1fr;
            }
            
            .project-image {
                height: 400px;
            }
        }
        
        @media (max-width: 768px) {
    
    .project-content {
        padding: 0 2rem 2rem 2rem;
    }
    
    .project-image {
        height: 300px;
    }

           
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .project-content {
                padding: 2rem;
            }
            
            .project-content h3 {
                font-size: 1.8rem;
            }
            
            .project-meta {
                flex-direction: column;
                gap: 1rem;
            }
        }
        
        @media (max-width: 576px) {
            .projects-section {
                padding: 2rem 0;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .construction-section h3 {
                font-size: 1.8rem;
            }
            
            .construction-icon {
                font-size: 3rem;
            }
        }/* End custom CSS */