/* --- General Body & Theme Styles --- */
:root {
    --primary-blue: #0d2a53;
    --secondary-blue: #0f3d7e;
    --gold-color: #ffc107;
    --light-bg: #f8f9fa;
    --card-bg: #ffffff;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-bg); /* Default background */
}

/* --- Header & Navigation --- */
.header-main {
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}
.navbar-brand .logo-icon {
    height: 40px;
}
.navbar-brand .logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-left: 10px;
}
.navbar-brand .logo-gold {
    color: var(--gold-color);
}
.navbar .nav-link {
    color: #e0e0e0;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}
.navbar .nav-link:hover, .navbar .nav-link.active {
    color: #fff;
}
.btn-primary {
    background-color: var(--gold-color);
    border-color: var(--gold-color);
    color: #000;
    font-weight: 600;
    padding: 10px 25px;
}
.btn-primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
}

/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}
.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
}
.hero-section h1 .gold-text {
    color: var(--gold-color);
}
.hero-section p {
    font-size: 1.1rem;
    color: #d0d0d0;
}
.hero-section .btn-outline-light {
    border-color: var(--gold-color);
    color: var(--gold-color);
    font-weight: 600;
    padding: 10px 25px;
}
.hero-section .btn-outline-light:hover {
    background-color: var(--gold-color);
    color: #000;
}
.hero-features {
    margin-top: 50px;
}
.hero-feature-item {
    text-align: center;
}
.hero-feature-item i {
    font-size: 2.5rem; /* Increased icon size */
    color: var(--gold-color);
    margin-bottom: 15px;
}
.hero-feature-item h6 {
    color: #fff;
    font-weight: 500;
}

/* --- Services Section --- */
.services-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}
.service-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    height: 100%;
    transition: transform 0.3s ease;
}
.service-card:hover {
    transform: translateY(-10px);
}
.service-card .icon {
    width: 60px;
    height: 60px;
    background-color: #fff3cd;
    color: var(--gold-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.service-card h5 {
    font-weight: 600;
    margin-bottom: 15px;
}
.service-card ul {
    list-style-type: none;
    padding-left: 0;
    text-align: left;
}
.service-card ul li {
    margin-bottom: 10px;
    color: #6c757d;
}
.service-card ul li::before {
    content: '•';
    color: var(--gold-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* --- Why Choose Us Section --- */
.why-choose-us-section {
    background: linear-gradient(90deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}
.why-choose-us-section .icon-circle {
    width: 80px;
    height: 80px;
    background-color: var(--gold-color);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 2.5rem;
}

/* --- Refer and Earn Section --- */
.refer-earn-section {
    padding: 80px 0;
    background: linear-gradient(to right, #ffffff, #fff9e7); /* Creamy gradient background */
}
.refer-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    text-align: center;
}
.refer-card .icon-box {
    width: 70px;
    height: 70px;
    background-color: #fff3cd;
    color: var(--gold-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}
.refer-card .list-group-item {
    background-color: transparent;
    border: none;
    padding: 0.75rem 0;
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}
.refer-card .list-group-item strong {
    color: #343a40;
}
.refer-card .list-group-item span {
    color: #0d2a53; /* Primary Blue for contrast */
    font-weight: 600;
}
.partnership-level {
    text-align: left;
}
.partnership-level .level-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}
.partnership-level .level-title {
    font-weight: 600;
    color: #0d2a53;
}
/* --- Footer Section --- */
.footer-main {
    background-color: #0d2a53; /* Deep Blue Background */
    color: #a0a0a0; /* Light grey text */
    padding: 60px 0 0 0;
}
.footer-main .logo-text {
    color: #fff;
}
.footer-main .social-icons a {
    color: #a0a0a0;
    font-size: 1.1rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}
.footer-main .social-icons a:hover {
    color: #fff;
}
.footer-main h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.footer-main .footer-links {
    list-style: none;
    padding-left: 0;
}
.footer-main .footer-links li {
    margin-bottom: 10px;
}
.footer-main .footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-main .footer-links a:hover {
    color: #fff;
}
.footer-contact-info {
    border-top: 1px solid #334a6d;
    border-bottom: 1px solid #334a6d;
    padding: 30px 0;
}
.footer-contact-info .contact-item i {
    font-size: 1.5rem;
    color: var(--gold-color);
}
.footer-contact-info .contact-item .info-title {
    font-size: 0.9rem;
    color: #a0a0a0;
    margin-bottom: 0;
}
.footer-contact-info .contact-item .info-text {
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
}
.footer-bottom {
    padding: 20px 0;
}
.footer-bottom .bottom-links a {
    color: #a0a0a0;
    text-decoration: none;
    margin: 0 10px;
}
.footer-bottom .bottom-links a:hover {
    color: #fff;
}
.risk-warning {
    background-color: #0f3d7e;
    padding: 20px;
    font-size: 0.85rem;
}
.risk-warning strong {
    color: var(--gold-color);
}
