﻿ .page-header7 {
  background: linear-gradient(to right, #c1f0f6, #6dd5fa); /* pastel blue to aqua */
  color:#fff;  
  text-align: center;
}
.logo img:hover {
  animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}


.project-section {
            padding: 50px;
            text-align: center;
        }

        .project-section h2 {
            margin-bottom: 20px;
            font-size: 32px;
            font-weight: 600;
        }

        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        .project-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: 0.3s ease;
            cursor: pointer;
        }

        .project-card:hover {
            transform: translateY(-8px);
        }

        .project-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: 0.4s;
        }

        .project-card:hover img {
            opacity: 0.9;
        }

        .project-name {
            padding: 15px;
            font-size: 18px;
            font-weight: 500;
        }

        /* Popup full screen view */
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 999;
        }

        .popup img {
            width: 80%;
            max-width: 900px;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(255,255,255,0.4);
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 40px;
            font-size: 40px;
            color: white;
            cursor: pointer;
            font-weight: bold;
        }

        @media(max-width: 600px) {
            .popup img {
                width: 95%;
            }
        }