      body {
            background: #3706e4;
            font-family: 'Poppins', sans-serif;
            margin: 0px !important;
            padding: 0px !important;
            width: 100%;
        }

        .header {
            text-align: center;
            padding: 0px 0px;
            background: #020557;
            margin: 0px;
            border-radius: 10px;
            position: relative;
            box-shadow: 0 0 20px rgba(255, 0, 0, 0.1);
        }

        .header::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border: 1px solid #ff0000;
            border-radius: 10px;
        }

        .header , .webhxb {
            color: #fff;
            font-size: 32px;
            font-weight: 600;
            margin: 10px 0;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .city-names {
            color: #fff;
            font-size: 16px;
            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);
        }
}
        .display {
          
            font-size: 24px;
            font-weight: 600;
            text-align: center;
            /* margin: 20px 0;  */
            padding: 10px;
            background: linear-gradient(45deg, #ff0000, #ff5500);
            color: white;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
            animation: gradientMove 5s ease infinite;
        }

        .privacy-content {
            /* max-width: 800px; */
            margin: 00px auto !important;
            padding: 10px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            backdrop-filter: blur(5px);
            text-align: center;
        }

        .privacy-section {
            margin-bottom: 3px !important;
        }

        .privacy-heading {
            color: #ffeb00;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 8px !important;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .privacy-text {
            color: #ffffff;
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 4px !important;
            text-align: justify;
        }
  .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:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
        }

        footer {
            margin: 0px !important;
            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;
            text-align: center;
        }
h2{

   border: #ff0000 2px solid; 
    padding: 10px;
    border-radius: 10px;
    background: rgba(171, 35, 35, 0.918);
}
p{

    color: #ffffff;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    border: #ff0000 1px solid;
    padding:0px 10px 0px 10px ;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

        @keyframes gradientMove {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }