body {
            background: linear-gradient(180deg, #0D2538 0%, #091821 100%);
        }
.project-hero {
            height: 70vh;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #0FA9E1 0%, #16213e 100%);
        }

        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.6);
        }

        .hero-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
            padding: 80px 50px;
        }
    .project-category {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(15, 169, 225, 0.2);
            border: 1px solid #0FA9E1;
            border-radius: 30px;
            color: #0FA9E1;
            /* font-size: 0.9rem; */
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .project-title {
            /* font-size: 4rem; */
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #0FA9E1, #6dd5ed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .project-location {
            /* font-size: 1.3rem; */
            color: #ccc;
            display: flex;
            align-items: center;
            gap: 10px;
        }
    /* Project Info Bar */
        .info-bar {
            background: linear-gradient(135deg, #0D2538 0%, #16213e 100%);
            padding: 40px 50px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            border-bottom: 2px solid rgba(15, 169, 225, 0.3);
        }

        .info-item {
            text-align: center;
        }

        .info-label {
            font-size: 1.8rem;
            color: #6dd5ed;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .info-value {
            font-size: 2rem;
            font-weight: 600;
            color: #0FA9E1;
        }

        /* Main Content */
        .project-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 50px;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 60px;
        }

        .main-content h2 {
            /* font-size: 2.5rem; */
            margin-bottom: 30px;
            color: #fff;
        }

        .main-content h2 span {
            color: #0FA9E1;
        }

        .main-content p {
            /* font-size: 1.1rem; */
            color: #b8d8e8;
            margin-bottom: 20px;
            text-align: justify;
        }

        .main-content ul {
            list-style: none;
            margin: 30px 0;
        }

        .main-content li {
            padding: 15px 0;
            padding-left: 30px;
            position: relative;
            color: #b8d8e8;
            /* font-size: 1.05rem; */
        }

        .main-content li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #0FA9E1;
            font-weight: bold;
            /* font-size: 1.3rem; */
        }

        /* Sidebar */
        .sidebar {
            position: sticky;
            top: 20px;
            height: fit-content;
        }

        .info-card {
            background: rgba(15, 169, 225, 0.08);
            padding: 30px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(15, 169, 225, 0.2);
            margin-bottom: 30px;
        }

        .info-card h3 {
            /* font-size: 1.5rem; */
            margin-bottom: 20px;
            color: #0FA9E1;
        }

        .info-row {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            border-bottom: 1px solid rgba(15, 169, 225, 0.15);
        }

        .info-row:last-child {
            border-bottom: none;
        }

        .info-row label {
            color: #6dd5ed;
            /* font-size: 0.95rem; */
        }

        .info-row span {
            color: #fff;
            font-weight: 500;
        }

        .cta-card {
            background: linear-gradient(135deg, #0FA9E1, #6dd5ed);
            padding: 40px;
            border-radius: 15px;
            text-align: center;
        }

        .cta-card h3 {
            /* font-size: 1.8rem; */
            margin-bottom: 15px;
        }

        .cta-card p {
            margin-bottom: 25px;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: #fff;
            color: #0FA9E1;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        /* Image Gallery */
        .gallery-section {
            margin-top: 60px;
        }

        .gallery-section h2 {
            /* font-size: 2.5rem; */
            margin-bottom: 40px;
            text-align: center;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            height: 300px;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.5));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover::after {
            opacity: 1;
        }

        /* Features Section */
        .features-section {
            margin-top: 60px;
            background: transparent;
            padding: 60px 0;
            border-radius: 0;
            border: none;
            border-top: 2px solid rgba(15, 169, 225, 0.2);
            border-bottom: 2px solid rgba(15, 169, 225, 0.2);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .feature-item {
            text-align: center;
            padding: 50px 30px;
            background: linear-gradient(135deg, rgba(15, 169, 225, 0.1), rgba(109, 213, 237, 0.05));
            border-radius: 0;
            transition: all 0.3s ease;
            position: relative;
            clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
            border-left: 3px solid rgba(15, 169, 225, 0.5);
        }

        .feature-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, transparent, rgba(15, 169, 225, 0.15));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .feature-item:hover {
            background: linear-gradient(135deg, rgba(15, 169, 225, 0.2), rgba(109, 213, 237, 0.1));
            transform: translateX(10px);
            border-left-color: #0FA9E1;
        }

        .feature-item:hover::before {
            opacity: 1;
        }

        .feature-icon {
            /* font-size: 3rem; */
            margin-bottom: 15px;
        }

        .feature-item h4 {
            /* font-size: 1.2rem; */
            margin-bottom: 10px;
            color: #0FA9E1;
        }

        .feature-item p {
            color: #b8d8e8;
            /* font-size: 0.95rem; */
        }

        /* Related Projects */
        .related-section {
            margin-top: 80px;
            padding-top: 80px;
            border-top: 2px solid rgba(15, 169, 225, 0.2);
        }

        .related-section h2 {
            font-size: 2.5rem;
            margin-bottom: 40px;
            text-align: center;
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .related-card {
            background: linear-gradient(135deg, rgba(15, 169, 225, 0.08), rgba(22, 33, 62, 0.5));
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s ease;
            cursor: pointer;
            border: 1px solid rgba(15, 169, 225, 0.2);
        }

        .related-card:hover {
            transform: translateY(-10px);
            border-color: #0FA9E1;
        }

        .related-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .related-content {
            padding: 25px;
        }

        .related-content h3 {
            /* font-size: 1.4rem; */
            margin-bottom: 10px;
            color: #fff;
        }

        .related-content p {
            color: #6dd5ed;
            /* font-size: 0.95rem; */
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
            }

            .sidebar {
                position: static;
            }
        }

        @media (max-width: 768px) {
            .project-hero {
                height: 50vh;
            }

            .hero-overlay {
                padding: 40px 20px;
            }

            .project-title {
                font-size: 2.5rem;
            }

            .project-location {
                font-size: 1rem;
            }

            .info-bar {
                padding: 30px 20px;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .project-content {
                padding: 40px 20px;
            }

            .main-content h2 {
                font-size: 2rem;
            }

            .main-content p {
                font-size: 1rem;
            }

            .features-section {
                padding: 40px 20px;
            }

            .cert-image {
                height: 250px;
                clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
            }

            .feature-item {
                clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
                padding: 40px 20px;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .related-grid {
                grid-template-columns: 1fr;
            }

            .content-grid {
                gap: 40px;
            }
        }

        @media (max-width: 480px) {
            .project-title {
                font-size: 2rem;
            }

            .info-bar {
                grid-template-columns: 1fr;
            }

            .info-value {
                font-size: 1.3rem;
            }

            .main-content h2 {
                font-size: 1.8rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }
        }    