/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* --- CSS Variables --- */
:root {
    --primary: #2563eb;       /* Brand Blue */
    --secondary: #ff7b00;     /* Accent Orange */
    --dark: #0f172a;          /* Slate Dark */
    --light: #f8fafc;         /* Soft Background */
    --text: #334155;          /* Muted Text */
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Global Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* Smooth scrolling for long-scroll feel */
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    display: block;
}

h1, h2, h3 {
    color: var(--dark);
    font-weight: 800;
}

/* --- Navigation --- */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -1px;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    background: var(--primary);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

/* --- Hero Section --- */
.hero {
    padding: 100px 0;
    background: radial-gradient(circle at top right, #eff6ff, #ffffff);
}

.hero-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.badge {
    background: #dbeafe;
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.highlight {
    color: var(--primary);
}

.hero-btns {
    margin-top: 35px;
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 16px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--dark);
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: 30px;
    box-shadow: 20px 20px 0 #dbeafe; /* Modern layered look */
}

/* --- Stats Bar (High Contrast) --- */
.stats-bar {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-item h3 {
    color: var(--primary);
    font-size: 42px;
    margin-bottom: 5px;
}

.stat-item p {
    font-weight: 500;
    opacity: 0.8;
}

/* --- About Brief --- */
.about-brief {
    padding: 100px 0;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-img-box {
    flex: 1;
}

.about-img-box img {
    border-radius: 20px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin: 25px 0;
}

.feature-list li {
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-list i {
    color: #10b981;
    margin-right: 10px;
}

.btn-text {
    color: var(--primary);
    text-decoration: none;
    font-weight: 800;
}

/* --- Services Home --- */
.services-home {
    background-color: var(--light);
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px); /* Lifts up on hover */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
}

/* --- Testimonial Snippet --- */
.testimonial-preview {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.quote-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: var(--light);
    border-radius: 20px;
}

.quote-box i {
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 20px;
    opacity: 0.3;
}

.quote-box p {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 20px;
}

/* --- Footer --- */
footer {
    background: var(--dark);
    color: #94a3b8;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 18px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.footer-col ul a:hover {
    color: var(--white);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    color: var(--white);
    background: rgba(255,255,255,0.05);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--primary);
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 14px;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .hero-flex, .about-flex {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-btns {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nav-links {
        display: none; /* Hide nav links on mobile for simplicity */
    }
}