
    body {
            background: #011c03;
            font-family: 'Arial', sans-serif;
            /* padding: 20px; */
        }
    .header {
            text-align: center;
            padding: 0px 0px;
            background: linear-gradient(45deg,#084e0b ,#073603,#031e00) !important;
            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: #05f7db;
            font-size: 32px;
            font-weight: 600;
            margin: 10px 0;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .city-names {
            color: #06f312;
            font-size: 12px;
            font-weight: 500;
            margin: 10px 0;
            letter-spacing: 1px;
            text-transform: uppercase;
        }


        /* Add these media queries for header section */
@media screen and (max-width: 768px) {
    .header {
        padding: 5px 0px;
        margin: 0px;
    }

    .header, .webhxb {
        font-size: 24px;
        margin: 8px 0;
        letter-spacing: 1px;
    }

    .city-names {
        font-size: 14px;
        margin: 8px 0;
        letter-spacing: 0.5px;
    }

    .header::after {
        border-width: 1px;
    }
}

@media screen and (max-width: 480px) {
    .header {
        padding: 3px 0px;
        border-radius: 8px;
    }

    .header, .webhxb {
        font-size: 20px;
        margin: 5px 0;
        letter-spacing: 0.5px;
    }

    .city-names {
        font-size: 10px;
        margin: 5px 0;
        letter-spacing: 0.3px;
        padding: 10px 5px;
    }

    .header::after {
        border-width: 1px;
    }

    /* Add gradient animation for mobile */
    @keyframes headerGradient {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    .header {
        background: linear-gradient( #025708, #037a0b, #025708);
        background-size: 200% 200%;
        animation: headerGradient 5s ease infinite;
    }
}

        .chart-heading {
            color: #ffd700;
            text-align: center;
            font-size: 24px;
            font-weight: bold;
            border: #ff0000 2px solid;
            border-radius: 10px;
            background: #580548;
            padding: 10px;
            margin: 20px 0;
            text-transform: uppercase;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
table{

width: 100%;

}
        .chart-table {
    
            border-collapse: collapse;
            background: #ffd700;
            padding: 10px 30px 0px 30px;
            border-radius: 10px;
            overflow: hidden !important;
            color: #000000;
            border: #ff0000 3px solid;
        }

        .chart-table th {
            background: linear-gradient(45deg, #ff0000, #ff5500);
            color: white;
            font-weight: bold;
            padding: 12px;
            text-align: center;
            text-transform: uppercase;
            font-size: 10px;
            padding: 10px;
            border: 1px solid #0cf5ee;
        }

        .chart-table td {
            padding: 16px;
            text-align: center;
            color: #0a0909;
            border: 1px solid rgb(3, 7, 254);
            font-size: 13px;
        }

        .chart-table td:first-child {
            background: linear-gradient(45deg, #580548, #800080);
            color: #ffd700;
            font-weight: 600;
        }

        .chart-table td:not(:first-child) {
            font-family: 'Digital-7', monospace;
            font-size: 15px;
            font-weight: bold;
        }

        .chart-table tbody tr:hover td {
            color: #fefefe;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }

        .chart-table tr:nth-child(even) {
            background: rgba(255, 0, 0, 0.05);
        }

        .chart-table tr:hover {
            background: rgb(5, 2, 63);
        }
/* media  */

/* Add these media queries for chart table */
@media screen and (max-width: 768px) {
    .chart-table {
        padding: 5px 10px;
        border-width: 2px;
        margin: 10px auto;
    }

    .chart-table th {
        padding: 8px;
        font-size: 12px;
    }

    .chart-table td {
        padding: 10px;
        font-size: 12px;
    }

    .chart-table td:not(:first-child) {
        font-size: 13px;
    }

    .chart-heading {
        font-size: 20px;
        padding: 8px;
        margin: 5px 0;
    }
}

@media screen and (max-width: 480px) {
    /* Add wrapper for horizontal scroll */
    .chart-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -5px;
        padding: 0 5px;
    }
.month{
            
            font-size: 15px !important;
            text-align: center;
            padding: 10px;
            margin: 10px 0;
        }

    .chart-table {
        padding: 0px 0px;
        border-width: 1px;
        min-width: 100%; /* Prevent table from becoming too narrow */
    }

    .chart-table th {
        padding: 10px 0px 10px 0px !important;
        font-size: 10px;
    }

    .chart-table td {
        padding:0 px;
        font-size: 11px;
    }

    .chart-table td:first-child {
        font-size: 11px;
        position: sticky;
        left: 0;
        background: linear-gradient(45deg, #580548, #800080);
    }

    .chart-table td:not(:first-child) {
        font-size: 12px;

    }

    /* Custom scrollbar styling */
    .chart-wrapper::-webkit-scrollbar {
        height: 4px;
    }

    .chart-wrapper::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.1);
        border-radius: 2px;
    }

    .chart-wrapper::-webkit-scrollbar-thumb {
        background: #ff0000;
        border-radius: 2px;
    }

    .chart-heading {
        font-size: 20px;
        padding: 6px;
        margin: 10px 0;
    }
}





        .con {
            padding: 15px;
            background: linear-gradient(145deg, #1e4a11, #103605 , #023602 ,#032000);
            border: 3px solid #ff0000;
            border-radius: 15px;
            margin: 5px auto;
            max-width: 1200px;
            box-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
        }

        .tech-grid {
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding: 10px;
        }

        .tech-pair {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
            border-bottom: #05f7db 1px solid;
            border-left: 3px solid #05f7db;
            border-right: 3px solid #05f7db;
            border-radius: 10px;
        }

        .tech-box {
            position: relative;
            overflow: hidden;
        }

        .tech-box p {
            margin: 0;
            padding: 12px 20px;
            font-size: 20px;
            font-weight: 700;
            color: #ffd700;
            /* background: #800080; */
            /* border: 1px solid #ff0000; */
            border-radius: 8px;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .tech-box p::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #ff0000, #ff5500);
            opacity: 0;
            z-index: -1;
            transition: opacity 0.3s ease;
        }

        .tech-box p:hover {
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
        }

        .tech-box p:hover::before {
            opacity: 1;
        }

     

        @media (max-width: 768px) {
            .tech-pair {
                grid-template-columns: 1fr;
            }
            
            .tech-box p {
                font-size: 16px;
                padding: 10px 15px;
            }
        }

        @keyframes glow {
            0% { box-shadow: 0 0 5px #ff0000; }
            50% { box-shadow: 0 0 20px #ff0000, 0 0 30px #ff5500; }
            100% { box-shadow: 0 0 5px #ff0000; }
        }

        .tech-box p:active {
            transform: scale(0.95);
            animation: glow 0.5s ease-in-out;
        }
      .marquee-container {
        background: linear-gradient(45deg, #020557, #1a237e);
        padding: 12px;
        margin: 5px 0 !important;
        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);
    }
.month{
            color: #f5f905;
            font-size: 20px;
            font-weight: bold;
            text-align: center;
            border: #08fdd4 2px solid !important;
            padding: 10px;
            border-radius: 10px;
            background: #051444;
            margin: 10px 0;
            text-transform: uppercase;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
  

  
  
        .site-header {
            margin-top: 20px;
            background: #020557;
              /* border:2px solid rgb(255, 77, 0); */
            padding: 10px 0px 15px 0px !important;
            text-align: center;
    text-decoration: none
  
        }
   

  
a.nav-link {
            color: #e8f005;
            text-decoration: none;
            /* padding: 10px 20px; */
            
        }

        a.nav-link:hover {
            background-color: #ff0000;
            color: #fff;
        }

     
.linkyear {
        
            /* margin: 0 10px; */
            padding: 15px 15px;
            background-color: #470e47;
            border-radius: 5px;
            transition: background-color 0.3s ease;
            border-bottom: #0cf5ee 2px solid;
        }

        .linkyear:hover {
            background-color: #ff0000;
        }
   .site-footer {
        background: linear-gradient(45deg, #15410d, #548e03);
        padding: 20px;
        text-align: center;
        margin-top: 30px;
        border: 2px solid #08fdf9;
        box-shadow: 0 -2px 15px rgba(255, 0, 0, 0.2);
    }

    .footer-link {
        color: #f7f6f3;
        text-decoration: none;
        font-size: 18px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
    }

    .footer-link:hover {
        color: #ff0000;
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }


    .parainfo{
color: #ffd700;
text-align: justify;
font-size: 10px;
padding: 10px;
border-radius: 8px;
border: #08fdf9 1px solid;
background: #051639

}





.theading {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #edf902;
    background-color: #03083d;
    padding: 5px;
    border: #0c4eca 1px solid;

}
.align{
color: #fafe05;
font-size: 18px;
font-weight: bold;
background-color: #370238;
padding: 15px;
border: #0c4eca 1px solid;
text-align: center;
border-radius: 9px;
}

/* Add these media queries for table responsiveness */
@media screen and (max-width: 768px) {
    .table-container {
        margin: 10px 0;
        padding: 5px;
        border-radius: 8px;
    }

    .custom-table th {
        padding: 8px;
        font-size: 14px;
        letter-spacing: 0.5px;
    }

    .custom-table td {
        padding: 8px;
        font-size: 13px;
    }

    .table-heading {
        font-size: 18px;
        margin: 10px 0;
    }
}

@media screen and (max-width: 480px) {
    .table-container {
        margin: 5px 0;
        padding: 3px;
        border-radius: 6px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .custom-table {
        min-width: 400px; /* Prevent table from becoming too narrow */
    }

    .custom-table th {
        padding: 6px;
        font-size: 12px;
        letter-spacing: 0.3px;
    }

    .custom-table td {
        padding: 6px;
        font-size: 11px;
    }

    .table-heading {
        font-size: 16px;
        margin: 8px 0;
    }

    /* Custom scrollbar styling */
    .table-container::-webkit-scrollbar {
        height: 4px;
    }

    .table-container::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.1);
        border-radius: 2px;
    }

    .table-container::-webkit-scrollbar-thumb {
        background: #580548;
        border-radius: 2px;
    }

    /* First column sticky for better navigation */
    .custom-table td:first-child,
    .custom-table th:first-child {
        position: sticky;
        left: 0;
        background: linear-gradient(45deg, #580548, #800080);
        z-index: 1;
    }

.theading {
    text-align: center;
    font-size: 11px;
    font-weight: bold;
    color: #edf902;
    background-color: #03083d;
    padding: 5px;
    border: #0c4eca 1px solid;

}
.align{
color: #fafe05;
font-size: 19px;
font-weight: bold;
background-color: #370238;
padding: 15px;
border: #0c4eca 1px solid;
text-align: center;
border-radius: 9px;
}

}
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Digital-7&display=swap');
        body {
            font-family: 'Poppins', sans-serif;
}

       .back-button {
    display: block;
    width: fit-content;
    margin: 5px auto;
    padding: 10px 20px;
    background: linear-gradient(45deg, #020557, #1a237e);
    color: #00ff40;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #00ff40;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.back-button:hover {
    /* transform: translateY(-3px); */
    box-shadow: 0 0 20px rgba(0, 255, 64, 0.5);
    color: #ffd700;
    border-color: #ffd700;
}

.back-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 64, 0.1), transparent);
    transform: rotate(45deg);
    animation: buttonShine 3s infinite;
    z-index: 1;
}