               /* Header */
        header {
            position: relative;
            top: 0;
            height: 15vh;
            width: 100%;
	        border-radius: 0px 0px 20px 20px;
            background: #ffffff;
            z-index: 999;
            transition: all 0.3s ease;
        }


        .header {
            top: 0;
            align-items: center;
            height: 15vh;
            width: 100%;
            /*background: rgba(26, 26, 46, 0.95);*/
            background: rgba(26, 26, 46, 0.95);
	        border: 2px solid #DAA520;
	        border-radius: 0px 0px 20px 20px;
            backdrop-filter: blur(30px);
            z-index: 1000;
            padding: 1rem 2rem;
            transition: all 0.3s ease;
        }
	    .header:hover{
	        box-shadow: 0px 0px 10px 10px #DAA520;
	    }
	

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            min-width: auto;
            max-width: 1800px;
            margin: 0 auto;
        }

        .logo {
            margin-right: auto;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .logo:hover {
            transform: scale(1.5) rotate(370deg);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
        }

        .nav-links {
            font-family: Royal;
            display: flex;
            position: relative;
            list-style: none;
            align-self: center;
            gap: 2rem;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 2rem;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            align-self: center;
        }

        .nav-links a:hover {
            color: #DAA520;
            transform: translateY(-2px);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background:  linear-gradient(90deg, #ffd700, #ffed4e);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .three-line-menu{
            overflow: visible;
            width: 30px;
            height: 30px;
            right: 0px;
            display: none;
            background: transparent;
            position: relative;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            transform: rotate(180deg);
        }
        .three-line-menu div {
            display: block;
            margin: 5px 0;
            border: #DAA520 solid 1px;
            background-color: #fff;
            height: 4px;
            border-radius: 15px;
            transition: all 0.3s ease;
        }
        .three-line-menu div.one{
            width: 25px;
        }
        .three-line-menu div.two{
            width: 20px;
            
            
        }
        .three-line-menu div.three{
            width: 30px;
            
        }

        .three-line-menu:hover div {
            width: 30px;
            box-shadow: #DAA520 0px 0px 2px 2px;
        }
        /* mobile nav links*/

        .mobile-nav {
            display: flex;
            flex-direction: column-reverse;
            position: fixed;
            overflow-x: hidden;
            text-decoration: none;
            top: 0;
            right: 0;
            width: 0%;
            height: 100%;
            background-color: rgba(218, 165, 32, 0.705);
            z-index: 2000;
            transform: rotate(180deg);
            transition: 0.5s ease;
        }
        .closebtn {
            color: white;
            font-size: 50px;
            font-weight: bold;
            position: absolute;
            float: right;
            clear: left;
            top: 20px;
            right: 40px;
            text-decoration: none;
        }
        .mobile-nav-links {
            list-style: none;
            padding: 20px;
            margin: 0;
            gap: 20px;
            display: flex;
            align-items: center;
            flex-direction: column;
            rotate: 180deg;
        }   
        .mobile-nav-links li a {
            color: rgba(26, 26, 46, 0.98);
            font-size: 24px;    
            margin: 10px 0;
            display: flex;
            text-decoration: none;

        }


        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            pointer-events: none;
            z-index: 1000;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: linear-gradient(45deg, #ffd700, #ffed4e);
            border-radius: 50%;
            animation: float 6s infinite ease-in-out;
            opacity: 0.7;
        }
        .border-button{
            position: relative;
            overflow: hidden;
            width: 80%;
            height: 15vh;
            font-family: JosefinSans;
            background: white;
            color: white;
            padding: 15px 30px;
            border: 2px solid rgba(26, 26, 46, 0.95);
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        .border-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.7; }
            50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
        }


        @media (max-width: 768px) {
            .nav-links { display: none; z-index: -1; }
            .three-line-menu{
                display: block;
                z-index: 1010;
            }
        }