:root {
    --primary-blue: #0A1931;
    --secondary-blue: #185ADB;
    --accent-gold: #C5A059;
    --light-bg: #F4F7F9;
    --text-dark: #333333;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header & Navigation */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background: var(--primary-blue);
    color: var(--white);
    font-size: 13px;
    padding: 6px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.portal-links a {
    color: var(--accent-gold);
    font-weight: 600;
}

.main-navigation {
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
    width: auto;
}

.menu {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu > li > a {
    font-weight: 600;
    color: var(--primary-blue);
    padding: 12px 0;
    font-size: 13px;
    transition: color 0.3s;
}

.menu > li > a:hover {
    color: var(--accent-gold);
}

/* Multi-tier Dropdowns */
.menu-item-has-children {
    position: relative;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--primary-blue);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    min-width: 280px;
    display: none;
    flex-direction: column;
    padding: 10px 0;
    border-radius: 4px;
    z-index: 100;
}

.menu-item-has-children:hover > .sub-menu {
    display: flex;
}

.sub-menu li a {
    padding: 10px 20px;
    display: block;
    color: var(--white);
    font-size: 13px;
    transition: background 0.2s, color 0.2s;
}

.sub-menu li a:hover {
    background: var(--secondary-blue);
    color: var(--accent-gold);
}

/* Buttons */
.btn-gold {
    background: var(--accent-gold);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    display: inline-block;
}

.btn-gold:hover {
    background: #b08d4a;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.hero-section p {
    font-size: 17px;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* Cards & Grids Layout */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-body {
    padding: 20px;
}

/* Stats Counter Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    margin: 40px auto;
}

.stat-box h3 {
    font-size: 36px;
    color: #ff4d4d;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Floating Social Sidebar (Right Side) */
.floating-social {
    position: fixed;
    right: 0;
    top: 40%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.floating-social a {
    padding: 12px 15px;
    color: white;
    font-size: 18px;
    text-align: center;
    transition: width 0.3s;
}

.fs-whatsapp { background: #25D366; }
.fs-facebook { background: #3b5998; }
.fs-instagram { background: #E1306C; }
.fs-youtube { background: #FF0000; }

@media(max-width: 992px) {
    .menu { display: none; }
}