@charset "UTF-8";
/* ===== CHROME, EDGE, SAFARI ===== */
::-webkit-scrollbar {
  width: 14px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #447FBE;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #447FBE;
}

/* ===== FIREFOX ===== */
* {
  scrollbar-width: thin;
  scrollbar-color: #447FBE transparent;
}

* {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  margin: 0;
}

/* HEADER */
.header {
  position: relative;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 1000;
}
.header__container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
}
.header__logo {
  font-weight: bold;
  font-size: 22px;
  color: #447FBE;
}
.header__toggle {
  display: none;
  margin-left: auto;
  flex-direction: column;
  cursor: pointer;
}
.header__toggle span {
  height: 3px;
  width: 25px;
  background: #333;
  margin: 4px 0;
}

/* NAV */
.nav {
  margin: 0 auto;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__item {
  position: static;
}
.nav__item--mega:hover .mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.nav__item--button {
  margin-left: auto;
}
.nav__link {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__link:hover {
  color: #447FBE;
}

/* ARROW */
.arrow {
  width: 6px;
  height: 6px;
  border-right: 2px solid #222;
  border-bottom: 2px solid #222;
  transform: rotate(45deg);
  transition: 0.3s;
}

.nav__item--mega:hover .arrow {
  transform: rotate(225deg);
}

/* MEGA MENU */
.mega {
  position: absolute;
  left: 0;
  top: 103%;
  width: 100%;
  background: #fff;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  padding: 40px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: 0.3s ease;
}
.mega__inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
  padding: 0 20px;
}
.mega__left {
  width: 280px;
  flex-shrink: 0;
  background: #f6f6f6;
  padding: 20px;
  border-radius: 12px;
}
.mega__left h3 {
  margin-bottom: 10px;
}
.mega__left p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}
.mega__right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.mega__group h4 {
  margin-bottom: 10px;
}
.mega__group a {
  display: block;
  text-decoration: none;
  color: #444;
  padding: 6px 0;
  transition: 0.2s;
}
.mega__group a:hover {
  color: #447FBE;
  transform: translateX(5px);
}

/* BUTTON */
.btn-contact {
  background: #447FBE;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 991px) {
  .header__container {
    justify-content: space-between;
  }
  .header__toggle {
    display: flex;
  }
  .nav {
    position: fixed;
    right: -100%;
    top: 0;
    width: 280px;
    height: 100vh;
    background: #fff;
    padding: 30px 20px;
    transition: 0.3s;
  }
  .nav.active {
    right: 0;
  }
  .nav__list {
    flex-direction: column;
    gap: 20px;
  }
  .mega {
    position: static;
    display: none;
    padding: 10px 0;
    box-shadow: none;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
  .mega__inner {
    flex-direction: column;
    gap: 20px;
  }
  .mega__right {
    grid-template-columns: 1fr;
  }
  .mega__left, .mega__right {
    width: 100%;
  }
  .nav__item--mega.open .mega {
    display: block;
  }
  .arrow {
    margin-left: auto;
  }
}
.jr-hero-section {
  margin: 15px;
  padding: 100px 20px;
  border-radius: 50px;
  background: linear-gradient(135deg, #212121, #447FBE);
  text-align: center;
}
.jr-hero-section .jr-hero-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.jr-hero-section .jr-hero-content {
  flex: 1 1 100%;
  color: #fff;
}
.jr-hero-section .jr-hero-content .jr-hero-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.jr-hero-section .jr-hero-content .jr-hero-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.5;
}
.jr-hero-section .jr-hero-content .jr-hero-btn {
  background: #fff;
  color: #447FBE;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
}
.jr-hero-section .jr-hero-content .jr-hero-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
}
.jr-hero-section .jr-hero-content .jr-hero-visuals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 25px;
  margin-top: 50px;
  justify-content: center;
}
.jr-hero-section .jr-hero-content .jr-hero-visuals .jr-visual-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.jr-hero-section .jr-hero-content .jr-hero-visuals .jr-visual-item img {
  max-width: 100%;
  height: auto;
}

/* ===================== RESPONISVE ===================== */
@media (max-width: 1100px) {
  .jr-hero-content .jr-hero-title {
    font-size: 2.6rem;
  }
}
@media (max-width: 991px) {
  .jr-hero-section {
    padding: 80px 20px;
  }
  .jr-hero-content .jr-hero-title {
    font-size: 2.4rem;
  }
  .jr-hero-content .jr-hero-text {
    font-size: 1.1rem;
  }
  .jr-hero-content .jr-hero-visuals {
    margin-top: 25px;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .jr-hero-section {
    padding: 60px 15px;
  }
  .jr-hero-content .jr-hero-title {
    font-size: 2rem;
  }
  .jr-hero-content .jr-hero-text {
    font-size: 1rem;
  }
  .jr-hero-content .jr-hero-btn {
    padding: 12px 24px;
  }
}
.jr-dna-section {
  padding: 80px 20px;
}
.jr-dna-section .jr-dna-container {
  max-width: 1200px;
  margin: auto;
}
.jr-dna-section .jr-dna-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.jr-dna-section .jr-dna-top .jr-dna-left {
  flex: 1;
}
.jr-dna-section .jr-dna-top .jr-dna-left .jr-dna-tag {
  font-size: 12px;
  letter-spacing: 1px;
  color: #777;
  display: block;
  margin-bottom: -30px;
}
.jr-dna-section .jr-dna-top .jr-dna-left .jr-dna-heading {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #111;
}
.jr-dna-section .jr-dna-top .jr-dna-right {
  flex: 1;
}
.jr-dna-section .jr-dna-top .jr-dna-right p {
  font-size: 18px;
  color: #111;
  line-height: 1.6;
}
.jr-dna-section .jr-dna-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.jr-dna-section .jr-dna-cards .jr-dna-card {
  background: #f3f4f6;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 160px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.jr-dna-section .jr-dna-cards .jr-dna-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  background: #fff;
}
.jr-dna-section .jr-dna-cards .jr-dna-card .jr-dna-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.jr-dna-section .jr-dna-cards .jr-dna-card .jr-dna-card-top .jr-dna-count {
  padding: 6px 12px;
  border-radius: 6px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}
.jr-dna-section .jr-dna-cards .jr-dna-card .jr-dna-card-top .jr-dna-text {
  font-size: 14px;
  color: #777;
}
.jr-dna-section .jr-dna-cards .jr-dna-card .jr-dna-card-bottom {
  display: flex;
  align-items: center;
  margin-top: 20px;
  position: relative;
}
.jr-dna-section .jr-dna-cards .jr-dna-card .jr-dna-card-bottom h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 70px;
}
.jr-dna-section .jr-dna-cards .jr-dna-card .jr-dna-card-bottom img {
  position: absolute;
  right: 0;
  bottom: -5px;
  width: 70px;
  height: auto;
  opacity: 0.9;
  transition: 0.3s ease;
}
.jr-dna-section .jr-dna-cards .jr-dna-card:hover .jr-dna-card-bottom img {
  transform: scale(1.1);
  opacity: 1;
}
.jr-dna-section .jr-dna-cards .jr-dna-red .jr-dna-count {
  background: #e11d48;
}
.jr-dna-section .jr-dna-cards .jr-dna-green .jr-dna-count {
  background: #22c55e;
}
.jr-dna-section .jr-dna-cards .jr-dna-blue .jr-dna-count {
  background: #06b6d4;
}
.jr-dna-section .jr-dna-cards .jr-dna-orange .jr-dna-count {
  background: #f59e0b;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .jr-dna-section .jr-dna-top {
    flex-direction: column;
  }
  .jr-dna-section .jr-dna-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .jr-dna-section .jr-dna-top .jr-dna-heading {
    font-size: 32px;
  }
  .jr-dna-section .jr-dna-cards {
    grid-template-columns: 1fr;
  }
}
.jr-who-section {
  margin: 80px 20px 20px 20px;
  padding: 80px 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, #1a1a1a, #2b2b2b);
}
.jr-who-section .jr-who-container {
  max-width: 1200px;
  margin: auto;
}
.jr-who-section {
  /* TOP */
}
.jr-who-section .jr-who-top {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 50px;
}
.jr-who-section .jr-who-top .jr-who-left {
  flex: 1;
}
.jr-who-section .jr-who-top .jr-who-left .jr-who-tag {
  font-size: 12px;
  letter-spacing: 1px;
  color: #bdbdbd;
  display: block;
  margin-bottom: -30px;
}
.jr-who-section .jr-who-top .jr-who-left .jr-who-heading {
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.jr-who-section .jr-who-top .jr-who-left .jr-who-sub {
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
}
.jr-who-section .jr-who-top .jr-who-left .jr-who-btn {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.jr-who-section .jr-who-top .jr-who-left .jr-who-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}
.jr-who-section .jr-who-top .jr-who-right {
  flex: 1;
}
.jr-who-section .jr-who-top .jr-who-right p {
  color: #bdbdbd;
  line-height: 1.6;
  margin-bottom: 20px;
}
.jr-who-section {
  /* STATS */
}
.jr-who-section .jr-who-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.jr-who-section .jr-who-stats .jr-who-card {
  background: #2a2a2a;
  padding: 20px;
  border-radius: 15px;
  transition: 0.3s;
}
.jr-who-section .jr-who-stats .jr-who-card h3 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 5px;
}
.jr-who-section .jr-who-stats .jr-who-card span {
  font-size: 14px;
  color: #bdbdbd;
}
.jr-who-section .jr-who-stats .jr-who-card:hover {
  background: rgb(54.75, 54.75, 54.75);
  transform: translateY(-4px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .jr-who-section .jr-who-top {
    flex-direction: column;
  }
  .jr-who-section .jr-who-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .jr-who-section {
    padding: 60px 20px;
  }
  .jr-who-section .jr-who-top .jr-who-heading {
    font-size: 30px;
  }
  .jr-who-section .jr-who-stats {
    grid-template-columns: 1fr;
  }
}
.jr-services-section {
  padding: 0px 20px;
}
.jr-services-section .jr-services-container {
  max-width: 1200px;
  margin: auto;
}
.jr-services-section .jr-services-container .jr-h2 {
  font-size: 45px;
  color: #fff;
}
.jr-services-section .jr-services-top {
  margin-bottom: 40px;
}
.jr-services-section .jr-services-top .jr-services-tag {
  font-size: 12px;
  color: #777;
  letter-spacing: 1px;
  display: block;
  margin-bottom: -30px;
}
.jr-services-section .jr-services-top .jr-services-heading {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.jr-services-section .jr-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  grid-auto-rows: 1fr; /* Equal height for all rows */
}
.jr-services-section .jr-services-grid .jr-services-card {
  padding: 70px 25px;
  border-radius: 35px;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 420px; /* Balanced height */
  box-sizing: border-box;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
.jr-services-section .jr-services-grid .jr-services-card h3 {
  font-size: 35px;
  margin-bottom: 12px;
  flex-shrink: 0;
}
.jr-services-section .jr-services-grid .jr-services-card p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.jr-services-section .jr-services-grid .jr-services-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1; /* Take available vertical space */
}
.jr-services-section .jr-services-grid .jr-services-card ul li {
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.3;
}
.jr-services-section .jr-services-grid {
  /* Positioning & gradients */
}
.jr-services-section .jr-services-grid .jr-card-orange {
  grid-column: 1/2;
  background: linear-gradient(135deg, #3a1d13, #8a3d1f);
}
.jr-services-section .jr-services-grid .jr-card-purple {
  grid-column: 2/4; /* spans col 2 and 3 */
  background: linear-gradient(135deg, #2a1a3a, #6b2bd9);
}
.jr-services-section .jr-services-grid .jr-wide {
  grid-column: 1/3; /* spans col 1 and 2 */
  background: linear-gradient(135deg, #1a2a4a, #2f4fd8);
}
.jr-services-section .jr-services-grid .jr-cta {
  grid-column: 3/4;
  background: linear-gradient(135deg, #1a1a1a, #2b2b2b);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.jr-services-section .jr-services-grid .jr-cta .jr-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}
.jr-services-section .jr-services-grid .jr-cta .jr-cta-buttons button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.3s;
}
.jr-services-section .jr-services-grid .jr-cta .jr-cta-buttons button:hover {
  background: rgba(255, 255, 255, 0.1);
}
.jr-services-section .jr-services-grid .jr-cta .jr-cta-btn {
  background: #447FBE;
  color: #fff;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  transition: box-shadow 0.3s, transform 0.3s;
  text-align: center;
}
.jr-services-section .jr-services-grid .jr-cta .jr-cta-btn:hover {
  box-shadow: 0 8px 20px rgba(68, 127, 190, 0.3);
  transform: translateY(-3px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .jr-services-section {
    padding: 0px 20px;
  }
  .jr-services-section .jr-services-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .jr-services-section .jr-services-grid .jr-card-orange,
  .jr-services-section .jr-services-grid .jr-card-purple,
  .jr-services-section .jr-services-grid .jr-wide,
  .jr-services-section .jr-services-grid .jr-cta {
    grid-column: auto !important;
    min-height: auto;
  }
  .jr-services-section .jr-services-grid .jr-services-card {
    min-height: auto;
  }
}
@media (max-width: 576px) {
  .jr-services-section {
    padding: 40px 15px;
  }
  .jr-services-section .jr-services-heading {
    font-size: 30px;
  }
}
.jr-faq-section {
  padding: 80px 20px;
}
.jr-faq-section .jr-faq-container {
  max-width: 900px;
  margin: auto;
}
.jr-faq-section {
  /* TOP */
}
.jr-faq-section .jr-faq-top {
  text-align: center;
  margin-bottom: 50px;
}
.jr-faq-section .jr-faq-top .jr-faq-tag {
  font-size: 12px;
  letter-spacing: 1px;
  color: #777;
  display: block;
  margin-bottom: -30px;
}
.jr-faq-section .jr-faq-top .jr-faq-heading {
  font-size: 40px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
}
.jr-faq-section {
  /* FAQ LIST */
}
.jr-faq-section .jr-faq-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.jr-faq-section .jr-faq-list .jr-faq-item {
  background: #F6F7F9;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
}
.jr-faq-section .jr-faq-list .jr-faq-item:hover {
  box-shadow: 0 10px 25px rgba(68, 127, 190, 0.15);
}
.jr-faq-section .jr-faq-list .jr-faq-item.active .jr-faq-question {
  color: #447FBE;
  border-bottom: 1px solid #000;
  font-size: 18px;
}
.jr-faq-section .jr-faq-list .jr-faq-item.active .jr-faq-answer {
  max-height: 200px;
  padding: 15px 20px;
}
.jr-faq-section .jr-faq-list .jr-faq-item.active span {
  transform: rotate(45deg);
}
.jr-faq-section .jr-faq-list .jr-faq-item .jr-faq-question {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.jr-faq-section .jr-faq-list .jr-faq-item .jr-faq-question span {
  font-size: 28px;
  transition: 0.3s;
}
.jr-faq-section .jr-faq-list .jr-faq-item .jr-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: all 0.3s ease;
}
.jr-faq-section .jr-faq-list .jr-faq-item .jr-faq-answer p {
  font-size: 16px;
  color: #777;
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .jr-faq-section .jr-faq-heading {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .jr-faq-section {
    padding: 60px 15px;
  }
  .jr-faq-section .jr-faq-heading {
    font-size: 26px;
  }
}
/* ================= SERVICES SECTION ================= */
.jr-services-section {
  padding: 80px 20px;
  background: #0d0d0d;
  margin: 40px 0px 0px 0px;
}
.jr-services-section .jr-services-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.jr-services-section {
  /* ROW */
}
.jr-services-section .jr-services-row {
  display: flex;
}
.jr-services-section {
  /* CARD */
}
.jr-services-section .jr-service-card {
  flex: 1 1 0%;
  min-width: 0;
  position: relative;
  background: #111;
  color: #aaa;
  padding: 45px 35px;
  border-radius: 30px;
  cursor: pointer;
  border: 1px solid #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 400px;
  transition: flex 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.4s ease, background 0.3s ease, color 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  /* 🔥 OVERLAP MAGIC */
  margin-left: -60px;
}
.jr-services-section .jr-service-card:first-child {
  margin-left: 0;
}
.jr-services-section .jr-service-card h3 {
  font-size: 27px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 700;
}
.jr-services-section .jr-service-card p {
  font-size: 16px;
  margin-bottom: 20px;
}
.jr-services-section .jr-service-card button {
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
}
.jr-services-section .jr-service-card {
  /* HOVER */
}
.jr-services-section .jr-service-card:hover {
  flex: 1.8;
  z-index: 5;
  background: #f4f4f4;
  color: #111;
}
.jr-services-section .jr-service-card:hover h3 {
  color: #111;
}
.jr-services-section .jr-service-card:hover button {
  border-color: #111;
  color: #111;
}
.jr-services-section .jr-service-card {
  /* ACTIVE */
}
.jr-services-section .jr-service-card.active {
  flex: 1.8;
  z-index: 4;
  background: #f4f4f4;
  color: #111;
}
.jr-services-section .jr-service-card.active h3 {
  color: #111;
}
.jr-services-section .jr-service-card.active button {
  border-color: #111;
  color: #111;
}
.jr-services-section .jr-service-card {
  /* HOVER EFFECT */
}
.jr-services-section .jr-service-card:hover {
  flex: 3;
  background: #f4f4f4;
  color: #111;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.jr-services-section .jr-service-card:hover h3 {
  color: #111;
}
.jr-services-section .jr-service-card:hover button {
  border-color: #111;
  color: #111;
}
.jr-services-section .jr-service-card {
  /* DEFAULT ACTIVE CARD */
}
.jr-services-section .jr-service-card.active {
  flex: 1.8;
  background: #f4f4f4;
  color: #111;
}
.jr-services-section .jr-service-card.active h3 {
  color: #111;
}
.jr-services-section .jr-service-card.active button {
  border-color: #111;
  color: #111;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .jr-services-section .jr-services-row {
    flex-wrap: wrap;
  }
  .jr-services-section .jr-service-card {
    flex: 1 1 calc(50% - 10px);
  }
  .jr-services-section .jr-service-card:hover, .jr-services-section .jr-service-card.active {
    flex: 1 1 calc(50% - 10px);
  }
}
@media (max-width: 576px) {
  .jr-services-section .jr-services-row {
    flex-direction: column;
  }
  .jr-services-section .jr-service-card {
    flex: 1;
  }
  .jr-services-section .jr-service-card:hover, .jr-services-section .jr-service-card.active {
    flex: 1;
  }
}
.jr-testimonials {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f5f7fb, #eaf1fb);
}
.jr-testimonials .jr-container {
  max-width: 750px;
  margin: auto;
  text-align: center;
}
.jr-testimonials .jr-heading {
  font-size: 12px;
  letter-spacing: 4px;
  color: #777;
  margin-bottom: 20px;
}
.jr-testimonials .jr-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}
.jr-testimonials .jr-carousel {
  position: relative;
}
.jr-testimonials .jr-slide {
  display: none;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 50px 40px;
  border-radius: 55px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}
.jr-testimonials .jr-slide.active {
  display: block;
  animation: jrFade 0.5s ease;
}
.jr-testimonials .jr-slide::before {
  content: "“";
  font-size: 80px;
  color: #447FBE;
  position: absolute;
  top: 10px;
  left: 20px;
  opacity: 0.15;
}
.jr-testimonials .jr-desc, .jr-testimonials .jr-highlight {
  line-height: 1.7;
  margin-bottom: 15px;
}
.jr-testimonials .jr-highlight {
  color: #447FBE;
  font-size: 18px;
  font-weight: 600;
}
.jr-testimonials .jr-desc {
  color: #555;
  font-size: 15px;
}
.jr-testimonials .jr-author {
  margin-top: 25px;
}
.jr-testimonials .jr-author h4 {
  font-weight: 600;
}
.jr-testimonials .jr-author span {
  color: #999;
  font-size: 13px;
}
.jr-testimonials .jr-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  color: #447FBE;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.jr-testimonials .jr-btn:hover {
  background: #447FBE;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}
.jr-testimonials .jr-prev {
  left: -60px;
}
.jr-testimonials .jr-next {
  right: -60px;
}
.jr-testimonials .jr-dots {
  margin-top: 30px;
}
.jr-testimonials .jr-dots .jr-dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 6px;
  display: inline-block;
  transition: all 0.3s ease;
}
.jr-testimonials .jr-dots .jr-dot.active {
  background: #447FBE;
  transform: scale(1.4);
}

@keyframes jrFade {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 768px) {
  .jr-slide {
    padding: 35px 20px;
  }
  .jr-prev {
    left: 0;
  }
  .jr-next {
    right: 0;
  }
}
@media (max-width: 480px) {
  .jr-title {
    font-size: 22px;
  }
  .jr-highlight {
    font-size: 16px;
  }
  .jr-desc {
    font-size: 14px;
  }
}
.jr-footer {
  background: #0a0a0a;
  color: #fff;
  padding: 80px 20px 40px;
}
.jr-footer .jr-footer-container {
  max-width: 1200px;
  margin: auto;
}
.jr-footer {
  /* CTA */
}
.jr-footer .jr-footer-cta {
  text-align: center;
  margin-bottom: 60px;
}
.jr-footer .jr-footer-cta h2 {
  font-size: 40px;
  margin-bottom: 20px;
}
.jr-footer .jr-footer-cta .jr-footer-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #fff;
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.jr-footer .jr-footer-cta .jr-footer-btn:hover {
  background: #ddd;
}
.jr-footer {
  /* MAIN GRID */
}
.jr-footer .jr-footer-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}
.jr-footer .jr-footer-main .jr-footer-col h3 {
  font-size: 18px;
  margin-bottom: 15px;
}
.jr-footer .jr-footer-main .jr-footer-col p {
  font-size: 14px;
  color: #bbb;
  line-height: 1.6;
}
.jr-footer .jr-footer-main .jr-footer-col ul {
  list-style: none;
  padding: 0;
}
.jr-footer .jr-footer-main .jr-footer-col ul li {
  margin-bottom: 10px;
}
.jr-footer .jr-footer-main .jr-footer-col ul li a {
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}
.jr-footer .jr-footer-main .jr-footer-col ul li a:hover {
  color: #fff;
}
.jr-footer {
  /* BOTTOM */
}
.jr-footer .jr-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}
.jr-footer .jr-footer-bottom p {
  font-size: 13px;
  color: #888;
}

/* 📱 RESPONSIVE */
@media (max-width: 900px) {
  .jr-footer .jr-footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
  .jr-footer .jr-footer-cta h2 {
    font-size: 30px;
  }
}
@media (max-width: 500px) {
  .jr-footer .jr-footer-main {
    grid-template-columns: 1fr;
  }
  .jr-footer .jr-footer-cta h2 {
    font-size: 24px;
  }
}
/* VARIABLES */
/* BASE FLEX (Inheritance) */
.naw-hero__container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.naw-hero__btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

/* HERO SECTION */
.naw-hero {
  background: #f7f7f7;
  padding: 80px 20px;
}
.naw-hero__container {
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}
.naw-hero__content {
  flex: 1;
  max-width: 550px;
}
.naw-hero__title {
  font-size: 48px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.2;
}
.naw-hero__desc {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}
.naw-hero__btn {
  background: #447FBE;
  color: #fff;
}
.naw-hero__btn:hover {
  background: rgb(53.3928571429, 101.8571428571, 153.6071428571);
}
.naw-hero__image {
  flex: 1;
}
.naw-hero__image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* =========================
   RESPONSIVE DESIGN
========================= */
@media (max-width: 992px) {
  .naw-hero__container {
    flex-direction: column;
    text-align: center;
  }
  .naw-hero__content {
    max-width: 100%;
  }
  .naw-hero__title {
    font-size: 38px;
  }
}
@media (max-width: 576px) {
  .naw-hero {
    padding: 60px 15px;
  }
  .naw-hero__title {
    font-size: 30px;
  }
  .naw-hero__desc {
    font-size: 14px;
  }
  .naw-hero__btn {
    padding: 12px 22px;
    font-size: 14px;
  }
}
/* =========================
   VARIABLES (re-used safe)
========================= */
/* INHERITANCE */
.naw-steps__top {
  display: flex;
  align-items: center;
}

.naw-step-card {
  border-radius: 20px;
  padding: 30px;
}

/* =========================
   STEPS
========================= */
.naw-steps {
  background: #fff;
  padding: 80px 20px;
}
.naw-steps__container {
  max-width: 1200px;
  margin: auto;
}
.naw-steps__top {
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 80px;
}
.naw-steps__left {
  flex: 1;
}
.naw-steps__tag {
  font-size: 12px;
  letter-spacing: 2px;
  color: #666;
  margin-bottom: -30px;
}
.naw-steps__heading {
  font-size: 40px;
  margin: -3px 0 20px;
}
.naw-steps__text {
  color: #666;
  max-width: 500px;
}
.naw-steps__cards {
  position: relative;
}

/* STEP CARD */
.naw-step-card {
  background: #F7F7F7; /* FIXED: isolated */
  position: sticky;
  top: 100px;
  margin-bottom: 40px;
  transition: 0.3s;
}
.naw-step-card__badge {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 15px;
}
.naw-step-card h3 {
  margin-bottom: 10px;
}
.naw-step-card p {
  color: #666;
}

.naw-step-card:nth-child(2) {
  top: 120px;
}

.naw-step-card:nth-child(3) {
  top: 140px;
}

.naw-step-card:nth-child(4) {
  top: 160px;
}

.naw-step-card:nth-child(5) {
  top: 180px;
}

/* STEP INNER */
.naw-step-card__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.naw-step-card__content {
  flex: 1;
}

.naw-step-card__img {
  flex: 1;
  text-align: right;
}
.naw-step-card__img img {
  max-width: 450px;
  width: 100%;
}

@media (max-width: 768px) {
  .naw-step-card__inner {
    flex-direction: column;
    text-align: center;
  }
  .naw-step-card__img {
    text-align: center;
  }
  .naw-step-card__img img {
    max-width: 200px;
  }
}
/* =========================
   STACK
========================= */
.naw-stack {
  padding: 80px 20px 50px 0px;
  background: #fff;
}
.naw-stack__container {
  max-width: 1200px;
  margin: auto;
}
.naw-stack__tag {
  font-size: 12px;
  letter-spacing: 2px;
  color: #777;
}
.naw-stack__heading {
  font-size: 36px;
  margin: -3px 0 40px;
}
.naw-stack__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 40px;
}

.naw-stack-card {
  background: #f7f7f7;
  padding: 20px;
  border-radius: 16px;
  position: relative;
}
.naw-stack-card__badge {
  position: absolute;
  top: -10px;
  left: 20px;
  background: #000;
  color: #fff;
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 20px;
}
.naw-stack-card__inner {
  display: flex;
  gap: 15px;
  align-items: center;
}
.naw-stack-card__icon img {
  width: 40px;
  height: 40px;
}

/* LAST ROW FIX */
.naw-stack__grid .naw-stack-card:nth-last-child(1),
.naw-stack__grid .naw-stack-card:nth-last-child(2) {
  grid-column: span 2;
}

@media (max-width: 992px) {
  .naw-stack__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .naw-stack__grid .naw-stack-card:nth-last-child(1),
  .naw-stack__grid .naw-stack-card:nth-last-child(2) {
    grid-column: span 1;
  }
}
@media (max-width: 576px) {
  .naw-stack__grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   FEATURE
========================= */
.naw-steps__top {
  display: flex;
  align-items: center;
}

.naw-step-card {
  border-radius: 20px;
  padding: 25px;
}

.rorx-section {
  width: 100%;
  background: #447FBE;
  padding: 80px 20px;
}
.rorx-section .rorx-container {
  max-width: 1200px;
  margin: 0 auto;
}
.rorx-section .rorx-header {
  margin-bottom: 50px;
}
.rorx-section .rorx-header .rorx-subtitle {
  display: block;
  font-size: 14px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: -20px;
}
.rorx-section .rorx-header .rorx-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}
.rorx-section .rorx-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.rorx-section .rorx-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 25px;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rorx-section .rorx-box h3 {
  color: #447FBE;
  font-size: 20px;
  margin-bottom: 10px;
}
.rorx-section .rorx-box p {
  color: #447FBE;
  font-size: 15px;
  line-height: 1.6;
}
.rorx-section .rorx-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.rorx-section .rorx-box--highlight {
  background: #e9f2fb;
}
.rorx-section .rorx-box--highlight .rorx-btn {
  margin-top: 15px;
  display: inline-block;
  background: #447FBE;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}
.rorx-section .rorx-box--highlight .rorx-btn:hover {
  background: #2f5f95;
}
@media (max-width: 992px) {
  .rorx-section .rorx-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .rorx-section {
    padding: 60px 15px;
  }
  .rorx-section .rorx-title {
    font-size: 26px;
  }
  .rorx-section .rorx-grid {
    grid-template-columns: 1fr;
  }
}

.naw-prtf {
  padding: 80px 20px;
}
.naw-prtf .prtf-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.naw-prtf .prtf-head h2 {
  font-size: 54px;
}
.naw-prtf .prtf-head p {
  margin-top: -10px;
  text-align: center;
  max-width: 700px;
}
.naw-prtf .prtf-head .btn-primary {
  margin-top: 20px;
  background: #447FBE;
  color: #fff;
  padding: 12px 24px;
  border-radius: 45px;
  text-decoration: none;
  transition: 0.3s;
}
.naw-prtf .prtf-head .btn-primary:hover {
  background: rgb(53.3928571429, 101.8571428571, 153.6071428571);
}

.cs-showcase {
  padding: 80px 20px;
}
.cs-showcase .cs-container {
  max-width: 1200px;
  margin: 0 auto;
}
.cs-showcase .cs-row {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
}
.cs-showcase .cs-card {
  flex: 1;
}
.cs-showcase .cs-card .cs-img {
  margin-bottom: 15px;
}
.cs-showcase .cs-card .cs-img img {
  width: 100%;
  border-radius: 45px;
  display: block;
}
.cs-showcase .cs-card .cs-meta {
  font-size: 14px;
  color: #888;
  margin-bottom: 15px;
}
.cs-showcase .cs-card .cs-meta span {
  background-color: #F6F7F9;
  padding: 4px 7px;
  border-radius: 25px;
  color: #000;
}
.cs-showcase .cs-card h3 {
  font-size: 26px;
  margin-bottom: 10px;
}
.cs-showcase .cs-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}/*# sourceMappingURL=style.css.map */