body {
    margin: 0;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
    background: #0b1220;
    color: #ffffff;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* LOGO */
.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-area img {
    height: 40px;
}

.logo-area strong{
    font-size: 18px;
    background: linear-gradient(135deg, #FFD700, #FFC107, #FFEA00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s ease-in-out infinite;
    padding-top:12px;
}
  
.logo-area strong a {
    text-decoration: none;
}
 
/* NAVIGATION */
.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.88;
    font-weight: 500;
    transition: 0.3s;
    padding: 8px 10px;
    background: linear-gradient(135deg, #FFD700, #FFC107, #FFEA00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links a:hover {
    animation: shine 2s ease-in-out infinite;
}

/* MOBILE TOGGLE */
.mobile-toggle {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

/* ACCOUNT */
.auth-area {
    position: relative;
}

.auth-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: white;
    cursor: pointer;
    transition: 0.2s;
    font-size: 14px;
}

.auth-btn:hover {
    background: rgba(255,255,255,0.15);
}

.auth-dropdown {
    position: absolute;
    right: 0;
    top: 50px;
    background: #ffffff;
    color: black;
    border-radius: 12px;
    width: 190px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    overflow: hidden;
    display: none;
}

.auth-dropdown a {
    display: block;
    padding: 12px;
    text-decoration: none;
    color: black;
    font-weight: 500;
}

.auth-dropdown a:hover {
    background: #f3f4f6;
}

/* HERO */
.hero {
    padding: 170px 20px 110px;
    text-align: center;
    background: radial-gradient(circle at top, #1e293b, #0b1220);
}

.hero img {
    height: 90px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 46px;
    font-weight: bold;
    background: linear-gradient(135deg, #FFD700, #FFC107, #FFEA00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s ease-in-out infinite;
}

.hero p {
    max-width: 760px;
    margin: 20px auto;
    opacity: 0.92;
    font-size: 18px;
    line-height: 1.8;
    color: #f9fafb;
}

/* BUTTON */
.btn-primary {
    background: linear-gradient(135deg, #FFD700, #FFC107, #FFEA00);
    border: none;
    color: #0b1220;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 999px;
    transition: 0.5s;
}

.btn-primary:hover {
    background-position: right center;
    color: #0b1220;
}

/* SECTION */
.section {
    padding: 80px 20px;
}

.section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700, #FFC107, #FFEA00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s ease-in-out infinite;
}

/* CARDS */
.card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 30px 20px;
    height: 100%;
    color: #ffffff;
    text-align: center;
    transition: 0.5s;
    margin-bottom: 20px;
}

.card:hover {
    transform: translateY(-5px);
    border-image: linear-gradient(45deg, #FFD700, #FFC107, #FFEA00) 1;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #FFD700, #FFC107, #FFEA00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s ease-in-out infinite;
}

.card p {
    font-size: 15px;
    opacity: 0.88;
    line-height: 1.7;
    color: #ffffff;
}

.card i {
    color: #FFD700;
    font-size: 38px;
    margin-bottom: 18px;
    display: inline-block;
}

/* CONTACT */
.contact-wrapper {
    max-width: 650px;
    margin: auto;
}

.form-control {
    margin-bottom: 12px;
    border-radius: 10px !important;
    border: 1px solid transparent !important;
    padding: 14px !important;
    background: rgba(255,255,255,0.08) !important;
    color: white !important;
    box-shadow: none !important;
}

.form-control::placeholder {
    color: rgba(255,255,255,0.7);
}

.form-control.error {
    border-color: #ef4444 !important;
}

.feedback {
    margin-bottom: 10px;
    font-weight: bold;
}

.feedback-global {
    text-align: center;
    font-weight: bold;
    margin-bottom: 15px;
}

/* ANIMATION */
@keyframes shine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* MOBILE */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: #0f172a;
        display: none;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 10px 0;
        font-size: 16px;
    }

    .auth-area {
        display: block;
    }

    .auth-btn span {
        display: none;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 16px;
    }

    .logo-area strong {
        font-size: 16px;
    }
}