/* ============================================
   GLOBAL PREMIUM STYLES
   ============================================ */

body {
    background: #050506;
    color: #f7f7f7;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

/* Gold Accent */
.gold {
    color: #f5c059;
}

/* ============================================
   NAVIGATION BAR
   ============================================ */

nav {
    width: 100%;
    padding: 18px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #050506;
    border-bottom: 1px solid #111;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav .logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

nav .logo img {
    height: 52px;
    border-radius: 12px;
}

nav .logo h1 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #f5c059;
}

/* Nav Links */
nav ul {
    display: flex;
    list-style: none;
    gap: 28px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: #f5c059;
    font-size: 15px;
    font-weight: 500;
    transition: 0.2s;
}

nav ul li a:hover {
    color: #ffffff;
}

/* Contact Button */
.btn-contact {
    padding: 10px 22px;
    background: #f5c059;
    color: #050506 !important;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}

/* ============================================
   DROPDOWN MENU
   ============================================ */

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: #0c0d11;
    padding: 12px 0;
    border-radius: 8px;
    top: 28px;
    min-width: 160px;
    border: 1px solid #222;
}

.dropdown-content a {
    display: block;
    padding: 10px 16px;
    color: #f5c059;
    text-decoration: none;
    font-size: 15px;
}

.dropdown-content a:hover {
    background: #1a1a1d;
    color: #fff;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    width: 100%;
    padding: 140px 30px;
    background: linear-gradient(90deg, #662DFF, #BF33C8, #FF7A50);
    text-align: center;
}

.hero-inner {
    max-width: 860px;
    margin: auto;
}

.hero h2 {
    font-size: 50px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.hero p {
    font-size: 18px;
    max-width: 620px;
    margin: 0 auto;
    color: #f7eefe;
}

/* Hero Buttons */
.hero-actions {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-gold {
    padding: 14px 34px;
    background: #f5c059;
    color: #050506;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    transition: 0.2s;
}

.btn-gold:hover {
    background: #ffe07d;
}

.btn-outline {
    padding: 14px 32px;
    border: 2px solid #f5c059;
    border-radius: 50px;
    color: #f5c059;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: 0.2s;
}

.btn-outline:hover {
    background: #f5c059;
    color: #050506;
}

/* ============================================
   FEATURED CAREER PATHS
   ============================================ */

.section {
    padding: 100px 30px;
    text-align: center;
}

.section h3 {
    font-size: 32px;
    color: #f5c059;
    margin-bottom: 8px;
}

.section p {
    max-width: 620px;
    margin: 0 auto 45px;
    color: #c6c6c6;
}

/* 4-Grid Layout */
.grid-4 {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.career-card {
    background: #0d0f15;
    padding: 30px;
    border-radius: 18px;
    border: 1px solid #1a1c22;
    text-align: left;
    transition: 0.25s ease;
}

.career-card:hover {
    transform: translateY(-6px);
    background: #14161f;
}

.career-card h4 {
    color: #f5c059;
    font-size: 20px;
    margin-bottom: 10px;
}

.career-card p {
    font-size: 15px;
    color: #c4c4c4;
    line-height: 1.5;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: #050506;
    padding: 40px 0;
    text-align: center;
    color: #888;
    border-top: 1px solid #111;
    margin-top: 100px;
}

footer a {
    color: #f5c059;
    text-decoration: none;
    margin: 0 8px;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */

@media(max-width: 900px) {
    nav {
        padding: 14px 24px;
    }

    .hero h2 {
        font-size: 36px;
    }

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