:root {
    --primary-dark: #020B2C;
    --primary-light: #234aaf;
    --accent: #00eeff;
    --text-light: #FFFFFF;
    --text-dark: #8B9AB9;
    --accent-blue1: #000000;
    --accent-white1: #ffffff;
    --accent-gold: #D4AF37;
    --hero-bg: #007efc;
    --card-bg: rgba(26, 95, 122, 0.1);
    --shadow-light: rgba(212, 175, 55, 0.15);
    --shadow-dark: rgba(0, 0, 0, 0.25);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4E06D 100%);
    --gradient-blue: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f5f9ff 0%, #d8e9ff 50%, #c0dbff 100%);
    color: var(--primary-dark);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Enhanced Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: relative;
}

.nav-logo .logo {
    cursor: pointer;
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo .logo:hover {
    transform: scale(1.05);
}

.nav-title .neon-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-title {
    position: absolute;
    left: 15%;
    transform: translateX(-50%);
}

.nav-links {
    display: flex;
    gap: 0.1rem;
    align-items: center;
}

.nav-links a {
    color: var(--hero-bg);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.nav-links a:hover::before {
    width: 80%;
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--hero-bg);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu a {
    color: var(--hero-bg);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0.35rem 0;
    padding: 1rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 200px;
    cursor: pointer;
}

.mobile-menu a:hover {
    color: var(--accent-gold);
    background: rgba(207, 181, 59, 0.1);
    transform: translateY(-2px);
}

/* Header Styles */
header {
    padding: 10rem 2rem 3rem;
    text-align: center;
    position: relative;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="grad" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:%23D4AF37;stop-opacity:0.05"/><stop offset="100%" style="stop-color:%23D4AF37;stop-opacity:0"/></radialGradient></defs><circle cx="50" cy="50" r="50" fill="url(%23grad)"/></svg>') center/400px 400px no-repeat;
    opacity: 0.3;
    pointer-events: none;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 400;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 2rem;
    position: relative;
    animation: fadeInUp 0.8s ease forwards;
}

header h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

/* Main Content Styles */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
}

main h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

main h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--gradient-blue);
    border-radius: 1px;
}

main p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--primary-dark);
    background: rgba(255, 255, 255, 0.8);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

main p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 20px 20px 0 0;
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    header h1 {
        font-size: 3.5rem;
    }
    
    main h2 {
        font-size: 2.2rem;
    }
    
    main p {
        padding: 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-title .neon-text {
        font-size: 1.5rem;
    }

    .nav-title {
        position: static;
        transform: none;
        margin-top: 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    header {
        padding: 8rem 1rem 2rem;
    }

    header h1 {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
    }

    main {
        padding: 1rem;
    }

    main h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    main p {
        padding: 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-title .neon-text {
        font-size: 1.3rem;
    }

    header h1 {
        font-size: 2.2rem;
    }

    main h2 {
        font-size: 1.6rem;
    }

    main p {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
}