   body {
            background: #086621 !important;
            font-family: 'Poppins', sans-serif;
        }

        .header {
            text-align: center;
            padding: 0px 0px;
                        background: linear-gradient(45deg,#084e0b ,#073603,#031e00);
            margin: 0px !important;
            border-radius: 10px;
            position: relative;
            box-shadow: 0 0 20px rgba(255, 0, 0, 0.1);
            animation: headerGlow 3s infinite;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent,
                rgba(255, 0, 0, 0.1),
                transparent
            );
            transform: rotate(45deg);
            animation: lightSweep 3s infinite;
        }

        .header , .webhxb {
            color: #ffd700;
            font-size: 32px;
            font-weight: 600;
            margin: 5px 0;
            letter-spacing: 2px;
            text-transform: uppercase;
            position: relative;
            text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
        }

        @keyframes headerGlow {
            0% {
                box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
                border: 1px solid rgba(255, 0, 0, 0.5);
            }
            50% {
                box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
                border: 1px solid rgba(255, 215, 0, 0.8);
            }
            100% {
                box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
                border: 1px solid rgba(255, 0, 0, 0.5);
            }
        }

        @keyframes lightSweep {
            0% {
                transform: translateX(-100%) rotate(45deg);
            }
            50% {
                transform: translateX(100%) rotate(45deg);
            }
            100% {
                transform: translateX(-100%) rotate(45deg);
            }
        }

        .city-names {
            position: relative;
            z-index: 1;
            animation: textFlicker 2s infinite alternate;
        }

        @keyframes textFlicker {
            0%, 100% {
                opacity: 1;
            }
            90% {
                opacity: 0.8;
            }
            95% {
                opacity: 0.9;
            }
        }

        .city-names {
            color: #fff;
            font-size: 10px;
            font-weight: 500;
            /* margin: 10px 0; */
            letter-spacing: 1px;
            text-transform: uppercase;
        }

@media screen and (max-width: 480px) {
    .header {
        padding: 3px 0px 5px 0px !important;
        margin: 2px 0;
        border-width: 1px;
        border-radius: 6px;
    }

    .header, .webhxb {
        font-size: 25px;
        letter-spacing: 1px;
        padding: 5px 0px 1px 0px;
    }

    .header h1, .header h6 {
        font-size: 14px;
        padding: 3px;
        margin: 2px 0;
    }

    .deepre {
        font-size: 12px !important;
    }

    /* Add shine animation for mobile */
    @keyframes headerShine {
        0% { background-position: -100% 0; }
        100% { background-position: 200% 0; }
    }

 .chart-heading {
            color: #ffd700;
            text-align: center;
            font-size: 17px;
            font-weight: bold;
            border: #ff0000 2px solid;
            border-radius: 10px;
            background: #580548;
            padding: 10px 0px 10px 0px;
            margin: 4px 0;
            text-transform: uppercase !important;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
}


        .bullet-point {
            display: inline-block;
            width: 5px;
            height: 5px;
            background: #ff0000;
            border-radius: 50%;
            margin: 0 10px;
        }

        @keyframes gradientMove {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }

        .display {
      background: #ff0000;
      padding: 15px;
      margin: 5px 0px 5px 0px;
      font-size: 25px;
      text-align: center;
      border: #ffeb00 3px solid;
      color: #ffd700;
      border-radius: 8px;
        }

        .about-content {
            margin: 15px;
            padding: 20px;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transform: translateY(0);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .about-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .info-text {
            color: #ffffff;
            font-size: 18px;
            line-height: 1.8;
            text-align: center;
            margin: 0;
            padding: 10px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
            letter-spacing: 0.5px;
        }

        .nav-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 10px;
        }

        .nav-buttons a {
            background: linear-gradient(45deg, #ff0000, #ff5500);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .nav-buttons a i {
            margin-right: 5px;
            font-size: 16px;
            transition: transform 0.3s ease;
        }

        .nav-buttons a:hover i {
            transform: scale(1.2);
        }

        .nav-buttons a:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
        }

        footer {
            position: relative;
            bottom: 0;
            width: 100%;
            background: #020557;
            border-top: 1px solid rgba(255, 0, 0, 0.2);
        }

        .footer-content {
            padding: 15px 0;
        }

        .main-container {
            margin-bottom: 160px; /* Add space for fixed footer */
        }

        .copyright {
            color: #fff;
            font-size: 14px;
            opacity: 0.8;
        }

        .copyright i {
            margin-right: 5px;
            color: #ff0000;
        }

         .con {
            width: 100%;
            height: auto;
            font-family: 'Poppins', sans-serif;
            padding: 0px;
            margin-top: 5px;
        }
        .tech-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0;
            border: 5px solid #ff0000;
            border-radius: 20px;
            overflow: hidden;
            animation: borderColor 3s linear infinite;
            background: #020343;
            margin: 0;
            padding: 10px;
        }
        .tech-box {
            padding: 5px 0;
            background: #020343;
            transition: all 0.3s ease;
            cursor: pointer;
            margin: 0;
        }
        .tech-box:nth-child(2),
        .tech-box:nth-child(4) {
            /* border: 0.5px solid #ffffff; */
            margin: 5px 150px;
        }
        .tech-box:hover {
            background: #1a1a1a;
            transform: scale(1.02);
            box-shadow: 0 5px 15px rgba(255,215,0,0.2);
        }
        p {
            margin: 0;
            font-size: 20px;
            font-weight: 900;
            color: #ffd700;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 3px;
            
        }


        @keyframes borderColor {
            0% { border-color: #ff0000; }
            25% { border-color: #00ff00; }
            50% { border-color: #0000ff; }
            75% { border-color: #ff00ff; }
            100% { border-color: #ff0000; }
        }
          marquee span {
        margin: 0 15px;
        color: #ffeb00;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }

    /* Add these styles to your existing CSS */
    .disclaimer-section {
        max-width: 800px;
        margin: 20px auto;
        padding: 5px;
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(2, 5, 87, 0.4));
        border-radius: 15px;
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    }

    .disclaimer-heading {
        color: #ffeb00;
        font-size: 28px;
        font-weight: 700;
        text-align: center;
        /* margin-bottom: 20px; */
        text-transform: uppercase;
        letter-spacing: 2px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        background: linear-gradient(45deg, #ff0000, #ff5500);
        padding: 15px;
        border-radius: 10px;
        margin-top: 0;
    }

    .disclaimer-text {
        color: #ffffff;
        font-size: 16px;
        line-height: 1.8;
        text-align: justify;
        padding: 15px;
        border: 4px solid #ff0000;
        margin: 10px 0;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 10px;
    }
          .marquee-container {
        background: linear-gradient(45deg, #020557, #1a237e);
        padding: 12px;
        margin: 5px 0;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 0, 0, 0.2);
        border: #ffeb00 1px solid;
    }

    marquee {
        color: #fff;
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    marquee span {
        margin: 0 15px;
        color: #ffeb00;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }