.elementor-23167 .elementor-element.elementor-element-aa15757{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-f4b5471 */.header {
    height: 35vh;
    background-color: #ffffff;
    color: #9C0002;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 20px 20px 30px 20px;

}

        .header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            font-weight: 700;
            letter-spacing: 1px;
            position: relative;
            display: inline-block;
        }
        
        .header h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #9C0002;
        }
        
        .header p {
            font-size: 1.2rem;
            max-width: 1000px;
            margin: 25px auto 0;
            color: #555;
            font-weight: 500;
            line-height: 1.8;
        }
        
        .main-content {
            display: flex;
            height: 75vh;
            padding: 0;
            margin: 0 20px;
            gap: 20px;
        }
        
        .sidebar {
            flex: 3;
            display: flex;
            flex-direction: column;
            background-color: white;
            border: 1px solid #e0e0e0;
            box-shadow: 2px 0 10px rgba(0,0,0,0.05);
            border-radius: 0;
        }
        
        .map-container {
            flex: 5;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            position: relative;
            border-radius: 0;
            overflow: hidden;
        }
        
        #iran-map {
            height: 100%;
            width: 100%;
        }
        
        .project-card {
            flex: 2;
            background: white;
            border: 1px solid #e0e0e0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            padding: 25px;
            display: flex;
            flex-direction: column;
            min-width: 300px;
            border-radius: 0;
            position: relative;
        }
        
        .project-card.hidden {
            display: none;
        }
        
        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .card-close {
            background: #9C0002;
            color: white;
            border: none;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 18px;
            font-weight: bold;
            transition: all 0.3s ease;
            border-radius: 0;
        }
        
        .card-close:hover {
            background: #8a0002;
        }
        
        .project-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            margin-bottom: 20px;
            border-radius: 0;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #9C0002;
            font-weight: 600;
            transform: scale(0);
            animation: imageZoomIn 0.6s ease-out 0.2s forwards;
        }
        
        @keyframes imageZoomIn {
            0% {
                transform: scale(0);
                opacity: 0;
            }
            70% {
                transform: scale(1.1);
                opacity: 1;
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }
        
        .project-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #9C0002;
            margin-bottom: 10px;
            animation: slideInUp 0.5s ease-out 0.4s forwards;
            opacity: 0;
            transform: translateY(20px);
        }
        
        .project-category {
            font-size: 1rem;
            color: #666;
            font-weight: 600;
            margin-bottom: 15px;
            animation: slideInUp 0.5s ease-out 0.5s forwards;
            opacity: 0;
            transform: translateY(20px);
        }
        
        .project-location {
            font-size: 0.9rem;
            color: #888;
            margin-bottom: 20px;
            animation: slideInUp 0.5s ease-out 0.6s forwards;
            opacity: 0;
            transform: translateY(20px);
        }
        
        .project-description {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #555;
            margin-bottom: 25px;
            animation: slideInUp 0.5s ease-out 0.7s forwards;
            opacity: 0;
            transform: translateY(20px);
        }
        
        .project-button {
            display: inline-block;
            background-color: #9C0002;
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 0;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s ease;
            margin-top: auto;
            animation: slideInUp 0.5s ease-out 0.8s forwards;
            opacity: 0;
            transform: translateY(20px);
            text-decoration: none !important;
        }
        
        .project-button:hover {
            color: white;
            background-color: #8a0002;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(156, 0, 2, 0.3);
        }
        
        @keyframes slideInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .accordion {
            flex-grow: 1;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
        }
        
        .accordion::-webkit-scrollbar {
            width: 6px;
        }
        
        .accordion::-webkit-scrollbar-thumb {
            background-color: #9C0002;
            border-radius: 0;
        }
        
        .accordion-item {
            border-bottom: 1px solid #e0e0e0;
            
        }
        
        .accordion-header {
            padding: 20px 25px;
            background-color: #f8f9fa;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 1.15rem;
            position: relative;
            overflow: hidden;
        }
        
        .accordion-header::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: -100%;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #9C0002, #d32f2f, #9C0002);
            transition: left 0.5s ease;
        }
        
        .accordion-header:not(.active):hover::before {
            left: 0;
        }
        
        .accordion-header.active {
            background-color: #9C0002;
            color: white;
            box-shadow: 0 4px 8px rgba(156, 0, 2, 0.2);
        }
        
        .accordion-content {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            background-color: white;
        }
        
        .accordion-content.active {
            max-height: 500px;
        }
        
        .company-list {
            list-style: none;
        }
        
        .company-item {
            padding: 16px 25px;
            border-bottom: 1px solid #f0f0f0;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .company-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 0;
            background-color: rgba(156, 0, 2, 0.05);
            transition: width 0.3s ease;
        }
        
        .company-item:not(.highlighted):hover::before {
            width: 100%;
        }
        
        .company-item:not(.highlighted):hover {
            padding-left: 30px;
        }
        
        .company-item.highlighted {
            background-color: #ffe6e6;
            border-left: 4px solid #9C0002;
            padding-left: 30px;
        }
        
        .company-name {
            font-weight: 600;
            margin-bottom: 5px;
           
            font-size: 1.05rem;
            position: relative;
            z-index: 1;
        }
        
        .company-location {
            font-size: 14px;
            color: #666;
            font-weight: 500;
            position: relative;
            z-index: 1;
        }
        
        .category-icon {
            margin-right: 20px !important;
        }
        
        .normal-marker {
            background-color: #FFAE00;
            border: 2px solid #FF4000;
            width: 16px;
            height: 16px;
            border-radius: 16px;
            opacity: 0.7;
            box-shadow: 0 1px 3px rgba(0,0,0,0.3);
        }
        
        .active-marker {
            background-color: #9C0002;
            border: 4px solid #D10006;
            width: 22px;
            height: 22px;
            border-radius:22px;
            box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.5);
            animation: markerPulse 2s infinite;
            z-index: 1000;
        }
        
        @keyframes markerPulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.9);
            }
            60% {
                box-shadow: 0 0 0 20px rgba(255, 107, 107, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
            }
        }
        
        .custom-popup {
            font-family: 'Rajdhani', sans-serif;
            background: rgba(255,255,255,0.95);
            border-radius: 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            padding: 0;
            min-width: 250px;
            border: 2px solid #9C0002;
        }
        
        .popup-header {
            background: #9C0002;
            color: white;
            padding: 12px 15px;
            border-radius: 0;
            border-bottom: 2px solid #9C0002;
        }
        
        .popup-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 3px;
        }
        
        .popup-category {
            font-size: 0.8rem;
            opacity: 0.9;
            font-weight: 500;
        }
        
        .popup-content {
            padding: 15px;
            background: #f8f9fa;
        }
        
        .popup-feature {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            border-bottom: 1px solid #e0e0e0;
            font-size: 0.85rem;
        }
        
        .popup-feature:last-child {
            border-bottom: none;
        }
        
        .feature-label {
            font-weight: 600;
            color: #505050;
        }
        
        .feature-value {
            font-weight: 700;
            color: #9C0002;
        }
        
        .popup-footer {
            background-color: #ffffff;
            padding: 10px 15px;
            border-radius: 0;
            text-align: center;
            border-top: 1px solid #e0e0e0;
        }
        
        .popup-status {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 0;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        
        .status-completed {
            background-color: #00BC1B;
            color: white;
        }
        
        .status-in-progress {
            background-color: #FFA500;
            color: white;
        }
        
        .status-planned {
            background-color: #007BFF;
            color: white;
        }
        
        .status-on-hold {
            background-color: #6C757D;
            color: white;
        }
        
        .leaflet-popup-content-wrapper {
            background: transparent;
            box-shadow: none;
            border-radius: 0;
        }
        
        .leaflet-popup-tip {
            background: #9C0002;
        }
        
        .footer {
            background-color: #ffffff;
            padding: 40px 20px;
            text-align: center;
            margin: 30px 20px 0 20px;
            border-top: 1px solid #e0e0e0;
        }
        
        .footer-content {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .footer h3 {
            color: #9C0002;
            font-size: 1.8rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .footer p {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 15px;
            font-weight: 500;
        }
        
        @media (max-width: 1200px) {
            .main-content {
                flex-direction: column;
                height: auto;
            }
            
            .map-container, .sidebar, .project-card {
                flex: none;
                width: 100%;
            }
            
            .map-container {
                height: 500px;
            }
            
            .project-card {
                min-width: auto;
            }
            
            .header {
                background-size: 40%;
                background-position: 90% center;
            }
        }
        
        @media (max-width: 768px) {
            .header {
                background-image: none;
            }
        }/* End custom CSS */