 * { box-sizing: border-box; margin: 0; padding: 0; font-family: Arial, sans-serif; }
        body { background-color: #000; color: #fff; padding-top: 60px; padding-bottom: 80px; }

        header, footer {
            background-color: pink;
            color: black;
            padding: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            width: 100%;
            z-index: 999;
        }

        header {
            top: 0;
            height: 60px;
        }

        footer {
            bottom: 0;
            flex-direction: column;
            text-align: center;
            height: 40px;
            justify-content: center;
        }

        header .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        header .logo img {
            height: 100px;
        }

        header .logo span {
            font-size: 1.5rem;
            font-weight: bold;
        }

        header button {
            margin-left: 10px;
            padding: 5px 10px;
            border: none;
            cursor: pointer;
        }

        .btn-red { background-color: red; color: #fff; }
        .btn-green { background-color: green; color: #fff; }
        .btn-white { background-color: white; color: black; }

        .slider img {
            width: 100%;
            height: 600px;
            object-fit: cover;
            display: none;
        }

        .section {
            padding: 20px;
        }

        .masked-text {
    font-size: 1.6rem;
    font-weight: bold;
    color: transparent;
    background-image: url('https://images.unsplash.com/photo-1732535725600-f805d8b33c9c?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D'); 
    background-size: 6%; /* Enlarged for smooth animation */
    background-position: 0 50%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-background 5s infinite alternate linear;
}

@keyframes animate-background {
    0% {
        background-position: 0 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

#scroll-container {
      width: 100%;
      white-space: nowrap;
      overflow: hidden;
      position: relative;
      height: 50px;

      font-size: 44px;
      line-height: 50px;
    }

    #scroll-text {
      position: absolute;
      white-space: nowrap;
      will-change: transform;
    }

         body {
            font-family: Arial, sans-serif;
            margin: 0;
            
        }
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
        }
        .tile {
            background-color: #000000;
            border-radius: 15px;
            box-shadow: 3px 3px 8px rgb(240 255 181);
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .tile:hover {
            transform: scale(1.05);
        }
        .tile img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        .tile h3 {
            margin: 10px;
            text-align: center;
        }
        .popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            justify-content: center;
            align-items: center;
        }
        .popup-content {
            background: #d9dbd9;
            border-radius: 15px;
            max-width: 600px;
            width: 90%;
            padding: 20px;
            position: relative;
           
        }
        .popup-content img {
            width: 100%;
            border-radius: 10px;
            margin-bottom: 2px;
        }
        .popup-content p {
            margin: 0;
        }
        .close-btn {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 20px;
            cursor: pointer;
            color: red;
        }


    #videoContainer {
      max-width: 600px;
      width: 100%;
      aspect-ratio: 16 / 9;
      margin: 0 auto;
    display: none;
    }
    iframe {
      width: 100%;
      height: 100%;
      border: none;
    }