html {
    scroll-behavior: smooth;
}

:root {
    --ruraara-black: #030303;
    --ruraara-black-soft: #0a0a0f;
    --ruraara-blue: #0a3b8f;
    --ruraara-blue-deep: #041f57;
    --ruraara-red: #e11f26;
    --ruraara-red-deep: #a80f14;
    --ruraara-white: #ffffff;
    --ruraara-silver: rgba(255, 255, 255, 0.78);
    --ruraara-border: rgba(255, 255, 255, 0.1);
    --ruraara-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: var(--ruraara-black);
    color: var(--ruraara-white);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    text-decoration: none;
}

/* =========================
   FLOATING HEADER
========================= */
.ruraara-floating-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 2000;
    pointer-events: none;
}

.ruraara-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: auto;
}

.ruraara-brand {
    display: inline-flex;
    align-items: center;
    transition: transform 0.35s ease;
}

.ruraara-brand:hover {
    transform: translateY(-2px) scale(1.01);
}

.ruraara-brand-logo {
    height: 76px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.45));
}

.ruraara-menu-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 13px 18px 13px 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: var(--ruraara-white);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.28);
    transition: all 0.35s ease;
    cursor: pointer;
}

.ruraara-menu-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(225, 31, 38, 0.12), rgba(10, 59, 143, 0.14));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.ruraara-menu-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.4);
}

.ruraara-menu-btn:hover::before {
    opacity: 1;
}

.ruraara-menu-text,
.ruraara-menu-icon {
    position: relative;
    z-index: 2;
}

.ruraara-menu-text {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #f3f6ff;
}

.ruraara-menu-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ruraara-red), var(--ruraara-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 0 26px rgba(10, 59, 143, 0.28);
}

.ruraara-menu-icon span {
    display: block;
    width: 17px;
    height: 2px;
    border-radius: 10px;
    background: #fff;
    transition: 0.3s ease;
}

.ruraara-menu-btn:hover .ruraara-menu-icon span:nth-child(1) {
    width: 12px;
    transform: translateX(-2px);
}

.ruraara-menu-btn:hover .ruraara-menu-icon span:nth-child(2) {
    width: 17px;
}

.ruraara-menu-btn:hover .ruraara-menu-icon span:nth-child(3) {
    width: 12px;
    transform: translateX(2px);
}

.ruraara-floating-header {
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.ruraara-floating-header.header-hidden {
    transform: translateY(-120%);
    opacity: 0;
}

/* =========================
   SIDEBAR OVERLAY
========================= */
.ruraara-sidebar-overlay {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(10, 59, 143, 0.22), transparent 24%),
        radial-gradient(circle at bottom left, rgba(225, 31, 38, 0.15), transparent 22%),
        rgba(0, 0, 0, 0.68);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.4s ease;
    z-index: 2090;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.ruraara-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* =========================
   SIDEBAR
========================= */
.ruraara-sidebar {
    position: fixed;
    top: 0;
    right: -460px;
    width: 420px;
    max-width: 95%;
    height: 100vh;
    z-index: 2100;
    padding: 26px 30px 40px;
    background:
        radial-gradient(circle at top right, rgba(10, 59, 143, 0.24), transparent 28%),
        radial-gradient(circle at bottom left, rgba(225, 31, 38, 0.18), transparent 30%),
        linear-gradient(180deg, rgba(5, 8, 18, 0.98) 0%, rgba(8, 8, 12, 0.98) 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -25px 0 70px rgba(0, 0, 0, 0.45);
    transition: right 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
}

.ruraara-sidebar.active {
    right: 0;
}

.ruraara-sidebar::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 95%);
    pointer-events: none;
}

.ruraara-sidebar-top {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 40px;
}

.ruraara-close-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    color: var(--ruraara-white);
    font-size: 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.35s ease;
}

.ruraara-close-btn:hover {
    transform: rotate(90deg) scale(1.08);
    background: linear-gradient(135deg, rgba(225, 31, 38, 0.18), rgba(10, 59, 143, 0.18));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ruraara-sidebar-nav {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.ruraara-sidebar-link {
    position: relative;
    display: inline-block;
    width: fit-content;
    font-size: clamp(1.2rem, 1.9vw, 1.85rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.15;
    padding: 7px 0;
    transition: all 0.35s ease;
}

.ruraara-sidebar-link::before {
    display: none;
}

.ruraara-sidebar-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--ruraara-red), var(--ruraara-blue), #ffffff);
    transition: width 0.35s ease;
}

.ruraara-sidebar-link:hover {
    color: #ffffff;
    transform: translateX(18px);
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.08);
}

.ruraara-sidebar-link:hover::before {
    display: none;
}

.ruraara-sidebar-link:hover::after {
    width: 100%;
}

.ruraara-sidebar-cta-wrap {
    position: relative;
    z-index: 2;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ruraara-sidebar-cta-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: auto;
    min-width: 250px;
    max-width: 100%;
    min-height: 56px;
    padding: 14px 18px;
    border-radius: 16px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, #e11f26 0%, #0a3b8f 100%);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28);
    transition: all 0.35s ease;
}

.ruraara-sidebar-cta-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.02));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.ruraara-sidebar-cta-btn span,
.ruraara-sidebar-cta-btn i {
    position: relative;
    z-index: 2;
}

.ruraara-sidebar-cta-btn i {
    font-size: 20px;
    transition: transform 0.35s ease;
}

.ruraara-sidebar-cta-btn:hover {
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

.ruraara-sidebar-cta-btn:hover::before {
    opacity: 1;
}

.ruraara-sidebar-cta-btn:hover i {
    transform: translate(4px, -4px);
}

/* =========================
   HERO SECTION (NO BUBBLE)
========================= */
.ruraara-hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #02040a;
}

/* VIDEO */
.ruraara-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* DARK OVERLAY */
.ruraara-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(2, 4, 10, 0.55) 0%, rgba(2, 4, 10, 0.75) 100%),
        radial-gradient(circle at 12% 88%, rgba(173, 20, 29, 0.18), transparent 25%),
        radial-gradient(circle at 88% 86%, rgba(16, 57, 145, 0.16), transparent 25%);
}

/* GLOWS */
.ruraara-red-glow,
.ruraara-blue-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
}

.ruraara-red-glow {
    width: 340px;
    height: 340px;
    left: -100px;
    bottom: -20px;
    background: rgba(173, 20, 29, 0.45);
}

.ruraara-blue-glow {
    width: 360px;
    height: 360px;
    right: -110px;
    bottom: -40px;
    background: rgba(16, 57, 145, 0.35);
}

/* CENTER CONTENT */
.ruraara-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TITLE (slightly smaller + cleaner) */
.ruraara-hero-title {
    margin-bottom: 22px;
    font-size: clamp(3.8rem, 7vw, 6rem);
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #ffffff;
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

/* SUBTITLE */
.ruraara-hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.6rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

/* RED SEPARATORS */
.ruraara-hero-subtitle .sep {
    color: #cf1f2e;
    font-weight: 700;
    margin: 0 6px;
}

/* title typing - fast, once */
.ruraara-hero-title {
    overflow: hidden;
}

.sep {
    color: #e11f26;
    margin: 0 6px;
}

.ruraara-title-typing {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid rgba(255, 255, 255, 0.9);
    width: 0;
    animation:
        ruraaraTitleTyping 1.2s steps(16, end) forwards,
        ruraaraTitleCaret 0.75s step-end 4,
        ruraaraTitleCaretHide 0s forwards 1.2s; /* 👈 hides cursor */
}

@keyframes ruraaraTitleCaretHide {
    to {
        border-right: none;
    }
}

@keyframes ruraaraTitleTyping {
    from {
        width: 0;
    }
    to {
        width: 16ch;
    }
}

@keyframes ruraaraTitleCaret {
    0%, 100% {
        border-color: rgba(255, 255, 255, 0.9);
    }
    50% {
        border-color: transparent;
    }
}

/* subtitle typing */
.ruraara-hero-subtitle {
    min-height: 1.8em;
}

#ruraaraSubtitleTyping {
    white-space: nowrap;
}

.ruraara-subtitle-caret {
    display: inline-block;
    width: 2px;
    height: 1em;
    margin-left: 4px;
    vertical-align: -0.08em;
    background: #ffffff;
    animation: ruraaraSubtitleCaretBlink 0.8s step-end infinite;
}

@keyframes ruraaraSubtitleCaretBlink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* MOBILE */
@media (max-width: 767.98px) {
    .ruraara-hero-title {
        font-size: clamp(2.4rem, 10vw, 3.8rem);
        line-height: 1.05;
        text-align: center;
        padding: 0 10px;
        margin: 0 auto 14px;
    }

    .ruraara-title-typing {
        white-space: normal;      /* allow wrap on mobile */
        width: auto !important;   /* stop fixed typing width from cropping */
        max-width: 100%;
        border-right: none;       /* avoid the cursor pushing layout */
        display: inline-block;
    }

    .ruraara-hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    #ruraaraSubtitleTyping {
        white-space: normal;
    }

    .ruraara-subtitle-caret {
        height: 0.9em;
    }

    .ruraara-red-glow {
        width: 200px;
        height: 200px;
    }

    .ruraara-blue-glow {
        width: 200px;
        height: 200px;
    }
}
/* =========================
   DEMO SECTIONS
========================= */
.demo-section,
.demo-footer {
    position: relative;
    padding: 120px 0;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.demo-section:nth-of-type(even) {
    background: #070812;
}

.demo-section h2,
.demo-footer h2 {
    margin: 0;
    font-size: 44px;
    font-weight: 800;
    color: #ffffff;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1199.98px) {
    .ruraara-brand-logo {
        height: 68px;
    }
}

@media (max-width: 991.98px) {
    .ruraara-floating-header {
        padding: 18px 0;
    }

    .ruraara-brand-logo {
        height: 58px;
    }

    .ruraara-sidebar {
        width: 380px;
        padding: 22px 24px 34px;
    }

    .ruraara-hero-content {
        padding-top: 30px;
    }

    .ruraara-hero-text {
        font-size: 16px;
    }
}

@media (max-width: 767.98px) {
    .ruraara-floating-header {
        padding: 14px 0;
    }

    .ruraara-brand-logo {
        height: 46px;
        max-width: 180px;
    }

    .ruraara-menu-btn {
        padding: 10px 12px 10px 14px;
        gap: 10px;
    }

    .ruraara-menu-text {
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.14em;
    }

    .ruraara-menu-icon {
        width: 36px;
        height: 36px;
    }

    .ruraara-menu-icon span {
        width: 15px;
    }

    .ruraara-sidebar {
        width: 100%;
        max-width: 100%;
        right: -100%;
        padding: 20px 20px 30px;
    }

    .ruraara-close-btn {
        width: 48px;
        height: 48px;
        font-size: 17px;
    }

    .ruraara-sidebar-link {
        font-size: 1.35rem;
    }

    .ruraara-hero-content {
        padding-top: 30px;
    }

    .ruraara-hero-kicker {
        font-size: 11px;
        letter-spacing: 0.18em;
        padding: 9px 14px;
    }

    .ruraara-hero-title {
        line-height: 1;
    }

    .ruraara-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ruraara-primary-btn,
    .ruraara-secondary-btn {
        width: 100%;
    }

    .demo-section,
    .demo-footer {
        padding: 90px 0;
    }

    .demo-section h2,
    .demo-footer h2 {
        font-size: 32px;
    }
}

/* =========================
   ABOUT US SECTION
========================= */
.ruraara-about-section {
    position: relative;
    padding: 130px 0 40px;

    background: #000; /* ✅ ONE SOLID COLOR */

    overflow: hidden;
}

.ruraara-about-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.03), transparent 60%);
    pointer-events: none;
}

.ruraara-about-center-wrap {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.ruraara-about-title {
    margin: 0 auto 24px;
    max-width: 980px;
    font-size: 50px;
    line-height: 1.02;
    font-weight: 600;
    letter-spacing: -0.05em;
    color: #ffffff;
}

.ruraara-about-text {
    margin: 0 auto 16px;
    max-width: 860px;
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.78);
}

/* 🔥 highlight founder name */
.ruraara-founder {
    color: #e11f26;
    font-weight: 700;
}

.ruraara-about-text-secondary {
    margin-bottom: 38px;
    color: rgba(255, 255, 255, 0.70);
}

.ruraara-founder {
    color: #e11f26; /* your brand red */
    text-decoration: none;
    font-weight: 600;
}

.ruraara-founder:hover {
    text-decoration: underline;
}

/* =========================
   ABOUT US SECTION
========================= */
.ruraara-about-section {
    position: relative;
    padding: 60px 0 0;
    background: #000;
    overflow: hidden;
}

.ruraara-about-center-wrap {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.ruraara-about-title {
    margin: 0 auto 24px;
    max-width: 980px;
    font-size: 50px;
    line-height: 1.02;
    font-weight: 600;
    letter-spacing: -0.05em;
    color: #ffffff;
}

.ruraara-about-text {
    margin: 0 auto 16px;
    max-width: 860px;
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.78);
}

.ruraara-founder {
    color: #e11f26;
    font-weight: 700;
}

.ruraara-about-text-secondary {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.70);
}

/* =========================
   FULL-BLEED VIDEO STAGE
========================= */
.ruraara-about-video-stage {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    height: 500px;
    margin-top: 50px;
    overflow: hidden;
    background: #000;
}

.ruraara-about-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.95;
    filter: brightness(0.95) contrast(1.05);
}

.ruraara-about-video-glow {
    display: none;
}

.ruraara-about-video-lights {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background:
        linear-gradient(90deg,
            rgba(0,0,0,0.85) 0%,
            rgba(0,0,0,0.45) 10%,
            rgba(0,0,0,0.12) 22%,
            rgba(0,0,0,0) 50%,
            rgba(0,0,0,0.12) 78%,
            rgba(0,0,0,0.45) 90%,
            rgba(0,0,0,0.85) 100%
        ),
        linear-gradient(180deg,
            rgba(0,0,0,0.03) 0%,
            rgba(0,0,0,0.15) 40%,
            rgba(0,0,0,1) 100%
        );
}

.ruraara-about-video-lights::before,
.ruraara-about-video-lights::after {
    content: "";
    position: absolute;
    bottom: -24px;
    width: 38%;
    height: 75%;
    filter: blur(10px);
    opacity: 0.28;
    animation: ruraaraSpotlightRise 7s ease-in-out infinite alternate;
}

.ruraara-about-video-lights::before {
    left: 8%;
    background: linear-gradient(
        to top,
        rgba(255,255,255,0.25),
        rgba(255,255,255,0.05),
        transparent
    );
    clip-path: polygon(42% 100%, 58% 100%, 100% 0, 0 0);
}

.ruraara-about-video-lights::after {
    right: 8%;
    background: linear-gradient(
        to top,
        rgba(255,255,255,0.25),
        rgba(255,255,255,0.05),
        transparent
    );
    clip-path: polygon(42% 100%, 58% 100%, 100% 0, 0 0);
}

@keyframes ruraaraSpotlightRise {
    0% {
        transform: translateY(14px) scaleY(0.96);
        opacity: 0.24;
    }
    50% {
        transform: translateY(0) scaleY(1.02);
        opacity: 0.40;
    }
    100% {
        transform: translateY(-18px) scaleY(1.08);
        opacity: 0.52;
    }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991.98px) {
    .ruraara-about-section {
        padding: 105px 0 0;
    }

    .ruraara-about-text {
        font-size: 16px;
        max-width: 720px;
    }

    .ruraara-about-video-stage {
        height: 420px;
        margin-top: 40px;
    }
}

@media (max-width: 767.98px) {
    .ruraara-about-section {
        padding: 90px 0 0;
    }

    .ruraara-about-title {
        font-size: clamp(2.3rem, 10vw, 3.8rem);
        margin-bottom: 18px;
    }

    .ruraara-about-text {
        font-size: 15px;
        line-height: 1.8;
    }

    .ruraara-about-text-secondary {
        margin-bottom: 0;
    }

    .ruraara-about-video-stage {
        height: 280px;
        margin-top: 32px;
    }

    .ruraara-about-video-lights::before,
    .ruraara-about-video-lights::after {
        width: 42%;
        height: 66%;
        opacity: 0.34;
    }
}

@keyframes ruraaraSpotlightRise {
    0% {
        transform: translateY(14px) scaleY(0.96);
        opacity: 0.24;
    }
    50% {
        transform: translateY(0) scaleY(1.02);
        opacity: 0.40;
    }
    100% {
        transform: translateY(-18px) scaleY(1.08);
        opacity: 0.52;
    }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991.98px) {
    .ruraara-about-section {
        padding: 105px 0 30px;
    }

    .ruraara-about-text {
        font-size: 16px;
        max-width: 720px;
    }

    .ruraara-about-video-stage {
        height: 420px;
    }
}

@media (max-width: 767.98px) {
    .ruraara-about-section {
        padding: 90px 0 24px;
    }

    .ruraara-about-tag {
        font-size: 11px;
        letter-spacing: 0.12em;
        padding: 9px 14px;
        margin-bottom: 20px;
    }

    .ruraara-about-title {
        font-size: clamp(2.3rem, 10vw, 3.8rem);
        margin-bottom: 18px;
    }

    .ruraara-about-text {
        font-size: 15px;
        line-height: 1.8;
    }

    .ruraara-about-text-secondary {
        margin-bottom: 28px;
    }

    .ruraara-about-video-stage {
        height: 280px;
        border-radius: 22px 22px 0 0;
    }

    .ruraara-about-video {
        border-radius: 22px 22px 0 0;
    }

.ruraara-about-video-lights {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;

    background:
        /* side black fades */
        linear-gradient(90deg,
            rgba(3, 6, 14, 0.95) 0%,
            rgba(3, 6, 14, 0.65) 12%,
            rgba(3, 6, 14, 0.15) 26%,
            rgba(3, 6, 14, 0.00) 50%,
            rgba(3, 6, 14, 0.15) 74%,
            rgba(3, 6, 14, 0.65) 88%,
            rgba(3, 6, 14, 0.95) 100%
        ),

        /* top-to-bottom black fade */
        linear-gradient(180deg,
            rgba(3, 6, 14, 0.04) 0%,
            rgba(3, 6, 14, 0.10) 35%,
            rgba(3, 6, 14, 0.85) 100%
        );
}

    .ruraara-about-video-lights::before,
    .ruraara-about-video-lights::after {
        width: 42%;
        height: 66%;
        opacity: 0.34;
    }
}

/* =========================
   WHAT WE DO SECTION
========================= */
.ruraara-services-section {
    padding: 30px 0;
    background: linear-gradient(180deg, #04070f 0%, #060912 100%);
}

/* heading */
.ruraara-services-title {
    font-size: 50px; /* 🔥 REDUCED to fit one line */
    font-weight: 600;
    color: #fff;
}

/* layout fix */
.row.g-4 > [class*="col-"] {
    display: flex;
}

/* card */
.ruraara-service-card {
    position: relative;
    border-radius: 30px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* image */
.ruraara-service-image-wrap {
    height: 220px;
    overflow: hidden;
}

.ruraara-service-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FIXED ICON */
.ruraara-service-icon {
    position: absolute;
    top: 190px; /* 👈 aligns to image edge */
    left: 26px;

    width: 65px;
    height: 65px;

    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #e11f26, #0a3b8f);
    border: 4px solid #050913;

    z-index: 3;
}

.ruraara-service-icon i {
    font-size: 24px;
    color: #fff;
}

/* content */
.ruraara-service-content {
    padding: 55px 24px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ruraara-service-content h3 {
    font-size: 1.35rem; /* 🔥 REDUCED so it stays one line */
    font-weight: 800;
    color: #fff;
}

.ruraara-service-content p {
    margin-top: auto;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* =========================
   MOBILE FIXES
========================= */
@media (max-width: 767.98px) {

    /* section spacing */
    .ruraara-services-section {
        padding: 85px 0;
    }

    /* heading */
    .ruraara-services-title {
        font-size: clamp(2.2rem, 10vw, 3.4rem);
        margin-bottom: 12px;
    }

    .ruraara-services-text {
        font-size: 15px;
        line-height: 1.8;
    }

    /* cards */
    .row.g-4 > [class*="col-"] {
        display: block; /* stack properly */
    }

    .ruraara-service-card {
        border-radius: 22px;
    }

    /* image */
    .ruraara-service-image-wrap {
        height: 180px;
    }

    /* icon */
    .ruraara-service-icon {
        width: 56px;
        height: 56px;
        top: 155px; /* 🔥 align with smaller image height */
        left: 18px;
        border-radius: 16px;
    }

    .ruraara-service-icon i {
        font-size: 20px;
    }

    /* content */
    .ruraara-service-content {
        padding: 48px 18px 20px;
    }

    .ruraara-service-content h3 {
        font-size: 1.25rem;
        margin-bottom: 8px;
    }

    .ruraara-service-content p {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* =========================
   WHY CHOOSE US SECTION
========================= */
.ruraara-why-section {
    position: relative;
    padding: 60px 0;
    background:
        radial-gradient(circle at top right, rgba(10, 59, 143, 0.08), transparent 24%),
        radial-gradient(circle at bottom left, rgba(168, 15, 20, 0.08), transparent 24%),
        linear-gradient(180deg, #050813 0%, #060912 100%);
    overflow: hidden;
}

.ruraara-why-header {
    max-width: 940px;
    margin: 0 auto 44px;
}

.ruraara-why-title {
    margin: 0 0 18px;
    font-size: 50px;
    line-height: 1.02;
    font-weight: 600;
    letter-spacing: -0.05em;
    color: #ffffff;
}

.ruraara-why-title span {
    color: #e11f26;
}

.ruraara-why-text {
    margin: 0 auto;
    max-width: 760px;
    font-size: 17px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.74);
}

/* one connected shell */
.ruraara-why-shell {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255,255,255,0.03);
}

.ruraara-why-shell::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -40px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(10, 59, 143, 0.16);
    filter: blur(70px);
    pointer-events: none;
    z-index: 0;
}

.ruraara-why-shell::after {
    content: "";
    position: absolute;
    bottom: -70px;
    left: -30px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(168, 15, 20, 0.14);
    filter: blur(70px);
    pointer-events: none;
    z-index: 0;
}

/* left panel integrated into shell */
.ruraara-why-feature-panel {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.ruraara-why-photo-wrap {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 26px;
    overflow: hidden;
    margin-bottom: 26px;
    background: #0b132a;
}

.ruraara-why-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.76) saturate(0.95);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.ruraara-why-shell:hover .ruraara-why-photo {
    transform: scale(1.04);
    filter: brightness(0.88) saturate(1);
}

.ruraara-why-photo-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 8, 19, 0.10) 0%, rgba(5, 8, 19, 0.16) 40%, rgba(5, 8, 19, 0.58) 100%),
        linear-gradient(135deg, rgba(10, 59, 143, 0.18), rgba(168, 15, 20, 0.08));
    pointer-events: none;
}

.ruraara-why-feature-content {
    position: relative;
    z-index: 2;
}

.ruraara-why-feature-line {
    display: block;
    width: 72px;
    height: 4px;
    border-radius: 999px;
    margin-bottom: 24px;
    background: linear-gradient(90deg, #e11f26, #0a3b8f);
}

.ruraara-why-feature-panel h3 {
    margin: 0 0 18px;
    font-size: clamp(1.8rem, 3vw, 2.35rem);
    line-height: 1.18;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
}

.ruraara-why-feature-panel p {
    margin: 0;
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.72);
}

/* right side cards */
.ruraara-why-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 24px;
    height: 100%;
}

.ruraara-why-card {
    position: relative;
    min-height: 220px;
    padding: 28px 24px 24px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.20),
        inset 0 1px 0 rgba(255,255,255,0.03);
    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
    overflow: hidden;
}

.ruraara-why-card::before {
    content: "";
    position: absolute;
    inset: auto auto -40px -20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(10, 59, 143, 0.10);
    filter: blur(40px);
    pointer-events: none;
}

.ruraara-why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(93, 123, 255, 0.22);
    box-shadow:
        0 26px 60px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255,255,255,0.04);
}

/* replace number with icon */
.ruraara-why-card-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: linear-gradient(135deg, #e11f26, #0a3b8f);
    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 12px 30px rgba(0,0,0,0.25),
        inset 0 1px 0 rgba(255,255,255,0.08);

    transition: 0.4s ease;
}

.ruraara-why-card:hover .ruraara-why-card-icon {
    transform: translateY(-3px) scale(1.05);
}

.ruraara-why-card-icon i {
    font-size: 22px;
    color: #ffffff;
}

.ruraara-why-card-content h4 {
    margin: 0 0 12px;
    font-size: 1.35rem;
    line-height: 1.2;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.ruraara-why-card-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
}

/* responsive */
@media (max-width: 991.98px) {
    .ruraara-why-section {
        padding: 90px 0;
    }

    .ruraara-why-header {
        margin-bottom: 36px;
    }

    .ruraara-why-title {
        font-size: 42px;
    }

    .ruraara-why-text {
        font-size: 16px;
    }

    .ruraara-why-feature-panel {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .ruraara-why-grid {
        gap: 16px;
    }

    .ruraara-why-card {
        min-height: 205px;
        padding: 24px 20px 22px;
    }
}

@media (max-width: 767.98px) {
    .ruraara-why-section {
        padding: 85px 0;
    }

    .ruraara-why-title {
        font-size: clamp(2.2rem, 10vw, 3.8rem);
        margin-bottom: 14px;
    }

    .ruraara-why-text {
        font-size: 15px;
        line-height: 1.8;
    }

    .ruraara-why-shell {
        border-radius: 24px;
    }

    .ruraara-why-feature-panel {
        padding: 18px;
    }

    .ruraara-why-photo-wrap {
        height: 220px;
        border-radius: 18px;
        margin-bottom: 20px;
    }

    .ruraara-why-feature-panel h3 {
        font-size: 1.55rem;
    }

    .ruraara-why-feature-panel p {
        font-size: 15px;
    }

    .ruraara-why-grid {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .ruraara-why-card {
        min-height: auto;
        border-radius: 22px;
    }

    .ruraara-why-card-content h4 {
        font-size: 1.2rem;
    }

    .ruraara-why-card-content p {
        font-size: 14px;
    }
}

/* =========================
   OUR CLIENTS SECTION
========================= */
.ruraara-clients-section {
    position: relative;
    padding: 120px 0;
    background:
        radial-gradient(circle at top left, rgba(10, 59, 143, 0.08), transparent 24%),
        radial-gradient(circle at bottom right, rgba(168, 15, 20, 0.08), transparent 24%),
        linear-gradient(180deg, #04070f 0%, #060912 100%);
    overflow: hidden;
}

.ruraara-clients-heading {
    max-width: 860px;
    margin: 0 auto 52px;
}

.ruraara-clients-title {
    margin: 0 0 16px;
    font-size: 50px;
    line-height: 1.04;
    font-weight: 600;
    letter-spacing: -0.05em;
    color: #ffffff;
}

.ruraara-clients-text {
    margin: 0 auto;
    max-width: 700px;
    font-size: 17px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.74);
}

/* tighter spacing */
.row.g-3 {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 12px;
}

/* CLEAN CARD (NO DARK SHADE) */
.ruraara-client-card {
    height: 140px;
    width: 100%;
    border-radius: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 18px;
    text-decoration: none;

    background: rgba(255,255,255,0.08); /* 👈 LIGHTER */
    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow: none; /* 👈 REMOVED DARK SHADOW */

    transition: 0.35s ease;
}

/* REMOVE glow circles (they were adding darkness) */
.ruraara-client-card::before,
.ruraara-client-card::after {
    display: none;
}

/* HOVER */
.ruraara-client-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.14);
    border-color: rgba(93, 123, 255, 0.25);
}

/* LOGO */
.ruraara-client-logo {
    max-width: 120%;
    max-height: 60px;

    object-fit: contain;

    filter: none; /* ✅ THIS IS THE REAL FIX */
    opacity: 1;

    transition: 0.35s ease;
}

/* HOVER LOGO */
.ruraara-client-card:hover .ruraara-client-logo {
    transform: scale(1.05);
}

/* responsive */
@media (max-width: 991.98px) {
    .ruraara-clients-section {
        padding: 100px 0;
    }

    .ruraara-clients-heading {
        margin-bottom: 42px;
    }

    .ruraara-clients-text {
        font-size: 16px;
    }

    .ruraara-client-card {
        height: 130px;
        border-radius: 20px;
        padding: 16px;
    }

    .ruraara-client-logo {
        max-height: 54px;
    }
}

@media (max-width: 767.98px) {
    .ruraara-clients-section {
        padding: 85px 0;
    }

    .ruraara-clients-title {
        font-size: clamp(2rem, 10vw, 3.4rem);
        margin-bottom: 14px;
    }

    .ruraara-clients-text {
        font-size: 15px;
        line-height: 1.8;
    }

    .ruraara-client-card {
        height: 115px;
        border-radius: 18px;
        padding: 14px;
    }

    .ruraara-client-logo {
        max-height: 46px;
    }
}

/* clients button */
.ruraara-clients-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 28px;
    border-radius: 999px;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #ffffff;
    text-decoration: none;

    background: linear-gradient(135deg, #e11f26, #0a3b8f);
    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 14px 40px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.15);

    transition: 0.35s ease;
}

.ruraara-clients-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow:
        0 20px 50px rgba(0,0,0,0.45),
        inset 0 1px 0 rgba(255,255,255,0.2);
}

/* =========================
   CLIENTS PAGE
========================= */

/* =========================
   VIDEO BACKGROUND
========================= */
.ruraara-clients-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    z-index: 0;

    /* 🔥 BLUR EFFECT */
    filter: blur(18px) brightness(0.4);
    transform: scale(1.1); /* avoids edges showing after blur */
}

/* overlay for depth */
.ruraara-clients-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.6) 0%,
            rgba(0,0,0,0.75) 40%,
            rgba(0,0,0,0.9) 100%
        );
}

.ruraara-clients-page {
    position: relative;
    padding: 170px 0 120px;
    background: #000;
    overflow: hidden;
}

.ruraara-clients-page-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
    z-index: 1;
    opacity: 0.95;
}

.ruraara-clients-page-glow.glow-red {
    width: 360px;
    height: 360px;
    top: 70px;
    left: -90px;
    background: rgba(225, 31, 38, 0.20);
}

.ruraara-clients-page-glow.glow-blue {
    width: 420px;
    height: 420px;
    top: 140px;
    right: -120px;
    background: rgba(10, 59, 143, 0.24);
}

.ruraara-clients-page .container {
    position: relative;
    z-index: 2;
}

.ruraara-clients-page-heading {
    max-width: 920px;
    margin: 0 auto 52px;
}

.ruraara-clients-page-title {
    margin: 0 0 16px;
    font-size: 50px;
    line-height: 1.04;
    font-weight: 600;
    letter-spacing: -0.05em;
    color: #ffffff;
}

.ruraara-clients-page-text {
    max-width: 720px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.85;
    color: rgba(255,255,255,0.74);
}

/* tighter spacing */
.ruraara-clients-page .row.g-3 {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 12px;
}

/* same client card style */
.ruraara-client-card {
    height: 140px;
    width: 100%;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    text-decoration: none;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
    transition: 0.35s ease;
}

.ruraara-client-card::before,
.ruraara-client-card::after {
    display: none;
}

.ruraara-client-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.14);
    border-color: rgba(93, 123, 255, 0.25);
}

.ruraara-client-logo {
    max-width: 100%;
    max-height: 82px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: 0.35s ease;
}

.ruraara-client-card:hover .ruraara-client-logo {
    transform: scale(1.05);
}

/* responsive */
@media (max-width: 991.98px) {
    .ruraara-clients-page {
        padding: 120px 0 60px;
    }

    .ruraara-clients-page-heading {
        margin-bottom: 42px;
    }

    .ruraara-clients-page-text {
        font-size: 16px;
    }

    .ruraara-client-card {
        height: 130px;
        border-radius: 20px;
        padding: 16px;
    }

    .ruraara-client-logo {
        max-height: 72px;
    }

    .ruraara-clients-page-glow.glow-red {
        width: 280px;
        height: 280px;
        top: 100px;
        left: -80px;
    }

    .ruraara-clients-page-glow.glow-blue {
        width: 320px;
        height: 320px;
        top: 180px;
        right: -100px;
    }
}

@media (max-width: 767.98px) {
    .ruraara-clients-page {
        padding: 150px 0 85px;
    }

    .ruraara-clients-page-heading {
        margin-bottom: 34px;
    }

    .ruraara-clients-page-title {
        font-size: clamp(2.1rem, 9vw, 3.5rem);
        margin-bottom: 14px;
        line-height: 1.08;
    }

    .ruraara-clients-page-text {
        font-size: 15px;
        line-height: 1.8;
        max-width: 92%;
    }

    .ruraara-client-card {
        height: 115px;
        border-radius: 18px;
        padding: 14px;
    }

    .ruraara-client-logo {
        max-height: 58px;
    }

    .ruraara-clients-page-glow.glow-red {
        width: 220px;
        height: 220px;
        top: 120px;
        left: -70px;
        filter: blur(90px);
    }

    .ruraara-clients-page-glow.glow-blue {
        width: 240px;
        height: 240px;
        top: 210px;
        right: -80px;
        filter: blur(90px);
    }
}

/* =========================
   TESTIMONIES SECTION
========================= */
.ruraara-testimonials-section {
    position: relative;
    padding: 120px 0;
    background: #000;
    overflow: hidden;
}

.ruraara-testimonials-heading {
    max-width: 900px;
    margin: 0 auto 52px;
}

.ruraara-testimonials-title {
    margin: 0 0 16px;
    font-size: 50px;
    line-height: 1.04;
    font-weight: 600;
    letter-spacing: -0.05em;
    color: #ffffff;
}

.ruraara-testimonials-text {
    margin: 0 auto;
    max-width: 720px;
    font-size: 17px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.74);
}

/* cards */
/* cards */
.ruraara-testimonial-card {
    position: relative;
    height: 100%;
    padding: 34px 30px;
    border-radius: 30px;

    /* keep your inline background-image from HTML */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border: none; /* moved to overlay layer */
    overflow: hidden;
    isolation: isolate;

    transition: 0.4s ease;
}

/* actual blurred screenshot layer */
.ruraara-testimonial-card::before {
    content: "";
    position: absolute;
    inset: -14px; /* extend past edges so no sharp border line */
    background: inherit;
    background-size: inherit;
    background-position: inherit;
    background-repeat: inherit;

    filter: blur(10px) brightness(0.72) saturate(0.9);
    transform: scale(1.06);

    z-index: 0;
}

/* dark overlay + border layer */
.ruraara-testimonial-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.38) 0%,
            rgba(0,0,0,0.66) 50%,
            rgba(0,0,0,0.90) 100%
        ),
        linear-gradient(
            135deg,
            rgba(10, 59, 143, 0.16),
            rgba(168, 15, 20, 0.10)
        );

    border: 1px solid rgba(255, 255, 255, 0.08);

    z-index: 1;
    pointer-events: none;
}

.ruraara-testimonial-card:hover {
    transform: translateY(-8px) scale(1.01);
}

.ruraara-testimonial-card:hover::before {
    transform: scale(1.10);
    filter: blur(11px) brightness(0.78) saturate(0.95);
}

.ruraara-testimonial-card:hover::after {
    border-color: rgba(93, 123, 255, 0.22);
    box-shadow:
        0 28px 60px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255,255,255,0.04);
}

.ruraara-testimonial-featured {
    padding: 42px 36px;
}

.ruraara-testimonial-card > * {
    position: relative;
    z-index: 2;
}

.ruraara-testimonial-card {
    background-size: 110%;
}

.ruraara-testimonial-quote-icon {
    position: relative;
    z-index: 2;
    width: 70px;
    height: 70px;
    margin-bottom: 24px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(225, 31, 38, 0.22), rgba(10, 59, 143, 0.22));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 16px 36px rgba(0,0,0,0.24),
        inset 0 1px 0 rgba(255,255,255,0.06);
}

.ruraara-testimonial-quote-icon i {
    font-size: 30px;
    color: #ffffff;
}

.small-quote {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    margin-bottom: 20px;
}

.small-quote i {
    font-size: 24px;
}

.ruraara-testimonial-stars {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.ruraara-testimonial-stars i {
    color: #e11f26;
    font-size: 15px;
}

.ruraara-testimonial-message {
    position: relative;
    z-index: 2;
    margin: 0 0 30px;
    font-size: 1.18rem;
    line-height: 1.95;
    color: rgba(255, 255, 255, 0.86);
}

.small-message {
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 24px;
}

.ruraara-testimonial-person {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
}

.ruraara-testimonial-avatar {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
}

.ruraara-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.small-avatar {
    width: 54px;
    height: 54px;
}

.ruraara-testimonial-meta h4 {
    margin: 0 0 4px;
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
}

.ruraara-testimonial-meta span {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.62);
}

.ruraara-testimonials-bottom {
    margin-top: 46px;
}

.ruraara-testimonials-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(135deg, #e11f26, #0a3b8f);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 14px 40px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.15);
    transition: 0.35s ease;
}

.ruraara-testimonials-btn:hover {
    transform: translateY(-3px) scale(1.03);
    color: #ffffff;
    box-shadow:
        0 20px 50px rgba(0,0,0,0.45),
        inset 0 1px 0 rgba(255,255,255,0.2);
}



/* responsive */
@media (max-width: 991.98px) {
    .ruraara-testimonials-section {
        padding: 100px 0;
    }

    .ruraara-testimonials-heading {
        margin-bottom: 42px;
    }

    .ruraara-testimonials-text {
        font-size: 16px;
    }

    .ruraara-testimonial-featured {
        padding: 34px 28px;
    }

    .ruraara-testimonial-card {
        padding: 28px 24px;
        border-radius: 24px;
    }

    .ruraara-testimonial-message {
        font-size: 1.08rem;
    }
}

@media (max-width: 767.98px) {
    .ruraara-testimonials-section {
        padding: 85px 0;
    }

    .ruraara-testimonials-title {
        font-size: clamp(2rem, 10vw, 3.4rem);
        margin-bottom: 14px;
    }

    .ruraara-testimonials-text {
        font-size: 15px;
        line-height: 1.8;
    }

    .ruraara-testimonial-card,
    .ruraara-testimonial-featured {
        padding: 24px 20px;
        border-radius: 22px;
    }

    .ruraara-testimonial-quote-icon {
        width: 58px;
        height: 58px;
        border-radius: 18px;
        margin-bottom: 18px;
    }

    .ruraara-testimonial-quote-icon i {
        font-size: 24px;
    }

    .ruraara-testimonial-message {
        font-size: 1rem;
        line-height: 1.85;
        margin-bottom: 22px;
    }

    .small-message {
        font-size: 0.95rem;
    }

    .ruraara-testimonial-avatar {
        width: 50px;
        height: 50px;
    }

    .ruraara-testimonial-meta h4 {
        font-size: 0.95rem;
    }

    .ruraara-testimonial-meta span {
        font-size: 13px;
    }
}

/* =========================
   CTA SECTION
========================= */
.ruraara-cta-section {
    position: relative;
    padding: 160px 0;
    background: #000;
    overflow: hidden;
}

/* important for content */
.ruraara-cta-section .container {
    position: relative;
    z-index: 2;
}

/* background bubbles wrapper */
.ruraara-cta-bubbles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

/* bubble base */
.ruraara-cta-bubble {
    position: absolute;
    display: block;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.3;
    pointer-events: none;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

/* bubbles */
.bubble-one {
    width: 420px;
    height: 420px;
    top: 6%;
    left: 4%;
    background: radial-gradient(circle, rgba(225,31,38,0.65) 0%, rgba(10,59,143,0.28) 55%, transparent 76%);
    animation: ruraaraBubbleFloatOne 14s infinite alternate;
}

.bubble-two {
    width: 520px;
    height: 520px;
    top: 14%;
    right: 4%;
    background: radial-gradient(circle, rgba(10,59,143,0.62) 0%, rgba(225,31,38,0.22) 55%, transparent 76%);
    animation: ruraaraBubbleFloatTwo 18s infinite alternate;
}

.bubble-three {
    width: 360px;
    height: 360px;
    bottom: 8%;
    left: 18%;
    background: radial-gradient(circle, rgba(255,255,255,0.22) 0%, rgba(10,59,143,0.24) 55%, transparent 76%);
    animation: ruraaraBubbleFloatThree 16s infinite alternate;
}

.bubble-four {
    width: 440px;
    height: 440px;
    bottom: 2%;
    right: 14%;
    background: radial-gradient(circle, rgba(225,31,38,0.36) 0%, rgba(255,255,255,0.14) 52%, transparent 76%);
    animation: ruraaraBubbleFloatFour 20s infinite alternate;
}

/* existing side glows */
.ruraara-cta-section::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(225,31,38,0.2), transparent 90%);
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}

.ruraara-cta-section::after {
    content: "";
    position: absolute;
    bottom: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(10,59,143,0.35), transparent 70%);
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}

/* center light */
.ruraara-cta-section .container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

/* title */
.ruraara-cta-title {
    font-size: 65px;
    font-weight: 600;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 30px;
}

/* switching words */
.ruraara-cta-words {
    position: relative;
    display: inline-block;
    height: 1.3em;
    overflow: hidden;
    vertical-align: bottom;
    margin-left: 10px;
}

.ruraara-cta-words span {
    display: block;

    line-height: 1.3em; /* 👈 prevents overlap */

    color: #e11f26;

    text-shadow:
        0 0 2px rgba(225,31,38,0.5),
        0 0 2px rgba(225,31,38,0.25);

    animation: ruraaraWordSwitch 10s infinite;
}

/* word animation */
@keyframes ruraaraWordSwitch {
    0%   { transform: translateY(0%); }
    20%  { transform: translateY(0%); }
    25%  { transform: translateY(-100%); }
    40%  { transform: translateY(-100%); }
    45%  { transform: translateY(-200%); }
    60%  { transform: translateY(-200%); }
    65%  { transform: translateY(-300%); }
    80%  { transform: translateY(-300%); }
    85%  { transform: translateY(-400%); }
    100% { transform: translateY(-400%); }
}

/* bubble animations */
@keyframes ruraaraBubbleFloatOne {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 30px) scale(1.08); }
}

@keyframes ruraaraBubbleFloatTwo {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-55px, 35px) scale(1.1); }
}

@keyframes ruraaraBubbleFloatThree {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -35px) scale(1.06); }
}

@keyframes ruraaraBubbleFloatFour {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-35px, -30px) scale(1.09); }
}

/* text */
.ruraara-cta-text {
    max-width: 650px;
    margin: 0 auto 50px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
}

/* button */
.ruraara-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(135deg, #e11f26, #0a3b8f);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.2);
    transition: 0.35s ease;
}

.ruraara-cta-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 0 20px rgba(225,31,38,0.4),
        0 0 40px rgba(10,59,143,0.3),
        0 30px 80px rgba(0,0,0,0.6);
}

/* responsive */
@media (max-width: 991.98px) {
    .ruraara-cta-section {
        padding: 130px 0;
    }

    .ruraara-cta-text {
        font-size: 16px;
        margin-bottom: 42px;
    }

    .ruraara-cta-section::before,
    .ruraara-cta-section::after {
        width: 420px;
        height: 420px;
    }

    .ruraara-cta-section .container::before {
        width: 520px;
        height: 260px;
    }

    .bubble-one,
    .bubble-two,
    .bubble-four {
        width: 360px;
        height: 360px;
    }

    .bubble-three {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 767.98px) {
    .ruraara-cta-section {
        padding: 100px 0;
    }

    .ruraara-cta-title {
        font-size: clamp(2.3rem, 10vw, 3.8rem);
        margin-bottom: 22px;
    }

    .ruraara-cta-text {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 34px;
    }

    .ruraara-cta-btn {
        padding: 14px 28px;
        font-size: 13px;
    }

    .ruraara-cta-section::before,
    .ruraara-cta-section::after {
        width: 300px;
        height: 300px;
        filter: blur(90px);
    }

    .ruraara-cta-section .container::before {
        width: 320px;
        height: 180px;
        filter: blur(60px);
    }

    .ruraara-cta-bubble {
        filter: blur(70px);
        opacity: 0.42;
    }

    .bubble-one,
    .bubble-two,
    .bubble-four {
        width: 240px;
        height: 240px;
    }

    .bubble-three {
        width: 180px;
        height: 180px;
    }
}

/* =========================
   FOOTER
========================= */
.ruraara-footer-section {
    position: relative;
    padding: 100px 0 30px;
    background:
        radial-gradient(circle at 20% 10%, rgba(225, 31, 38, 0.15), transparent 30%),
        radial-gradient(circle at 80% 80%, rgba(10, 59, 143, 0.18), transparent 35%),
        linear-gradient(180deg, #02040a 0%, #000000 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

/* subtle extra glow layer */
.ruraara-footer-section::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.ruraara-footer-brand,
.ruraara-footer-column {
    height: 100%;
}

.ruraara-footer-logo-wrap {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
}

.ruraara-footer-logo {
    width: auto;
    height: 56px;
    object-fit: contain;
}

.ruraara-footer-description {
    margin: 0;
    max-width: 280px;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.72);
}

.ruraara-footer-title {
    margin: 0 0 18px;
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.ruraara-footer-links,
.ruraara-footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ruraara-footer-links li,
.ruraara-footer-contact li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.7;
}

.ruraara-footer-links a,
.ruraara-footer-contact a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.ruraara-footer-links a:hover,
.ruraara-footer-contact a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.ruraara-footer-socials {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ruraara-footer-social {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(135deg, rgba(225, 31, 38, 0.16), rgba(10, 59, 143, 0.18));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.20),
        inset 0 1px 0 rgba(255,255,255,0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.ruraara-footer-social i {
    font-size: 20px;
}

.ruraara-footer-social:hover {
    transform: translateY(-4px);
    color: #ffffff;
    background: linear-gradient(135deg, rgba(225, 31, 38, 0.26), rgba(10, 59, 143, 0.28));
    box-shadow:
        0 18px 36px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

.ruraara-footer-bottom {
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.ruraara-footer-bottom p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.58);
}

.ruraara-call-label {
    color: #e11f26;
    font-weight: 600;
}

/* =========================
   GLASS WHATSAPP BUTTON
========================= */
.ruraara-floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 64px;
    width: 64px;
    border-radius: 50%;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
    background: rgba(225, 31, 38, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(225,31,38,0.35);
    box-shadow:
        0 15px 40px rgba(0,0,0,0.45),
        inset 0 1px 0 rgba(255,255,255,0.15);
    transition: width 0.45s ease, border-radius 0.45s ease, background 0.45s ease, box-shadow 0.45s ease, transform 0.45s ease;
    animation: ruraaraWhatsappFloat 2.5s ease-in-out infinite alternate;
}

/* ICON */
.ruraara-floating-whatsapp i {
    font-size: 26px;
    width: 64px;
    height: 64px;
    min-width: 64px;
    flex: 0 0 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    color: #ffffff;
    text-shadow:
        0 0 10px rgba(225,31,38,0.7),
        0 0 25px rgba(225,31,38,0.5);
}

/* TEXT */
.ruraara-floating-whatsapp span {
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-10px);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    transition: opacity 0.35s ease, transform 0.35s ease;
    margin-left: 2px;
    padding-right: 20px;
    display: inline-block;
}

/* DESKTOP HOVER */
.ruraara-floating-whatsapp:hover {
    width: 220px;
    border-radius: 999px;
    background: rgba(225, 31, 38, 0.18);
    transform: translateY(-5px) scale(1.03);
    box-shadow:
        0 25px 60px rgba(0,0,0,0.6),
        0 0 25px rgba(225,31,38,0.5),
        0 0 40px rgba(225,31,38,0.3),
        inset 0 1px 0 rgba(255,255,255,0.2);
}

.ruraara-floating-whatsapp:hover span {
    opacity: 1;
    transform: translateX(0);
}

/* SUBTLE FLOAT ANIMATION */
@keyframes ruraaraWhatsappFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-6px); }
}

/* responsive */
@media (max-width: 991.98px) {
    .ruraara-footer-section {
        padding: 80px 0 24px;
    }

    .ruraara-footer-logo {
        height: 50px;
    }
}

@media (max-width: 767.98px) {
    .ruraara-footer-section {
        padding: 70px 0 22px;
    }

    .ruraara-footer-description,
    .ruraara-footer-links li,
    .ruraara-footer-contact li,
    .ruraara-footer-links a,
    .ruraara-footer-contact a {
        font-size: 14px;
    }

    .ruraara-footer-social {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }

    .ruraara-footer-social i {
        font-size: 18px;
    }

    .ruraara-footer-bottom {
        margin-top: 28px;
        padding-top: 18px;
    }

    .ruraara-footer-bottom p {
        font-size: 13px;
    }

    .ruraara-floating-whatsapp {
        right: 14px;
        bottom: 14px;
        width: 56px;
        height: 56px;
        min-height: 56px;
    }

    .ruraara-floating-whatsapp i {
        font-size: 22px;
        width: 56px;
        height: 56px;
        min-width: 56px;
        flex: 0 0 56px;
    }

    .ruraara-floating-whatsapp span {
        font-size: 11px;
        padding-right: 16px;
        display: inline-block; /* keep text available */
    }

    .ruraara-floating-whatsapp:hover {
        width: 190px; /* more expansion on mobile */
    }
}