:root {
    --orange: #FF7518;
    --text-dark: #111;
    --text-light: #555;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

img,
svg,
video {
    max-width: 100%;
    height: auto;
}

body {
   background: radial-gradient(1200px 320px at 50% 0%, rgba(255, 179, 107, 0.14), rgba(255, 179, 107, 0.04) 55%, #ffffff 100%);
    overflow-x: hidden;
    position: relative;
}

#networkCanvas {
   position: fixed;
   top: 0;
   left: 0;
   width: 100vw;
   height: 100vh;
   z-index: -999; /* Stays behind all your UI */
   pointer-events: none; /* Allows clicks to pass through to buttons */
}

/* Home (below hero) background: orange multi-shades + navy */
.home-after-hero {
    position: relative;
    overflow: hidden;
}

.home-after-hero::before,
.home-after-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.home-after-hero::before {
    width: 420px;
    height: 420px;
    left: -120px;
    top: 140px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 178, 102, 0.65), rgba(234, 88, 12, 0.10));
    opacity: 0.7;
}

.home-after-hero::after {
    width: 520px;
    height: 520px;
    right: -200px;
    top: 60px;
    background: radial-gradient(circle at 30% 30%, rgba(30, 27, 75, 0.30), rgba(30, 27, 75, 0.05));
    opacity: 0.55;
}

.home-after-hero .container {
    position: relative;
    z-index: 1;
}
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.6fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
}

.main-img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-text h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin: 15px 0;
     font-weight: 700;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.sub-title {
    font-weight: bold;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Stats Card - Glassmorphism */
.stats-glass-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 40px 20px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stat-item h2 {
    font-size: 2.2rem;
    display: inline-block;
    color: var(--mrn-orange-500, #f97316);
}

.stat-item span {
    font-size: 1.5rem;
    color: var(--mrn-orange-500, #f97316);
}

.stat-item p {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.05);
    margin: 20px 0;
}

@media (max-width: 991px) {
    .container {
       padding: 20px 16px 0px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .about-text h1 {
        font-size: 2rem;
    }

    .stats-glass-card {
        padding: 28px 18px;
        border-radius: 24px;
    }
}

/* Services Section */
.adv-services-section {
    padding: 20px 0;
    position: relative;
}

.why-choose-bg {
    overflow: visible;
}

/* Background Blurry Blobs matching the image */
.adv-blob {
    position: absolute;
    filter: blur(60px);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.6;
}
.adv-blob-1 { width: 250px; height: 250px; background: rgba(249, 115, 22, 0.55); top: 5%; left: 10%; }
.adv-blob-2 { width: 300px; height: 300px; background: rgba(30, 27, 75, 0.35); bottom: 5%; right: 5%; }
.adv-blob-3 { width: 200px; height: 200px; background: rgba(234, 88, 12, 0.28); top: 50%; left: 40%; opacity: 0.3; }

/* Section Title */
.adv-title {
    text-align: center;
    font-size: 2.2rem;
     font-weight: 700;
    color: #000;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* 2-Column Grid Layout */
.adv-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    position: relative;
    z-index: 1;
}

/* Card Design (Icon Left, Text Right) */
.adv-service-card {
   display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: linear-gradient(#ffffff, #ffffff) padding-box, 
                linear-gradient(135deg, var(--mrn-orange-400, #fb923c), var(--mrn-orange-600, #ea580c), var(--mrn-navy-800, #1e1b4b)) border-box;
    border: 2px solid transparent; /* This creates the gradient border */
    transition: transform 0.3s ease;
}

.adv-service-card:hover {
    transform: translateY(-5px);
}

/* Icon Styling (Gradient Colors) */
.adv-icon {
    flex-shrink: 0;
}

.adv-icon img{
    
}

/* Content Styling */
.adv-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.adv-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
    line-height: 1.3;
}

.adv-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Orange Pill Buttons */
.adv-btn {
    background: linear-gradient(90deg, #ff8a00, #ff5e00);
    color: #ffffff;
    border: none;
    display: inline-block;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(255, 94, 0, 0.3);
    transition: 0.3s ease;
}

.adv-btn:hover {
    box-shadow: 0 6px 15px rgba(255, 94, 0, 0.5);
    transform: scale(1.05);
}

/* Responsive for Mobile Views */
@media (max-width: 991px) {
    .adv-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .adv-grid-layout {
        grid-template-columns: 1fr; /* Switch to 1 column on smaller screens */
    }
}
@media (max-width: 480px) {
    .adv-service-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .adv-content {
        align-items: center;
    }
}

/* =========================================
   Trusted By (Home)
   ========================================= */
.mrn-trusted-section {
    margin: 42px 0 10px;
}

.mrn-trusted-inner {
    padding: 26px 18px;
    border-radius: 18px;
    background: var(--glass-bg, rgba(255, 247, 237, 0.55));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border, rgba(255, 237, 213, 0.75));
    box-shadow: var(--glass-shadow, 0 10px 36px rgba(124, 45, 18, 0.10));
}

.mrn-trusted-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 0 8px;
    color: #111;
    text-align: center;
}

.mrn-trusted-subtitle {
    margin: 0 auto 16px;
    max-width: 860px;
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.mrn-marquee {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    padding: 14px 0;
    background: rgba(255, 247, 237, 0.30);
    border: 1px solid rgba(255, 237, 213, 0.75);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
    touch-action: pan-x;
}

.mrn-marquee-inner {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 0;
    will-change: transform;
    animation: mrnMarquee 26s linear infinite;
}

.mrn-marquee::before,
.mrn-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 70px;
    z-index: 2;
    pointer-events: none;
}

.mrn-marquee::before {
    left: 0;
    background: linear-gradient(90deg, rgba(255, 247, 237, 0.95), rgba(255, 247, 237, 0));
}

.mrn-marquee::after {
    right: 0;
    background: linear-gradient(270deg, rgba(255, 247, 237, 0.95), rgba(255, 247, 237, 0));
}

.mrn-marquee-track {
    display: flex;
    align-items: center;
    gap: 12px;
    width: max-content;
    padding: 0 18px;
    flex: 0 0 auto;
}

.mrn-brand-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 237, 213, 0.95);
    box-shadow: 0 10px 20px rgba(124, 45, 18, 0.06);
    color: #1e1b4b;
    font-weight: 800;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0.92;
    transition: transform 260ms var(--mrn-anim-ease, cubic-bezier(0.22, 1, 0.36, 1)),
        box-shadow 260ms var(--mrn-anim-ease, cubic-bezier(0.22, 1, 0.36, 1)),
        opacity 260ms var(--mrn-anim-ease, cubic-bezier(0.22, 1, 0.36, 1));
}

.mrn-brand-pill:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(124, 45, 18, 0.10);
}

.mrn-brand-pill--logo {
    padding: 12px 18px;
}

.mrn-brand-pill--logo img {
    display: block;
    height: 30px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    opacity: 0.98;
    filter: saturate(1.08) contrast(1.06);
}

.mrn-brand-pill--logo:hover img {
    filter: none;
}

.mrn-marquee:hover .mrn-marquee-inner {
    animation-play-state: paused;
}

@keyframes mrnMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 767px) {
    .mrn-trusted-inner {
        padding: 22px 14px;
    }

    .mrn-trusted-title {
        font-size: 1.35rem;
    }

    .mrn-brand-pill {
        padding: 9px 12px;
        font-size: 0.85rem;
    }
    
    .mrn-brand-pill--logo img {
        height: 26px;
        max-width: 120px;
    }

    .mrn-marquee::before,
    .mrn-marquee::after {
        width: 48px;
    }

    .mrn-marquee-inner {
        animation-duration: 22s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mrn-marquee {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .mrn-marquee-inner {
        animation: none;
    }
    .mrn-marquee-track[aria-hidden="true"] {
        display: none;
    }
    .mrn-marquee::before,
    .mrn-marquee::after {
        display: none;
    }
}


.mrn-v3-container {
    width: 100%;
    margin: 0 auto;
}

.mrn-v3-section {
    padding: 40px 0;
    text-align: center;
}

.mrn-v3-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.mrn-v3-orange {
    color: var(--mrn-orange);
}

/* PROCESS GRID & GLASS CARDS */
/* Section Container */
.mrn-v3-section {
    padding: 40px 0px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    overflow: hidden;
    position: relative;
}

/* Background Abstract Shapes (Jo image ke corners mein hain) */
.mrn-v3-section::before,
.mrn-v3-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.5;
}

.mrn-v3-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.mrn-v3-orange {
    color: #ff7e5f;
}

/* Grid Layout with Connecting Arrows */
.mrn-v3-process-grid {
   display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Glass Card Design */
.mrn-v3-glass-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease !important;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 40px 25px;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.07);
    transition: transform 0.3s ease;
    position: relative;
}

.mrn-v3-glass-card:hover {
    transform: translateY(-10px);
}

@media (max-width: 1100px) {
    .mrn-v3-process-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }
}
@media (max-width: 600px) {
    .mrn-v3-title {
        margin-bottom: 30px;
    }
}
@media (max-width: 600px) {
    .mrn-v3-section {
        padding: 56px 0;
    }

    .mrn-v3-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .mrn-v3-process-grid {
        grid-template-columns: 1fr;
    }

    .mrn-v3-glass-card {
        max-width: 100%;
        padding: 28px 18px;
    }
}

/* Floating Orb / Icon Box */
.mrn-v3-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    /* color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); */
    position: relative;
}

/* Specific Gradients from Image */
/* .v3-grad-1 {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.v3-grad-2 {
    background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
}

.v3-grad-3 {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.v3-grad-4 {
    background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
} */

/* Text Styling */
.mrn-v3-glass-card h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 15px;
}

.mrn-v3-glass-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Arrows - Desktop Only */
@media (min-width: 1024px) {
    .mrn-v3-glass-card:not(:last-child)::after {
        content: '→';
        position: absolute;
        right: -35px;
        top: 25%;
        font-size: 40px;
        color: #ddd;
        background: linear-gradient(
            to right,
            var(--mrn-orange-400, #fb923c),
            var(--mrn-navy-800, #1e1b4b)
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: bold;
    }
}


/* FEATURE CARDS (WHY CHOOSE US) */
:root {
    --primary-orange: var(--mrn-orange-500, #f97316);
    --secondary-orange: var(--mrn-orange-400, #fb923c);
    --bg-light: #ffffff;
}

.mrn-v3-section {
    position: relative;
    text-align: center;
}

/* Background Dots/Shapes like in image */
.bg-shape {
    position: absolute;
    z-index: 0;
    filter: blur(40px);
    opacity: 0.4;
    border-radius: 50%;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ff7e4b, transparent);
    top: -50px;
    left: -50px;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #4b90ff, transparent);
    bottom: -50px;
    right: -20px;
}

.mrn-v3-features-grid {
     display: grid;
   grid-template-columns: repeat(3, 1fr);
    align-items: center;
    padding: 0px 20px;
    gap: 20px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

/* The Card Design */
.mrn-v3-feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 3px solid var(--secondary-orange);
    /* Matching the orange border */
    border-radius: 30px;
    padding: 40px 25px;
    box-shadow: 0 15px 35px rgba(255, 126, 75, 0.15);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 3D Glass Icon Styling */
.glass-icon {
    margin-bottom: 25px;
    background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.1));
}

/* Text Styling */
.mrn-v3-feature-card h3 {
      font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.mrn-v3-feature-card p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Hover Effect for interaction */
.mrn-v3-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 126, 75, 0.25);
    background: #fff;
}

/* CASE STUDIES */
.mrn-v3-main-btn {
    background: var(--mrn-orange);
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 50px;
    cursor: pointer;
}

.mrn-v3-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    text-align: left;
}

.mrn-v3-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.mrn-v3-img-wrap img {
    width: 100%;
    display: block;
}

.mrn-v3-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* start the our process */
:root {
    --orange-grad: linear-gradient(135deg, #FF8A00 0%, #FF5C00 100%);
    --neon-grad: linear-gradient(90deg, #00D1FF, #9D50BB, #6E48AA, #FF00C7);
    --bg-color: #FFFFFF;
    --text-main: #000000;
    --text-muted: #555555;
}
/* Background Blobs for that "Airy" Look */
body::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(0, 209, 255, 0.1);
    filter: blur(80px);
    top: -100px;
    left: -100px;
    z-index: -1;
}

/* --- COMPONENT 1: NAVBAR --- */


/* --- COMPONENT 2: PRODUCT CARDS --- */
.section-container {
    padding: 45px 0;
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
}

.products-flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.glass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 30px;
    min-height: 320px;
    display: flex;
    text-align: left;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(10px);
}

/* The Exact Neon Border using Masking */
.glass-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 3px;
    background: var(--neon-grad);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.card-info {
    flex: 1.2;
    z-index: 2;
}

.card-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.card-info h2 {
    font-size: 32px;
     font-weight: 700;
    color: #000;
}

.card-info h3 {
    font-size: 16px;
    margin: 10px 0 20px;
    line-height: 1.2;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 13px;
    margin-bottom: 8px;
    color: #333;
}

.feature-item span {
    color: #FF8A00;
    margin-right: 8px;
    font-weight: bold;
}

.btn-explore {
    display: inline-block;
    margin-top: 25px;
    background: var(--orange-grad);
    color: white;
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}
@media (max-width: 991px) {
.mrn-v3-features-grid {
     display: grid;
   grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 940px) {
.products-flex {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}
}
@media (max-width: 767px) {
.mrn-v3-features-grid {
   grid-template-columns: repeat(1, 1fr);
       padding: 0px 0px;
}
.glass-card {
    flex-direction: column;
}

}
/* --- COMPONENT 3: STRATEGY GRID --- */
.strategy-layout {
    display: grid;
    grid-template-columns: 1fr 2px 1fr;
    gap: 40px;
    position: relative;
}

.strategy-line {
    background: #FF8A00;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 138, 0, 0.5);
}

.strat-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.strat-icon {
    background: #FFF5EE;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.strat-text{
    text-align: start;
}
.strat-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.strat-text p {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 1100px) {

    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 15px;
    }
}
@media (max-width: 767px) {
 .strategy-layout {
        grid-template-columns: 1fr;
        padding: 0 0px;
        gap: 4px;
    }

    .strategy-line {
        display: none;
    }
    .section-title {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 30px;
}
}
