   
   @import '../css/header.css';
   @import '../css/section.css';
   @import '../css/animation.css';
   @import '../css/responsive.css';
   @import '../css/footer.css';
   
   :root {
            --primary-color: #2c3e50;
            --secondary-color: #e74c3c;
            --accent-color: #3498db;
        }
        

 body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f8f9fa;
        }
        
        /* Page Header */

.page-header {
    position: relative;
    width: 100%;
    height: 350px;  /* adjust as needed */
    overflow: hidden;
}

.header-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    padding: 20px;
}

 /* Overview Section */
        .overview-section {
            background: white;
            padding: 60px 0;
            margin-bottom: 60px;
        }
        
        .overview-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            padding: 15px;
        }
        
        .overview-image {
            width: 100%;
            height: 350px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        }
        
        .overview-content h1 {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 25px;
            font-weight: bold;
        }
        
        .overview-content p {
            color: #555;
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 1.05rem;
        }

        /* overview section  end */


        .infrastructure p{
            color: #555;
            line-height: 1.8;
            /* margin-bottom: 30px; */
            font-size: 1.05rem;
        }

        .infrastructure ul{
            list-style: none;
            padding: 0;
        }

        .infrastructure li{
            padding: 10px 0;
            color: #555;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .infrastructure li::before{
               content: "\f058";
                font-family: "Font Awesome 5 Free";
                font-weight: 900;
                left: 0;
                top: 2px;
                font-size: 16px;
                color: #e74c3c;
        }


         @media (max-width: 992px) {
            .overview-grid {
                grid-template-columns: 1fr;
            }
            
            .infrastructure-grid {
                grid-template-columns: 1fr;
            }
            
            .storage-grid {
                grid-template-columns: 1fr;
            }
            
            .timeline-item {
                grid-template-columns: 1fr;
            }
            
            .timeline-item:nth-child(even) .timeline-content,
            .timeline-item:nth-child(odd) .timeline-content {
                order: 0;
                text-align: left;
            }
            
            .timeline-marker {
                margin: 20px auto;
            }
        }

                @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .overview-image {
                height: 350px;
            }
        }
        

                .page-header h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 62%);
    z-index: 1;
}