/* PARASHAR GLOBAL - STYLE.CSS (LEGAL PAGES UPDATE) */

/* ------------------------- */
/* 1. Global Styles & Variables  */
/* ------------------------- */
:root {
    --primary-color: #0a2540; /* Dark Blue */
    --secondary-color: #ffc107; /* Gold/Amber */
    --text-color: #f0f4f8; /* Light Grey */
    --light-text: #bdcde0;
    --background-color: #041527;
    --card-background: #0f2d4e;
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background-color: var(--background-color);
    color: var(--light-text);
    line-height: 1.7;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 2rem;
}

h1, h2, h3, h4 {
    font-family: var(--heading-font);
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 { font-size: 3.2rem; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 3rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1rem; }

section {
    padding: 6rem 0;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-family: var(--heading-font);
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}
.btn-secondary:hover {
    background-color: #fff;
    color: var(--primary-color);
}

/* ------------------------- */
/* 2. Header & Nav      */
/* ------------------------- */
.header {
    background-color: rgba(10, 37, 64, 0.9);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.logo span {
    color: var(--secondary-color);
}


.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    padding-bottom: 5px;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* ------------------------- */
/* 3. Hero Section */
/* ------------------------- */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(10, 37, 64, 0.85), rgba(10, 37, 64, 0.85)), url('https://images.pexels.com/photos/3184418/pexels-photo-3184418.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 1.5rem auto 2.5rem;
}

.hero-content .btn:first-of-type {
    margin-right: 1rem;
}


/* ------------------------- */
/* 4. Page Headers (for sub-pages) */
/* ------------------------- */
.page-header {
    padding-top: 10rem;
    padding-bottom: 4rem;
    background: var(--primary-color);
    text-align: center;
}
.page-header h1 {
    color: var(--secondary-color);
}

/* ------------------------- */
/* 5. Services Section & Pages    */
/* ------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--card-background);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-card .icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    flex-grow: 1;
}

.service-card a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    margin-top: 1.5rem;
}

.service-detail-section { padding: 4rem 0; }
.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.service-list i {
    color: var(--secondary-color);
    margin-right: 1rem;
    margin-top: 5px;
}

.disclaimer {
    background: var(--card-background);
    padding: 1.5rem;
    border-left: 5px solid var(--secondary-color);
    margin-top: 2rem;
    font-size: 0.9rem;
    border-radius: 5px;
}
.social-link i {
    color: var(--secondary-color);
    margin-right: 10px;
}
.social-link {
    display: inline-block;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    margin-top: 1rem;
}

.service-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.feature-card {
    background: var(--card-background);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.feature-card svg {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}
.feature-card h4 {
    color: var(--secondary-color);
}
.feature-card p {
    font-size: 0.95rem;
}

/* ------------------------- */
/* 6. Legal Pages Styles */
/* ------------------------- */
.legal-content {
    max-width: 800px;
    margin: auto;
}
.legal-content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}
.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}
.legal-content ul {
    list-style-position: inside;
    padding-left: 1rem;
}
.legal-content a {
    color: var(--secondary-color);
    text-decoration: none;
}
.legal-content a:hover {
    text-decoration: underline;
}

/* ------------------------- */
/* 7. Footer       */
/* ------------------------- */
.footer {
    background-color: #020c16;
    padding: 4rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}
.footer-col h4 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}
.footer-col p, .footer-col a {
    color: var(--light-text);
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
}
.footer-col a:hover { color: var(--secondary-color); }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #aaa;
}
.footer-bottom b { color: #fff; }

/* ------------------------- */
/* 8. Responsiveness    */
/* ------------------------- */
@media (max-width: 992px) {
    .service-content, .about-content, .contact-grid {
        grid-template-columns: 1fr;
    }
    .about-content img {
        max-width: 300px;
        margin: auto;
        display: block;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .header { padding: 1rem; }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        background: var(--primary-color);
        width: 100%;
        text-align: center;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        margin: 1.5rem 0;
    }
    .hamburger {
        display: block;
    }
    
    .services-grid, .service-feature-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content .btn {
        display: block;
        margin: 0 auto 1rem;
    }
    .hero-content .btn:first-of-type {
        margin-right: auto;
    }
}
