/* ===== RSK Service — shared stylesheet ===== */
:root {
  --navy: #0F3460;
  --navy-d: #0B2649;
  --navy-l: #154079;
  --gold: #F9B208;
  --gold-d: #C98A00;
  --gold-l: #FFCB45;
  --red: #8C1C13;
  --teal: #0E8A86;
  --ink: #16243B;
  --ink-2: #1F2A3D;
  --muted: #56627A;
  --muted-2: #46506A;
  --cream: #FBF6EC;
  --line: #EFEADD;
  --line-2: #ECE5D6;
  --mono: 'Space Mono', monospace;
  --sans: 'Nunito', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  color: var(--ink);
  background: var(--cream);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.rsk-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 44px);
}

/* ---- top utility bar ---- */
.rsk-topbar {
  background: var(--navy-d);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
}

.rsk-topbar .rsk-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 9px;
  padding-bottom: 9px;
}

.rsk-topbar__live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  letter-spacing: .3px;
  font-size: 12px;
  font-weight: 500;
}

.rsk-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E0483C;
  box-shadow: 0 0 0 4px rgba(140, 28, 19, .4);
}

.rsk-topbar__right {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.rsk-topbar__right .sep {
  opacity: .3;
}

.rsk-topbar a {
  color: #CFE3E2;
}

.rsk-topbar a.gold {
  font-weight: 600;
  color: var(--gold-l);
}

/* ---- header ---- */
.rsk-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-2);
  box-shadow: 0 2px 14px rgba(15, 52, 96, .06);
}

.rsk-header .rsk-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.rsk-logo {
  display: flex;
  align-items: center;
  gap: 11px;
}

.rsk-logo__mark {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(15, 52, 96, .28);
  flex: none;
}

.rsk-logo__name {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.5px;
  line-height: 1;
}

.rsk-logo__name span {
  color: var(--gold);
}

.rsk-logo__sub {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

.rsk-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-2);
}

.rsk-nav__link {
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: all .2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.rsk-nav__link:hover {
  color: var(--teal);
}

.rsk-nav__link.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

.rsk-nav__link .chev {
  width: 11px;
  height: 11px;
  transition: transform .2s;
}

.rsk-has-dd {
  position: relative;
}

.rsk-dd {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 14px;
  min-width: 240px;
  z-index: 60;
  display: none;
}

.rsk-dd--wide {
  left: 50%;
  transform: translateX(-50%);
}

.rsk-dd__panel {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  box-shadow: 0 20px 48px rgba(8, 27, 51, .18);
  padding: 9px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.rsk-dd__panel.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px 4px;
  min-width: 380px;
}

.rsk-dd a {
  display: block;
  padding: 9px 14px;
  border-radius: 9px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink-2);
  transition: all .15s;
}

.rsk-dd a:hover {
  background: #E6F4F2;
  color: var(--teal);
}

.rsk-dd a.hub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  background: #FEF3D6;
  margin-bottom: 5px;
}

.rsk-dd a.hub:hover {
  background: var(--gold);
}

.rsk-has-dd:hover .rsk-dd {
  display: block;
}

.chev {
  transition: transform .25s ease;
}

.rsk-header__cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.rsk-callbox {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
}

.rsk-callbox small {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: .6px;
  text-transform: uppercase;
}

.rsk-callbox b {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

.rsk-burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 11px;
  border: 1px solid var(--line-2);
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 20px;
}

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all .22s;
  text-align: center;
  justify-content: center;
}

.btn--lg {
  font-size: 16px;
  padding: 15px 28px;
}

.btn--md {
  font-size: 15px;
  padding: 13px 22px;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 12px 26px rgba(249, 178, 8, .34);
}

.btn--gold:hover {
  background: #fff;
  transform: translateY(-3px);
}

.btn--navy {
  background: var(--navy);
  color: #fff;
}

.btn--navy:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

.btn--red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 26px rgba(140, 28, 19, .34);
}

.btn--red:hover {
  background: #71160f;
  transform: translateY(-3px);
}

.btn--wa {
  background: #1FA855;
  color: #fff;
}

.btn--wa:hover {
  background: #188044;
  transform: translateY(-3px);
}

.btn--ghost {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
}

.btn--ghost:hover {
  background: var(--navy);
  color: #fff;
}

/* ---- sections / type helpers ---- */
.sec {
  padding: clamp(56px, 7vw, 100px) 0;
  border-bottom: 1px solid var(--line);
}

.sec--white {
  background: #fff;
}

.sec--cream {
  background: var(--cream);
}

.sec--navy {
  background: radial-gradient(120% 130% at 12% 0%, var(--navy-l) 0%, var(--navy) 52%, var(--navy-d) 100%);
  color: #fff;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-d);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold);
}

.eyebrow.on-navy {
  color: var(--gold-l);
}

.eyebrow.on-navy::before {
  background: var(--gold-l);
}

.h2 {
  font-size: clamp(27px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -.9px;
  margin: 14px 0 0;
}

.sec--navy .h2 {
  color: #fff;
}

.lead {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--muted);
  margin: 16px 0 0;
}

.center {
  text-align: center;
}

.mx {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- footer ---- */
.rsk-footer {
  background: #081B33;
  color: #fff;
}

.rsk-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding-top: clamp(48px, 6vw, 72px);
}

.rsk-footer h4 {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rsk-footer__col a,
.rsk-footer__col span {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  color: #9DB0CC;
  margin-bottom: 10px;
}

.rsk-footer__col a:hover {
  color: var(--gold-l);
}

.rsk-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 40px;
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13.5px;
  color: #7E92B0;
}

.rsk-soc {
  display: flex;
  gap: 10px;
}

.rsk-soc a {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  transition: all .2s;
}

.rsk-soc a:hover {
  background: var(--teal);
}

/* ---- FAQ ---- */
.rsk-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.rsk-faq__item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--cream);
  overflow: hidden;
}

.rsk-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: clamp(15.5px, 1.4vw, 17.5px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.rsk-faq__ico {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #FEF3D6;
  color: var(--gold-d);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rsk-faq__a {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted-2);
}

.rsk-faq__item.open .rsk-faq__a {
  max-height: 400px;
  padding: 0 22px 22px;
}

.rsk-faq__item.open .rsk-faq__ico .plus {
  display: none;
}

.rsk-faq__ico .minus {
  display: none;
}

.rsk-faq__item.open .rsk-faq__ico .minus {
  display: inline;
}

/* ---- responsive ---- */
@media (max-width:980px) {
  .rsk-burger {
    display: flex;
  }

  .rsk-header__cta .rsk-callbox {
    display: none;
  }

  .rsk-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(82vw, 360px);
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 88px 20px 30px;
    overflow-y: auto;
    box-shadow: -20px 0 60px rgba(8, 27, 51, .25);
    transition: right .3s ease;
    z-index: 70;
  }

  .rsk-nav.open {
    right: 0;
  }

  .rsk-nav__link {
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    justify-content: space-between;
  }

  .rsk-nav__link.active {
    border-bottom-color: var(--line);
    background: #FEF3D6;
    border-radius: 9px;
  }

  .rsk-has-dd {
    display: flex;
    flex-direction: column;
  }

  .rsk-dd {
    position: static;
    display: none;
    padding-top: 0;
    min-width: 0;
    transform: none;
  }

  .rsk-has-dd.open .rsk-dd {
    display: block;
  }

  .rsk-has-dd:hover .rsk-dd {
    display: none;
  }

  .rsk-has-dd.open .chev {
    transform: rotate(180deg);
  }

  .rsk-has-dd.open .rsk-dd {
    display: block;
  }

  .rsk-dd__panel,
  .rsk-dd__panel.grid2 {
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 8px;
    display: flex;
  }

  .rsk-dd__panel.grid2 {
    display: grid;
  }

  .rsk-navscrim {
    position: fixed;
    inset: 0;
    background: rgba(8, 27, 51, .45);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 65;
  }

  .rsk-navscrim.show {
    opacity: 1;
    visibility: visible;
  }
}

/* sliders */
[data-dot] {
  width: 9px;
  height: 9px;
  border-radius: 100px;
  border: none;
  background: rgba(255, 255, 255, .4);
  cursor: pointer;
  padding: 0;
  transition: all .35s;
}

[data-dot].active {
  width: 30px;
  background: var(--gold);
}

.rsk-sldbtn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}

.rsk-sldbtn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #1FA855;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 100px;
  box-shadow: 0 10px 28px rgba(31, 168, 85, .45);
  transition: transform .2s;
  text-decoration: none
}

.wa-float:hover {
  transform: translateY(-3px)
}

.wa-float i {
  font-size: 20px
}


.call-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 56px;
    height: 56px;
    background-color: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    z-index: 9999;
    transition: all 0.3s ease;
    cursor: pointer;
}

.call-icon {
    width: 24px;
    height: 24px;
    color: #ffffff;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.call-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #60a5fa;
    border-radius: 50%;
    opacity: 0.4;
    animation: call-pulse 1.5s infinite;
    z-index: 1;
}

@keyframes call-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.2;
    }

    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}
@media(max-width:600px) {
  .wa-float span {
    display: none
  }

  .wa-float {
    padding: 14px;
    border-radius: 50%
  }
}


.rk-ygwjch74 img,
.rk-kqee9b74 img,
.rk-gnaf6a73 img,
.rk-zdc0rg46 img,
.rk-svli5a3s img,
.rk-1x8iqtl3r img,
.rk-dy6rld8l img {
  height: 460px;
  object-fit: cover;
  width: 100%;
}

@media(max-width:700px) {

  .rk-ygwjch74 img,
  .rk-kqee9b74 img,
  .rk-gnaf6a73 img,
  .rk-zdc0rg46 img,
  .rk-svli5a3s img,
  .rk-1x8iqtl3r img,
  .rk-dy6rld8l img {
    height: 460px;
    object-fit: cover
  }

  .rk-gnaf6a73,
  .rk-zdc0rg46,
  .rk-svli5a3s,
  .rk-1x8iqtl3r {
    width: 100%;
    height: clamp(auto, 40vw, 440px);
  }
}


.rk-17dj98u2c .img-ht {
  height: auto;
}


.rk-eqrpk12t .wpcf7-response-output {
    background: #0d2d54;
    text-align: center;
}

.blog-pagination{
    margin:70px 0 20px;
    text-align:center;
}

.blog-pagination ul{
    display:inline-flex;
    gap:10px;
    list-style:none;
    padding:0;
    margin:0;
}

.blog-pagination li{
    margin:0;
}

.blog-pagination a,
.blog-pagination span{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #dcdcdc;
    border-radius:8px;
    text-decoration:none;
    color:#12345b;
    font-weight:600;
    transition:.3s;
}

.blog-pagination a:hover{
    background:#F9B208;
    border-color:#F9B208;
    color:#fff;
}

.blog-pagination .current{
    background:#12345b;
    border-color:#12345b;
    color:#fff;
}
/* ----blog detail page---- */
section.blog-listing-page {
    padding-top: 70px;
}
.inner-blog-listing {
    display: flex;
    gap: 30px;
}
.blog-cardsx-inn {
    flex: 2;
}
.blog-details-section {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}
.blg-details-img {
    text-align: center;
}
.blg-details-img img {
    height: 400px;
    width: 100%;
    object-fit: cover;
}
.blog-card-content {
    padding: 20px 16px 10px;
    margin-bottom: 30px;
}
.blog-sidebar {
  flex: 1;
}

.sidebar-widget {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.sidebar-title {
  color: #0B51A6;
   font-family: "Asta Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  text-transform: uppercase;
      margin: 10px 0px 20px 0px;
}

.recommended-posts {
  list-style: none;
}

a.recommended-post-link {
  display: flex;
}

.recommended-post {

  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.recommended-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.recommended-post-avatar {
  margin-right: 15px;
  flex-shrink: 0;
  width: 98px;
  height: 81px;
  aspect-ratio: 188 / 81;
}

.recommended-post-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recommended-post-content {
  flex: 1;
}
.recommended-post-title {
    color: #0B51A6;
    font-family: "Asta Sans", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 19px;
    /* text-transform: uppercase; */
}
ul.recommended-posts {
  padding-left: 0px;
}

.recommended-post-date {
    color: #494949;
    /* font-family: AktivGrotesk; */
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 15px;
    margin-top: 9px;
}
.admin-date {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}


@media (min-width: 993px) {
    .blog-sidebar {
        position: sticky;
        top: 20px;
        height: fit-content;
    }
}
@media (max-width: 992px) {
.inner-blog-listing {
    flex-direction: column;
}
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
@media (min-width: 768px) {
    .container {
        padding: 0 2.5rem;
    }
}

