:root {
    /* Thode "Safe" aur standard colors */
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --bg-color: #ffffff;
    --text-main: #222222;
    --text-muted: #4b5563;
    --border-color: #dddddd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scrollbar-gutter: stable;
}

body {
    /* System fonts use kiye hain jo har jagah standard dikhte hain */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: var(--primary);
}

a:hover {
    text-decoration: underline;
}

button {
    cursor: pointer;
    font-family: inherit;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border: 1px solid var(--primary-dark);
    border-radius: 4px;
    /* Standard roundedness, AI jaisa pill-shape nahi */
}

img,
video {
    max-width: 100%;
    height: auto;
}

/* Proper block structure */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.section {
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: left;
    /* Center ke bajaye left zyada natural lagta hai */
    color: var(--text-main);
    margin-bottom: 25px;
    border-left: 5px solid var(--primary);
    /* Simple visual cue */
    padding-left: 15px;
}

/* Section Title ka underline simple rakha hai */
.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    text-align: left;
    /* Left align zyada professional lagta hai */
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    /* Left se start hoga */
    width: 60px;
    height: 3px;
    background: var(--primary);
    /* Simple solid color, no gradient */
}

/* Navbar: Dark professional look */
.navbar {
    background-color: #ffffff;
    /* White background for clean look */
    border-bottom: 2px solid var(--gray);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 35px;
    width: auto;
    text-decoration: none;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111111;
    /* Logo text dark rakha hai */
    text-transform: uppercase;
    letter-spacing: -0.5px;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: #374151;
    padding: 5px 0;
    transition: color 0.2s ease;
}

/* Hover effect ko simple color change rakha hai, line animation hata di */
.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    display: none;
    /* Animation line remove kar di */
}

/* Nav link hover animation hata kar simple color change rakha hai */
.nav-link:hover {
    color: var(--primary);
    text-decoration: underline;
    /* Standard web behavior */
}

.nav-link:hover::after {
    display: none;
    /* Fancy line width animation removed */
}

/* WhatsApp Button: Isse "Pulse" hata kar ek solid rectangular button banaya hai */
.whatsapp-btn {
    background-color: #25d366;
    /* Standard WhatsApp Green */
    color: white;
    padding: 10px 24px;
    border-radius: 4px;
    /* Sharp corners for a more formal look */
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    transform: none;
    /* No jumping/floating effect */
    box-shadow: none;
    /* No glowing shadow */
}

/* Pulse animation puri tarah remove kar di hai */
@keyframes pulse {
    /* No animation needed for a normal look */
}

/* Hero Section: Simple block style */
.hero {
    position: relative;
    min-height: 350px;
    /* Thoda kam height taaki content upar dikhe */
    background-color: #f3f4f6;
    /* Video load hone se pehle fallback color */
    display: flex;
    align-items: center;
    border-bottom: 4px solid var(--primary);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.8;
    /* Video ko thoda dull rakha hai taaki text readable ho */
}

/* Hero Content: No more glassmorphism or bright pink boxes */
.hero-content {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.75);
    /* Dark neutral overlay */
    padding: 30px;
    max-width: 600px;
    margin-left: 5%;
    /* Left aligned structure */
    border-left: 8px solid var(--primary);
    /* Proper structural indicator */
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Card Grid */

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    /* Border zyada natural lagta hai shadow se */
    border-radius: 4px;
    /* Subtle rounding */
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.card:hover {
    transform: none;
    /* No jumping effect */
    border-color: var(--primary);
    /* Hover par sirf border change */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.card-img {
    height: 220px;
    /* Reduced height for better proportions */
    width: 100%;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.card-content {
    padding: 20px;
}

.card-badge {
    background: #f3f4f6;
    color: #374151;
    padding: 4px 10px;
    border-radius: 2px;
    /* Square badge */
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
}

.card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.card-location {
    color: #6b7280;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
}

.card-btn {
    background: #f9fafb;
    color: #111;
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 15px;
    text-align: center;
}

.card-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary-dark);
}

/* Content Sections: Heavy focus on typography */
.content-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: flex-start;
    padding: 40px 0;
}

@media (min-width: 768px) {
    .content-section {
        grid-template-columns: 1fr 1fr;
    }
}

.content-media {
    border-radius: 4px;
    border: 1px solid #ddd;
    height: 350px;
}

.content-text {
    padding: 0;
}

.content-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.2;
}

.content-para {
    color: #374151;
    margin-bottom: 20px;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    border: none;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: none;
    box-shadow: none;
}

/* Tags: Pill shape hata kar simple boxes */
.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 25px;
}

/* Tags: Pill shape hata kar rectangle buttons banaye hain */
.tag {
    background: #f3f4f6;
    color: #374151;
    padding: 6px 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.tag:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary-dark);
    transform: none;
    /* No jumping */
}

/* Locations Grid: Simple list-like structure */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 25px;
}

.location-btn {
    background: #ffffff;
    color: #111;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
}

.location-btn:hover {
    background: #f9fafb;
    border-color: var(--primary);
    color: var(--primary);
    transform: none;
}

/* Footer: Neutral dark look (Jo normal websites mein hota hai) */
.footer {
    background: #111827;
    /* Dark Grayish Blue, not bright pink */
    padding: 60px 0 30px;
    color: #e5e7eb;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    display: block;
    text-transform: uppercase;
    text-decoration: none;
}

/* Social Links: Box style instead of circles */
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #374151;
    border-radius: 4px;
    /* Square with slight roundness */
}

.social-link:hover {
    background: var(--primary);
    transform: none;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-link {
    margin-bottom: 12px;
    padding-bottom: 0;
    border-bottom: none;
    /* Border hata kar clean text rakha hai */
}

.footer-link a {
    color: #9ca3af;
    font-size: 0.95rem;
}

.footer-link a:hover {
    color: white;
    padding-left: 0;
    text-decoration: underline;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.copyright {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #374151;
    font-size: 0.85rem;
    color: #6b7280;
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    background: #f3f4f6;
    color: #111;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Responsive Base - Simple scaling */
@media (max-width: 991px) {
    .section-title {
        font-size: 1.8rem;
    }

    .card-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {

    .nav-links,
    .whatsapp-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        background: #eee;
        border: 1px solid #ccc;
        padding: 5px 10px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section {
        padding: 30px 0;
    }

    .content-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .card-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        height: auto;
        min-height: 250px;
    }
}

/* Variable Update - Professional Tones */
:root {
    --brand-pink: #be185d;
    /* Thoda deep color, flashy nahi */
    --brand-dark: #831843;
    --bg-light: #ffffff;
    --text-dark: #111827;
    --highlight: #f9fafb;
    /* Light grey instead of pinkish tint */
    --border-color: #e5e7eb;
}

/* FAQ Section - Clean & Structured */
.header {
    text-align: left;
    /* Center se hata kar standard left alignment */
    padding: 40px 0;
    background: #111827;
    /* Dark professional background */
    color: white;
    border-bottom: 4px solid var(--brand-pink);
}

.header h2 {
    font-size: 1.4rem;
    font-weight: 600;
    opacity: 0.9;
}

.faq-section {
    background: white;
    padding: 20px 0;
    margin: 20px auto;
    max-width: 1100px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Two column layout for structure */
    gap: 20px;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-card {
    background: white;
    border: 1px solid var(--border-color);
    border-left: 5px solid var(--brand-pink);
    border-radius: 4px;
    padding: 20px;
    transition: background 0.2s ease;
}

.faq-card:hover {
    transform: none;
    /* No jumping effect */
    background: var(--highlight);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.question-icon {
    width: 28px;
    height: 28px;
    background: var(--brand-pink);
    color: white;
    border-radius: 2px;
    /* Square icon */
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    font-weight: bold;
}

.faq-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* ============================================================
   FULL HERO SECTION RESET (SIDE-BY-SIDE PROFESSIONAL)
   ============================================================ */

/* HX-Hero - Base Structure */
.hx-hero {
    position: relative;
    background: #0f172a; /* Deep Navy for better contrast */
    border-radius: 0;
    min-height: 550px;
    display: flex;
    align-items: center;
    padding: 60px 0;
    overflow: hidden;
    border-bottom: 2px solid #1e2937;
}

/* Side-by-side Grid Logic */
.hx-inner {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* Left: Text, Right: Video */
    gap: 40px;
    align-items: center;
    text-align: left;
}

/* Video Frame: Background se hatakar solid item banaya */
.hx-video {
    position: relative !important; /* Absolute se hataya */
    width: 100% !important;
    height: 400px !important;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #374151;
    opacity: 1 !important; /* Full visibility for focus */
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3); /* Industrial Accent Shadow */
}

/* Readability veil - Ab iski side-by-side mein zaroorat nahi */
.hx-hero::after {
    display: none;
}

/* Glow effects - Completely Removed (AI Touch) */
.hx-glow, .hx-glow-a, .hx-glow-b {
    display: none;
}

/* HX-Card: Now part of the grid, not floating over video */
.hx-card {
    width: 100% !important;
    background: transparent !important; /* Transparent for dark theme integration */
    border: none !important;
    border-radius: 0;
    padding: 0 !important;
    color: #ffffff;
    box-shadow: none !important;
    text-align: left;
}

/* Kicker: Badge style */
.hx-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
    padding: 4px 12px;
    border-radius: 4px;
    font: 700 0.75rem/1 sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}
.hx-kicker i { display: none; }

/* Title: Solid White for Dark Theme */
.hx-title {
    margin: 0 0 15px;
    font: 800 clamp(1.8rem, 4vw, 2.8rem)/1.15 sans-serif;
    color: #ffffff;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

/* Sub-text */
.hx-sub {
    margin: 0 0 25px;
    color: #9ca3af;
    font: 500 1.05rem/1.6 sans-serif;
    max-width: 100%;
}

/* Chips: Rectangular boxes */
.hx-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
    margin-bottom: 30px;
}
.hx-chip {
    background: #1f2937;
    border: 1px solid #374151;
    padding: 6px 14px;
    border-radius: 4px;
    color: #f3f4f6;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font: 600 .85rem/1 sans-serif;
}
.hx-chip svg { width: 14px; height: 14px; color: #3b82f6; }

/* Buttons: Solid block colors */
.hx-cta {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    flex-wrap: wrap;
}
.hx-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 4px;
    font: 700 1rem/1 sans-serif;
    transition: background 0.2s;
    text-decoration: none;
}
.hx-btn:active { transform: translateY(1px); }

.hx-btn--primary {
    color: #ffffff;
    background: #1e40af;
    border: none;
}
.hx-btn--primary:hover { background: #1e3a8a; }

.hx-btn--ghost {
    color: #ffffff;
    background: transparent;
    border: 1px solid #4b5563;
}
.hx-btn--ghost:hover { background: #1f2937; border-color: #ffffff; }

/* Divider: Static clean line */
.hx-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #1e40af;
    opacity: 1;
}
.hx-divider svg { display: none; }

/* Small devices tweaks */
@media (max-width: 900px) {
    .hx-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hx-card { text-align: center; }
    .hx-kicker, .hx-chips, .hx-cta { justify-content: center; margin-inline: auto; }
    .hx-video {
        max-width: 100%;
        height: auto !important;
        aspect-ratio: 16/9;
        box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
    }
}

/* Motion settings simple */
@media (prefers-reduced-motion: reduce) {
    .hx-video { animation: none; transition: none; }
}


/* ===== Scoped styling for .me-hero (Professional Re-build) ===== */
.me-hero {
    /* Colors shifted to Professional Deep Navy & Grey */
    --brand: #1e40af;
    --brand-2: #1e3a8a;
    --ink: #111827;
    --muted: #4b5563;
    --panel: #ffffff;
    --ring: #e5e7eb;
    position: relative;
    padding: 40px max(16px, env(safe-area-inset-left));
}

.me-card {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
    /* Sharp professional corners */
    background: var(--panel);
    color: var(--ink);
    padding: 40px;
    border: 1px solid var(--ring);
    /* Simple flat shadow instead of deep blurry one */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

/* Rainbow glow aur conic ring ko poori tarah remove kar diya (AI touch) */
.me-card::before,
.me-glow,
.me-glow-a,
.me-glow-b {
    display: none !important;
}

.me-head {
    position: relative;
    z-index: 1;
}

.me-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    color: #374151;
    padding: 5px 12px;
    border-radius: 4px;
    font: 700 .75rem sans-serif;
    text-transform: uppercase;
}

.me-kicker i {
    display: none;
}

/* Dot removed */
.me-title {
    margin: 15px 0 10px;
    font: 800 clamp(1.5rem, 4vw, 2.2rem)/1.2 sans-serif;
    color: var(--ink);
    background: none;
    /* Gradient text removed */
    -webkit-background-clip: initial;
    background-clip: initial;
}

/* Rule line ko simple solid line banaya */
.me-rule {
    height: 2px;
    margin: 15px 0;
    background: var(--brand);
    width: 50px;
    /* Small accent line */
}

.me-grid {
    display: block;
    /* Grid se simpler layout */
}

.me-para {
    color: var(--muted);
    font: 400 1.05rem/1.6 sans-serif;
    margin-bottom: 20px;
}

.me-lead {
    color: #111827;
    font-weight: 600;
}

/* Chips: Square boxes instead of pills */
.me-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0;
}

.me-chip {
    background: #ffffff;
    border: 1px solid #d1d5db;
    color: #374151;
    padding: 6px 12px;
    border-radius: 4px;
    font: 600 .85rem sans-serif;
}

.me-chip svg {
    width: 14px;
    height: 14px;
    color: var(--brand);
}

/* --- Professional Button System (.me-cta) --- */

.me-cta {
    display: flex;
    flex-wrap: wrap; /* Mobile safety */
    gap: 16px;
    margin-top: 30px;
}

.me-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 4px; /* Industrial Sharp Corners */
    font: 700 0.95rem sans-serif;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

/* Primary Button: Solid & Authoritative */
.me-btn--primary {
    color: #ffffff;
    background: #1e40af; /* Solid Deep Blue */
    border-color: #1e3a8a;
    /* Subtle depth shadow */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.me-btn--primary:hover {
    background: #1e3a8a;
    /* Hover par solid industrial "Lift" effect */
    box-shadow: 0 4px 0px #0f172a; 
    transform: translateY(-2px);
}

/* Ghost Button: Clean & Minimal */
.me-btn--ghost {
    color: #1e40af;
    background: #ffffff;
    border: 2px solid #1e40af;
}

.me-btn--ghost:hover {
    background: #eff6ff; /* Very light blue tint */
    border-color: #1e3a8a;
    color: #1e3a8a;
    transform: translateY(-2px);
}

.me-btn:active {
    transform: translateY(0px); /* Click par wapas niche aayega */
    box-shadow: none;
}

/* --- Responsive & Grid Logic --- */

@media (min-width: 900px) {
    .me-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px; /* Thoda zyada gap readability ke liye */
        align-items: start;
    }

    .me-lead {
        grid-column: 1 / -1;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .me-cta {
        flex-direction: column; /* Mobile par stacking */
        gap: 12px;
    }

    .me-btn {
        width: 100%;
        padding: 14px; /* Mobile par thoda bada target */
    }
}


/* Layout - Simple and stable */
.section {
    padding: 60px 0;
    background: #ffffff;
    /* White bg for a normal clean look */
}

.section .section-title {
    color: #111;
    font-weight: 700;
    font-size: 1.75rem;
    margin-bottom: 24px;
}

.container {
    width: min(1200px, 94vw);
    margin-inline: auto;
}

/* Proper Listing Grid */
.card-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

/* Vars - Removed neon/ai colors */
:root {
    --text: #222;
    --muted: #666;
    --brand: #be185d;
    --surface: #ffffff;
    --stroke: #ddd;
}

/* Base Card - No 3D, no floating */
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid var(--stroke);
    border-radius: 4px;
    /* Standard rounding */
    overflow: hidden;
    transition: border-color 0.2s;
}

.card:hover {
    transform: none;
    /* 3D rotation hata di */
    border-color: var(--brand);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Neon Accent - Completely Removed */
.card--neon .card-ring,
.card--neon:hover .card-ring {
    display: none;
}

/* Media & Image */
.card-media {
    position: relative;
    aspect-ratio: 16/9;
    background: #f0f0f0;
}

.card-media img {
    height: 350px;
}
.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
    /* Artificial saturation hatayi */
}

/* Shine effect - Removed */
.shine {
    display: none;
}

/* Shine animation remove (AI touch cleaned) */
.card:hover .shine {
    display: none;
}

/* Corner Ribbon: Diagonal ke bajaye ek simple flat top-left badge */
.corner-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    background: #16a34a;
    /* Solid Green */
    color: #fff;
    font: 700 11px sans-serif;
    padding: 5px 12px;
    transform: none;
    /* Diagonal rotation hata di */
    box-shadow: none;
    border-radius: 0 0 4px 0;
    text-transform: uppercase;
}

/* Standard In-content Badge: Pill shape se rectangular look */
.card-badge {
    display: inline-block;
    font: 700 10px sans-serif;
    letter-spacing: 0.5px;
    color: #16a34a;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 4px 8px;
    border-radius: 2px;
    /* Square edges */
    width: max-content;
    box-shadow: none;
}

/* Verified Badge: Animation aur glow hataya */
.verified-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 4px;
    background: #10b981;
    color: #fff;
    font: 700 11px sans-serif;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: none;
    /* Floating effect hata diya */
}

/* Float animation puri tarah remove */
@keyframes float {}

.v-icon {
    width: 14px;
    height: 14px;
}

.v-icon path:first-child {
    fill: #fff;
}

/* Simple icon colors */
/* Card Content: Properly structured and readable */
.card-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Card Title: Text gradients hata kar solid dark color kiya */
.card-title {
    font-weight: 700;
    letter-spacing: normal;
    font-size: 1.1rem;
    color: #111827;
    /* Solid Navy/Black */
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

/* Card Location: Standard and clean */
.card-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    /* Muted slate color */
    font-size: 0.9rem;
}

.card-location svg {
    width: 14px;
    height: 14px;
    color: #94a3b8;
}

.meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}

/* Pill: Round shapes se rectangular badges mein convert kiya */
.pill {
    font: 700 10px sans-serif;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    border-radius: 4px;
    color: #16a34a;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    text-transform: uppercase;
}

.pill--alt {
    color: #0284c7;
    background: #f0f9ff;
    border-color: #bae6fd;
}

/* Dot: Simple separator */
.dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #cbd5e1;
}

/* Card Button: Radial gradients aur glowing shadows hata diye */
.card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
    background: #be185d;
    /* Solid Pinkish-Red */
    color: #ffffff;
    border: 1px solid #9d174d;
    padding: 12px;
    border-radius: 4px;
    /* Sharp corners */
    font-weight: 700;
    transition: background 0.2s ease;
}

.card:hover .card-btn {
    background: #9d174d;
    box-shadow: none;
    /* Glowing shadow removed */
    transform: none;
}

.card-btn svg {
    width: 16px;
    height: 16px;
}

/* UX-Hero: Cleaned from AI-style blur backdrops */
:root {
    --brand: #be185d;
    --brand-2: #701a75;
    --ink: #111827;
    --muted: #4b5563;
    --panel: #ffffff;
    --ring: #e5e7eb;
}

.ux-hero {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background: #ffffff;
    border-bottom: 1px solid #f3f4f6;
}

/* Blurry backdrops (AI-vibe) completely removed */
.ux-hero::before,
.ux-hero::after {
    display: none !important;
}

/* Hero Backdrops: Floating blobs aur animations ko khatam kiya */
.ux-hero::before,
.ux-hero::after {
    display: none !important;
    /* Fancy background circles removed */
}

/* UX Card: Glassmorphism aur neon shadows hatakar solid box banaya */
.ux-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    /* Standard light gray border */
    border-radius: 8px;
    /* Professional slight rounding */
    padding: 40px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* Gradient Ring: Conic gradient aur blur ko remove kiya (AI Touch) */
.ux-card::before {
    display: none !important;
    /* Rainbow glow removed */
}

/* Title: Center alignment aur simple dark color */
.ux-title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 24px;
    color: #111827;
    /* Solid Navy Black */
}

/* Body Text: Modern professional typography */
.ux-body {
    max-width: 70ch;
    margin-inline: auto;
    color: #374151;
    /* Dark Gray for better reading */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
}

.ux-body p {
    margin-bottom: 20px;
}

.ux-body a {
    color: var(--brand);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.ux-body a:hover {
    color: var(--brand-2);
    text-decoration-thickness: 2px;
}

/* Links: Standard hover effect */
.ux-body a:hover {
    text-decoration: none;
    color: var(--brand-dark);
}

/* Trust Badges: Pill shape hata kar Rectangular Box look diya hai */
.ux-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 15px auto 30px;
}

.ux-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font: 700 0.8rem/1 sans-serif;
    color: #4b5563;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    /* Standard rounding */
    padding: 8px 14px;
}

.ux-badge svg {
    width: 14px;
    height: 14px;
    color: var(--brand);
}

/* CTA Row: Stable and solid alignment */
.ux-cta {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Buttons: Flashy AI look hata kar industrial block buttons banaye hain */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 4px;
    /* Sharp corners for professional look */
    text-decoration: none;
    cursor: pointer;
    font: 700 1rem/1 sans-serif;
    transition: all 0.2s ease;
}

.btn:active {
    transform: translateY(1px);
}

/* Primary Button: Gradients aur inner radial glows remove kiye hain */
.btn-primary {
    background: var(--brand);
    /* Solid color */
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: none;
}

.btn-primary::after {
    display: none;
    /* Inner glow overlay remove kar diya */
}

.btn-primary:hover {
    background: var(--brand-dark);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Ghost Button: Standard outline style */
.btn-ghost {
    background: #ffffff;
    color: var(--brand);
    border: 2px solid var(--brand);
}

.btn-ghost:hover {
    background: #fff1f2;
}

.btn svg {
    width: 18px;
    height: 18px;
}

/* Small screens adjustments */
@media (max-width: 640px) {
    .ux-card {
        padding: 30px 20px;
        border-radius: 4px;
    }

    .ux-title {
        font-size: 1.4rem;
        text-align: left;
    }

    .ux-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

/* Amber Block - Professional Orange/Industrial Look */
.ux-hero--amber {
    --brand: #d97706;
    /* Primary Amber (Stable) */
    --brand-2: #b45309;
    /* Deeper Brown-Amber */
    --ink: #1f2937;
    --muted: #4b5563;
    --panel: #ffffff;
    --ring: #fed7aa;
}

.ux-hero--amber {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background: #fffcf9;
    /* Subtle warm background for the whole section */
    border-bottom: 2px solid #ffedd5;
}

/* Floating glows aur animations completely removed (AI vibe cleaned) */
.ux-hero--amber::before,
.ux-hero--amber::after {
    display: none !important;
}

/* Card: Block structure without flashy glows */
.ux2-card {
    background: var(--panel);
    border: 1px solid var(--ring);
    border-radius: 8px;
    /* Sharp professional edges */
    padding: 40px;
    /* Natural industrial shadows */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* Optional: Border accent like a professional alert box */
.ux2-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--brand);
    border-radius: 8px 8px 0 0;
}

/* Title & Body text adjustments for this theme */
.ux-hero--amber .ux-title {
    color: #92400e;
    /* Darker amber for readability */
    font-weight: 800;
    text-align: left;
    /* Left align for business look */
}

.ux-hero--amber .ux-body {
    color: var(--ink);
}

/* Gradient ring aur blur effects hataye (AI touch removed) */
.ux2-card::before {
    display: none !important;
}

.ux2-title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: #92400e;
    /* Solid Deep Amber */
    letter-spacing: -0.5px;
}

.ux2-body {
    max-width: 72ch;
    margin-inline: auto;
    color: #374151;
    /* Dark Grey for readability */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
}

.ux2-body p {
    margin-bottom: 18px;
}

.ux2-body a {
    color: var(--brand);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.ux2-body a:hover {
    text-decoration: none;
    color: var(--brand-2);
}

/* Feature Chips: Pill shape se rectangular badge style */
.ux2-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 20px auto 10px;
}

.ux2-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font: 700 0.8rem/1 sans-serif;
    color: #4b5563;
    background: #fffcf9;
    /* Very light amber tint */
    border: 1px solid #fed7aa;
    border-radius: 4px;
    /* Proper rectangular shape */
    padding: 8px 14px;
}

.ux2-chip svg {
    width: 14px;
    height: 14px;
    color: var(--brand);
}

/* CTA Row: Clean and simple alignment */
.ux2-cta {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Buttons: Pill shape se standard rectangular block look */
.btn2 {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 4px;
    /* Sharp corners for industrial look */
    text-decoration: none;
    cursor: pointer;
    font: 700 1rem/1 sans-serif;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.btn2:active {
    transform: translateY(1px);
}

/* Primary Button: Gradient aur extra glow overlays hataye */
.btn2-primary {
    background: var(--brand);
    /* Solid color instead of linear-gradient */
    color: #fff;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn2-primary::after {
    display: none;
    /* Inner radial glow hataya */
}

.btn2-primary:hover {
    background: var(--brand-2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Ghost Button: Simple border style */
.btn2-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid #3f3f46;
    /* Neutral border */
}

.btn2-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--brand);
}

.btn2 svg {
    width: 18px;
    height: 18px;
}

/* HP-Hero: Over-designed gradients se badal kar clean dark section kiya */
.hp-hero {
    --brand: #db2777;
    --brand-2: #be185d;
    --ink: #f9fafb;
    --muted: #9ca3af;
    --panel: #111827;
    /* Standard dark navy */
    --ring: #1f2937;
    position: relative;
    max-width: 1200px;
    margin: 40px auto;
    padding: 60px 40px;
    border-radius: 8px;
    /* Standard rounding */
    background: #0f172a;
    /* Solid dark background */
    border: 1px solid var(--ring);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* AI-vibe radial gradients hataye */
.hp-hero::before,
.hp-hero::after {
    display: none !important;
}

/* Floating glows aur moving animations (AI vibe) completely remove kar di hain */
.hp-hero::before,
.hp-hero::after {
    display: none !important;
}

/* Base wrapper structure */
.hp-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.hp-text {
    flex: 1 1 450px;
    color: var(--ink);
}

/* Kicker: Pill shape se rectangular box badge kiya hai */
.hp-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font: 700 0.75rem/1.2 sans-serif;
    color: #fff;
    background: var(--brand);
    /* Solid brand color */
    padding: 4px 12px;
    border-radius: 4px;
    /* Standard rounding */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hp-kicker i {
    display: none;
    /* Dot removed */
}

/* Title: Text gradient hata kar solid white color kiya hai */
.hp-title {
    font: 800 clamp(1.6rem, 2.5vw, 2rem)/1.2 sans-serif;
    margin: 0 0 15px;
    letter-spacing: -0.5px;
    color: #ffffff;
    /* Solid White */
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

/* Paragraph & Links: No glow, just clean text */
.hp-para {
    font: 400 1.05rem/1.6 sans-serif;
    color: var(--muted);
    margin: 0 0 20px;
}

.hp-para a {
    color: var(--brand);
    /* Standard link color */
    text-underline-offset: 4px;
    font-weight: 600;
}

.hp-para a:hover {
    text-decoration: none;
    opacity: 0.8;
}

/* Trust Chips: Pill shape (999px) se rectangular box (4px) kiya hai */
.hp-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.hp-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font: 700 0.8rem/1 sans-serif;
    color: #9ca3af;
    background: #1f2937;
    /* Neutral dark background */
    border: 1px solid #374151;
    border-radius: 4px;
    /* Standard rounding */
    padding: 8px 12px;
}

.hp-chip svg {
    width: 14px;
    height: 14px;
    color: var(--brand);
}

/* CTAs: Gradient aur excessive shadows hataye */
.hp-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 4px;
    /* Industrial sharp edges */
    text-decoration: none;
    cursor: pointer;
    font: 700 1rem/1 sans-serif;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.btn:active {
    transform: translateY(1px);
}

.btn-primary {
    background: var(--brand);
    /* Solid color, no gradient */
    color: #fff;
    border: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    background: var(--brand-2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: #374151;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Image side: Removing neon glows and deep shadows */
.hp-image {
    flex: 1 1 380px;
    position: relative;
}

.hp-imgwrap {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    /* More standard than 4/3 */
    border-radius: 8px;
    overflow: hidden;
    background: #1f2937;
    border: 1px solid #374151;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    /* Natural depth shadow */
}

/* Image filter normal rakha hai bina artificial saturation ke */
.hp-imgwrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Animated blob (AI-vibe) ko poori tarah remove kar diya hai */
.hp-imgwrap::before {
    display: none !important;
}

/* Blob animation ki ab zaroorat nahi */
@keyframes blob {}

/* Gloss sweep (shine) animation ko remove kar diya hai */
.hp-shine {
    display: none !important;
}

/* In-place of shine, hover par ek subtle light border effect rakha hai */
.hp-imgwrap {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--ring);
    transition: border-color 0.3s ease;
}

.hp-imgwrap:hover {
    border-color: var(--brand);
    /* Sirf border highlight hoga */
}

/* Small screens adjustments - Structured and clean */
@media (max-width: 640px) {
    .hp-hero {
        padding: 30px 20px;
        border-radius: 8px;
        /* Sharp corners */
    }

    .hp-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
}

/* Scoped to this block - Professional Dark Theme */
.five-hero {
    --brand: #db2777;
    --brand-2: #be185d;
    --ink: #f9fafb;
    --muted: #9ca3af;
    --panel: #111827;
    --ring: #1f2937;
    max-width: 1200px;
    margin: 40px auto;
    padding: 60px 40px;
    border-radius: 8px;
    /* Sharp corners instead of playful 16px */
    background: #0f172a;
    /* Solid dark navy background */
    position: relative;
    overflow: hidden;
    border: 1px solid var(--ring);
    /* Natural drop shadow */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
}

/* Ambient glows aur animations (AI vibe) completely remove kar diye hain */
.five-hero::before,
.five-hero::after {
    display: none !important;
}

/* Animations ki ab zaroorat nahi */
@keyframes ffloat1 {}

@keyframes ffloat2 {}

/* Clean layout structure */
.five-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.five-text {
    flex: 1 1 500px;
    color: var(--ink);
}

.five-image {
    flex: 1 1 400px;
    text-align: center;
}

/* Kicker: Pill shape se rectangular box badge kiya hai */
.five-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #ffffff;
    font: 700 0.75rem/1.2 sans-serif;
    padding: 5px 12px;
    border-radius: 4px;
    /* Industrial rounding */
    background: var(--brand);
    /* Solid primary color */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.five-kicker svg {
    width: 14px;
    height: 14px;
}

/* Title: Gradient aur transparency hata kar solid white kiya */
.five-title {
    margin: 0 0 16px;
    letter-spacing: -0.5px;
    font: 800 clamp(1.6rem, 2.8vw, 2.2rem)/1.15 sans-serif;
    color: #ffffff;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.five-para {
    margin: 0 0 20px;
    color: var(--muted);
    font: 400 1.05rem/1.6 sans-serif;
}

/* Highlight Link: Animated background-size hata kar standard underline rakha */
.highlight {
    color: var(--brand);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: opacity 0.2s ease;
}

.highlight:hover {
    opacity: 0.8;
    text-decoration-thickness: 2px;
}

/* Chips: Pill shape se rectangular box style */
.five-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.five-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font: 700 0.8rem/1 sans-serif;
    color: #9ca3af;
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 4px;
    /* Standard rounding */
    padding: 8px 12px;
}

.five-chip svg {
    width: 14px;
    height: 14px;
    color: var(--brand);
}

/* CTAs: Gradient aur glowing shadows hataye */
.five-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.btn5 {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 4px;
    /* Industrial sharp edges */
    text-decoration: none;
    cursor: pointer;
    font: 700 1rem/1 sans-serif;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.btn5:active {
    transform: translateY(1px);
}

.btn5-primary {
    background: var(--brand);
    /* Solid color, no gradient */
    color: #fff;
    border: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.btn5-primary:hover {
    background: var(--brand-2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Ghost Button: Dark mode professional style */
.btn5-ghost {
    background: transparent;
    color: #f9fafb;
    border: 1px solid #374151;
}

.btn5-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--brand);
}

.btn5 svg {
    width: 16px;
    height: 16px;
}

/* Image Wrapper: Removing AI-style neon shadows */
.five-imgwrap {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    /* Professional widescreen ratio */
    border-radius: 8px;
    /* Industrial sharp rounding */
    overflow: hidden;
    background: #1f2937;
    border: 1px solid #374151;
    /* Natural depth shadow instead of glowing pink */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
}

.five-imgwrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: none;
    /* Artificial saturation hatayi */
}

/* Badge: Glassmorphism (blur) hata kar solid dark look diya hai */
.five-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    background: #111827;
    /* Solid dark background */
    color: #ffffff;
    border: 1px solid #374151;
    border-radius: 4px;
    /* Square badge style */
    font: 700 .75rem sans-serif;
    backdrop-filter: none;
    /* No blur effect */
}

.five-badge svg {
    width: 12px;
    height: 12px;
    color: var(--brand);
}

/* Shine sweep: Flashy animation completely removed */
.five-shine {
    display: none !important;
}

/* Responsive updates */
@media (max-width: 640px) {
    .five-hero {
        padding: 30px 20px;
        border-radius: 8px;
    }

    .five-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .five-imgwrap {
        aspect-ratio: 4 / 3;
    }

    /* Mobile stability */
}

/* Scoped to this block - Clean Dark Framework */
.md-hero {
    --brand: #db2777;
    --brand-2: #be185d;
    --ink: #f9fafb;
    --muted: #9ca3af;
    --panel: #111827;
    --ring: #1f2937;
    max-width: 1200px;
    margin: 40px auto;
    padding: 60px 40px;
    border-radius: 8px;
    /* Professional sharp corners */
    background: #0f172a;
    /* Solid dark navy, no complex gradients */
    position: relative;
    overflow: hidden;
    border: 1px solid var(--ring);
    /* Standard tight shadow */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
}

/* Moving glows aur animations (AI vibe) ko remove kar diya hai */
.md-hero::before,
.md-hero::after {
    display: none !important;
}

/* Animations remove */
@keyframes mfloat1 {}

@keyframes mfloat2 {}

.md-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.md-text {
    flex: 1 1 500px;
    color: var(--ink);
}

.md-image {
    flex: 1 1 400px;
    text-align: center;
}

/* Kicker: Pill shape se rectangular box badge kiya hai */
.md-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #ffffff;
    font: 700 0.75rem/1.2 sans-serif;
    padding: 5px 12px;
    border-radius: 4px;
    /* Standard rounding */
    background: var(--brand);
    /* Solid branding */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Title: Gradient text ko solid white kiya */
.md-title {
    margin: 0 0 16px;
    font: 800 clamp(1.6rem, 2.5vw, 2.2rem)/1.2 sans-serif;
    color: #ffffff;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.md-para {
    margin: 0 0 20px;
    color: var(--muted);
    font: 400 1.05rem/1.6 sans-serif;
}

/* Chips: Pill shape se rectangular box style */
.md-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.md-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font: 700 0.8rem/1 sans-serif;
    color: #9ca3af;
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 4px;
    padding: 8px 12px;
}

.md-chip svg {
    width: 14px;
    height: 14px;
    color: var(--brand);
}

/* Buttons: Gradients aur deep shadows hataye */
.btn-md {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 4px;
    font: 700 1rem/1 sans-serif;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.btn-md-primary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.btn-md-primary:hover {
    background: var(--brand-2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.btn-md-ghost {
    background: transparent;
    color: #fff;
    border-color: #374151;
}

/* Image Wrap: 4/3 aspect ratio se modern widescreen aur natural shadows */
.md-imgwrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    background: #1f2937;
    border: 1px solid var(--ring);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
}

.md-imgwrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
}

/* Badge: Glassmorphism aur blur hataya */
.md-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    background: #111827;
    color: #fff;
    border: 1px solid #374151;
    border-radius: 4px;
    font: 700 .75rem sans-serif;
    backdrop-filter: none;
}

/* Shine Sweep: Flashy animation removed */
.md-shine {
    display: none !important;
}

/* SX-Hero: Deep dark standard background without AI gradients */
.sx-hero {
    --brand: #db2777;
    --brand-2: #be185d;
    --ink: #f9fafb;
    --muted: #9ca3af;
    --ring: #1f2937;
    max-width: 1200px;
    margin: 40px auto;
    padding: 60px 40px;
    border-radius: 8px;
    background: #0f172a;
    /* Solid Navy Dark */
    border: 1px solid var(--ring);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 640px) {

    .md-hero,
    .sx-hero {
        padding: 30px 20px;
        border-radius: 4px;
    }

    .md-title {
        font-size: 1.5rem;
    }
}

/* SX-Hero: Ambient glows hataye (AI vibe cleaned) */
.sx-hero::before,
.sx-hero::after {
    display: none !important;
}

.sx-wrap {
    display: grid;
    gap: 20px;
    color: var(--ink);
}

.sx-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font: 700 .75rem sans-serif;
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    background: var(--brand);
    text-transform: uppercase;
}

.sx-title {
    font: 800 clamp(1.6rem, 2.8vw, 2.2rem)/1.2 sans-serif;
    color: #fff;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    margin-bottom: 15px;
}

/* Rule line: Clean and solid */
.sx-rule {
    height: 2px;
    background: var(--brand);
    width: 40px;
    margin: 10px 0;
}

.sx-grid {
    display: grid;
    gap: 15px;
}

/* NV-Card: Rainbow ring aur soft blurs hataye */
.nv-card {
    position: relative;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nv-card::before {
    display: none !important;
}

/* Conic gradient removed */
.nv-title {
    text-align: left;
    margin-bottom: 20px;
    font: 800 1.6rem/1.2 sans-serif;
    color: #111;
}

.nv-body p {
    font: 400 1.05rem/1.6 sans-serif;
    color: #374151;
    margin-bottom: 15px;
}

.nv-body a {
    color: var(--brand);
    font-weight: 600;
    text-decoration: underline;
}

/* Chips: Rectangular badges */
.nv-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
    margin: 15px 0;
}

.nv-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid #d1d5db;
    background: #f9fafb;
    color: #374151;
    font: 600 .8rem sans-serif;
}

/* NV-Btn: Solid look, no excessive shadows */
.nv-cta {
    display: flex;
    justify-content: flex-start;
}

.nv-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 4px;
    color: #fff;
    background: var(--brand);
    border: none;
    font: 700 1rem sans-serif;
    transition: background 0.2s ease;
}

.nv-btn:hover {
    background: var(--brand-2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nv-btn:active {
    transform: translateY(1px);
}

/* Faq new css */
.ultra-faq {
    background: #0f172a;
    padding: 60px 20px;
    font-family: sans-serif;
}

.uf-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.uf-badge {
    display: inline-block;
    background: #db2777;
    color: #fff;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 2px;
    margin-bottom: 10px;
}

.uf-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
}

/* Tools Bar */
.uf-tools {
    display: flex;
    gap: 15px;
    background: #1e2937;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 30px;
    border: 1px solid #374151;
}

.uf-search {
    flex: 1;
    display: flex;
    align-items: center;
    background: #0f172a;
    border: 1px solid #374151;
    padding: 10px 15px;
    border-radius: 4px;
}

.uf-search input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    margin-left: 10px;
}

.uf-ctls { display: flex; gap: 10px; }

.uf-btn {
    background: #db2777;
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 4px;
    cursor: pointer;
}

.uf-btn--ghost {
    background: #374151;
}

/* FAQ Cards */
.uf-grid { display: grid; gap: 10px; }

.uf-card {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 4px;
}

.uf-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    text-align: left;
}

.uf-q-box { display: flex; align-items: center; gap: 15px; }

.uf-icon {
    font-weight: 800;
    color: #db2777;
    font-size: 0.9rem;
    width: 25px;
}

.uf-text { font-weight: 700; font-size: 1.05rem; }

.uf-chev { transition: transform 0.3s; color: #6b7280; }

.uf-a {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 20px;
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* JS Toggle Class */
.uf-card.open .uf-a {
    max-height: 200px;
    padding-bottom: 20px;
}

.uf-card.open .uf-chev {
    transform: rotate(180deg);
}

@media (max-width: 700px) {
    .uf-tools { flex-direction: column; }
    .uf-ctls { justify-content: space-between; }
}


/* Card: Rainbow rings aur gradients hata kar clean dark boxes */
.uf-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: #111827;
    border: 1px solid #1f2937;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.uf-card::before {
    display: none !important;
}

/* Neon ring removed */
.uf-card:hover {
    border-color: var(--brand);
}

/* Toggle: High performance simple layout */
.uf-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 20px;
    background: transparent;
    border: 0;
    color: #fff;
    cursor: pointer;
    font: 700 1rem/1.3 sans-serif;
}

.uf-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    flex-shrink: 0;
    background: #1f2937;
    border: 1px solid #374151;
}

.uf-toggle:hover .uf-icon {
    background: #374151;
}

.uf-link {
    appearance: none;
    border: 1px solid #374151;
    background: #1f2937;
    color: #9ca3af;
    font: 700 0.8rem sans-serif;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
}

/* Answers: Fast transitions and clean spacing */
.uf-a {
    background: #0f172a;
    color: #9ca3af;
    font: 400 1rem/1.6 sans-serif;
}

.ultra-faq.js .uf-a {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.25s ease-out;
    padding: 0 20px;
}

.ultra-faq.js .uf-a.open {
    opacity: 1;
    padding: 0 20px 20px 20px;
    height: auto;
}

/* FAQ Search Highlight - Simple & Clean */
.uf-mark {
    background: #fef08a;
    /* Standard yellow marker */
    color: #111;
    padding: 0 2px;
    border-radius: 2px;
}

/* Card Entrance - No flashy movement */
@media (prefers-reduced-motion: no-preference) {
    .uf-card {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* Pop Tags Block - Industrial Look */
.pop-tags {
    --brand: #be185d;
    --ring: #e5e7eb;
    --ink: #111827;
    --panel: #ffffff;
    --muted: #6b7280;
    max-width: 1200px;
    margin: 40px auto;
}

.pop-tags .card {
    position: relative;
    background: var(--panel);
    border: 1px solid var(--ring);
    border-radius: 8px;
    /* Professional corners */
    padding: 30px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Conic/Neon effects removed (AI vibe cleaned) */
.pop-tags .card::before {
    display: none !important;
}

.pop-tags .title {
    font: 800 1.5rem sans-serif;
    color: var(--ink);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    margin: 0;
}

.pop-tags .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 4px;
    font: 700 0.75rem sans-serif;
    color: #065f46;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
}

/* Toolbar & Search */
.pop-tags .search {
    flex: 1 1 260px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f9fafb;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    padding: 8px 12px;
}

.pop-tags .search input {
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    font: 600 0.95rem sans-serif;
    color: #111;
}

.pop-tags .clear-btn {
    appearance: none;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #374151;
    padding: 8px 14px;
    border-radius: 4px;
    font: 700 0.85rem sans-serif;
}

/* Tags Grid */
.pop-tags .grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.pop-tags .tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 4px;
    /* Square tags */
    color: #374151;
    background: #ffffff;
    border: 1px solid #d1d5db;
    font: 600 0.85rem sans-serif;
}

.pop-tags .tag:hover {
    transform: none;
    background: #f3f4f6;
    border-color: var(--brand);
    color: var(--brand);
}

/* Collapse/Toggle */
.pop-tags .fade {
    display: none;
}

/* Flashy fade removed */
.pop-tags .toggle button {
    appearance: none;
    border: none;
    background: var(--brand);
    color: #fff;
    font: 700 0.9rem sans-serif;
    border-radius: 4px;
    padding: 10px 20px;
}

/* Navbar - Solid Professional Look */
:root {
    --primary: #be185d;
    --ink: #ffffff;
    --panel: #111827;
    --stroke: #1f2937;
}

/* --- Desktop & Base Navigation --- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #331b2c;
    /* Solid Professional Dark Navy */
    border-bottom: 2px solid #1f2937;
    padding: 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    padding: 0 20px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
    margin-left: 40px;
}

.nav-link {
    color: #f0fdf4;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #9ca3af;
    text-decoration: none;
    /* Primary color sirf hover par accent ke liye */
}

/* --- Buttons (Industrial Style) --- */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-btn,
.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 4px;
    /* Professional rectangular shape */
    transition: all 0.2s ease;
}

.whatsapp-btn {
    background: #25d366;
    /* Standard WhatsApp Green */
    color: #fff;
}

.whatsapp-btn:hover {
    background: #128c7e;
}

.contact-btn {
    background: transparent;
    color: #fff;
    border: 1px solid #4b5563;
}

.contact-btn:hover {
    background: #1f2937;
    border-color: #9ca3af;
}

/* --- Mobile Menu Configuration --- */
.mobile-menu-btn {
    display: none;
    color: #fff;
    cursor: pointer;
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #111827;
    border-bottom: 4px solid #db2777;
    /* Structural accent */
    display: none;
    /* JS open/close toggle handle karega */
}

.mobile-menu.open {
    display: block;
}

/* --- Mobile Specific Styles (Breakpoints) --- */
@media (max-width: 900px) {

    .nav-links,
    .nav-actions {
        display: none;
        /* Desktop components hide karein */
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: transparent;
        border: 1px solid #374151;
        border-radius: 4px;
    }

    .mobile-link {
        display: block;
        padding: 16px 20px;
        color: #f3f4f6;
        font-weight: 600;
        border-bottom: 1px solid #1f2937;
        text-decoration: none;
    }

    .mobile-link:hover {
        background: #1f2937;
    }

    .mobile-menu-cta {
        display: grid;
        gap: 12px;
        padding: 20px;
    }

    .mobile-menu-cta .whatsapp-btn,
    .mobile-menu-cta .contact-btn {
        width: 100%;
        justify-content: center;
        padding: 14px;
    }
}

/* Mobile Icon Toggle Logic */
.mobile-menu-btn[aria-expanded="true"] .icon-open {
    display: none;
}

.mobile-menu-btn[aria-expanded="true"] .icon-close {
    display: block;
}

/* Default state: Open icon dikhega, Close icon chupa rahega */
.icon-close {
    display: none;
}

.icon-open {
    display: block;
}

/* Jab menu khulega tab icons swap honge */
.mobile-menu-btn[aria-expanded="true"] .icon-open {
    display: none;
}

.mobile-menu-btn[aria-expanded="true"] .icon-close {
    display: block;
}

/* Profile Highlight: Gradient blurs hata kar solid dark background kiya hai */
.profile-highlight {
    padding: 60px 0;
    background: #0f172a;
    /* Solid Navy */
    border-bottom: 1px solid #1f2937;
}

/* Profile Panel: Glassmorphism aur circular rounding remove ki gayi */
.profile-panel {
    display: grid;
    grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
    gap: 40px;
    align-items: flex-start;
    padding: 0;
    /* Boxiness for professional look */
    background: transparent;
    border: none;
    box-shadow: none;
}

@media (max-width: 900px) {
    .profile-panel {
        grid-template-columns: 1fr;
    }
}

.profile-media {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    /* Industrial sharp edges */
    height: 480px;
    background: #1e2937;
    border: 1px solid #374151;
}

/* Profile Badge: Blur effect hataya */
.profile-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    background: #111827;
    border: 1px solid var(--primary);
    text-transform: uppercase;
}

.profile-copy {
    display: grid;
    gap: 20px;
}

.profile-kicker {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.profile-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin: 0;
}

.profile-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #9ca3af;
    max-width: 65ch;
}

/* Meta Pills: Round pills se rectangular tags mein conversion */
.profile-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.profile-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 4px;
    background: #1f2937;
    border: 1px solid #374151;
    color: #f1f5f9;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Profile Actions: Standard buttons without "pill" shapes */
.profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.profile-action {
    min-height: 44px;
    padding: 10px 24px;
    border-radius: 4px;
    /* Standard professional rounding */
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Primary Profile Action (Assuming WhatsApp/Contact) */
.profile-action:first-child {
    background: var(--primary);
    color: #fff;
}

.profile-action.contact-btn {
    background: transparent;
    color: #fff;
    border: 1px solid #4b5563;
}

.profile-action.contact-btn:hover {
    background: #1f2937;
    border-color: #9ca3af;
}

/* Profile Features: Grid stability and solid borders */
.profile-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 5px;
}

.profile-feature {
    padding: 20px;
    border-radius: 4px;
    /* Boxy industrial look */
    background: #1e2937;
    /* Solid dark grey/navy */
    border: 1px solid #374151;
}

.profile-feature strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 800;
}

.profile-feature span {
    color: #9ca3af;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Adjustments: Natural flow without AI flashiness */
@media (max-width: 900px) {
    .profile-panel {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .profile-media,
    .profile-media img {
        min-height: 380px;
        height: auto;
    }

    .profile-features {
        grid-template-columns: 1fr 1fr;
        /* Two column for mid-screens */
    }
}

@media (max-width: 640px) {
    .profile-highlight {
        padding: 40px 0;
    }

    .profile-panel {
        gap: 24px;
    }

    .profile-features {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }

    .profile-actions {
        flex-direction: column;
    }

    .profile-action {
        width: 100%;
        justify-content: center;
    }

    .profile-feature {
        text-align: left;
        border-left: 4px solid var(--primary);
        /* Structural accent */
    }
}