/* =========================================
   RRNexverse: Engitech-style Service Cards
   ========================================= */

.rrnx-services-cards-section{
  padding: 80px 0;
  background: #f6f7fb; /* same feel as screenshot */
}

/* Card */
.rrnx-service-card{
  position: relative;
  height: 100%;
  background: #fff;
  border-radius: 0;            /* screenshot is sharp corners */
  padding: 42px 34px 34px;
  box-shadow: 0 18px 55px rgba(14, 16, 25, 0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
  font-family: inherit;        /* uses your page fonts */
}

.rrnx-service-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(14, 16, 25, 0.16);
}

/* Top-right quarter circle */
.rrnx-service-card__corner{
  position: absolute;
  top: 0;
  right: 0;
  width: 118px;
  height: 118px;
  background: linear-gradient(135deg, #213a58 0%, #1976d2 100%);
  border-bottom-left-radius: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* White icon inside corner */
.rrnx-service-card__icon{
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #213a58;
  border: 1px solid rgba(255,255,255,0.18);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 22px;
  transform: translate(10px, -8px); /* gives that “top-right” feel */
}

/* Title + text */
.rrnx-service-card__title{
  margin: 0 0 14px;
  font-weight: 800;
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: -0.3px;
  color: #0c0f18;
  max-width: 80%;
}

.rrnx-service-card__desc{
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(12, 15, 24, 0.70);
  max-width: 92%;
}

/* Links area (light grey strip look) */
.rrnx-service-card__links{
  margin-top: 0px;
  padding-top: 0px;
  /*border-top: 1px solid rgba(10, 15, 25, 0.08);*/
}

/* Each link */
.rrnx-service-card__link{
  display: block;
  padding: 5px 9px;
  margin-bottom: 10px;
  background: #f3f4f8;
  color: #0c0f18;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease; 
  border-radius: 5px;
}

.rrnx-service-card__link:last-child{
  margin-bottom: 0;
}

.rrnx-service-card__link span{
  color: #6b46ff; /* purple // like screenshot */
  margin-right: 10px;
  font-weight: 900;
}

/* Hover like theme */
.rrnx-service-card__link:hover{
  background: #eceef7;
  color: #0c0f18;
}

/* Responsive */
@media (max-width: 991px){
  .rrnx-services-cards-section{ padding: 60px 0; }
  .rrnx-service-card{ padding: 38px 28px 28px; }
  .rrnx-service-card__title{ font-size: 30px; }
}

@media (max-width: 575px){
  .rrnx-service-card__title{ font-size: 26px; max-width: 88%; }
  .rrnx-service-card__corner{ width: 104px; height: 104px; border-bottom-left-radius: 104px; }
  .rrnx-service-card__icon{ width: 52px; height: 52px; }
} 

.client-three-wrapper .single {
    width: 225px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    box-shadow: 0px 10px 30px rgba(33, 5, 5, 0.05);
    border-radius: 15px;
    transition: 0.3s;
    cursor: pointer;
} 

.client-three-wrapper img {
    max-width: 155px;
}   


/* =========================================
   RRNexverse: Engitech-style Trusted Block
   ========================================= */
:root{
  --rrnx-accent: #213a58; /* change anytime */
  --rrnx-ink: #0b1220;
}

.rrnx-trusted-block{
  position: relative;
  padding: 90px 0 110px;
  background: #ffffff;
  overflow: hidden;
  font-family: inherit;
}

/* circuit / tech line background */
.rrnx-trusted-block::before{
  content:"";
  position:absolute;
  inset: 0;
  opacity: .22;
  pointer-events:none;
  background-image:
    radial-gradient(rgba(11,18,32,.20) 1px, transparent 1px),
    linear-gradient(rgba(11,18,32,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,18,32,.08) 1px, transparent 1px);
  background-size: 18px 18px, 90px 90px, 90px 90px;
  background-position: 0 0, 0 0, 0 0;
}

/* subtle center glow */
.rrnx-trusted-block::after{
  content:"";
  position:absolute;
  left: 50%;
  top: 55%;
  width: 720px;
  height: 420px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(31,184,255,.18), rgba(31,184,255,0) 60%);
  pointer-events:none;
}

/* Head */
.rrnx-trusted-head{
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 28px;
}

.rrnx-trusted-kicker{
  display:inline-block;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(31,184,255,1);
  margin-bottom: 10px;
}

.rrnx-trusted-title{
  margin: 0;
  font-weight: 900;
  color: var(--rrnx-ink);
  letter-spacing: -0.8px;
  line-height: 1.1;
  font-size: clamp(34px, 4vw, 56px);
}

.rrnx-trusted-title span{
  font-weight: 900;
}

/* watermark text (big faint) */
.rrnx-trusted-watermark{
  position: absolute;
  left: 50%;
  top: 28%;
  transform: translateX(-50%);
  font-size: clamp(90px, 14vw, 220px);
  font-weight: 900;
  letter-spacing: -6px;
  color: rgba(11,18,32,.05);
  white-space: nowrap;
  z-index: 1;
  user-select: none;
  pointer-events:none;
}

/* collage area */
.rrnx-trusted-collage{
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  padding-top: 10px;
}

/* main image (laptop) */
.rrnx-trusted-main{
  position: relative;
  margin: 0 auto;
  width: min(860px, 100%);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(11,18,32,.18);
  background: #fff;
}

.rrnx-trusted-main img{
  width: 100%;
  height: auto;
  display: block;
}

/* floating image cards */
.rrnx-float{
  position: absolute;
  width: 220px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 55px rgba(11,18,32,.16);
  border: 1px solid rgba(11,18,32,.08);
}

.rrnx-float img{
  width: 100%;
  height: 100%;
  display:block;
  object-fit: cover;
}

/* positions similar to Engitech */
.rrnx-float--left{
  left: -10%;
  top: 52%;
  transform: translateY(-50%);
}
.rrnx-float--top{
  left: 10%;
  top: 12%;
}
.rrnx-float--right{
  right: -10%;
  top: 38%;
}
.rrnx-float--bottom{
  left: 34%;
  bottom: -12%;
  width: 200px;
}

/* Responsive adjustments */
@media (max-width: 991px){
  .rrnx-trusted-block{ padding: 70px 0 80px; }
  .rrnx-float{ width: 180px; }
  .rrnx-float--left{ left: -6%; }
  .rrnx-float--right{ right: -6%; }
  .rrnx-float--bottom{ left: 28%; bottom: -10%; width: 170px; }
  .rrnx-trusted-watermark{ top: 22%; }
}

@media (max-width: 767px){
  .rrnx-float{ display:none; } /* same clean mobile behavior */
  .rrnx-trusted-watermark{ top: 18%; }
} 

.pre {
  border-radius: 25px !important
} 

/* =========================================
   RRNexverse: Crafto-style Industries Grid
   Change only these variables anytime
   ========================================= */
:root{
  --rrnx-ind-bg: #213a58;          /* dark section bg */
  --rrnx-ind-line: rgba(255,255,255,.10);
  --rrnx-ind-text: rgba(255,255,255,.92);
  --rrnx-ind-muted: rgba(255,255,255,.70);

  /* your NEW brand color goes here */
  --rrnx-ind-accent: #213a58;      /* change later */
}

.rrnx-industry-grid{
  background: var(--rrnx-ind-bg);
  position: relative;
  overflow: hidden;
}

/* subtle tech glow + grid feel (like screenshot) */
.rrnx-industry-grid::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 20%, rgba(31,184,255,.18), transparent 45%),
    radial-gradient(circle at 80% 60%, rgba(31,184,255,.10), transparent 50%);
  opacity:.8;
  pointer-events:none;
}

.rrnx-industry-grid .title-style-one .title{
  color: #fff;
}
.rrnx-industry-grid .title-style-one .pre{
  color: var(--rrnx-ind-accent);
}
.rrnx-industry-sub{
  margin: 14px auto 0;
  max-width: 760px;
  color: var(--rrnx-ind-muted);
  font-size: 16px;
  line-height: 1.9;
}

/* big box like Crafto */
.rrnx-industry-box{
  position: relative;
  z-index: 2;
  border: 1px solid var(--rrnx-ind-line);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: rgba(255,255,255,.02);
}

/* cells */
.rrnx-industry-item{
  min-height: 150px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 12px;
  padding: 26px 14px;
  border-right: 1px solid var(--rrnx-ind-line);
  border-bottom: 1px solid var(--rrnx-ind-line);
  transition: .22s ease;
}

.rrnx-industry-item i{
  font-size: 34px;
  color: rgba(255,255,255,.92);
  transition: .22s ease;
}

.rrnx-industry-item span{
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--rrnx-ind-text);
  text-transform: uppercase;
}

/* hover like premium */
.rrnx-industry-item:hover{
  background: rgba(255,255,255,.04);
}
.rrnx-industry-item:hover i{
  color: var(--rrnx-ind-accent);
  transform: translateY(-2px);
}

/* remove borders on last col / last row */
.rrnx-industry-item:nth-child(6n){
  border-right: none;
}
.rrnx-industry-item:nth-last-child(-n + 6){
  border-bottom: none;
}

/* responsive */
@media (max-width: 1199px){
  .rrnx-industry-box{ grid-template-columns: repeat(3, 1fr); }
  .rrnx-industry-item:nth-child(6n){ border-right: 1px solid var(--rrnx-ind-line); }
  .rrnx-industry-item:nth-child(3n){ border-right: none; }
  .rrnx-industry-item:nth-last-child(-n + 6){ border-bottom: 1px solid var(--rrnx-ind-line); }
  .rrnx-industry-item:nth-last-child(-n + 3){ border-bottom: none; }
}

@media (max-width: 575px){
  .rrnx-industry-box{ grid-template-columns: repeat(2, 1fr); }
  .rrnx-industry-item{ min-height: 130px; }
  .rrnx-industry-item:nth-child(3n){ border-right: 1px solid var(--rrnx-ind-line); }
  .rrnx-industry-item:nth-child(2n){ border-right: none; }
  .rrnx-industry-item:nth-last-child(-n + 3){ border-bottom: 1px solid var(--rrnx-ind-line); }
  .rrnx-industry-item:nth-last-child(-n + 2){ border-bottom: none; }
}     





:root{
  /* Your RRNexverse colors (edit here only if needed) */
  --rrnx-primary: #213a58;
  --rrnx-secondary: #6b46ff;

  --rrnx-ink: #0b1220;
  --rrnx-muted: rgba(11,18,32,.70);

  --rrnx-bg: #eaf2f0;         /* soft mint/grey like screenshot */
  --rrnx-card: #ffffff;
  --rrnx-border: rgba(11,18,32,.10);
}

/* Section */
.rrnx-process{
  background: var(--rrnx-bg);
  position: relative;
  overflow: hidden;
}

/* subtle diagonal pattern like screenshot */
.rrnx-process:before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.25;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(11,18,32,.06) 0px,
      rgba(11,18,32,.06) 2px,
      transparent 2px,
      transparent 10px
    );
}

/* Head left */
.rrnx-process-head{ position: relative; z-index: 2; }

.rrnx-process-tag{
  display:inline-flex;
  padding: 10px 14px;
  background: #ffffff;
  border: 1px solid var(--rrnx-border);
  border-radius: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  color: rgba(11,18,32,.70);
}

.rrnx-process-title{
  margin: 18px 0 0;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.02;
  color: var(--rrnx-ink);
  font-size: clamp(38px, 4.2vw, 64px); /* matches theme big heading */
}

.rrnx-process-title span{
  color: rgba(11,18,32,.18); /* light “Results” effect */
  font-weight: 700;
}

/* Right content */
.rrnx-process-right{
  position: relative;
  z-index: 2;
  display:flex;
  align-items:center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.rrnx-process-desc{
  margin: 0;
  max-width: 420px;
  color: var(--rrnx-muted);
  font-size: 16px;
  line-height: 1.9;
}

/* CTA button */
.rrnx-process-cta{
  display:inline-flex;
  align-items:center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rrnx-primary), var(--rrnx-secondary));
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 18px 45px rgba(11,18,32,.18);
  transition: transform .18s ease, box-shadow .18s ease;
}

.rrnx-process-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(11,18,32,.22);
  color:#fff;
}

.rrnx-process-cta-ic{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.18);
}

/* Cards row */
.rrnx-process-cards{
  position: relative;
  z-index: 2;
  display:grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: stretch;
}

/* Card */
.rrnx-process-card{
  background: var(--rrnx-card);
  border: 1px solid var(--rrnx-border);
  border-radius: 18px;
  padding: 34px 32px;
  box-shadow: 0 18px 55px rgba(11,18,32,.10);
}

/* Big number */
.rrnx-process-num{
  font-size: 82px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 14px;

  /* gradient number like screenshot */
  background: linear-gradient(
  135deg,
  rgba(33, 58, 88, 0.85),
  rgba(33, 58, 88, 0.65)
);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Title and text */
.rrnx-process-card-title{
  margin: 0 0 10px;
  font-weight: 700;
  color: var(--rrnx-ink);
  letter-spacing: -0.3px;
  font-size: 22px;
}

.rrnx-process-card-text{
  margin: 0;
  color: var(--rrnx-muted);
  line-height: 1.9;
  font-size: 15.5px;
}

/* Connector circle between cards */
.rrnx-process-connector{
  display:flex;
  align-items:center;
  justify-content:center;
}

.rrnx-process-connector span{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--rrnx-border);
  display:grid;
  place-items:center;
  color: rgba(11,18,32,.60);
  box-shadow: 0 12px 30px rgba(11,18,32,.10);
}

/* Responsive */
@media (max-width: 991px){
  .rrnx-process-right{ justify-content: flex-start; margin-top: 18px; }
  .rrnx-process-cards{
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .rrnx-process-connector{ display:none; }
  .rrnx-process-num{ font-size: 72px; }
} 

/* ================================
RRNexverse About Split (Solvior-style)
Put this in: assets/css/rrnexverse.css
Change only --rrnx-accent to match your brand color.
================================== */

:root{
  --rrnx-accent: #213a58;     /* YOUR BRAND COLOR */
  --rrnx-ink: #0b1220;
  --rrnx-muted: rgba(11,18,32,.72);
  --rrnx-border: rgba(11,18,32,.10);
}

/* section */
.rrnx-about-split{
  position: relative;
  background: #fff;
}

/* LEFT media */
.rrnx-about-media{
  position: relative;
  width: 100%;
  max-width: 560px;
}

.rrnx-about-media__main{
  position: relative;
  border-top-right-radius: 46px;   /* matches angled/rounded feel */
  overflow: hidden;
  background: #f3f5fb;
}

.rrnx-about-media__main img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* video overlay card (bottom-left) */
.rrnx-about-media__video{
  position: absolute;
  left: 26px;
  bottom: 26px;
  width: 260px;
  padding: 22px 18px;
  border-radius: 16px;
  text-decoration: none;
  color: #fff;

  background: rgba(11,18,32,.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  gap: 14px;
}

.rrnx-video__play{
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  flex: 0 0 54px;
}

.rrnx-video__play i{
  font-size: 16px;
  color: #fff;
}

.rrnx-video__text{
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.rrnx-video__small{
  font-size: 12px;
  opacity: .85;
  margin-bottom: 6px;
}

.rrnx-video__big{
  font-size: 16px;
  font-weight: 800;
}

/* RIGHT content */
.rrnx-about-content{
  position: relative;
  padding-right: 12px;
}

.rrnx-about-kicker{
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--rrnx-accent);
  margin-bottom: 12px;
}

/* keep same “big title” vibe like screenshot */
.rrnx-about-title{
  margin: 0 0 16px;
  font-weight: 900;
  letter-spacing: -0.8px;
  color: var(--rrnx-ink);
  line-height: 1.08;
  font-size: clamp(34px, 3.2vw, 56px);
}

.rrnx-about-desc{
  margin: 0 0 18px;
  color: var(--rrnx-muted);
  font-size: 16px;
  line-height: 1.9;
  max-width: 560px;
}

/* tick list */
.rrnx-about-points{
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 10px;
}

.rrnx-about-points li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--rrnx-ink);
  font-weight: 600;
  opacity: .92;
}

.rrnx-about-points i{
  color: var(--rrnx-accent);
  margin-top: 3px;
}

/* CTA button (pill with circle icon) */
.rrnx-about-actions{
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 6px;
}

.rrnx-about-btn{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 10px;
  border-radius: 999px;
  background: #0b1220;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 16px 45px rgba(11,18,32,.18);
}

.rrnx-about-btn__icon{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--rrnx-accent);
  display: grid;
  place-items: center;
  color: #fff;
}

.rrnx-about-btn__text{
  font-size: 14px;
}

/* small image on right bottom */
.rrnx-about-mini{
  position: absolute;
  right: 0;
  bottom: -10px;
  width: 180px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--rrnx-border);
  box-shadow: 0 18px 55px rgba(11,18,32,.12);
  background: #f3f5fb;
}

.rrnx-about-mini img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 991px){
  .rrnx-about-media{ max-width: 100%; }
  .rrnx-about-media__video{ left: 16px; bottom: 16px; }
  .rrnx-about-mini{ position: relative; right: auto; bottom: auto; margin-top: 18px; width: 220px; }
}

@media (max-width: 575px){
  .rrnx-about-media__video{ width: 240px; padding: 18px 14px; }
  .rrnx-video__big{ font-size: 15px; }
}   


/* =========================================
RRNexverse: WHY CHOOSE US (Exact like screenshot)
Only change brand color here if needed
========================================= */
:root{
  --rrnx-brand: #213a58; /* your accent */
  --rrnx-ink: #0b1220;
  --rrnx-muted: rgba(11,18,32,.70);
  --rrnx-line: rgba(11,18,32,.12);
}

/* whole row */
.rrnx-wcu-row{
  position: relative;
  min-height: 620px; /* similar to screenshot */
  background: #fff;
}

/* LEFT block */
.rrnx-wcu-left{
  height: 100%;
  padding: 90px 60px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  background: #fff;
}

/* force your pre color like screenshot */
.rrnx-wcu-left .title-style-one .pre{
  /*color: var(--rrnx-brand);*/
  /*letter-spacing: .14em;*/
  /*text-transform: uppercase;*/
  /*font-weight: 800;*/
}

/* RIGHT image */
.rrnx-wcu-right{
  position: relative;
  height: 100%;
  min-height: 620px;
  overflow: hidden;
  background: #0b1220;
}
.rrnx-wcu-right img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay cards wrapper (THIS is the main part like screenshot) */
.rrnx-wcu-cards{
  position: absolute;
  left: 15%;
  bottom: 90px;
  display: grid;
  grid-template-columns: repeat(3, 340px);
  gap: 22px;
  z-index: 5;
}

/* Card style exactly like screenshot: flat, border, no radius */
.rrnx-wcu-card{
  background: #ffffff;
  border: 1px solid var(--rrnx-line);
  padding: 34px 30px;
  box-shadow: none;
}

/* small icon box like screenshot (line icon) */
.rrnx-wcu-ico{
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
}
.rrnx-wcu-ico img{
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
  opacity: .9;
}

/* typography like screenshot */
.rrnx-wcu-card-title{
  margin: 0 0 12px;
  font-weight: 800;
  color: var(--rrnx-ink);
  font-size: 20px;
  letter-spacing: -0.2px;
}
.rrnx-wcu-card-desc{
  margin: 0;
  color: var(--rrnx-muted);
  line-height: 1.75;
  font-size: 15px;
  max-width: 95%;
}

/* Responsive */
@media (max-width: 1199px){
  .rrnx-wcu-left{ padding: 70px 40px; }
  .rrnx-wcu-cards{
    left: 26%;
    grid-template-columns: repeat(3, 300px);
  }
}

@media (max-width: 991px){
  .rrnx-wcu-row{ min-height: auto; }
  .rrnx-wcu-left{ padding: 50px 18px; }
  .rrnx-wcu-right{ min-height: 360px; }

  .rrnx-wcu-cards{
    position: relative;
    left: auto;
    bottom: auto;
    padding: 20px 18px 0;
    grid-template-columns: 1fr;
    gap: 14px;
    background: #fff;
  }
}

@media (max-width: 575px){
  .rrnx-wcu-card{ padding: 28px 22px; }
}     




/* =========================================
RRNexverse Contact (Engitech-style)
========================================= */
:root{
  --rrnx-brand: #213a58;      /* change to your brand color */
  --rrnx-ink: #0b1220;
  --rrnx-muted: rgba(11, 18, 32, 0.70);
  --rrnx-border: rgba(11, 18, 32, 0.10);
  --rrnx-card: #ffffff;
  --rrnx-soft: #f6f7fb;
}

.rrnx-contact-wrap{
  background: var(--rrnx-soft);
}

/* Left column */
.rrnx-contact-left{
  height: 100%;
  background: var(--rrnx-card);
  border: 1px solid var(--rrnx-border);
  border-radius: 14px;
  padding: 34px;
}

.rrnx-contact-card{
  display: flex;
  gap: 14px;
  padding: 18px 16px;
  border: 1px solid var(--rrnx-border);
  border-radius: 12px;
  background: #fff;
  margin-bottom: 14px;
}

.rrnx-contact-ico{
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(31,184,255,0.10);
  color: var(--rrnx-brand);
  font-size: 18px;
  flex: 0 0 46px;
}

.rrnx-contact-title{
  margin: 0 0 4px;
  font-weight: 800;
  color: var(--rrnx-ink);
}

.rrnx-contact-text{
  margin: 0;
  color: var(--rrnx-muted);
  line-height: 1.7;
}

.rrnx-contact-text a{
  color: var(--rrnx-ink);
  text-decoration: none;
}
.rrnx-contact-text a:hover{
  color: var(--rrnx-brand);
}

/* mini rows */
.rrnx-contact-mini{
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--rrnx-border);
}
.rrnx-mini-row{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.rrnx-mini-ico{
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(11,18,32,0.06);
  color: var(--rrnx-ink);
}
.rrnx-mini-text{
  color: var(--rrnx-muted);
  line-height: 1.6;
}
.rrnx-mini-text strong{
  color: var(--rrnx-ink);
  font-weight: 800;
}

/* Right column form box */
.rrnx-contact-form-box{
  height: 100%;
  background: var(--rrnx-card);
  border: 1px solid var(--rrnx-border);
  border-radius: 14px;
  padding: 34px;
}

.rrnx-form-kicker{
  display: inline-block;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--rrnx-brand);
  margin-bottom: 10px;
}
.rrnx-form-title{
  margin: 0 0 8px;
  font-weight: 900;
  color: var(--rrnx-ink);
  letter-spacing: -0.6px;
}
.rrnx-form-sub{
  margin: 0 0 22px;
  color: var(--rrnx-muted);
  line-height: 1.8;
}

.rrnx-input{
  width: 100%;
  background: #fff;
  border: 1px solid var(--rrnx-border);
  border-radius: 12px;
  padding: 14px 14px;
  outline: none;
  font-weight: 600;
  color: var(--rrnx-ink);
}
.rrnx-input:focus{
  border-color: rgba(31,184,255,0.55);
  box-shadow: 0 0 0 4px rgba(31,184,255,0.10);
}
.rrnx-textarea{
  padding-top: 14px;
  resize: vertical;
}

.rrnx-submit{
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Map */
.rrnx-map{
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--rrnx-border);
  background: #fff;
}
.rrnx-map iframe{
  display: block;
}

/* Responsive */
@media (max-width: 991px){
  .rrnx-contact-left,
  .rrnx-contact-form-box{
    padding: 26px;
  }
}





/* =========================================
   RRNexverse: Tekni-style Partners Section
   ========================================= */
:root{
  --rrnx-accent: #1f57ff;     /* CHANGE THIS anytime (your brand color) */
  --rrnx-ink: #0b1220;
  --rrnx-muted: rgba(11, 18, 32, 0.65);

  /* background tones similar to screenshot */
  --rrnx-bg1: #fbf4df;
  --rrnx-bg2: #eef6ff;

  --rrnx-card: rgba(255,255,255,0.75);
  --rrnx-border: rgba(11, 18, 32, 0.10);
}

.rrnx-partners{
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  font-family: inherit; /* use your page fonts */
  background: linear-gradient(90deg, var(--rrnx-bg1) 0%, var(--rrnx-bg2) 70%);
}

/* dotted map feel (no image needed) */
.rrnx-partners::before{
  content:"";
  position:absolute;
  left:-80px;
  top:-70px;
  width: 60%;
  height: 130%;
  opacity: .22;
  background-image:
    radial-gradient(rgba(11,18,32,.35) 1px, transparent 1px);
  background-size: 10px 10px;
  transform: rotate(-8deg);
  pointer-events:none;
}

/* soft glow on right like screenshot */
.rrnx-partners::after{
  content:"";
  position:absolute;
  right:-180px;
  top:-120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(31,87,255,.18) 0%, rgba(31,87,255,0) 60%);
  pointer-events:none;
}

/* wrapper */
.rrnx-partners__wrap{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 320px;
}

/* LEFT content */
.rrnx-partners__num{
  font-weight: 900;
  font-size: clamp(80px, 10vw, 150px);
  line-height: .9;
  letter-spacing: -3px;
  margin-bottom: 18px;

  /* big number look */
  color: transparent;
  background: linear-gradient(180deg, rgba(11,18,32,1) 0%, rgba(31,87,255,.55) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.rrnx-partners__title{
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.15;
  color: var(--rrnx-ink);
  font-weight: 800;
  letter-spacing: -0.6px;
}

.rrnx-partners__desc{
  margin: 0;
  max-width: 520px;
  color: var(--rrnx-muted);
  font-size: 16px;
  line-height: 1.9;
}

/* RIGHT logo grid box */
.rrnx-partners__right{
  display:flex;
  justify-content: flex-end;
}

.rrnx-partners__grid{
  width: min(560px, 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--rrnx-border);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(10px);
}

/* each tile */
.rrnx-partner-tile{
  height: 120px;
  display: grid;
  place-items: center;
  background: var(--rrnx-card);
  border-right: 1px solid var(--rrnx-border);
  border-bottom: 1px solid var(--rrnx-border);
  transition: transform .18s ease, background .18s ease;
  text-decoration: none;
}

.rrnx-partner-tile:nth-child(3n){
  border-right: none;
}
.rrnx-partner-tile:nth-last-child(-n + 3){
  border-bottom: none;
}

.rrnx-partner-tile:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.92);
}

/* logo sizing */
.rrnx-partner-tile img{
  max-width: 130px;
  max-height: 42px;
  width: auto;
  height: auto;
  opacity: .95;
  filter: saturate(1);
}

/* Responsive */
@media (max-width: 991px){
  .rrnx-partners{ padding: 70px 0; }
  .rrnx-partners__wrap{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .rrnx-partners__right{ justify-content: flex-start; }
  .rrnx-partners__grid{ width: 100%; }
}

@media (max-width: 575px){
  .rrnx-partner-tile{ height: 96px; }
  .rrnx-partner-tile img{ max-width: 110px; max-height: 38px; }
}
