/* =========================
   THEME & GLOBAL STYLES
   ========================= */
:root {
    --primary: #c1001f;
    --primary-dark: #a00019;
    --secondary: #111827;
    --accent: #ffb600;
    --light: #f7f7f7;
    --gray: #6b7280;
    --dark: #1f2937;
    --white: #ffffff;
    --muted: #f3f4f6;
    --radius-lg: 18px;
    --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.navbar-brand img.logo {
    height: 50px;  /* आप अपने हिसाब से 50–70px कर सकते हैं */
    width: auto;
    object-fit: contain;
    display: block;
}


*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
}

/* Layout */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 10px 25px rgba(193, 0, 31, 0.3);
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(193, 0, 31, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--secondary);
    border: 1px solid rgba(148, 163, 184, 0.8);
    box-shadow: none;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255, 255, 255, 0.8);
}

.btn-accent {
    background: var(--accent);
    color: #111827;
    box-shadow: 0 10px 25px rgba(255, 182, 0, 0.4);
}

.btn-accent:hover {
    background: #f59e0b;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

/* Pills / Tags */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    background: rgba(193, 0, 31, 0.06);
    color: var(--primary-dark);
    font-weight: 600;
}

.pill i {
    font-size: 0.85rem;
}

.pill-soft {
    background: rgba(193, 0, 31, 0.08);
}

.pill-soft-dark {
    background: rgba(255, 255, 255, 0.1);
    color: #f9fafb;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title h2 {
    font-size: 2.1rem;
    color: var(--secondary);
    margin: 12px 0;
}

.section-title p {
    color: var(--gray);
    font-size: 0.98rem;
}

.section-title-light h2,
.section-title-light p {
    color: #e5e7eb;
}

/* Highlight text */
.highlight {
    color: var(--primary);
}

/* =========================
   HEADER & NAVBAR
   ========================= */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    box-shadow: 0 2px 14px rgba(15, 23, 42, 0.06);
    z-index: 1000;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fef2f2;
    font-weight: 700;
    font-size: 1.05rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.05rem;
}

.logo-sub {
    font-size: 0.78rem;
    color: var(--gray);
}

/* Nav Links */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-size: 0.92rem;
    font-weight: 500;
    position: relative;
    transition: color 0.2s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 18px;
}

/* Hamburger */
.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* =========================
   PAGE CONTENT WRAPPER
   ========================= */
.page-content {
    display: none;
    animation: fadeIn 0.4s ease;
    padding-top: 96px; /* space for fixed header */
}

.page-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   HERO (HOME)
   ========================= */
.hero {
    background: radial-gradient(circle at top left, #fee2e2 0, #ffffff 40%, #f3f4f6 100%);
    padding: 110px 0 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.7rem;
    line-height: 1.15;
    color: var(--secondary);
    margin: 14px 0 12px;
}

.hero-text p {
    color: var(--gray);
    font-size: 0.99rem;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 26px;
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-number {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary);
}

.meta-label {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Hero Image */
.hero-image {
    position: relative;
    max-width: 420px;
    margin-left: auto;
}

.hero-image::before {
    content: "";
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 20%, #fecaca, #fee2e2);
    z-index: -1;
}

.hero-image img {
    width: 100%;
    display: block;
    border-radius: 32px;
    box-shadow: var(--shadow-soft);
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    top: 18px;
    left: -18px;
    padding: 7px 14px;
    border-radius: 999px;
    background: #ffffff;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--secondary);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-badge i {
    color: #facc15;
}

/* Trust Strip */
.trust-strip {
    margin-top: 40px;
    background: #ffffff;
    border-radius: 999px;
    padding: 12px 22px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-strip p {
    font-size: 0.9rem;
    color: var(--gray);
}

.trust-logos {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.trust-logos span {
    font-size: 0.82rem;
    padding: 6px 12px;
    border-radius: 999px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    color: #4b5563;
}

/* =========================
   SERVICE CARDS / GRIDS
   ========================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}

.service-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 26px 22px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.04);
    transition: all 0.22s ease;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(193, 0, 31, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(193, 0, 31, 0.07);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* =========================
   DARK STATS SECTION
   ========================= */
.section-dark {
    background: radial-gradient(circle at top left, #1f2937, #020617);
    color: #e5e7eb;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin: 28px 0 20px;
}

.stat-card {
    background: rgba(15, 23, 42, 0.7);
    border-radius: var(--radius-lg);
    padding: 22px 18px;
    text-align: center;
    border: 1px solid rgba(148, 163, 184, 0.4);
}

.stat-value {
    font-size: 1.7rem;
    font-weight: 700;
    color: #f9fafb;
}

.stat-label {
    font-size: 0.86rem;
    color: #9ca3af;
}

/* =========================
   FEATURES / WHY US
   ========================= */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}

.feature-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 24px 22px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.feature-card h3 {
    font-size: 1.05rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* =========================
   PROCESS
   ========================= */
.section-muted {
    background: var(--muted);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px;
}

.process-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
    border-top: 3px solid rgba(193, 0, 31, 0.35);
}

.process-icon {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(193, 0, 31, 0.09);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 10px;
}

/* =========================
   TESTIMONIALS
   ========================= */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 24px 22px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: "“";
    position: absolute;
    font-size: 4rem;
    line-height: 1;
    color: rgba(209, 213, 219, 0.7);
    top: 8px;
    right: 16px;
}

.testimonial-text {
    font-size: 0.94rem;
    color: #4b5563;
    margin-bottom: 18px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-info img {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    object-fit: cover;
}

.client-info h4 {
    font-size: 0.95rem;
    color: var(--secondary);
}

.client-info span {
    font-size: 0.8rem;
    color: var(--gray);
}

/* =========================
   CONTACT CTA (HOME)
   ========================= */
.contact-cta {
    background: linear-gradient(135deg, #fee2e2, #fefce8);
}

.contact-cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 40px;
    align-items: center;
}

.contact-cta-text h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin: 16px 0 10px;
}

.contact-cta-text p {
    color: var(--gray);
    font-size: 0.95rem;
}

.contact-cta-list {
    list-style: none;
    margin-top: 18px;
}

.contact-cta-list li {
    font-size: 0.9rem;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.contact-cta-list i {
    color: var(--primary);
    font-size: 0.9rem;
}

/* Contact CTA form */
.contact-cta-form {
    background: #ffffff;
    border-radius: 30px;
    padding: 26px 22px;
    box-shadow: var(--shadow-soft);
}

/* Forms (shared) */
.form-group {
    margin-bottom: 14px;
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
    background: #f9fafb;
}

textarea.form-control {
    border-radius: 20px;
    min-height: 120px;
    resize: vertical;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px rgba(193, 0, 31, 0.3);
    background: #ffffff;
}

/* =========================
   ABOUT PAGE
   ========================= */
.hero-inner {
    background: radial-gradient(circle at top left, #fee2e2, #ffffff);
    padding: 90px 0 50px;
    text-align: center;
}

.hero-inner-content h1 {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.hero-inner-content p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* About layout */
.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 40px;
    align-items: center;
    margin-top: 20px;
}

.about-text-block h2 {
    font-size: 1.6rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.about-text-block p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.bullet-list {
    list-style: none;
    margin-top: 8px;
}

.bullet-list li {
    font-size: 0.9rem;
    margin-bottom: 6px;
    position: relative;
    padding-left: 18px;
    color: #4b5563;
}

.bullet-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.about-image-block img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

/* Founders / team */
.founders-section {
    margin-top: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 26px;
    margin-top: 10px;
}

.team-member {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.04);
}

.member-image {
    width: 110px;
    height: 110px;
    border-radius: 999px;
    overflow: hidden;
    margin: 0 auto 14px;
    border: 4px solid #fee2e2;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.05rem;
    color: var(--secondary);
}

.team-member .role {
    font-size: 0.83rem;
    color: var(--primary);
    margin-bottom: 6px;
}

/* =========================
   CONTACT PAGE
   ========================= */
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 40px;
    align-items: flex-start;
}

.contact-info h2 {
    font-size: 1.7rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.contact-info p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.info-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.info-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(193, 0, 31, 0.09);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.contact-form {
    background: #ffffff;
    border-radius: 22px;
    padding: 26px 22px;
    box-shadow: var(--shadow-soft);
}

/* =========================
   FOOTER
   ========================= */
footer {
    background: var(--secondary);
    color: #e5e7eb;
    padding: 60px 0 22px;
    margin-top: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.footer-column p {
    font-size: 0.9rem;
    color: #9ca3af;
}

.footer-links {
    list-style: none;
    margin-top: 8px;
}

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    color: #9ca3af;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.18s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.social-links a {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(148, 163, 184, 0.7);
    color: #e5e7eb;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.copyright {
    border-top: 1px solid rgba(75, 85, 99, 0.8);
    padding-top: 16px;
    text-align: center;
    font-size: 0.82rem;
    color: #9ca3af;
}

/* =========================
   FLOATING WHATSAPP BUTTON
   ========================= */
.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #22c55e;
    color: #ecfdf5;
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 600;
    box-shadow: 0 16px 40px rgba(22, 163, 74, 0.6);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.floating-whatsapp i {
    font-size: 1.15rem;
}

.floating-whatsapp:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 22px 50px rgba(22, 163, 74, 0.7);
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 992px) {
    .hero-grid,
    .contact-cta-grid,
    .about-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .hero-image {
        margin: 30px auto 0;
    }

    .contact-cta-grid {
        align-items: stretch;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 0;
    }

    .nav-links {
        position: fixed;
        top: 68px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        gap: 18px;
        padding: 22px 0 30px;
        background: #ffffff;
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
        transition: left 0.25s ease;
        z-index: 900;
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger {
        display: block;
    }

    .page-content {
        padding-top: 84px;
    }

    .hero {
        padding: 90px 0 60px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .trust-strip {
        border-radius: 20px;
    }

    .floating-whatsapp .wa-text {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 1.9rem;
    }

    .section {
        padding: 60px 0;
    }

    .contact-cta-form,
    .contact-form {
        padding: 22px 18px;
    }
}
