
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            background-color: #f0f4fa;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        .container h2{
            font-size: 4em;
            text-align: center;
            margin-bottom: 2em;
        }

        .hero {
            margin-top:80px;
            background-color: #2c3e50;
            background-position: top;
            background-position: top;
            text-align: center;
            padding: 0px;
            color: #fff;
            box-sizing: border-box;
            position: relative;
            height: 100vh;
            overflow: hidden;
            background-color: #2c3e50;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
        }

        .hero-content {
            background: url(..//assets/images/background/black.png), rgba(0, 0, 0, 0);
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
            background-repeat: no-repeat;
            border: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            height: 70%;
            width: 100%;
        }

        
        p{
            text-align: justify;
            max-width: 800px;
        }

        .project-infor{
            display: flex;
            flex-direction: column;
            width  : 100%;
            align-items: center;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
  
        }

        .hero h1, .hero p {
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .hero h1 {
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
            font-size: 5rem;
            margin-bottom: 10px;
            padding: 10px;
            border-bottom: 5px solid #f9a826;
        }

        .project-intro,
        .project-details {
            padding: 50px 0;
            margin: 100px auto;
        }

        .project-intro h2,
        .project-details h3 {
            color: #333;
            margin-bottom: 20px;
        }

        .details-grid {
            display: flex;
            justify-content: space-between;
            gap: 30px;
        }

        .details-grid div {
            flex: 1;
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        }

        .gallery {
            padding: 100px 0;

        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }

        .gallery-grid img {
            width: 100%;
            height: auto;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .gallery-grid img:hover {
            transform: scale(1.05);
        }

        .modal {
            display: none;
            position: fixed;
            z-index: 10000;
            padding-top: 100px;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.8);
        }

        .modal-content {
            display: block;
            margin: auto;
            width: 90%;
            max-width: 600px;
           
        }
        .modal .nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: #fff;
            border: none;
            padding: 10px;
            cursor: pointer;
            font-size: 18px;
            z-index: 1;
        }

        #prev-button {
            left: 10px;
        }

        #next-button {
            right: 10px;
        }


        .close {
            position: absolute;
            top: 15px;
            right: 35px;
            color: #fff;
            font-size: 30px;
            cursor: pointer;
        }

        .footer {
            padding: 20px;
            text-align: center;
            background-color: #333;
            color: #fff;
        }

        /* Media Queries */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 5rem;
            }
            
            .details-grid {
                flex-direction: column;
            }

        .modal-content {
            display: block;
            margin: auto;
            width: 90%;
            max-width: 600px;
        }
        }

        @media (max-width: 768px) {
           
            .hero h1 {
                /* font-size: 1.8rem; */
            }

            .details-grid {
                gap: 15px;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                /* font-size: 1.5rem; */
            }

            .details-grid div {
                padding: 15px;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .modal-content {
            display: block;
            margin: auto;
            width: 90%;
            max-width: 600px;
           
            }
        }

        @media (min-width: 1440px) {
            .modal-content {
            display: block;
            margin: auto;
            width: 90%;
            max-width: 1200px;
           
            }
        }

        .project-logo{
            width:100%;
            display: flex;
            flex-direction:column;
            align-items:center;
        }

        .container-gallery {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 10em 10px;
        }

         /* Gallery items */
         .gallery-item {
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Ensure images cover the area */
            transition: transform 0.3s ease;
        }

         /* Hover effects */
         .gallery-item:hover {
            transform: translateY(-5px); /* Slight lift on hover */
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Enhanced shadow */
        }

        .gallery-item:hover img {
            transform: scale(1.1); /* Zoom effect */
        }
        .project-intro .container{
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 34px;
        }
       

         /* Style for the blinking cursor */
         #typewriter::after {
            content: '|';
            animation: blink 1s steps(1) infinite;
        }

        /* Blinking animation */
        @keyframes blink {
            50% {
                opacity: 0;
            }
        }

        #visual{
            height: 1000px;
        }

        .container-gallery {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 10em 10px;
            height: 100%;
        }

        .gallery {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 10px;
            height: 100%;
            padding: 10px;
            max-width: 1000px;
        }

        .projects {
            padding: 60px 20px;
            background-image: url(../assets/images/background/pink-blue-0.png);
            background-position: bottom;
            background-repeat: no-repeat;
            background-size: contain;
            width: 100%;
            max-width: none;
        }