.about-saas{
    /* padding:120px 0; */
    background:#fff;
    position:relative;
    overflow:hidden;
}

.about-saas::before{
    content:'';
    position:absolute;
    width:700px;
    height:700px;
    right:-200px;
    top:-200px;
   
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1.1fr;
    gap:80px;
    align-items:center;
}

.section-tag{
    color:#2a7a81;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.about-content h2{
    /* font-size:62px; */
    line-height:1.05;
    font-weight:800;
    margin:20px 0;
    /* color:#0f172a; */
    color:black !important;
}

.about-content h2 span{
    background:rgb(42 119 127);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.about-content p{
    font-size:16px;
    color:#64748b;
}
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 900px;
}

.kpi-card {
    display: flex;
    align-items: center;
    gap: 22px;
    background: #fff;
    padding: 24px 28px;
    border-radius: 20px;
    border: 1px solid #e9eef9;
    min-height: 110px;

    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.03),
        0 1px 2px rgba(0, 0, 0, 0.02);

    transition: all .3s ease;
}

.kpi-card:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.08);
}

.kpi-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.kpi-icon i {
    font-size: 20px;
    color: #fff;
    z-index: 2;
}

/* Teal Icon */
.kpi-icon.teal {
    background: linear-gradient(
        135deg,
        #21d4d8,
        #0eb7c7
    );

    box-shadow:
        0 8px 18px rgba(33, 212, 216, 0.35),
        inset 0 2px 4px rgba(255,255,255,.35);
}

.kpi-icon.teal::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(33, 212, 216, 0.18);
    border-radius: 50%;
    filter: blur(12px);
    z-index: 0;
}

/* Blue Icon */
.kpi-icon.blue {
    background: linear-gradient(
        135deg,
        #3d8bff,
        #2667ff
    );

    box-shadow:
        0 8px 18px rgba(61, 139, 255, 0.35),
        inset 0 2px 4px rgba(255,255,255,.35);
}

.kpi-icon.blue::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(61, 139, 255, 0.18);
    border-radius: 50%;
    filter: blur(12px);
    z-index: 0;
}

.kpi-content h3 {
    margin: 0;
    font-size: 35px;
    font-weight: 700;
    line-height: 1;
    color: #118a9d;
}

.kpi-card:nth-child(2) h3,
.kpi-card:nth-child(4) h3 {
    color: #2667ff;
}

.kpi-content span {
    display: block;
    margin-top: 10px;
    font-size: 18px;
    color: #667085;
    font-weight: 500;
}

@media (max-width: 768px) {
    .kpi-grid {
        grid-template-columns: 1fr;
    }

    .kpi-content h3 {
        font-size: 36px;
    }

    .kpi-content span {
        font-size: 18px;
    }
}


.about-visual{
    position:relative;
}

.about-visual img{
    width:100%;
    max-width:750px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.feature-card {
    background: #fff;
    border: 1px solid #edf2ff;
    border-radius: 24px;
    padding: 35px 30px;
    text-align: center;
    position: relative;
    overflow: visible;

    box-shadow:
        0 4px 25px rgba(0, 0, 0, 0.04),
        0 2px 8px rgba(0, 0, 0, 0.02);

    transition: all .35s ease;
}

.feature-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feature-icon i {
    font-size: 30px;
    color: #fff;
    position: relative;
    z-index: 2;
}

/* Teal */
.feature-icon.teal {
    background: linear-gradient(
        135deg,
        #20d4d8,
        #0cb8c7
    );

    box-shadow:
        0 12px 24px rgba(32, 212, 216, 0.35),
        inset 0 2px 4px rgba(255,255,255,.35);
}

.feature-icon.teal::after {
    content: "";
    position: absolute;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: rgba(32, 212, 216, .18);
    filter: blur(16px);
}

/* Blue */
.feature-icon.blue {
    background: linear-gradient(
        135deg,
        #4d91ff,
        #2667ff
    );

    box-shadow:
        0 12px 24px rgba(38,103,255,.35),
        inset 0 2px 4px rgba(255,255,255,.35);
}

.feature-icon.blue::after {
    content: "";
    position: absolute;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: rgba(38,103,255,.18);
    filter: blur(16px);
}

/* Purple */
.feature-icon.purple {
    background: linear-gradient(
        135deg,
        #8b5cf6,
        #6d28d9
    );

    box-shadow:
        0 12px 24px rgba(139,92,246,.35),
        inset 0 2px 4px rgba(255,255,255,.35);
}

.feature-icon.purple::after {
    content: "";
    position: absolute;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: rgba(139,92,246,.18);
    filter: blur(16px);
}

.feature-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}

.feature-card p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

/* subtle top glow */
/* .feature-card::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -80px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(59,130,246,.04);
} */

@media(max-width:991px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}
@media(max-width:992px){

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

    .feature-grid{
        grid-template-columns:1fr;
    }

    .about-content h2{
        font-size:42px;
    }

}

/* --------------------------------------------------------------------------
   Runelix enterprise homepage refresh
   -------------------------------------------------------------------------- */
:root {
    --rx-font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
    --rx-font-heading: "Manrope", "Inter", system-ui, sans-serif;
    --rx-ink: #0b1220;
    --rx-ink-soft: #344054;
    --rx-muted: #667085;
    --rx-line: #d9e4e7;
    --rx-surface: #ffffff;
    --rx-surface-soft: #f5f9fb;
    --rx-surface-strong: #eaf3f5;
    --rx-primary: #176b73;
    --rx-primary-dark: #0f4850;
    --rx-primary-soft: #e5f4f5;
    --rx-accent: #e46b4a;
    --rx-accent-soft: #fff0eb;
    --rx-blue: #2563eb;
    --rx-purple: #6d5dfc;
    --rx-radius-sm: 10px;
    --rx-radius-md: 16px;
    --rx-radius-lg: 24px;
    --rx-shadow-sm: 0 8px 24px rgba(15, 72, 80, 0.08);
    --rx-shadow-md: 0 18px 54px rgba(15, 72, 80, 0.14);
    --rx-shadow-lg: 0 30px 90px rgba(11, 18, 32, 0.18);
    --rx-container: 1180px;
}

body.index-page {
    color: var(--rx-ink-soft);
    background:
        linear-gradient(180deg, #f8fbfc 0%, #ffffff 520px),
        var(--rx-surface);
    font-family: var(--rx-font-body);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.index-page h1,
body.index-page h2,
body.index-page h3,
body.index-page h4,
body.index-page h5,
body.index-page h6 {
    color: var(--rx-ink);
    font-family: var(--rx-font-heading);
    letter-spacing: 0;
}

body.index-page .container,
body.index-page .container-xl {
    max-width: var(--rx-container);
}

body.index-page .section {
    padding: clamp(72px, 8vw, 112px) 0;
}

body.index-page a:focus-visible,
body.index-page button:focus-visible,
body.index-page input:focus-visible,
body.index-page textarea:focus-visible {
    outline: 3px solid rgba(228, 107, 74, 0.35);
    outline-offset: 3px;
}

body.index-page .nayra-header {
    min-height: 76px;
    padding: 14px 0;
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(217, 228, 231, 0.82);
    box-shadow: none;
}

body.index-page.scrolled .nayra-header {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 44px rgba(15, 72, 80, 0.09);
}

body.index-page .header .logo img {
    max-height: 44px;
    object-fit: contain;
}

body.index-page .nayra-nav ul {
    gap: 2px;
}

body.index-page .nayra-nav a,
body.index-page .nayra-nav a:focus {
    color: var(--rx-ink-soft);
    font-family: var(--rx-font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    padding: 12px 13px;
    /* border-radius: 999px; */
    border-radius:4px;
}

body.index-page .nayra-nav li:hover>a,
body.index-page .nayra-nav .active,
body.index-page .nayra-nav .active:focus {
    color: var(--rx-primary-dark);
    border-bottom: 2px solid var(--rx-primary-dark);
}

body.index-page .nayra-nav .dropdown ul {
    min-width: 232px;
    padding: 10px;
    border: 1px solid rgba(217, 228, 231, 0.9);
    border-radius: var(--rx-radius-md);
    box-shadow: var(--rx-shadow-md);
}

body.index-page .nayra-nav .dropdown ul a,
body.index-page .nayra-nav .dropdown ul a:focus {
    color: var(--rx-ink-soft);
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 14px;
}

body.index-page .nayra-nav .dropdown ul a:hover,
body.index-page .nayra-nav .dropdown ul li:hover>a {
    color: var(--rx-primary-dark);
    background: var(--rx-primary-soft);
}

body.index-page .header .btn-getstarted.nayra-contact-btn,
body.index-page .header .btn-getstarted.nayra-contact-btn:focus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 20px;
    margin-left: auto;
    color: #ffffff;
    background: linear-gradient(135deg, var(--rx-primary-dark), var(--rx-primary));
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    font-family: var(--rx-font-body);
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 12px 26px rgba(23, 107, 115, 0.24);
}

body.index-page .header .btn-getstarted.nayra-contact-btn:hover {
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(23, 107, 115, 0.3);
}

body.index-page .nayra-hero {
    min-height: auto;
    padding: clamp(80px, 9vw, 132px) 0 clamp(72px, 8vw, 108px);
    background:
        linear-gradient(135deg, rgba(229, 244, 245, 0.92), rgba(255, 255, 255, 0.4) 52%, rgba(255, 240, 235, 0.78)),
        #f8fbfc;
    overflow: hidden;
}

body.index-page .nayra-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(23, 107, 115, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 107, 115, 0.06) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
}

body.index-page .nayra-hero .container {
    position: relative;
    z-index: 1;
}

.eyebrow-pill {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 13px;
    color: var(--rx-primary-dark);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(23, 107, 115, 0.16);
    border-radius: 999px;
    box-shadow: var(--rx-shadow-sm);
    font-size: 13px;
    font-weight: 800;
}

.eyebrow-pill i {
    color: var(--rx-accent);
}

body.index-page .nayra-hero-title {
    max-width: 740px;
    margin: 0;
    color: var(--rx-ink);
    font-size: clamp(30px, 5.7vw, 40px) !important;
    line-height: 0.98;
    font-weight: 800;
}

body.index-page .nayra-hero-lead {
    max-width: 620px;
    margin: 24px 0 0;
    color: var(--rx-ink-soft);
    font-size: clamp(17px, 1.6vw, 20px);
    line-height: 1.7;
}

.nayra-hero-cta {
    margin-top: 32px;
}

.nayra-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    border-radius: 999px;
    font-family: var(--rx-font-body);
    font-size: 15px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nayra-btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--rx-primary-dark), var(--rx-primary));
    box-shadow: 0 18px 40px rgba(23, 107, 115, 0.26);
}

.nayra-btn-primary:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 22px 52px rgba(23, 107, 115, 0.32);
}

.nayra-btn-outline {
    color: var(--rx-primary-dark);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(23, 107, 115, 0.22);
}

.nayra-btn-outline:hover {
    color: var(--rx-primary-dark);
    background: #ffffff;
    border-color: rgba(23, 107, 115, 0.38);
    transform: translateY(-2px);
    box-shadow: var(--rx-shadow-sm);
}

.hero-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 610px;
    margin-top: 34px;
}

.hero-proof-item {
    padding: 17px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(217, 228, 231, 0.85);
    border-radius: var(--rx-radius-md);
    box-shadow: var(--rx-shadow-sm);
}

.hero-proof-item strong {
    display: block;
    color: var(--rx-primary-dark);
    font-family: var(--rx-font-heading);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1;
}

.hero-proof-item span {
    display: block;
    margin-top: 8px;
    color: var(--rx-muted);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;
}

body.index-page .nayra-product-stage {
    position: relative;
    width: min(100%, 570px);
    margin-left: auto;
    padding: 12px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(232, 246, 247, 0.68)),
        #ffffff;
    border: 1px solid rgba(23, 107, 115, 0.14);
    border-radius: 26px;
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.16);
    isolation: isolate;
}

body.index-page .nayra-product-stage::before {
    content: "";
    position: absolute;
    inset: -11px -11px -10px -9px;
    background: linear-gradient(135deg, rgba(23, 107, 115, 0.14), rgba(228, 105, 72, 0.12));
    border-radius: 24px;
    z-index: -1;
}

body.index-page .nayra-product {
    width: 100%;
    aspect-ratio: 16 / 11;
    display: block;
    object-fit: cover;
    border-radius: 18px;
    transform: none;
    box-shadow: none;
    filter: saturate(1.04) contrast(1.02);
}

.hero-insight-card {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    color: var(--rx-ink);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(23, 107, 115, 0.12);
    border-radius: 16px;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.13);
    backdrop-filter: blur(14px);
}

.hero-insight-card-primary {
    left: 22px;
    bottom: 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

.hero-insight-card-primary span {
    color: var(--rx-muted);
    font-size: 12px;
    font-weight: 800;
}

.hero-insight-card-primary strong {
    color: var(--rx-primary-dark);
    font-family: var(--rx-font-heading);
    font-size: 30px;
    line-height: 1;
}

.hero-insight-card-secondary {
    right: 22px;
    top: 22px;
    color: var(--rx-primary-dark);
    font-size: 13px;
    font-weight: 800;
}

.hero-insight-card-secondary i {
    color: var(--rx-accent);
}

body.index-page .section-title {
    max-width: 760px;
    margin: 0 auto;
    padding-bottom: 44px;
}

body.index-page .section-title h2 {
    margin-bottom: 12px;
    color: var(--rx-ink) !important;
    font-size: clamp(30px, 4vw, 30px);
    line-height: 1.08;
    font-weight: 800;
}

body.index-page .section-title h2::before,
body.index-page .section-title h2::after {
    display: none;
}

body.index-page .section-title p {
    color: var(--rx-muted);
    font-size: 17px;
    line-height: 1.65;
}

.about-saas {
    padding: clamp(72px, 8vw, 112px) 0;
    background: #ffffff;
}

.about-grid {
    gap: clamp(36px, 6vw, 80px);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 11px;
    color: var(--rx-primary-dark);
    background: var(--rx-primary-soft);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.about-content h2 {
    color: var(--rx-ink) !important;
    font-size: clamp(34px, 4.4vw, 30px) !important;
    line-height: 1.04;
    letter-spacing: 0;
}

.about-content h2 span {
    background: linear-gradient(135deg, var(--rx-primary), var(--rx-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-content p {
    max-width: 640px;
    color: var(--rx-muted);
    font-size: 17px;
    line-height: 1.75;
}

.kpi-grid {
    margin-top: 30px;
}

.kpi-card,
.feature-card,
.service-item,
.industry-card,
.testimonial-item,
.contact .info-item,
.php-email-form {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(217, 228, 231, 0.92);
    border-radius: var(--rx-radius-lg);
    box-shadow: var(--rx-shadow-sm);
}

.kpi-card {
    padding: 22px;
    border-radius: var(--rx-radius-md);
}

.kpi-card:hover,
.feature-card:hover,
.service-item:hover,
.industry-card:hover,
.testimonial-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--rx-shadow-md);
    border-color: rgba(23, 107, 115, 0.24);
}

.kpi-icon,
.feature-icon,
.service-item i,
.contact .info-item i {
    background: linear-gradient(135deg, var(--rx-primary), var(--rx-blue));
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(23, 107, 115, 0.22);
}

.kpi-content h3 {
    color: var(--rx-primary-dark);
    font-family: var(--rx-font-heading);
    font-size: 32px;
    font-weight: 800;
}

.kpi-card:nth-child(2) h3,
.kpi-card:nth-child(4) h3 {
    color: var(--rx-blue);
}

.kpi-content span {
    color: var(--rx-muted);
    font-size: 14px;
    line-height: 1.4;
}

.about-visual {
    padding: 18px;
    background: linear-gradient(135deg, var(--rx-primary-soft), #ffffff);
    border: 1px solid rgba(217, 228, 231, 0.9);
    border-radius: 32px;
    box-shadow: var(--rx-shadow-md);
}

.about-visual img {
    display: block;
    border-radius: 22px;
}

.feature-grid {
    margin-top: 42px;
}

.feature-card {
    padding: 32px 28px;
    text-align: left;
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 0 24px;
}

.feature-icon i {
    font-size: 24px;
}

.feature-card h4 {
    color: var(--rx-ink);
    font-size: 21px;
}

.feature-card p {
    color: var(--rx-muted);
    font-size: 15px;
    line-height: 1.75;
}

.bg_service,
.light-background,
.alt-services {
    background: var(--rx-surface-soft);
}

.services .row {
    row-gap: 24px;
}

.service-item {
    width: 100%;
    min-height: 100%;
    padding: 28px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-item i {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 14px;
    font-size: 23px;
}

.service-item h4 {
    margin-bottom: 12px;
    color: var(--rx-ink);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 800;
}

.service-item h4 a {
    color: inherit;
}

.service-item p {
    color: var(--rx-muted);
    font-size: 15px;
    line-height: 1.7;
}

.button_more {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 8px 12px;
    color: var(--rx-primary-dark);
    background: var(--rx-primary-soft);
    border-radius: 999px;
    border: 0;
    font-size: 13px;
    font-weight: 900;
}

.button_more::after {
    content: "\F138";
    font-family: "bootstrap-icons";
    font-size: 12px;
}

#benefitsCarousel {
    max-width: var(--rx-container);
    width: calc(100% - 24px);
}

.industry-card {
    border-radius: var(--rx-radius-lg);
}

.industry-img {
    height: 250px;
    align-items: center;
    background: linear-gradient(135deg, #eef8f8, #ffffff);
}

.industry-img img {
    max-height: 210px;
    transition: transform 0.22s ease;
}

.industry-card:hover .industry-img img {
    transform: scale(1.03);
}

.industry-content h3 {
    color: var(--rx-ink);
    font-family: var(--rx-font-heading);
    font-size: 21px;
    font-weight: 800;
}

.industry-content p {
    color: var(--rx-muted);
    font-size: 15px;
    line-height: 1.7;
}

.custom-arrow {
    width: 48px;
    height: 48px;
    background: var(--rx-primary-dark);
    border: 1px solid rgba(255, 255, 255, 0.34);
    box-shadow: var(--rx-shadow-sm);
}

#Industry .swiper {
    padding: 8px 2px 44px;
}

#Industry .testimonial-wrap {
    padding: 0;
}

#Industry .testimonial-item {
    height: 100%;
    margin: 0;
    padding: 24px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

#Industry .testimonial-img {
    width: 100%;
    height: 220px;
    margin: 0 0 22px;
    border-radius: 18px;
    object-fit: cover;
}

#Industry .testimonial-item h3 {
    color: var(--rx-ink);
    font-size: 22px;
    font-weight: 800;
}

#Industry .testimonial-item p {
    color: var(--rx-muted);
    font-size: 15px;
    line-height: 1.75;
}

#Industry .quote-icon-left,
#Industry .quote-icon-right {
    color: rgba(228, 107, 74, 0.45);
}

.industries-showcase {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 6% 18%, rgba(37, 99, 235, 0.12), transparent 30%),
        radial-gradient(circle at 94% 28%, rgba(6, 182, 212, 0.1), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.industries-showcase::before {
    content: "";
    position: absolute;
    top: 88px;
    right: 7%;
    width: 160px;
    height: 160px;
    opacity: 0.36;
    background-image: radial-gradient(rgba(37, 99, 235, 0.34) 1px, transparent 1px);
    background-size: 14px 14px;
    pointer-events: none;
}

.industries-glow {
    position: absolute;
    width: 44%;
    height: 42%;
    pointer-events: none;
    filter: blur(52px);
    opacity: 0.46;
}

.industries-glow-left {
    left: -24%;
    top: 12%;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.24), rgba(37, 99, 235, 0));
}

.industries-glow-right {
    right: -24%;
    top: 28%;
    background: linear-gradient(270deg, rgba(6, 182, 212, 0.2), rgba(6, 182, 212, 0));
}

.industries-showcase .container {
    position: relative;
    z-index: 1;
}

.industries-header {
    max-width: 920px;
    margin: 0 auto 64px;
    text-align: center;
}

.industries-pill {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    padding: 9px 15px;
    color: #1d4ed8;
    background: #eff6ff;
    border: 1px solid rgba(37, 99, 235, 0.18);
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(37, 99, 235, 0.08);
    font-size: 13px;
    font-weight: 800;
}

.industries-pill i {
    color: #2563eb;
}

.industries-header h2 {
    margin: 0;
    color: #0b1023;
    font-size: 30px;
    line-height: 1.04;
    font-weight: 800;
}

.industries-header h2 span {
    background: linear-gradient(90deg, #2563eb 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.industries-header p {
    max-width: 800px;
    margin: 22px auto 0;
    color: #64748b;
    font-size: 20px;
    line-height: 1.7;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.industry-premium-card {
    position: relative;
    min-width: 0;
    padding: 0;
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 28px;
    box-shadow: none;
    transition: transform 0.28s ease;
}

.industry-premium-card:hover {
    transform: translateY(-10px);
}

.industry-media {
    position: relative;
    height: 290px;
    overflow: hidden;
    border-radius: 28px 28px 22px 22px;
    background: #eef6ff;
    box-shadow: 0 18px 52px rgba(15, 23, 42, 0.08);
}

.industry-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0) 38%, rgba(15, 23, 42, 0.18) 100%),
        linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.08));
    pointer-events: none;
}

.industry-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.45s ease;
}

.industry-premium-card:hover .industry-media img {
    transform: scale(1.08);
}

.industry-premium-card:hover .industry-floating-panel {
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.16);
}

.industry-floating-panel {
    position: relative;
    margin: -58px 14px 0;
    padding: 58px 24px 24px;
    min-height: 292px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.industry-icon {
    position: absolute;
    top: -34px;
    left: 24px;
    width: 68px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 50%;
    box-shadow: 0 18px 38px rgba(37, 99, 235, 0.16);
    font-size: 29px;
}

.industry-floating-panel h3 {
    margin: 0 0 13px;
    color: #0f172a;
    font-size: 32px;
    line-height: 1.12;
    font-weight: 700;
}

.industry-floating-panel p {
    margin: 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
}

.industry-floating-panel a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    background: linear-gradient(90deg, #2563eb, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 15px;
    font-weight: 800;
}

.industry-floating-panel a span {
    display: inline-block;
    transition: transform 0.22s ease;
}

.industry-floating-panel a:hover span {
    transform: translateX(5px);
}

.industries-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 58px auto 0;
    padding: 22px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: 28px;
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.11);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.industry-stat {
    display: grid;
    grid-template-columns: 54px 1fr;
    column-gap: 15px;
    align-items: center;
    padding: 10px 24px;
}

.industry-stat:not(:last-child) {
    border-right: 1px solid rgba(226, 232, 240, 0.92);
}

.stat-icon {
    grid-row: span 2;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    background: linear-gradient(180deg, #ffffff, #eff6ff);
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 50%;
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.12);
    font-size: 22px;
}

.industry-stat strong {
    color: #0b1023;
    font-family: var(--rx-font-heading);
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
}

.industry-stat span {
    margin-top: 6px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
}

.swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: rgba(23, 107, 115, 0.35);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    width: 26px;
    border-radius: 999px;
    background: var(--rx-primary);
}

.nayra-featured {
    padding: 64px 0;
    background: #ffffff;
}

.nayra-featured-title {
    margin-bottom: 24px;
    color: var(--rx-muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-align: center;
}

.nayra-logo-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.nayra-logo-item {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: #ffffff;
    border: 1px solid rgba(217, 228, 231, 0.92);
    border-radius: var(--rx-radius-md);
    box-shadow: var(--rx-shadow-sm);
}

.nayra-logo-item img {
    max-height: 44px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.78;
    transition: filter 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.nayra-logo-item:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-2px);
}

.contact {
    background:
        linear-gradient(135deg, rgba(229, 244, 245, 0.86), rgba(255, 255, 255, 0.96) 48%, rgba(255, 240, 235, 0.72)),
        #ffffff;
}

.contact .info-item {
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
    padding: 22px;
}

.contact .info-item i {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 20px;
}

.contact .info-item h3 {
    margin-bottom: 7px;
    color: var(--rx-ink);
    font-size: 17px;
    font-weight: 800;
}

.contact .info-item p {
    margin: 0;
    color: var(--rx-muted);
    line-height: 1.65;
}

.php-email-form {
    padding: clamp(24px, 4vw, 36px);
}

.php-email-form .form-control {
    min-height: 52px;
    padding: 13px 15px;
    color: var(--rx-ink);
    background: #ffffff;
    border: 1px solid rgba(217, 228, 231, 1);
    border-radius: 14px;
    box-shadow: none;
    font-size: 15px;
}

.php-email-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.php-email-form .form-control:focus {
    border-color: rgba(23, 107, 115, 0.58);
    box-shadow: 0 0 0 4px rgba(23, 107, 115, 0.12);
}

.php-email-form button[type="submit"] {
    min-height: 50px;
    padding: 13px 24px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--rx-primary-dark), var(--rx-primary));
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(23, 107, 115, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.php-email-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(23, 107, 115, 0.32);
}

body.index-page .footer {
    padding: 28px 0;
    color: rgba(255, 255, 255, 0.78);
    background: #0b343a;
    box-shadow: none;
}

.footer_box {
    gap: 18px;
}

body.index-page .footer .copyright p {
    color: rgba(255, 255, 255, 0.78);
}

body.index-page .footer .sitename {
    color: #ffffff;
}

body.index-page .footer .social-links {
    margin-top: 0;
}

body.index-page .footer .social-links a {
    color: rgba(255, 255, 255, 0.72);
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
}

body.index-page .footer .social-links a:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

@media (max-width: 1199px) {
    body.index-page .nayra-nav.position-absolute {
        position: static !important;
        transform: none !important;
    }

    body.index-page .mobile-nav-toggle {
        color: var(--rx-primary-dark);
    }

    body.index-page .mobile-nav-active .mobile-nav-toggle {
        color: #ffffff;
    }

    body.index-page .navmenu ul {
        inset: 74px 18px 20px;
        padding: 12px;
        border-radius: 20px;
    }

    body.index-page .nayra-nav a,
    body.index-page .nayra-nav a:focus {
        padding: 12px 14px;
        border-radius: 12px;
    }
}

@media (max-width: 991px) {
    body.index-page .nayra-hero {
        padding-top: 58px;
        text-align: left;
    }

    body.index-page .nayra-product-stage {
        margin: 0 auto 18px;
    }

    .hero-insight-card-primary {
        left: 18px;
        bottom: 28px;
    }

    .hero-insight-card-secondary {
        right: 18px;
        top: 28px;
    }

    .nayra-logo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .industries-header {
        margin-bottom: 46px;
    }

    .industries-header h2 {
        font-size: 46px;
    }

    .industries-header p {
        font-size: 18px;
    }

    .industries-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .industry-media {
        height: 260px;
    }

    .industry-floating-panel {
        min-height: 276px;
    }

    .industries-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .industry-stat:nth-child(2) {
        border-right: 0;
    }

    .industry-stat:nth-child(n + 3) {
        border-top: 1px solid rgba(226, 232, 240, 0.92);
    }
}

@media (max-width: 767px) {
    body.index-page .section {
        padding: 64px 0;
    }

    body.index-page .header .logo img {
        max-height: 38px;
    }

    body.index-page .header .btn-getstarted.nayra-contact-btn {
        min-height: 38px;
        padding: 8px 14px;
        font-size: 13px;
    }

    body.index-page .nayra-hero-title {
        font-size: clamp(36px, 11vw, 30px);
    }

    .hero-proof-grid,
    .kpi-grid {
        grid-template-columns: 1fr;
    }

    .hero-insight-card {
        position: static;
        width: 100%;
        margin-top: 10px;
    }

    #benefitsCarousel {
        width: 100%;
        padding: 0 18px 58px;
    }

    .custom-arrow {
        top: auto;
        bottom: 0;
        transform: none;
    }

    .carousel-control-prev {
        left: calc(50% - 58px);
    }

    .carousel-control-next {
        right: calc(50% - 58px);
    }

    .industry-img {
        height: 210px;
    }

    .industries-showcase::before {
        width: 120px;
        height: 120px;
        right: 4%;
        opacity: 0.26;
    }

    .industries-glow {
        display: none;
    }

    .industries-header {
        margin-bottom: 34px;
    }

    .industries-header h2 {
        font-size: 38px;
        line-height: 1.08;
    }

    .industries-header p {
        font-size: 17px;
    }

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

    .industry-premium-card {
        padding: 0;
        border-radius: 24px;
    }

    .industry-media {
        height: 250px;
        border-radius: 24px 24px 18px 18px;
    }

    .industry-floating-panel {
        margin: -44px 10px 0;
        padding: 50px 20px 22px;
        min-height: auto;
        border-radius: 20px;
    }

    .industry-icon {
        left: 20px;
        width: 60px;
        height: 60px;
        font-size: 25px;
    }

    .industry-floating-panel h3 {
        font-size: 27px;
    }

    .industries-stats {
        grid-template-columns: 1fr;
        margin-top: 36px;
        padding: 12px;
        border-radius: 24px;
    }

    .industry-stat,
    .industry-stat:not(:last-child),
    .industry-stat:nth-child(n + 3) {
        border-right: 0;
        border-top: 0;
    }

    .industry-stat:not(:last-child) {
        border-bottom: 1px solid rgba(226, 232, 240, 0.92);
    }

    .nayra-logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer_box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .eyebrow-pill {
        font-size: 12px;
    }

    .nayra-hero-cta {
        width: 100%;
    }

    .nayra-btn {
        width: 100%;
    }

    .service-item,
    .feature-card,
    .industry-content,
    .php-email-form {
        padding: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.index-page *,
    body.index-page *::before,
    body.index-page *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }
}
