/* Variables */
:root {
    --primary: #004e92;
    --secondary: #000428;
    --accent: #00d2ff;
    --text: #333;
    --light-bg: #f8f9fa;
    --white: #fff;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    margin-bottom: 15px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section { padding: 80px 0; }
.bg-light { background-color: var(--light-bg); }
.bg-dark { background-color: var(--secondary); color: var(--white); }
.bg-accent { background: linear-gradient(135deg, var(--secondary), var(--primary)); color: var(--white); }
.text-center { text-align: center; }
.text-white { color: var(--white); }

/* Navigation */
nav {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-links { display: flex; gap: 20px; }
.nav-links a { font-weight: 600; font-size: 0.9rem; transition: color 0.3s; }
.nav-links a:hover { color: var(--primary); }

.btn-contact {
    background: var(--primary);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 5px;
}

/* Hero */
.hero {
    height: 90vh;
    background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1351&q=80') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero .overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 4, 40, 0.7);
}

.hero-content { position: relative; z-index: 1; }
.hero h1 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 20px; }
.hero .highlight { color: var(--accent); }
.hero h2 { font-size: 2rem; font-weight: 300; }
.tagline { font-size: 1.2rem; letter-spacing: 2px; text-transform: uppercase; border-top: 1px solid var(--accent); display: inline-block; padding-top: 10px; margin-top: 10px; }

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 10px auto;
}

/* About Grid */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: var(--white);
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid var(--primary);
}

.future-banner {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: var(--primary);
    color: var(--white);
    border-radius: 5px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.value-item {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}

.value-item:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.value-item i { font-size: 2rem; color: var(--accent); margin-bottom: 15px; }

/* Payment */
.payment-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 3rem;
    color: #555;
}

/* Services */
.questions-box {
    background: #eef2f5;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.questions-box ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.questions-box ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.check-list li {
    background: var(--light-bg);
    padding: 10px 15px;
    border-radius: 4px;
}

/* Earn / Partners */
.highlight-box {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    margin: 30px 0;
    border: 1px solid rgba(255,255,255,0.2);
}

.cta-box {
    margin-top: 50px;
    border: 2px dashed rgba(255,255,255,0.4);
    padding: 40px;
}

.email-link {
    color: var(--accent);
    font-weight: bold;
    text-decoration: underline;
}

/* CSR */
.csr-card {
    background: var(--white);
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-radius: 10px;
    margin-top: 30px;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-submit {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-submit:hover { background: #003366; }

/* Footer */
footer {
    background: #111;
    color: #777;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Mobile */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 1.8rem; }
    .two-col-grid, .contact-grid, .form-row { grid-template-columns: 1fr; }
}

/* Service Links Styling */
.service-links li {
    padding: 0 !important; /* Reset padding to handle the link tag */
    transition: transform 0.3s, background 0.3s;
    background: var(--light-bg);
}

.service-links li:hover {
    transform: translateX(10px);
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 5px solid var(--accent);
}

.service-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    width: 100%;
    height: 100%;
    color: var(--primary);
    font-weight: 600;
}

.service-links a i {
    color: var(--accent);
    font-size: 0.8rem;
}

/* --- Sub-Page Styles --- */

.page-hero {
    height: 40vh; /* Shorter than home page */
    background: linear-gradient(rgba(0, 4, 40, 0.8), rgba(0, 78, 146, 0.8)), url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.page-hero h1 { font-size: 2.5rem; margin-bottom: 10px; }
.page-hero p { font-size: 1.2rem; font-weight: 300; }

.sidebar {
    background: #f4f6f8;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.sidebar h3 { color: var(--primary); margin-bottom: 20px; }
.sidebar ul li { margin-bottom: 15px; border-bottom: 1px solid #ddd; padding-bottom: 10px; }
.sidebar ul li a:hover { color: var(--accent); padding-left: 5px; }


/* --- Protect Content (Prevent Text Selection) --- */
body {
    -webkit-user-select: none; /* Chrome/Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* IE/Edge */
    user-select: none;         /* Standard */
}

/* Allow selection on input fields so users can still type in forms */
input, textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}