/* ==========================================================
   Component Mandi - Main Stylesheet
   Industrial / Premium theme: clean, white space, minimal motion
   ========================================================== */

body {
    background-color: var(--color-bg-light);
}

section {
    scroll-margin-top: 80px;
}

/* ---------- Navbar ---------- */
.site-navbar .navbar {
    padding-top: 14px;
    padding-bottom: 14px;
}
.brand-block {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-right: auto;
}
.brand-logo {
    height: 64px;
    width: auto;
    margin: 0 6px; /* ~10% breathing margin either side of the mark */
}
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    align-items: stretch;
}
.brand-name {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--color-deep-navy);
    font-family: var(--font-heading);
    text-transform: uppercase;
    white-space: nowrap;
}
.brand-divider {
    display: flex;
    width: 100%;
    height: 4px;
    margin: 5px 0;
    border-radius: 2px;
    overflow: hidden;
    transform: skewX(-20deg);
}
.brand-divider span { flex: 1; }
.divider-blue { background: var(--color-primary); }
.divider-green { background: var(--color-accent-green); }
.divider-orange { background: var(--color-accent-orange); }
.brand-tagline {
    font-size: 0.78rem;
    font-weight: 700;
    color: #4a5568;
    white-space: nowrap;
}

.site-navbar .navbar-nav {
    gap: 4px;
}
.site-navbar .nav-link {
    font-weight: 500;
    color: var(--color-text-dark);
    margin: 0 8px;
}
.site-navbar .nav-link.active,
.site-navbar .nav-link:hover {
    color: var(--color-primary);
}
.site-navbar .dropdown-menu {
    border-top: 3px solid var(--color-primary);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

@media (max-width: 991px) {
    .brand-tagline { white-space: normal; }
}

/* ---------- Hero ---------- */
.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-slides {
    position: relative;
    height: 100%;
    min-height: inherit;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    min-height: inherit;
}
.hero-static .hero-slide {
    position: relative;
    opacity: 1;
}
.hero-slide.active {
    opacity: 1;
    position: relative;
}
.hero-slider .hero-slide {
    position: absolute;
}
.hero-slider .hero-slide.active {
    position: relative;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(11,58,130,0.92) 0%, rgba(11,58,130,0.55) 60%, rgba(255,255,255,0.1) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 60px 0;
}
.hero-headline {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.hero-subheading {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}
.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}
.hero-trust-statement {
    max-width: 600px;
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 0.75rem;
}
.hero-browse-link {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
}
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    font-size: 1.25rem;
    padding: 10px 14px;
    cursor: pointer;
    z-index: 3;
    border-radius: 4px;
}
.hero-arrow-prev { left: 20px; }
.hero-arrow-next { right: 20px; }
.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}
.hero-dot.active {
    background: #fff;
}

/* ---------- Cards / Icon Blocks ---------- */
.card-icon-block {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
    height: 100%;
    transition: box-shadow 0.2s ease;
}
.card-icon-block:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.why-us-point {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.why-us-check {
    color: var(--color-accent-green);
    font-weight: 700;
    font-size: 1.1rem;
}

.value-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
    height: 100%;
}

.benefit-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}
.benefit-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    position: relative;
}
.benefit-list li::before {
    content: "✓";
    color: var(--color-accent-green);
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* ---------- How It Works ---------- */
.step-block {
    padding: 1rem;
}
.step-number {
    width: 32px;
    height: 32px;
    line-height: 32px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    margin: 0 auto 0.75rem;
    font-weight: 700;
}
.step-arrow {
    font-size: 1.5rem;
    color: var(--color-primary);
}

/* ---------- Stats ---------- */
.stats-section {
    background: var(--color-bg-muted);
}
.stat-value {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-primary);
}
.stat-label {
    color: var(--color-text-dark);
    font-size: 0.95rem;
}

/* ---------- Final CTA ---------- */
.final-cta-section {
    background: linear-gradient(135deg, var(--color-primary), var(--color-deep-navy));
    color: #fff;
}
.cta-inline-title {
    color: #fff;
    font-size: 1.4rem;
}
.btn-outline-light {
    border-color: #fff;
}

/* ---------- About Page ---------- */
.about-support-image {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.about-credibility strong {
    color: var(--color-primary);
}
.about-parent-company a {
    font-weight: 600;
}
.founder-panel {
    background: linear-gradient(135deg, #ffffff 0%, #f3f7fc 100%);
    border-radius: 20px;
    padding: 2.5rem 2.5rem 1.75rem;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(11,58,130,0.06);
}
.founder-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.12;
    z-index: 0;
}
.founder-blob-blue {
    width: 200px; height: 200px;
    background: var(--color-primary);
    top: -70px; left: -70px;
}
.founder-blob-green {
    width: 160px; height: 160px;
    background: var(--color-accent-green);
    bottom: -50px; right: -30px;
}
.founder-quote-wrap {
    position: relative;
    z-index: 1;
}
.founder-quote-mark {
    position: absolute;
    top: -30px;
    left: -10px;
    font-family: var(--font-quote);
    font-size: 5rem;
    color: var(--color-accent-orange);
    opacity: 0.18;
    line-height: 1;
    z-index: 0;
    user-select: none;
}
.founder-greeting {
    position: relative;
    font-family: var(--font-quote);
    font-style: italic;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--color-primary);
    z-index: 1;
    margin-bottom: 1rem;
}
.founder-quote {
    position: relative;
    font-family: var(--font-quote);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--color-deep-navy);
    z-index: 1;
}
.founder-signature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.founder-closing-line {
    font-family: var(--font-quote);
    font-style: italic;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-primary);
    margin: 0;
    flex: 1;
    min-width: 250px;
}
.founder-signature {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.founder-photo-frame {
    padding: 4px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    flex-shrink: 0;
}
.founder-photo {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}
.founder-signature-text {
    text-align: left;
    white-space: nowrap;
}
.founder-name {
    font-weight: 800;
    color: var(--color-primary);
    font-size: 0.95rem;
}
.founder-designation {
    font-size: 0.78rem;
    color: #6c757d;
    font-weight: 500;
}

/* ---------- Anjaneya / Backed by Industry Expertise ---------- */
.anjaneya-panel {
    background: linear-gradient(160deg, #fdfaf3 0%, #ffffff 75%);
    border: 0.5px solid #efe6d0;
    border-radius: 16px;
    padding: 2rem;
    overflow: hidden;
}
.anjaneya-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    z-index: 0;
}
.anjaneya-blob-1 {
    width: 150px; height: 150px;
    border: 14px solid #C0964F;
    bottom: -60px; right: -30px;
}
.anjaneya-blob-2 {
    width: 90px; height: 90px;
    background: var(--color-primary);
    opacity: 0.05;
    top: -30px; left: 20%;
}
.anjaneya-credentials {
    border-right: 1px solid #e9e0c8;
    padding: 0.5rem 0;
}
.anjaneya-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
}
.anjaneya-name {
    font-size: 0.9rem;
    font-weight: 800;
    color: #8a6d15;
}
.anjaneya-iso {
    font-size: 0.75rem;
    color: #a08a55;
}
@media (max-width: 767px) {
    .anjaneya-credentials {
        border-right: none;
        border-bottom: 1px solid #e9e0c8;
        padding-bottom: 1.5rem;
        margin-bottom: 1rem;
    }
}

/* ---------- Highlight Pills (About page) ---------- */
.highlight-pill {
    display: block;
    padding: 1.5rem 2rem;
    border-radius: 50px;
    background: #fff;
    border: 2px solid transparent;
    background-image: linear-gradient(#fff, #fff), linear-gradient(120deg, var(--color-primary), var(--color-accent-green), var(--color-accent-orange));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(11,58,130,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}
.highlight-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(11,58,130,0.15);
}
.highlight-pill-text {
    display: block;
    color: var(--color-text-dark);
    font-size: 0.95rem;
    margin-bottom: 6px;
}
.highlight-pill-link {
    display: block;
    color: var(--color-primary);
    font-weight: 700;
}

/* ---------- Career Page ---------- */
.opportunity-block {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
    border-top: 4px solid var(--color-accent-orange);
}
.career-opportunities .col-md-6:nth-child(2) .opportunity-block {
    border-top-color: var(--color-accent-green);
}

/* ---------- Philosophy: Vision/Mission Cards ---------- */
.vm-card {
    background: #fff;
    border: 0.5px solid #e5e9f0;
    border-radius: 12px;
    padding: 1.75rem;
    text-align: left;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.vm-card-vision {
    border-top: 3px solid var(--color-primary);
    background: linear-gradient(160deg, #eef4fb 0%, #ffffff 70%);
}
.vm-card-mission {
    border-top: 3px solid var(--color-accent-green);
    background: linear-gradient(160deg, #eaf5ef 0%, #ffffff 70%);
}
.vm-ring {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    top: -50px;
    right: -50px;
    opacity: 0.07;
}
.vm-card-vision .vm-ring { border: 16px solid var(--color-primary); }
.vm-card-mission .vm-ring { border: 16px solid var(--color-accent-green); }
.vm-header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 1rem;
}
.vm-icon-badge {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.vm-card-vision .vm-icon-badge { background: rgba(11,58,130,0.1); }
.vm-card-mission .vm-icon-badge { background: rgba(14,125,69,0.1); }
.vm-icon-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}
.vm-card h2 {
    font-size: 1.2rem;
    margin: 0;
}
.vm-card-vision h2 { color: var(--color-primary); }
.vm-card-mission h2 { color: var(--color-accent-green); }
.vm-card p {
    position: relative;
    color: var(--color-text-dark);
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.6;
}

.philosophy-closing-statement {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
}

/* ---------- Trending Highlights ---------- */
.highlight-card {
    display: block;
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
    color: var(--color-text-dark);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.highlight-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-3px);
    color: var(--color-primary);
}
.highlight-card img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 1rem;
}

/* ---------- Footer ---------- */
.site-footer {
    background: #0B1F4D !important; /* deep royal blue */
}
.site-footer a {
    color: #cfd8e3;
    text-decoration: none;
}
.site-footer a:hover {
    color: #fff;
}
.footer-links li {
    margin-bottom: 0.5rem;
}
.footer-logo-big {
    height: 64px;
    width: auto;
    /* no filter - show logo in its original brand colors */
}
.footer-brand-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #e9edf2;
}
.footer-brand-tagline {
    font-size: 0.78rem;
    color: #b6c0cc;
}
.footer-credibility {
    color: #c3ccd8 !important;
    font-style: italic;
    border-left: 2px solid var(--color-accent-orange);
    padding-left: 10px;
    margin-top: 12px;
}
.footer-credibility a {
    color: #ffb066;
    font-style: normal;
    font-weight: 600;
}
.footer-credibility strong {
    color: #fff;
}
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}
.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.2s ease;
}
.footer-social a:hover {
    background: var(--color-accent-orange);
}

/* ---------- Floating Contact ---------- */
.floating-contact {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}
.floating-contact-fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.floating-contact-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.floating-contact.open .floating-contact-options {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.fc-option {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.fc-whatsapp { background: #25D366; }
.fc-call { background: var(--color-accent-orange); }
.fc-email { background: var(--color-accent-green); }

/* ---------- Contact Page ---------- */
.contact-info-list a {
    color: var(--color-text-dark);
    text-decoration: none;
}
.contact-info-list a:hover {
    color: var(--color-primary);
}
.contact-qr-placeholder {
    background: var(--color-bg-muted);
}

/* ---------- FAQ ---------- */
.accordion-button:not(.collapsed) {
    background-color: var(--color-bg-muted);
    color: var(--color-primary);
}
.faq-search-box {
    position: relative;
}
.faq-search-box svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}
.faq-search-box input {
    padding-left: 42px;
    height: 48px;
    border-radius: 24px;
    border: 1px solid #dde3ea;
}
.faq-search-box input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(11,58,130,0.1);
}
.faq-category-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.faq-category-pill {
    padding: 8px 18px;
    border-radius: 20px;
    background: var(--color-bg-muted);
    color: var(--color-text-dark);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}
.faq-category-pill:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}
.faq-category-heading {
    font-size: 1.4rem;
    color: var(--color-primary);
    border-left: 4px solid var(--color-accent-orange);
    padding-left: 14px;
    margin-bottom: 1.5rem;
    scroll-margin-top: 100px;
}

/* ---------- Legal Pages ---------- */
.legal-page h2 {
    font-size: 1.25rem;
    margin-top: 2rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 767px) {
    .hero-headline { font-size: 1.75rem; }
    .hero-subheading { font-size: 1rem; }
}
