:root {
    --primary: #0D1A2D;
    --secondary: #2A3B5C;
    --accent: #EFEBE4;
    --light: #F8F9FA;
    --dark: #333333; /* Slightly softer than pure black */
    --success: #28a745;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--light);
}

/* Header & Navigation */
header {
    background-color: white;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border-bottom: 1px solid #e0e0e0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.6rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a:hover {
    color: var(--secondary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.8rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(13, 26, 45, 0.8), rgba(13, 26, 45, 0.8)), url('https://images.unsplash.com/photo-1589578228253-643b68b35b1b?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 6rem 1rem;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    line-height: 1.2;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    font-weight: 400;
    margin-left: auto;
    margin-right: auto;
}

/* General Section Styling */
section {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary);
    opacity: 0.5;
    margin: 1rem auto 0;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.card h3 {
    color: var(--primary);
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.learn-more-btn {
    display: inline-block;
    margin-top: auto; /* Pushes button to the bottom */
    background: none;
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    border: 2px solid var(--primary);
    text-align: center;
}

.learn-more-btn:hover {
    background-color: var(--primary);
    color: white;
}


/* Testimonials */
.testimonials {
    background-color: var(--primary);
    color: white;
}

.testimonials .section-title {
    color: white;
}
.testimonials .section-title::after {
    background-color: var(--accent);
}

.testimonial-card {
    background-color: var(--secondary);
    border: none;
    border-left: 4px solid var(--accent);
    padding: 2rem;
    position: relative;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--accent);
}

.rating {
    color: #FFD700; /* Gold color */
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}


/* Inner Page Specific Styles */
.page-header {
    text-align: center;
    padding: 3rem 1rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}
.page-header h1 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 2.8rem;
}
.page-header p {
    font-size: 1.2rem;
    color: var(--secondary);
    max-width: 700px;
    margin: 1rem auto 0;
}

.detailed-content {
    padding-top: 3rem;
    max-width: 900px;
}
.content-wrapper, .defense-area {
    margin-bottom: 3rem;
}
.content-wrapper h3, .defense-area h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}
.content-wrapper h4, .defense-area h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--secondary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}
.detailed-content ul {
    list-style-position: inside;
    padding-left: 1rem;
    margin: 1rem 0;
}
.detailed-content li {
    margin-bottom: 0.5rem;
}
.cta-button {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 2px solid var(--primary);
    margin-top: 1.5rem;
}
.cta-button:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
}


/* Contact Form */
.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.form-control {
    width: 100%;
    padding: 0.85rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
}
.submit-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}
.submit-btn:hover {
    background-color: var(--secondary);
}

/* Footer */
footer {
    background-color: var(--primary);
    color: white;
    text-align: center;
    padding: 3rem 1rem;
    margin-top: 3rem;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--accent);
}
.copyright {
    margin-bottom: 1rem;
    opacity: 0.8;
}
.disclaimer {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 768px) {
    header { padding: 1rem; }
    .nav-links {
        display: none;
        position: absolute;
        top: 71px; /* Height of header */
        left: 0;
        right: 0;
        background-color: white;
        width: 100%;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        border-top: 1px solid #eee;
    }
    .nav-links.active { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a {
        display: block;
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid #eee;
    }
    .nav-links a::after { display: none; }
    .mobile-menu-btn { display: block; }

    .hero h1, .page-header h1 { font-size: 2.2rem; }
    .section-title { font-size: 2rem; }
}
