
        /*<!------------------------------------------CSS CODE --------------------------------------------------------------->*/
        :root {
            --clr-s-01: 0px 3px 5px 0px rgba(104, 104, 104, 0.8); 
            --clr-s-02: 3px 3px 0px 0px rgba(0, 183, 0, 0.405); 
            --ff-primary: 'Arial', sans-serif;
            --clr-o-01: #0ab3f71a;
            --clr-o-02: #0ab3f733;
	    --clr-o-03: #00ff0033;
            --clr-1: #0ab3f7;
            --clr-2: #b0b0b0;
            --clr-3: #1e1e1e;
            --clr-4: #00FF00;
            --clr-5: #d116d1;
            --clr-6: #555;
            --clr-7: #444;
            --clr-8: #333;
            --clr-9: #666;
            --clr-10: #777;
            --clr-11: #888;
            --clr-12: #999;
            --clr-13: #222;
            --clr-14: #111;
            --clr-15: #000;
            --clr-16: #008;
            --clr-17: #9f9;  
            --clr-18: #f00;
            --clr-19: #008888;
	--clr-20: #008000;      
 --clr-b-1: 1px solid #b0b0b0;
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: var(--ff-primary);
            background-color: var(--clr-15);
            color: var(--clr-1);
            line-height: 1.6;
            margin-top: 80px;
            margin-left: 50PX;
            width: 95%;
        }
        
        /* NAVBAR STYLES */
        .navbar {
            background-color: var(--clr-5);
            color: var(--clr-1);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--clr-4);
        }

        .logo-container {
            display: grid;
            grid-template-columns: repeat(3, auto);
            grid-template-rows: auto auto;
            justify-content: center;
            align-items: center;
            gap: 5px;
            width: auto;
            max-width: 60%;
        }

        .logo-item {
            border: 1px solid var(--clr-4);
            padding: 1px 3px;
            font-size: 0.7em;
            color: var(--clr-4);
            background-color: var(--clr-5);
            text-transform: uppercase;
            font-weight: bolder;
            text-decoration: none;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .logo-item:hover {
            border: 1px solid var(--clr-5);
            color: var(--clr-15);
            background-color: var(--clr-4);
        }

        .logo-main {
            font-size: 1em;
            font-weight: bolder;
            color: var(--clr-16);
            text-transform: uppercase;
            text-align: center;
            background: conic-gradient(var(--clr-5), var(--clr-4));
            padding: 3px 6px;
            border: 2px solid var(--clr-16);
            text-decoration: none;
            grid-column: 1 / -1;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .nav-links-container {
            display: flex;
            gap: 10px;
            list-style: none;
            background: conic-gradient(var(--clr-5), var(--clr-4));
            padding: 3px 6px;
            border: 2px solid var(--clr-16);
        }
        
        .nav-item {
            position: relative;
        }
        
        .nav-link {
            color: var(--clr-17);
            border: 1px solid var(--clr-16);
            background-color: var(--clr-5); 
            font-weight: bolder;
            text-decoration: none;
            text-transform: uppercase;
            padding: 8px 10px;
            position: relative;
            box-shadow: var(--clr-s-01);
            
            font-size: 0.8rem;
            white-space: nowrap;
            display: block;
            font-weight: bolder ;
       
        }
        
        .nav-link:hover {
            color: var(--clr-4);
            background-color: var(--clr-5);
            box-shadow: var(--clr-s-02);
        }
        
        /* DROPDOWN STYLES */
        .dropdown-content {
            display: none;
            position: absolute;
            background-color: var(--clr-5);
            min-width: 200px;
            box-shadow: var(--clr-s-01);
            z-index: 1;
            padding: 5px 0;
            top: 100%;
            left: 0;
            border: 1px solid var(--clr-4);
            border-radius: 0 0 5px 5px;
        }
        
        .dropdown-content a {
            padding: 8px 15px;
            display: block;
            color: var(--clr-1);
            background-color: var(--clr-5);
            text-decoration: none;
            text-transform: uppercase;
            border-bottom: 1px solid var(--clr-17);
            font-size: 0.8rem;
            font-weight: bolder;
        }
        
        .dropdown-content a:hover {
            background-color: var(--clr-4);
            color: var(--clr-5);
        }
        
        .dropdown:hover .dropdown-content {
            display: block;
        }
        
        .dropdown > .nav-link::after {
            content: " ▼";
            margin-left: 5px;
            color: var(--clr-1);
            font-size: 0.6rem;
        }

        /* MOBILE MENU ICON */
        .menu-icon {
            display: none;
            flex-direction: column;
            cursor: pointer;
            width: 30px;
            justify-content: space-between;
            height: 21px;
        }
        
        .menu-icon div {
            width: 100%;
            height: 3px;
            background-color: var(--clr-1);
            transition: all 0.3s;
        }

