/* navbar.css - JDAR Path Labs Navigation */

@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --jdar-purple: #6b2d8b;
  --jdar-purple-dark: #4a1e62;
  --jdar-purple-light: #9b5cbf;
  --jdar-navy: #1b2a6b;
  --jdar-navy-mid: #253c99;
  --jdar-navy-light: #3a55c2;
  --jdar-green: #5a9e2f;
  --jdar-green-dark: #3d6e1e;
  --jdar-gold: #c8a951;
  --jdar-gold-light: #e8c96a;
  --white: #ffffff;
  --light-bg: #f7f3fc;
  --light-bg2: #eef1ff;
  --text-dark: #1a1a2e;
  --text-muted: #6b7280;
  --navbar-shadow: 0 4px 24px rgba(27, 42, 107, 0.12);
  --radius: 12px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins';
}
body{
  font-family: 'Poppins';
}
h1 ,h2 , h3 , h4 , h5 , h6 {
  font-family: 'Poppins';
}
p{
  font-family: 'Poppins';
}
span{
  font-family: 'Poppins';
}
a{
  font-family: 'Poppins';
}
/* ======== NAVBAR WRAPPER ======== */
.navbar-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--navbar-shadow);
  font-family: "Poppins", sans-serif;
}

/* ======== TOP BAR ======== */
.top-bar {
  background: linear-gradient(
    90deg,
    var(--jdar-navy) 0%,
    var(--jdar-purple) 50%,
    var(--jdar-navy) 100%
  );
  padding: 7px 0;
  font-size: 12px;
  color: #ddd6fe;
}

.top-bar .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-left strong {
  color: var(--jdar-gold);
  font-weight: 700;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-right a {
  color: #ddd6fe;
  text-decoration: none;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

.top-bar-right a:hover {
  color: var(--jdar-gold);
}

/* ======== MAIN NAV ======== */
.main-nav {
  background: var(--white);
  border-bottom: 1px solid #ede9fe;
}

.container {
  max-width: 1540px !important;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 6px 20px;
  max-width: 1540px;
  margin: 0 auto;
  justify-content: space-between;
}

/* ======== LOGO ======== */
/* LOGO CONTAINER */
.jdar-logo-box {
  display: flex;
  align-items: center;
}

/* LOGO IMAGE */
.jdar-logo-img {
  height: auto; /* perfect size */
  width: 162px;
  object-fit: contain;
}

/* HOVER (optional premium) */
.jdar-logo-img:hover {
  transform: scale(1.03);
  transition: 0.3s;
}

/* MOBILE */
@media (max-width: 768px) {
  .jdar-logo-img {
    height: 51px;
  }
}

/* ======== LOCATION SELECTOR ======== */
.location-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--light-bg);
  border: 1.5px solid #e0d8f5;
  border-radius: 50px;
  padding: 7px 14px;
  cursor: pointer;
  flex-shrink: 0;
}

.location-icon {
  font-size: 14px;
}

.location-selector select {
  border: none;
  background: transparent;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--jdar-navy);
  cursor: pointer;
  outline: none;
}

/* ======== SEARCH BAR ======== */
.search-bar {
flex: 1;
    display: flex;
    background: #f8f9ff;
    border: 1.5px solid #b7b7b7;
    border-radius: 50px;
  padding: 3px 6px 4px 18px;
    transition: border-color 0.2s, box-shadow 0.2s;
    max-width: 40%;
    box-shadow: 0px 0px 14px -8px;
}

.search-bar:focus-within {
  border-color: var(--jdar-purple);
  box-shadow: 0 0 0 3px rgba(107, 45, 139, 0.1);
}

.search-bar input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: var(--text-dark);
  outline: none;
}
/* Modern Browsers (Chrome, Firefox, Safari, Edge) */
.search-bar input::placeholder {
    color: #5f5f5f; /* Change to your desired color */
    opacity: 1;      /* Firefox lowers the opacity by default */
}
.search-btn {
 background: #991c69;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 9px 20px;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.search-btn:hover {
  opacity: 0.88;
}

/* ======== NAV ACTIONS ======== */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-shrink: 0;
}

.nav-action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1.5px solid #e0d8f5;
  border-radius: 50px;
  padding: 8px 16px;
  font-family: "Poppins", sans-serif;
  /* font-size: 13px; */
  font-weight: 600;
  color: var(--jdar-navy);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}

.nav-action-btn:hover {
  background: var(--light-bg);
  border-color: var(--jdar-purple);
  color: var(--jdar-purple);
}

.cart-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

/* ICON */
.cart-box i {
  font-size: 22px;
}

/* COUNT BADGE */
.cart-count {
  position: absolute;
  top: -6px;
  left: 14px;
  background: #991c69;
  color: #fff;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 10px;
  font-weight: bold;
}

/* TEXT */
.cart-text {
  font-size: 15px;
  font-weight: 600;
}

/* ======== HAMBURGER ======== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--jdar-navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ======== NAV LINKS BAR ======== */
.nav-links {
  background: linear-gradient(
    90deg,
    var(--jdar-navy) 0%,
    var(--jdar-purple-dark) 50%,
    var(--jdar-navy) 100%
  );
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-links-inner {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 20px;
  max-width: 1540px;
  margin: 0 auto;
  justify-content: space-between;
  /* padding: 9px !important; */
}

.nav-link {
position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    font-weight: 600;
    padding: 6px 7px;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
    border-radius: 6px 6px 0 0;
    text-decoration: none;
    user-select: none;
    white-space: nowrap;
}

/* .nav-link:hover {
  color: var(--jdar-gold);
  background: rgba(255, 255, 255, 0.08);
} */

.nav-link .arrow {
  font-size: 10px;
  opacity: 0.7;
  margin-top: 1px;
  transition: transform 0.2s;
}

.nav-link:hover .arrow {
  transform: rotate(180deg);
}

/* ======== DROPDOWN ======== */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: white;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 12px 40px rgba(27, 42, 107, 0.18);
  z-index: 200;
  border: 1px solid #ede9fe;
  border-top: 3px solid var(--jdar-purple);
  overflow: hidden;
}

.dropdown a {
  display: block;
  padding: 11px 18px;
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s;
}

.dropdown a:hover {
  background: var(--light-bg);
  color: var(--jdar-purple);
  padding-left: 24px;
}

:root {
  --jdar-purple: #6b2d8b;
  --jdar-purple-dark: #4a1e62;
  --jdar-purple-light: #9b5cbf;
  --jdar-navy: #1b2a6b;
  --jdar-navy-mid: #253c99;
  --jdar-navy-light: #3a55c2;
  --jdar-green: #5a9e2f;
  --jdar-green-dark: #3d6e1e;
  --jdar-gold: #c8a951;
  --jdar-gold-light: #e8c96a;
  --white: #ffffff;
  --light-bg: #f7f3fc;
  --light-bg2: #eef1ff;
  --text-dark: #1a1a2e;
  --text-muted: #6b7280;
  --card-shadow: 0 4px 24px rgba(27, 42, 107, 0.09);
  --card-shadow-hover: 0 12px 40px rgba(107, 45, 139, 0.18);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  color: var(--text-dark);
  background: #fff;
}

/* ======== TRUST BAR ======== */
.trust-bar {
  background: linear-gradient(
    90deg,
    var(--jdar-navy) 0%,
    var(--jdar-purple-dark) 50%,
    var(--jdar-navy) 100%
  );
  padding: 14px 0;
  overflow: hidden;
}

.trust-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
}

.trust-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.trust-text strong {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--jdar-gold);
}

.trust-text span {
  font-size: 11px;
  color: #c5d2f6;
}

/* ======== HERO ======== */
.hero {
  background: linear-gradient(
    135deg,
    var(--jdar-navy) 0%,
    var(--jdar-purple-dark) 40%,
    var(--jdar-purple) 100%
  );
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(200, 169, 81, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(90, 158, 47, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: "Nunito", sans-serif;
  font-size: 46px;
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-title span {
  color: var(--jdar-gold);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--jdar-gold);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.hero-subtitle {
  font-size: 15.5px;
  color: #c5d2f6;
  margin-bottom: 32px;
  line-height: 1.75;
}

.hero-search {
  display: flex;
  background: white;
  border-radius: 50px;
  padding: 6px 6px 6px 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  margin-bottom: 24px;
}

.hero-search input {
  flex: 1;
  border: none;
  outline: none;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: transparent;
}

.hero-search input::placeholder {
  color: #aaa;
}

.hero-search button {
  background: linear-gradient(135deg, var(--jdar-purple), var(--jdar-navy));
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 26px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  transition: opacity 0.2s;
}

.hero-search button:hover {
  opacity: 0.85;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tag {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: background 0.2s;
}

.hero-tag:hover {
  background: rgba(200, 169, 81, 0.25);
  border-color: var(--jdar-gold);
  color: var(--jdar-gold);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition:
    transform 0.2s,
    background 0.2s;
}

.stat-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.14);
}

.stat-number {
  font-family: "Nunito", sans-serif;
  font-size: 34px;
  font-weight: 900;
  color: var(--jdar-gold);
  display: block;
}

.stat-label {
  font-size: 12px;
  color: #c5d2f6;
  margin-top: 4px;
}

/* ======== SECTION STYLES ======== */
.section {
  padding: 60px 0;
}
.section-alt {
  background: var(--light-bg);
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.section-title {
  font-family: "Nunito", sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--text-dark);
  position: relative;
}

.view-all-btn {
  background: linear-gradient(135deg, var(--jdar-purple), var(--jdar-navy));
  color: white;
  border: none;
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  transition:
    opacity 0.2s,
    transform 0.2s;
  display: inline-block;
}

.view-all-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* ======== CARDS CAROUSEL ======== */
.cards-scroll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

/* ======== PACKAGE CARD ======== */
.package-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  border: 1.5px solid #ede9fe;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--jdar-purple-light);
}

.card-img {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
}

.card-body {
  padding: 16px;
}

.card-title {
  font-family: "Nunito", sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--jdar-navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.card-meta {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.card-gender {
  font-size: 11px;
  color: var(--jdar-purple-light);
  margin-bottom: 10px;
}

.compare-check {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
  cursor: pointer;
}

.compare-check input {
  accent-color: var(--jdar-purple);
}

.card-pricing {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.price-original {
  font-size: 13px;
  color: #aaa;
  text-decoration: line-through;
}

.price-current {
  font-family: "Nunito", sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--jdar-purple);
}

.discount-badge {
  background: var(--jdar-gold);
  color: var(--jdar-navy);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.btn-cart {
  background: linear-gradient(135deg, var(--jdar-purple), var(--jdar-navy));
  color: white;
  border: none;
  border-radius: 50px;
  padding: 10px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  transition: opacity 0.2s;
}

.btn-cart:hover {
  opacity: 0.85;
}

.btn-book {
  background: white;
  color: var(--jdar-purple);
  border: 1.5px solid var(--jdar-purple);
  border-radius: 50px;
  padding: 10px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  transition: all 0.2s;
}

.btn-book:hover {
  background: var(--jdar-purple);
  color: white;
}

/* ======== TEST CARD ======== */
.test-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  border: 1.5px solid #ede9fe;
  padding: 22px;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.test-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--jdar-purple-light);
}

.test-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--light-bg), var(--light-bg2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 14px;
}

.test-name {
  font-family: "Nunito", sans-serif;
  font-size: 14.5px;
  font-weight: 800;
  color: var(--jdar-navy);
  margin-bottom: 5px;
}

.test-params {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.test-price {
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--jdar-purple);
  margin-bottom: 12px;
  background: var(--light-bg);
  padding: 8px 14px;
  border-radius: 10px;
  display: inline-block;
}

/* ======== CAROUSEL NAV ======== */
.carousel-wrapper {
  position: relative;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  background: white;
  border: 1.5px solid #ede9fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--card-shadow);
  font-size: 18px;
  color: var(--jdar-purple);
  transition: all 0.2s;
}

/* .carousel-nav:hover {
  background: var(--jdar-purple);
  color: white;
  border-color: var(--jdar-purple);
} */
.carousel-nav.prev {
  left: -20px;
}
.carousel-nav.next {
  right: -20px;
}

/* ======== WHY CHOOSE US ======== */
.why-section {
  background: linear-gradient(
    135deg,
    var(--jdar-navy) 0%,
    var(--jdar-purple-dark) 60%,
    var(--jdar-purple) 100%
  );
  padding: 70px 0;
}

.why-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.why-title {
  font-family: "Nunito", sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: white;
  margin-bottom: 10px;
}

.why-sub {
  color: #c5d2f6;
  font-size: 15px;
  margin-bottom: 48px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  transition:
    transform 0.2s,
    background 0.2s;
}
.why-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}

.why-card h3 {
  font-family: "Nunito", sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--jdar-gold);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 13px;
  color: #c5d2f6;
  line-height: 1.7;
}

/* ======== CTA BANNER ======== */
.cta-banner {
  background: linear-gradient(
    135deg,
    var(--jdar-green-dark),
    var(--jdar-green)
  );
  padding: 50px 0;
}

.cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-family: "Nunito", sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: white;
  margin-bottom: 8px;
}

.cta-text p {
  color: #d4edba;
  font-size: 15px;
}

.cta-btn {
  background: white;
  color: var(--jdar-green-dark);
  border: none;
  border-radius: 50px;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  font-family: "Nunito", sans-serif;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* ======== YEARS BADGE SECTION ======== */
.years-badge-section {
  background: var(--light-bg);
  padding: 40px 0;
  text-align: center;
}

.years-badge {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: white;
  border: 2px solid var(--jdar-gold);
  border-radius: 60px;
  padding: 16px 40px;
  box-shadow: 0 4px 24px rgba(200, 169, 81, 0.18);
}

.years-badge .years-number {
  font-family: "Nunito", sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--jdar-purple);
  line-height: 1;
}

.years-badge .years-text {
  text-align: left;
}

.years-badge .years-text strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--jdar-navy);
  font-family: "Nunito", sans-serif;
}

.years-badge .years-text span {
  font-size: 12px;
  color: var(--jdar-gold);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ======== FOOTER ======== */
/* ===== FOOTER ===== */
.jdar-footer {
  background: #1a1a2e;
  color: #ccc;
  font-family: "Segoe UI", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* LOGO COL */
.footer-logo img {
  width: 160px;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
}

.footer-logo p {
  font-size: 12px;
  color: #a29bfe;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 5px;
}

.footer-tagline {
  font-size: 13px;
  color: #888;
  margin: 8px 0 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: white;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: 0.3s;
  text-decoration: none;
}

.footer-social a:hover {
  background: #991c69;
  color: #fff;
}

/* COLUMNS */
.footer-col h4 {
color: #202020;
    font-family: 'Poppins';
    font-size: 18px !important;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
       border-bottom: 1px solid #1b2a6b;
    display: inline-block;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover {
  color: #1b2a6b;
  padding-left: 5px;
}

.footer-col ul li a i {
  font-size: 11px;
  color: #3c3c3c;
}

/* CONTACT LIST */
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.contact-icon {
    width: 30px;
    height: 30px;
    /* min-width: 38px; */
    border-radius: 50%;
    background: #ffffff;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.contact-iconn{
width: 50px;
    height: 27px;
  /* min-width: 38px; */
  border-radius: 50%;
  background: white;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;

}
.contact-text span {
  display: block;
  font-size: 15px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.contact-text a,
.contact-text p {
  display: block;
  color: #ccc;
  font-size: 13px;
  text-decoration: none;
  margin: 0;
  line-height: 1.6;
}

.contact-text a:hover {
  color: #a29bfe;
}

/* FOOTER BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    font-size: 13px;
    border-top: 1px solid #bbbbbb;
}

.footer-bottom p {
  color: #464646;
  font-size: 15px;
  margin: 0;
}

.footer-bottom a {
color: #1b2a6b;
  text-decoration: none;
  font-style: italic;
}

.footer-bottom a:hover {
  color: #6c5ce7;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}
/* ======== RESPONSIVE ======== */
/* @media (max-width: 1024px) {
  .cards-scroll { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .cards-scroll { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { justify-content: center; }
  .hero-title { font-size: 30px; }
  .footer-inner { grid-template-columns: 1fr; }
  .cta-inner { text-align: center; justify-content: center; }
  .years-badge { flex-direction: column; text-align: center; padding: 20px 30px; }
} */
/* MENU BUTTON */
.side-menu-btn {
margin-right: 6px;
    cursor: pointer;
    font-size: 19px;
    color: white;
}

/* SIDE MENU */
.side-menu {
  position: fixed;
  top: 0;
  left: -280px;
  width: 260px;
  height: 100%;
  background: var(--jdar-navy); /* same theme */
  color: white;
  z-index: 9999;
  transition: left 0.3s ease;
}

/* OPEN STATE */
.side-menu.open {
  left: 0;
}

/* HEADER */
.side-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
    padding: 5px 12px;
  background: #ffffff;
}
.side-header img{
    width: 139px;
}
.logo-text {
  font-weight: bold;
  font-size: 18px;
}

.close-btn {
    cursor: pointer;
    font-size: 17px;
    color: black;
    font-weight: bolder;
}

/* LINKS */
.side-links {
  display: flex;
  flex-direction: column;
}

.side-links a {
  padding: 14px 16px;
  color: white;
  text-decoration: none;
  transition: background 0.2s;
      border-bottom: 1px solid #404f91;
}

.side-links a:hover {
  background: rgba(255, 255, 255, 0.1);
}
.side-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.side-title {
  padding: 14px 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.side-title:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* dropdown hidden */
.side-dropdown {
  max-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  transition: max-height 0.3s ease;
}

/* dropdown links */
.side-dropdown a {
  display: block;
  padding: 10px 30px;
  font-size: 13px;
  color: #ddd;
  text-decoration: none;
}

.side-dropdown a:hover {
  background: rgba(255, 255, 255, 0.1);
}
/* MODAL BACKGROUND */
.location-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* BOX */
.location-box {
  background: white;
  width: 80%;
  max-width: 900px;
  border-radius: 12px;
  padding: 20px;
  max-height: 80vh;
  overflow-y: auto;
}

/* TOP */
.location-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.detect-btn {
  background: #f4b400;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
}

#citySearch {
  flex: 1;
  padding: 10px;
}

/* POPULAR */
.popular-cities {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.city-item {
  padding: 10px 14px;
  background: #f1f1f1;
  border-radius: 20px;
  cursor: pointer;
}

/* OTHER */
.other-title {
  margin: 10px 0;
}

.city-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.city-row {
  padding: 8px;
  cursor: pointer;
}

.city-row:hover {
  background: #f5f5f5;
}

.hero-new {
  background: #f5f7fb;
  padding: 40px 20px;
}

.hero-container {
  max-width: 1540px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: center;
}

/* LEFT */
.hero-banner img {
  width: 100%;
  border-radius: 20px;
}

/* RIGHT FORM */
.hero-form {
  width: 100%;
  background-image: linear-gradient(to top, #fff, #fff 37%) !important;
  box-sizing: border-box;
  box-shadow: 0 6px 20px 0 rgb(0 0 0 / 38%);
  border-radius: 25px;
  padding: 38px 20px;
}

.hero-form h3 {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 25px;
    font-family: 'Poppins';
    color: #4a4a4a;
}

.hero-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-form input,
.hero-form select {
    padding: 18px;
    border-radius: 8px;
    border: 1px solid #b9b9b9;
    font-size: 15px;
}

.checkbox {
  font-size: 12px;
  display: flex;
  gap: 6px;
  align-items: center;
}

.hero-form button {
display: inline-block;
    width: 50%;
    background: #2d3a81;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 17px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
  }
}
.trust-strip {
  padding: 30px 0;
  /* border-top: 1px solid #eee; */
}

.trust-container {
width: 95% !important;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* gap: 20px; */
    padding: 0;
    flex-wrap: wrap;
    max-width: 1540px;
}

.trust-box {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 600;
  color: #333;
  min-width: 150px;
}

.trust-box img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* MOBILE */
@media (max-width: 992px) {
  .trust-container {
   justify-content: start;
    padding: 20px;
  }
  .trust-box{
    width: 50%;
  }
}

.package-section {
  padding: 50px 20px;
  /* background: #f8f9ff; */
  max-width: 1200px;
  margin: 0 auto;
  max-width: 1540px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.view-all {
    background: #1b2a6b;
    color: white;
    padding: 8px 28px;
    border-radius: 20px;
    font-family: 'Poppins';
    font-size: 14px;
    text-decoration: none;
}

/* WRAPPER */
.carousel-wrapper {
  position: relative;
  /* overflow: hidden; */
  margin-top: 25px;
}

/* CAROUSEL */
.package-carousel {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.carousel::-webkit-scrollbar {
  display: none;
}

/* CARD */
.card {
  flex: 0 0 calc(25% - 15px);
  background: white;
  border-radius: 16px;
  border: 1px solid #eee;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: 10px;
}

/* 🔥 HOVER EFFECT */
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border-color: #6b2d8b;
}

/* IMAGE ZOOM */
.card img {
  width: 100% ;
  height: 150px;
  object-fit: cover;
  transition: transform 0.3s;
}

.card:hover img {
  transform: scale(1.05);
}

/* CONTENT */
.card-body {
  padding: 15px;
}

.price-box {
  display: flex;
  gap: 8px;
  margin: 10px 0;
}

.old {
  text-decoration: line-through;
  color: red;
}
.new {
  font-weight: bold;
  color: #1b2a6b;
}

.discount {
  background: gold;
  padding: 3px 8px;
  border-radius: 10px;
  font-size: 11px;
}

/* BUTTONS */
.card-btns {
  display: flex;
  gap: 10px;
}

.cart {
  flex: 1;
  background: #1b2a6b;
  color: white;
  border: none;
  padding: 8px;
  border-radius: 20px;
  transition: 0.3s;
}

.cart:hover {
  background: #6b2d8b;
}

.book {
  flex: 1;
  border: 1px solid #1b2a6b;
  background: white;
  padding: 8px;
  border-radius: 20px;
  transition: 0.3s;
}

.book:hover {
  background: #1b2a6b;
  color: white;
}

/* ARROWS */
.nav-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: 1px solid #ccc;
  cursor: pointer;
  z-index: 10;
}

.prev {
  left: -43px;
}
.next {
  right: -43px;
}
.card-btns {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

/* BASE */
.btn {
  flex: 1;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* ADD TO CART */
.btn-primary {
  background: linear-gradient(135deg, #1b2a6b, #253c99);
  color: white;
  box-shadow: 0 6px 14px rgba(27, 42, 107, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(27, 42, 107, 0.35);
}

/* BOOK NOW */
.btn-outline {
  border: 1.5px solid #1b2a6b;
  color: #1b2a6b;
  background: white;
  border: 1px solid #1b2a6b !important;
}

.btn-outline:hover {
  background: #1b2a6b;
  color: white;
}
.test-section {
  padding: 50px 20px;
  /* background: #f8f9ff; */
  max-width: 1200px;
  margin: 0 auto;
  max-width: 1540px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.view-all {
  background: #1b2a6b;
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
}

/* CAROUSEL */
.carousel-wrapper {
  position: relative;
  /* overflow: hidden; */
  margin-top: 20px;
}

.carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.carousel::-webkit-scrollbar {
  display: none;
}

/* CARD */
.test-card {
  flex: 0 0 calc(25% - 15px);
  background: white;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #eee;
  transition: 0.3s;
  margin-top: 10px;
}

.test-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.price-box {
  border: 1px dashed #ccc;
  padding: 10px;
  margin: 15px 0;
  text-align: center;
  font-weight: bold;
}

/* BUTTON SAME AS BEFORE */
.card-btns {
  display: flex;
  gap: 10px;
}

.btn {
  flex: 1;
  text-align: center;
  /* padding: 8px; */
  border-radius: 25px;
  text-decoration: none;
  font-size: 13px;
}

.btn-primary {
  background: #1b2a6b;
  color: white;
}

.btn-outline {
  border: 1px solid #1b2a6b;
  color: #1b2a6b;
}

/* ARROWS */
.nav-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: white;
  cursor: pointer;
  z-index: 10;
}

.prev {
  left: -43px;
}
.next {
  right: -43px;
}

.risk-section {
background: #1b2a6b0d;
    padding: 60px 0;
}

/* HEADER */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.view-all {
  background: #1b2a6b;
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 13px;
}

/* 🔥 PERFECT LEFT-RIGHT ALIGN */
.container {
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.view-all {
  background: #1b2a6b;
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 13px;
}

/* CARDS */
.risk-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* CARD */
.risk-card {
  text-align: center;
  flex: 1;
}

/* ICON CIRCLE */
.risk-icon {
  width: 90px;
  height: 90px;
  background: white;
  border-radius: 50%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.risk-icon img {
  width: 45px;
}

/* TEXT */
.risk-card h4 {
  margin: 12px 0;
  font-size: 14px;
}

/* BUTTON */
.risk-btn {
    display: inline-block;
    background: #1b2a6b;
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    font-family: 'Poppins';
}

/* HOVER */
.risk-card:hover .risk-icon {
  transform: scale(1.05);
}

.why-section {
  background: #e9edf4;
  padding: 60px 0;
}

/* 🔥 MAIN MAGIC (LEFT-RIGHT SAME SPACE) */
.container {
  max-width: 1200px; /* control width */
  margin: 0 auto; /* center align */
  padding: 0 20px; /* small side padding */
}

/* TITLE */
.section-title {
    font-size: 26px;
    font-weight: 600;
    color: #282828;
    margin-bottom: 27px;
    font-family: 'Poppins';
}

/* GRID */
.why-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.why-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #b5b5b5 !important;
    transition: 0.3s;
}

/* ICON */
.why-card i {
  font-size: 26px;
  color: #1b2a6b;
  margin-bottom: 12px;
}

/* TEXT */
.why-card h4 {
  font-size: 17px;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 15px;
  color: #555;
}

/* HOVER */
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.condition-section {
  background: #f8f9ff;
  padding: 50px 0;
  margin-top: 20px;
}

/* 🔥 MAIN FIX (same as image spacing) */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.view-all {
  background: #1b2a6b;
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
}

/* SCROLL */
.condition-scroll {
display: flex;
justify-content: space-between;
    gap: 37px;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.condition-scroll::-webkit-scrollbar {
  display: none;
}

/* CARD */
.condition-card {
  min-width: 110px;
  text-align: center;
  text-decoration: none;
  color: inherit;
}

/* ICON */
.condition-icon {
    width: 100px;
    height: 100px;
    background: #f1f1f1;
    border-radius: 14px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.condition-icon i {
  font-size: 36px;
  color: #333;
}

/* TEXT */
.condition-card p {
    margin-top: 10px;
    font-size: 16px;
    font-family: 'Poppins';
    font-weight: 500;
}

/* HOVER */
.condition-card:hover .condition-icon {
  background: #e6ebff;
}
.video-section {
  background: #f8f9ff;
  padding: 60px 0;
}

/* SAME SPACING */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}


/* WRAPPER */
.video-wrapper {
  position: relative;
}

/* SLIDER */
.video-slider {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  cursor: grab;
}

.video-slider::-webkit-scrollbar {
  display: none;
}

/* CARD */
.video-card {
  min-width: calc(33.33% - 17px);
}

/* IMAGE */
.video-thumb {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* PLAY */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: red;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TEXT */
.video-card p {
  margin-top: 10px;
  font-size: 14px;
}

/* ARROWS */
.nav-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: white;
  border: 1px solid #ccc;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.prev {
  left: -43px;
}
.next {
  right: -43px;
}
.review-section {
  background: #f8f9ff;
  padding: 60px 0;
}

/* SAME LEFT-RIGHT SPACE */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* TITLE */
.section-title {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

/* SLIDER */
.review-wrapper {
  position: relative;
}

.review-slider {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  cursor: grab;
}

.review-slider::-webkit-scrollbar {
  display: none;
}

/* CARD */
.review-card {
  min-width: calc(33.33% - 17px);
  background: white;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid #cfcfcf;
}

/* TEXT */
.review-card p {
  font-size: 14px;
  color: #444;
  margin-bottom: 20px;
}

/* USER */
.review-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-img {
  width: 45px;
  height: 45px;
  background: #ddd;
  border-radius: 50%;
}

/* NAME */
.review-user h4 {
  font-size: 14px;
}

/* GOOGLE */
.google {
  font-size: 12px;
  color: #666;
}

/* ARROWS */
.nav-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: white;
  border: 1px solid #ccc;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.prev {
  left: -43px;
}
.next {
  right: -43px;
}
.blog-section {
  background: #f8f9ff;
  padding: 60px 0;
  max-width: 1540px;
  width: 100%;
}

/* SAME LEFT-RIGHT SPACE */
.container {
  max-width: 1540px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.view-all {
  background: #1b2a6b;
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
}

/* WRAPPER */
.blog-wrapper {
  position: relative;
}

/* SLIDER */
.blog-slider {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  cursor: grab;
}

.blog-slider::-webkit-scrollbar {
  display: none;
}

/* CARD */
.blog-card {
  min-width: calc(25% - 18px);
  background: white;
  border-radius: 16px;
  padding: 15px;
  text-align: center;
  border: 1px solid black;
}

/* IMAGE */
.blog-card img {
  width: 100%;
  height: 120px;
  border-radius: 10px;
  object-fit: cover;
}

/* TITLE */
.blog-card h4 {
  font-size: 14px;
  margin: 12px 0;
  text-align: start;
}

/* BUTTON */
.blog-btn {
  display: inline-block;
  background: #1b2a6b;
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  margin-bottom: 10px;
}
.blog-footer{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* META */
.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #666;
}

/* ARROWS */
.nav-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: white;
  border: 1px solid #ccc;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.prev {
  left: -43px;
}
.next {
  right: -43px;
}
.jdar-footer {
  background: #ededed;
  color: #fff;
  padding: 50px 0 0px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* LOGO */
.footer-logo img {
  height: 50px;
  margin-bottom: 10px;
}

/* TEXT */
.footer-col p {
    font-size: 15px;
    color: #2a2a2a;
    font-family: 'Poppins';
    font-weight: 500;
}

/* HEADINGS */
.footer-col h4 {
  margin-bottom: 12px;
  font-size: 18px;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
color: #262626;
    text-decoration: none;
    font-size: 15px;
    font-family: 'Poppins';
    font-weight: 400;
}
/* BOTTOM */
.footer-bottom {
text-align: center;
    margin-top: 30px;
    border-top: 1px solid rgb(191 191 191);
    padding-top: 15px;
    font-size: 13px;
    padding-bottom: 25px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.about-hero {
  background: #f8f9ff;
  padding: 80px 0;
  position: relative;
}

/* 🔥 SAME LEFT-RIGHT SPACING */
.about-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 50px;
}

/* IMAGE */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 200px; /* oval shape */
  border: 6px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* CONTENT */
.about-content {
  flex: 1;
}

.about-content h1 {
  font-size: 48px;
  font-weight: 700;
  color: #2c3e50;
}

.about-content h1 span {
  color: #f4b400; /* yellow */
}

/* TAGLINE */
.about-content h3 {
  font-size: 28px;
  font-style: italic;
  color: #1b2a6b;
  margin: 15px 0;
}

/* TEXT */
.about-content p {
  font-size: 15px;
  color: #666;
  max-width: 400px;
}
.jdar-values-section {
  background: #f8f9ff;
  padding: 80px 0;
}

/* MAIN BOX */
.jdar-container {
  max-width: 1200px;
  margin: auto;
  padding: 40px;
  background: #d9e6ef;
  border-radius: 20px;
  text-align: center;
  position: relative;
}

/* TITLE */
.jdar-values-title {
  font-size: 28px;
  margin-bottom: 40px;
  color: #1b2a6b;
}

/* TOP LINE */
.jdar-line {
  position: absolute;
  top: 90px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: #1b2a6b;
}

/* GRID */
.jdar-values-grid {
  display: flex;
  justify-content: space-between;
}

/* ITEM */
.jdar-value-item {
  position: relative;
  text-align: center;
}

/* CONNECTOR LINE */
.jdar-connector {
  width: 2px;
  height: 40px;
  background: #1b2a6b;
  margin: auto;
}

/* CIRCLE */
.jdar-circle {
  width: 90px;
  height: 90px;
  border: 8px solid;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto;
  background: white;
}

/* ICON */
.jdar-circle img {
  width: 40px;
}

/* TEXT */
.jdar-value-item p {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #1b2a6b;
}
/* WRAPPER */
.jdar-mission-wrapper {
  background: #f5f5f5;
  padding: 80px 0;
}

/* CONTAINER */
.jdar-mission-container {
  max-width: 1200px;
  margin: auto;
  padding: 40px;
  background: #f2f2f2;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT IMAGE */
.jdar-mission-left img {
  width: 100%;
  max-width: 400px;
}

/* RIGHT CONTENT */
.jdar-mission-right {
  flex: 1;
}

.jdar-mission-heading {
  font-size: 28px;
  margin-bottom: 15px;
}

.jdar-mission-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 30px;
  max-width: 500px;
}

/* GRID */
.jdar-mission-grid {
  display: flex;
  gap: 50px;
}

/* POINT */
.jdar-mission-point {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

/* ICON */
.jdar-mission-icon {
  background: #f4b400;
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* MOBILE */
@media (max-width: 768px) {
  .jdar-mission-container {
    flex-direction: column;
    text-align: center;
  }

  .jdar-mission-grid {
    flex-direction: column;
    align-items: center;
  }
}
.jdar-journey-wrapper {
  padding: 80px 0;
  background: #f8f9ff;
}

/* CONTAINER */
.jdar-journey-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* TITLE */
.jdar-journey-title {
  font-size: 28px;
  margin-bottom: 50px;
}

/* WAVE LINE */
.jdar-journey-line {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-top: 50px;
}

/* GRADIENT LINE */
.jdar-journey-line::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  height: 20px;
  background: linear-gradient(90deg, #6ec1e4, #4a2c8f);
  border-radius: 50px;
  z-index: 0;
}

/* STEP */
.jdar-journey-step {
  position: relative;
  width: 14%;
  z-index: 1;
}

/* CIRCLE */
.jdar-journey-circle {
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 50%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 8px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(45deg, #6ec1e4, #4a2c8f) border-box;
}

/* ICON */
.jdar-journey-circle img {
  width: 40px;
}

/* DOTS */
.jdar-journey-dots {
  width: 6px;
  height: 40px;
  margin: 10px auto;
  background: repeating-linear-gradient(
    to bottom,
    #333,
    #333 4px,
    transparent 4px,
    transparent 8px
  );
}

/* YEAR */
.jdar-journey-step h4 {
  font-size: 20px;
  color: #1b2a6b;
}

/* TEXT */
.jdar-journey-step p {
  font-size: 13px;
  color: #555;
}
.jdar-customer-wrapper {
  padding: 80px 0;
  background: #f8f9ff;
}

/* CONTAINER */
.jdar-customer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT */
.jdar-customer-left {
  flex: 1;
}

.jdar-customer-title {
  font-size: 32px;
  margin-bottom: 20px;
}

.jdar-customer-tag {
  display: inline-block;
  background: #f4b400;
  padding: 8px 15px;
  font-weight: 600;
  margin-bottom: 30px;
}

/* GRID */
.jdar-customer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* ITEM */
.jdar-customer-item {
  display: flex;
  gap: 15px;
}

/* ICON */
.jdar-customer-icon {
  width: 60px;
  height: 60px;
  background: #f4b400;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #1b2a6b;
}

/* TEXT */
.jdar-customer-item h4 {
  margin-bottom: 5px;
}

.jdar-customer-item p {
  font-size: 14px;
  color: #555;
}

/* RIGHT IMAGE */
.jdar-customer-right img {
  width: 100%;
  max-width: 450px;
}
.jdar-contact-banner {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* OVERLAY */
.jdar-contact-overlay {
  background: rgba(255, 255, 255, 0.85);
  height: 100%;
  display: flex;
  align-items: center;
}

/* CONTAINER */
.jdar-contact-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* TITLE */
.jdar-contact-title {
  font-size: 36px;
  font-weight: 700;
  color: #1b2a6b;
  position: relative;
  padding-left: 15px;
}

/* LEFT LINE */
.jdar-contact-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 4px;
  height: 30px;
  background: linear-gradient(#7b2ff7, #f107a3);
}

/* BREADCRUMB */
.jdar-contact-breadcrumb {
  margin-top: 10px;
  font-size: 14px;
}

.jdar-contact-breadcrumb a {
  color: #1b2a6b;
  text-decoration: none;
}

.jdar-contact-breadcrumb span {
  margin: 0 5px;
  color: #f107a3;
}
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* SECTION */
.jdar-contact-banner {
  height: 230px;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* OVERLAY */
.jdar-contact-overlay {
  background: rgba(255, 255, 255, 0.85);
  height: 100%;
  display: flex;
  align-items: center;
}

/* CONTAINER */
.jdar-contact-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* TITLE */
.jdar-contact-title {
  font-size: 38px;
  font-weight: 700;
  color: #1b2a6b;
  position: relative;
  padding-left: 18px;
}

/* LEFT COLOR LINE */
.jdar-contact-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 5px;
  height: 32px;
  background: linear-gradient(180deg, #7b2ff7, #f107a3);
  border-radius: 5px;
}

/* BREADCRUMB */
.jdar-contact-breadcrumb {
  margin-top: 10px;
  font-size: 15px;
}

.jdar-contact-breadcrumb a {
  text-decoration: none;
  color: #1b2a6b;
  font-weight: 500;
}

.jdar-contact-breadcrumb span {
  margin: 0 6px;
  color: #f107a3;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .jdar-contact-title {
    font-size: 28px;
  }
}
/* SECTION */
.jdar-connect-wrapper {
  background: #eef3f9;
  padding: 60px 0;
}

/* CONTAINER */
.jdar-connect-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* TITLE */
.jdar-connect-title {
  font-size: 32px;
  font-weight: 700;
  color: #0d2b5c;
  margin-bottom: 40px;
}

/* GRID */
.jdar-connect-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
}

/* CARD */
.jdar-connect-card {
  background: #fff;
  padding: 40px 30px;
  width: 320px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.jdar-connect-card:hover {
  transform: translateY(-5px);
}

/* ICON */
.jdar-connect-icon {
  font-size: 40px;
  color: #7b1fa2;
  margin-bottom: 20px;
}

/* HEADING */
.jdar-connect-card h3 {
  font-size: 22px;
  color: #0d2b5c;
  margin-bottom: 15px;
}

/* TEXT */
.jdar-connect-card p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .jdar-connect-grid {
    flex-direction: column;
    align-items: center;
  }
}
/* SECTION */
.jdar-contact-section {
  padding: 80px 0;
  background: #f8f9ff;
}

/* CONTAINER */
.jdar-contact-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
}

/* LEFT BOX */
.jdar-working-box {
  flex: 1;
}

.jdar-working-box h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

/* TABLE */
.jdar-working-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.jdar-working-table th,
.jdar-working-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}

.jdar-working-table th {
  background: #f1f1f1;
}

/* RIGHT BOX */
.jdar-form-box {
  flex: 1.2;
}

.jdar-form-tag {
  color: #b0005b;
  font-size: 12px;
  letter-spacing: 2px;
}

.jdar-form-title {
  font-size: 28px;
  margin: 10px 0 30px;
}

/* FORM */
.jdar-contact-form input,
.jdar-contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  margin-bottom: 20px;
  border-radius: 4px;
}

.jdar-row {
  display: flex;
  gap: 20px;
}


.jdar-contact-form textarea {
  height: 120px;
  resize: none;
}

/* CAPTCHA */
.jdar-captcha {
  border: 1px solid #ddd;
  padding: 12px;
  margin-bottom: 20px;
  background: #fafafa;
}

/* BUTTON */
.jdar-contact-form button {
  background: #b0005b;
  color: #fff;
  padding: 12px 25px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.jdar-contact-form button:hover {
  background: #900047;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .jdar-contact-container {
    flex-direction: column;
  }

  .jdar-row {
    flex-direction: column;
  }
}
.jdar-map-section {
  margin-top: 50px;
}

/* FULL WIDTH */
.jdar-map-container {
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.jdar-map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.jdar-circle i {
  font-size: 32px;
  color: #1b2a6b;
}
/* ICON */
.jdar-journey-circle i {
  font-size: 32px;
  color: #1b2a6b;
}
.review-user {
  display: flex;
  align-items: center;
}

/* LEFT PART */
.user-info {
  flex: 1;
  margin-left: 10px;
}

/* RIGHT IMAGE */
.review-logo img {
  width: 60px;
}
.review-logo img {
  width: 80px;
  border-radius: 6px;
  margin-left: 70px;
}
.user-img img {
  width: 45px; /* size */
  height: 45px;
  border-radius: 50%; /* round image */
  object-fit: cover; /* crop properly */
  display: block;
}
.call-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: #1b2a6b;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
}

.call-btn i {
  color: white;
  font-size: 16px;
}

/* HOVER */
.call-btn:hover {
  color: #000;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: #f4f6f9;
  color: #1a1a1a;
}

.pg {
  padding: 28px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Hero Banner */
.hero-band {
  background: #0d2a52;
  border-radius: 12px;
  padding: 32px 28px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}

.hero-band::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 200px;
  height: 200px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 50%;
}

.hero-tag {
  display: inline-block;
  background: rgba(201, 168, 76, 0.18);
  color: #c9a84c;
  font-size: 11px;
  padding: 3px 12px;
  border-radius: 20px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  margin-bottom: 12px;
}

.hero-band h1 {
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 8px;
}

.hero-band p {
  color: #9ab4d4;
  font-size: 16px;
  line-height: 1.6;
  max-width: 520px;
}

.hero-stats {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.hstat {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hstat-num {
  color: #c9a84c;
  font-size: 18px;
  font-weight: 700;
}

.hstat-lbl {
  color: #8aaac8;
  font-size: 11px;
  margin-top: 2px;
}

.section-sub {
  font-size: 18px;
  color: #666;
  margin-bottom: 16px;
}

.accent {
  color: #c9a84c;
}

/* Test Cards Grid */
.grid3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.tcard {
  background: #fff;
  border: 1px solid #e5e8ef;
  border-radius: 12px;
  padding: 18px;
  position: relative;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.tcard:hover {
  border-color: #c9a84c;
  box-shadow: 0 4px 16px rgba(13, 42, 82, 0.08);
}

.tcard-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 10px;
  padding: 3px 9px;
  border-radius: 12px;
  font-weight: 600;
}

.badge-pop {
  background: #fff8e6;
  color: #854f0b;
  border: 1px solid #ef9f27;
}

.badge-new {
  background: #e6f1fb;
  color: #185fa5;
  border: 1px solid #85b7eb;
}

.tcard-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #e6f1fb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.tcard-icon svg {
  width: 18px;
  height: 18px;
}

.tcard h3 {
  font-size: 14px;
  font-weight: 600;
  color: #0d2a52;
  margin-bottom: 5px;
}

.tcard p {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 10px;
}

.tcard-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-main {
  font-size: 18px;
  font-weight: 700;
  color: #0d2a52;
}

.price-old {
  font-size: 12px;
  color: #aaa;
  text-decoration: line-through;
}

.tcard-includes {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #f0f2f6;
}

.includes-lbl {
  font-size: 11px;
  color: #888;
  margin-bottom: 5px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.tag {
  font-size: 10px;
  background: #f4f6f9;
  color: #555;
  padding: 2px 8px;
  border-radius: 20px;
  border: 1px solid #e5e8ef;
}

.book-btn {
  width: 100%;
  margin-top: 12px;
  background: #0d2a52;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.book-btn:hover {
  background: #1a4080;
}

/* Process Steps */
.process-row {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.proc-step {
  flex: 1;
  min-width: 120px;
  background: #fff;
  border: 1px solid #e5e8ef;
  padding: 18px;
  position: relative;
  text-align: center;
}

.proc-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  color: #c9a84c;
  font-size: 16px;
  z-index: 1;
  background: #fff;
  padding: 2px 4px;
}

.proc-step:first-child {
  border-radius: 12px 0 0 12px;
}

.proc-step:last-child {
  border-radius: 0 12px 12px 0;
}

.proc-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #0d2a52;
  color: #c9a84c;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
}

.proc-step h4 {
  font-size: 13px;
  font-weight: 600;
  color: #0d2a52;
  margin-bottom: 3px;
}

.proc-step p {
  font-size: 11px;
  color: #888;
}

/* Info Cards */
.info-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}

.info-card {
  background: #fff;
  border: 1px solid #e5e8ef;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.info-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c9a84c;
  margin-top: 5px;
  flex-shrink: 0;
}

.info-card h4 {
  font-size: 13px;
  font-weight: 600;
  color: #0d2a52;
  margin-bottom: 4px;
}

.info-card p {
  font-size: 12px;
  color: #666;
  line-height: 1.55;
}

/* Booking Form */
.booking-section {
  background: #fff;
  border: 1px solid #e5e8ef;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-size: 12px;
  color: #666;
  font-weight: 500;
}

.form-group input,
.form-group select {
  border: 1px solid #d5dae5;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 13px;
  color: #1a1a1a;
  background: #fff;
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #0d2a52;
}

.submit-btn {
  background: #c9a84c;
  color: #412402;
  border: none;
  border-radius: 8px;
  padding: 11px 28px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.submit-btn:hover {
  background: #ef9f27;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .process-row {
    flex-direction: column;
  }

  .proc-step {
    border-radius: 8px;
    margin-bottom: 8px;
  }

  .proc-step::after {
    display: none;
  }
}
/* CARD BODY */
.card-body {
  padding: 15px;
  font-family: "Segoe UI", sans-serif;
}

/* TITLE */
.card-body h4 {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin-bottom: 7px;
  left: 10px;
  margin-left: 4px;
}
.card-body h4 a{
text-decoration: none;
color: #424242;
}
/* SUB TEXT */
.card-body p {
  font-size: 13px;
  color: #555;
  margin-bottom: 10px;
  margin-left: 3px;
}

/* GENDER TEXT */
.card-body .gender {
  font-size: 12px;
  color: #777;
  margin-bottom: 10px;
}

/* COMPARE */
.card-body label {
  font-size: 13px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  margin-left: 4px;
}

/* PRICE BOX */
.price-box {
  border: 1px dashed #bbb;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  justify-content: space-between;
}

/* OLD PRICE */
.price-box .old {
  color: red;
  text-decoration: line-through;
  font-size: 14px;
}

/* NEW PRICE */
.price-box .new {
  font-size: 16px;
  font-weight: bold;
  color: #222;
}

/* DISCOUNT */
.price-box .discount {
  background: #ffcc00;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 6px;
  font-weight: 600;
}
.client-section {
  padding: 50px 0;
  background: white;
}

.client-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* WRAPPER */
.client-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
  /* overflow: hidden; */
}

/* 🔥 SLIDER FIX */
.client-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto; /* ✅ MUST */
  scroll-behavior: smooth;
  padding: 10px;
}

/* HIDE SCROLLBAR */
.client-slider::-webkit-scrollbar {
  display: none;
}

/* CARD */
.client-card {
  min-width: 180px;
  height: auto!important;
  background: #fff;
  border: 1px solid #d12c7a;
  border-radius: 12px;
  display: block !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; /* ✅ IMPORTANT */
}

/* IMAGE */
.client-card img {
  max-width: 80%;
  max-height: 140%;
  object-fit: contain;
}

/* BUTTON */
.client-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #ccc;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.client-btn.prev {
  left: -43px;
}
.client-btn.next {
  right: -43px;
}

/* CALL BUTTON BASE */
.call-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 25px;
  background: #7c3aed;
  border: 2px solid #7c3aed;
  color: #1b2a6b;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  animation: pulseGlow 1.5s infinite;
}

/* ICON */

/* 🔥 GLOW ANIMATION */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0px rgba(124, 58, 237, 0.6);
  }
  50% {
    box-shadow: 0 0 12px rgba(124, 58, 237, 0.8);
  }
  100% {
    box-shadow: 0 0 0px rgba(124, 58, 237, 0.6);
  }
}

/* 🔥 HOVER EFFECT */
.call-btn:hover {
  background: #7c3aed;
  color: #fff;
  transform: scale(1.05);
}

.call-btn:hover i {
  color: #fff;
}
.top-actions {
  padding: 8px 20px;
  display: flex;
  gap: 30px;
  align-items: center;
}

/* LINKS */
.top-action {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #fff; /* ✅ WHITE TEXT */
  font-size: 13px; /* ✅ SIZE */
  font-weight: 700;
}

/* ICON */
.top-action i {
  color: #ffcc00; /* 🔥 yellow icon (highlight look) */
  font-size: 14px;
}

/* HOVER */
.top-action:hover {
  color: #ffcc00;
}
.top-bar {
  background: #1b2a6b;
  color: #fff;
  overflow: hidden;
  padding: 6px 0;
}

/* WRAPPER */
.marquee {
  width: 100%;
  overflow: hidden;
      display: flex;
    justify-content: center;
}

/* TRACK */
.marquee-track {
  display: flex;
  width: max-content;
  animation: scrollLoop 30s linear infinite;
}

/* CONTENT */
.marquee-content {
    white-space: nowrap;
    font-size: 15px;
    padding-right: 50px;
    font-family: 'Poppins';
}
.marquee-content i{
  margin-right: 7px;
  margin-left: 12px;
  font-size: 13px;
}
/* LOOP ANIMATION */
@keyframes scrollLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.nav-link a {
text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.jdar-filter-section {
  padding: 30px 0;
  background: #f8f8f8;
}

.jdar-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.jdar-filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.breadcrumb {
  font-size: 14px;
  color: #555;
}

/* TOGGLE BUTTON */
.toggle-btn {
  background: #eee;
  border-radius: 30px;
  overflow: hidden;
}

.toggle-btn button {
  padding: 8px 20px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  background: transparent;
}

.toggle-btn .active {
  background: linear-gradient(90deg, #6a1b9a, #2e7d32); /* JDAR theme */
  color: #fff;
}

/* SLIDER */
.jdar-filter-wrapper {
  position: relative;
}

.jdar-filter-slider {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding: 10px;
}

.jdar-filter-slider::-webkit-scrollbar {
  display: none;
}

/* CARD */
.filter-card {
  min-width: 110px;
  height: 110px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #ddd;
  text-align: center;
  padding: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.filter-card img {
  width: 40px;
  margin-bottom: 8px;
}

.filter-card p {
  font-size: 13px;
  font-weight: 500;
}

/* CLEAR FILTER */
.filter-card.clear {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #6a1b9a;
}

/* HOVER */
.filter-card:hover {
  border-color: #6a1b9a;
  transform: translateY(-5px);
}

/* NAV BUTTON */
.filter-btn {
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #ccc;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
}

.filter-btn.prev {
  left: -10px;
}
.filter-btn.next {
  right: -10px;
}
.jdar-breadcrumb-section {
  background: #dfdfdf; /* light grey bg */
  padding: 12px 0;
}

.jdar-breadcrumb-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* LINKS */
.breadcrumb-link {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
}

/* SEPARATOR */
.breadcrumb-sep {
color: #000000;
    font-size: 15px;
}

/* HOVER */
.breadcrumb-link:hover {
  color: #6a1b9a; /* JDAR theme purple */
}
.jdar-top-toggle {
  background: #f2f2f2;
  padding: 15px 0;
}

.jdar-container {
  max-width: 1200px;
  margin: auto;
}

/* TOP BAR ALIGN RIGHT */
.jdar-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* TOGGLE PILL */
.jdar-toggle {
  display: flex;
  background: #392366; /* yellow */
  border-radius: 40px;
  padding: 4px;
  width: fit-content;
}

/* BUTTON */
.jdar-btn {
  border: none;
  padding: 10px 35px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  background: transparent;
  color: #000;
}

/* ACTIVE (BLUE) */
.jdar-btn.active {
  background: #2d4d66;
  color: #fff;
}
.jdar-top-toggle {
  padding: 15px 0;
}

.jdar-top-toggle .jdar-toggle {
  margin-left: auto;
  margin-right: 40px;
}
/* SECTION */
.jdar-category-section {
  padding: 20px 0;
  background: #f5f5f5;
}

/* WRAPPER */
.jdar-category-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

/* 🔥 SLIDER FIX */
.jdar-category-slider {
  display: flex;
  gap: 15px;
  overflow-x: auto; /* MUST */
  scroll-behavior: smooth;
  padding: 10px;
  cursor: grab;
}

.jdar-category-slider:active {
  cursor: grabbing;
}

/* HIDE SCROLLBAR */
.jdar-category-slider::-webkit-scrollbar {
  display: none;
}

/* CARD */
.cat-card {
  min-width: 120px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  text-align: center;
  padding: 10px;
  flex-shrink: 0; /* IMPORTANT */
  transition: 0.3s;
}

.cat-card img {
  width: 40px;
  margin-bottom: 8px;
}

.cat-card p {
  font-size: 13px;
}

/* HOVER */
.cat-card:hover {
  border-color: #6a1b9a;
  transform: translateY(-5px);
}

/* BUTTON */
.cat-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #ccc;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.cat-btn.prev {
  left: -10px;
}
.cat-btn.next {
  right: -10px;
}
.jdar-pack-section {
  padding: 50px 0;
  background: #f5f5f5;
}

.jdar-pack-container {
  max-width: 1540px;
  margin: auto;
}

.jdar-pack-heading {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 25px;
}

/* GRID */
.jdar-pack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.jdar-pack-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* 🔥 HOVER EFFECT */
.jdar-pack-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* IMAGE */
.jdar-pack-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* BODY */
.jdar-pack-body {
  padding: 15px;
}

.jdar-pack-body h4 {
font-size: 15px;
    font-weight: 700;
    min-height: 47px;
}

.jdar-pack-body p {
  font-size: 13px;
  color: #666;
  margin: 8px 0;
}

/* CHECKBOX */
.compare-check {
  font-size: 13px;
  display: block;
  margin-bottom: 10px;
}

/* PRICE BOX */
.jdar-pack-price {
  border: 1px dashed #bbb;
  padding: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 10px 0;
}

.old {
  color: red;
  text-decoration: line-through;
}

.new {
  font-weight: 600;
}

.discount {
  background: #ffcc00;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
}

/* BUTTONS */
.jdar-pack-btns {
  display: flex;
  gap: 10px;
}

/* ADD BUTTON */
.jdar-add-btn {
  flex: 1;
  background: #2d4d66;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.jdar-add-btn:hover {
  background: #1f364a;
}

/* BOOK BUTTON */
.jdar-book-btn {
  flex: 1;
  border: 1px solid #2d4d66;
  text-align: center;
  padding: 10px;
  border-radius: 25px;
  text-decoration: none;
  color: #2d4d66;
  transition: 0.3s;
}

.jdar-book-btn:hover {
  background: #2d4d66;
  color: #fff;
}
.jdar-breadcrumb {
  background: #f5f5f5;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
}

.jdar-breadcrumb-inner {
  max-width: 1200px;
  margin: auto;
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* LINKS */
.jdar-breadcrumb-inner a {
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

.jdar-breadcrumb-inner a:hover {
  color: #6a1b9a;
}

/* ARROW */
.jdar-breadcrumb-inner span {
  color: #888;
}

/* LAST ACTIVE TEXT */
.jdar-breadcrumb-inner .active {
  font-weight: 600;
  color: #000;
}
/* ═══════════════════════════════
   BREADCRUMB
═══════════════════════════════ */
.jdar-breadcrumb {
  background: #f5f7fa;
  border-bottom: 1px solid #e8ecf0;
  padding: 0.6rem 0;
}

.jdar-breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #666;
}

.jdar-breadcrumb-inner a {
  color: #555;
  text-decoration: none;
}

.jdar-breadcrumb-inner a:hover {
  color: #1a3c5e;
}
.jdar-breadcrumb-inner .active {
  color: #1a3c5e;
  font-weight: 500;
}

/* ═══════════════════════════════
   PRODUCT SECTION
═══════════════════════════════ */
.jdar-product-section {
  background: #fff;
  padding: 2rem 0;
}

.jdar-product-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 1.5rem;
  align-items: start;
}

/* ── LEFT SIDE ── */
.jdar-product-card {
  border: 1px solid #e0e6ed;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.jdar-product-header {
  padding: 1.25rem 1.5rem 1rem;
  border-bottom: 1px solid #eef0f4;
}

.jdar-product-header h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a3c5e;
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
}

.jdar-product-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 1.25rem;
  border-right: 1px solid #eef0f4;
}

.info-item:last-child {
  border-right: none;
}

.info-item i {
  font-size: 1.1rem;
  color: #c8a030;
  flex-shrink: 0;
}

.info-item p {
  font-size: 17px;
  color: #777;
  line-height: 1.5;
  margin: 0;
}

.info-item p b {
  color: #1a3c5e;
  font-weight: 600;
  display: block;
}

/* ── OVERVIEW ── */
.jdar-overview {
  border: 1px solid #e0e6ed;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}

.jdar-overview h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a3c5e;
  margin-bottom: 0.75rem;
}

.overview-text {
  font-size: 13.5px;
  color: #555;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.overview-text.expanded {
  display: block;
  -webkit-line-clamp: unset;
}

.read-more-btn {
  margin-top: 0.75rem;
  background: none;
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 13px;
  color: #444;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.18s;
}

.read-more-btn:hover {
  border-color: #1a3c5e;
  color: #1a3c5e;
}

/* ═══════════════════════════════
   RIGHT SIDE — PRICE BOX
═══════════════════════════════ */
.jdar-product-right {
  position: sticky;
  top: 1rem;
}

.jdar-price-box {
  border: 1px solid #e0e6ed;
  border-radius: 12px;
  padding: 1.5rem;
  background: #fff;
  position: relative;
  margin-bottom: 1rem;
}

.offer-badge {
  position: absolute;
  top: -14px;
  right: 16px;
  background: #e74c3c;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

.jdar-price-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a3c5e;
  text-align: center;
  margin-bottom: 0.25rem;
}

.jdar-price-box .offer-text {
  text-align: center;
  font-size: 12px;
  color: #888;
  margin-bottom: 0.75rem;
}

.jdar-price-box .price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.jdar-price-box .price .old {
  font-size: 1rem;
  color: #e74c3c;
  text-decoration: line-through;
}

.jdar-price-box .price .new {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a3c5e;
}

.jdar-price-box .btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 1rem;
}

.btn {
  padding: 0.65rem 1rem;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.18s ease;
  border: none;
  display: inline-block;
}

.btn-primary {
  background: #1a3c5e;
  color: #fff;
}

.btn-primary:hover {
  background: #142e48;
}

.btn.outline {
  background: #fff;
  color: #1a3c5e;
  border: 2px solid #1a3c5e;
}

.btn.outline:hover {
  background: #1a3c5e;
  color: #fff;
}

.download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #17b794;
  color: #fff;
  text-decoration: none;
  padding: 0.65rem;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  transition: background 0.18s;
}

.download-btn:hover {
  background: #13a382;
}

/* ── HELP BOX ── */
.jdar-help-box {
  border: 1px solid #e0e6ed;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  background: #fff;
}

.jdar-help-box h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a3c5e;
  margin-bottom: 0.4rem;
}

.jdar-help-box p {
  font-size: 12.5px;
  color: #777;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.call-btn {
  background: #1a3c5e;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1.5rem;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.18s;
}

.call-btn:hover {
  background: #142e48;
}

/* ═══════════════════════════════
   DETAIL WRAPPER (FAQ + OFFER)
═══════════════════════════════ */
.jdar-detail-wrapper {
  background: #f5f7fa;
  padding: 2rem 0;
}

.jdar-detail-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 279px !important;
  gap: 1.5rem;
  align-items: start;
}

/* ── BOX ── */
.jdar-box {
  background: #fff;
  border: 1px solid #e0e6ed;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.jdar-box-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #eef0f4;
}

.jdar-box-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: black;
}

/* ── FAQ ── */
.jdar-faq {
  padding: 0.5rem 0;
}

.faq-item {
  border-bottom: 1px solid #f0f3f6;
  padding: 0 1.5rem;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
  font-size: 13.5px;
  font-weight: 500;
  color: #1a3c5e;
  cursor: pointer;
  user-select: none;
  transition: color 0.15s;
}

.faq-question span {
  font-size: 1.2rem;
  color: #1a3c5e;
  font-weight: 400;
  transition: transform 0.2s;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  padding-bottom: 0.9rem;
}

.faq-item.active .faq-answer {
    display: block;
    font-size: 16px;
    font-weight: 500;
}

/* ── RIGHT SIDE ── */
.jdar-offer {
  background: linear-gradient(135deg, #1a3c5e 0%, #17b794 100%);
  border-radius: 12px;
  padding: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jdar-offer h3 {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.2;
}

.jdar-offer p {
  font-size: 13px;
  opacity: 0.9;
  margin-top: 4px;
}

.jdar-callback {
  background: #fff8e6;
  border: 1px solid #f5d580;
  border-radius: 12px;
  padding: 0.9rem 1.25rem;
  font-size: 13.5px;
  font-weight: 600;
  color: #b07d10;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 1rem;
  transition: background 0.18s;
}

.jdar-callback:hover {
  background: #070606;
}
.jdar-callback i {
  font-size: 1rem;
}

/* ── MOST BOOKED LIST ── */
.jdar-box.small {
  padding: 1.25rem 1.5rem;
}

.jdar-box.small h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a3c5e;
  margin-bottom: 1rem;
}

.jdar-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12.5px;
  color: #333;
  padding: 8px 12px;
  background: #f5f7fa;
  border-radius: 8px;
}

.list-item .price {
  font-weight: 700;
  color: #1a3c5e;
  white-space: nowrap;
}

.list-item button {
  background: #1a3c5e;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11.5px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s;
}

.list-item button:hover {
  background: #142e48;
}

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 900px) {
  .jdar-product-container,
  .jdar-detail-container {
    grid-template-columns: 1fr;
  }

  .jdar-product-right {
    position: static;
  }

  .jdar-product-info {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-item:nth-child(2) {
    border-right: none;
  }
  .info-item {
    border-bottom: 1px solid #eef0f4;
  }
  .info-item:nth-child(3),
  .info-item:nth-child(4) {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .jdar-product-info {
    grid-template-columns: 1fr;
  }
  .info-item {
    border-right: none;
    border-bottom: 1px solid #eef0f4;
  }
  .info-item:last-child {
    border-bottom: none;
  }
  .jdar-price-box .btns {
          grid-template-columns: 1fr 1fr;
  }
}

/* BOX */
.jdar-box {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 20px;
  padding: 15px;
}

.jdar-box.small h4 {
  margin-bottom: 10px;
}

/* HEADER */
.jdar-box-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.jdar-tags span {
  padding: 5px 10px;
  border: 1px solid #ccc;
  margin-left: 5px;
  border-radius: 6px;
  font-size: 12px;
}

.jdar-tags .active {
  background: #2d4d66;
  color: #fff;
}

/* GRID */
.jdar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 15px;
}

.jdar-item {
  padding: 12px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

/* FAQ */
.faq-item {
  border-top: 1px solid #eee;
}

.faq-question {
  padding: 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.faq-answer {
  display: none;
  padding: 10px;
  font-size: 14px;
  color: #555;
}

.faq-item.active .faq-answer {
  display: block;
}

/* RIGHT SIDE */
.jdar-offer {
  background: #4bb;
  border-radius: 12px;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.jdar-offer img {
  width: 100px;
}

.jdar-callback {
  background: #2d4d66;
  color: #fff;
  padding: 12px;
  margin: 15px 0;
  border-radius: 8px;
  cursor: pointer;
}

/* LIST */
.jdar-list .list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid #eee;
}

.jdar-list button {
  background: #2d4d66;
  color: #fff;
  border: none;
  padding: 5px 10px;
  border-radius: 6px;
}
.jdar-td-item {
  border-top: 1px solid #eee;
}

.jdar-td-question {
  padding: 12px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.jdar-td-answer {
  display: none;
  padding: 10px;
  font-size: 14px;
  color: #555;
}

.jdar-td-item.active .jdar-td-answer {
  display: block;
}
.jdar-blog-section {
  padding: 40px 0;
  background: #f5f5f5;
}

.jdar-blog-container {
  max-width: 1200px;
  margin: auto;
}

.jdar-blog-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.jdar-blog-wrapper {
  position: relative;
}

.jdar-blog-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.jdar-blog-slider::-webkit-scrollbar {
  display: none;
}

/* CARD */
.jdar-blog-card {
  min-width: 260px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  transition: 0.3s;
}

.jdar-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.jdar-blog-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.jdar-blog-card p {
  font-size: 14px;
  padding: 10px;
  color: #333;
}

.jdar-blog-card span {
  display: block;
  font-size: 12px;
  color: #777;
  padding: 0 10px 10px;
}

/* NAV BUTTON */
.jdar-blog-nav {
  position: absolute;
  top: 40%;
  background: #fff;
  border: 1px solid #ddd;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
}

.jdar-blog-nav.prev {
  left: -15px;
}

.jdar-blog-nav.next {
  right: -15px;
}
.jdar-title {
  text-align: center;
  margin: 20px 0;
}

.jdar-filter-bar {
  display: flex;
  gap: 15px;
  background: #1b2a6b;
  padding: 15px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}

/* INPUT */
.jdar-filter-bar input,
.jdar-filter-bar select {
  padding: 10px;
  border-radius: 6px;
  border: none;
}

/* DROPDOWN */
.jdar-dropdown {
  position: relative;
}

.jdar-dropdown-list {
  display: none;
  position: absolute;
  background: #fff;
  width: 200px;
  top: 45px;
  border: 1px solid #ddd;
}

.jdar-dropdown-list div {
  padding: 10px;
  cursor: pointer;
}

.jdar-dropdown-list div:hover {
  background: #2d4d66;
  color: #fff;
}

/* BLOG GRID */
.jdar-blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.blog-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}
.jdar-cart-popup {
  position: absolute;
  right: 20px;
  top: 70px;
  width: 300px;
  background: #e8dfc6;
  border-radius: 10px;
  padding: 15px;
  display: none;
  z-index: 999;
}

/* HEADER */
.jdar-cart-header {
  font-weight: bold;
  margin-bottom: 10px;
}

/* ITEM */
.cart-item {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
}

/* QTY */
.qty-box {
  display: flex;
  gap: 5px;
}

.qty-box button {
  width: 25px;
  height: 25px;
}

/* FOOTER */
.jdar-cart-footer {
  margin-top: 10px;
}

.checkout-btn {
  display: block;
  background: #1f3d5a;
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 25px;
  text-decoration: none;
  margin-top: 10px;
}
.card-btns {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.btn {
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 14px;
  text-decoration: none;

  display: flex; /* 🔥 IMPORTANT */
  align-items: center; /* vertical center */
  justify-content: center; /* horizontal center */

  height: 42px; /* fixed height */
  min-width: 120px; /* equal width feel */
  transition: 0.3s;
}

/* BLUE BUTTON */
.primary-btn {
  background: #0d3b66;
  color: #fff;
  border: none;
}

.primary-btn:hover {
  background: #0b2f52;
}

/* OUTLINE BUTTON */
.outline-btn {
  border: 1px solid #ccc;
  color: #333;
  background: transparent;
}

.outline-btn:hover {
  background: #f2f2f2;
}
.jdar-category-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
}

.jdar-category-slider::-webkit-scrollbar {
  display: none;
}

.cat-card {
  min-width: 150px;
  flex: 0 0 auto;
  text-align: center;
}

.cat-btn {
  cursor: pointer;
}
#checkoutSectionJDAR {
padding: 44px 0px;
  background: #f5f7fb;
      display: flex;
    justify-content: center;
}

.checkout-container-jdar {
max-width: 1540px;
    width: 100%;
  display: flex;
  gap: 25px;
  justify-content: space-between;
}

/* LEFT */
.cart-box-jdar {
background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid #cdcdcd;
    font-family: "DM Sans", sans-serif;
}

.cart-box-jdar table {
  width: 100%;
  border-collapse: collapse;
}

.cart-box-jdar th {
  background: #f1f3f6;
}

.cart-box-jdar th,
.cart-box-jdar td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

/* BUTTONS */
.qty-btn-jdar {
  padding: 5px 10px;
  background: #0d3b66;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.remove-btn-jdar {
  background: red;
  color: #fff;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}

/* RIGHT */
.billing-box-jdar {
width: 100%;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #cdcdcd;
}

.billing-box-jdar h2 {
color: #424242;
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 18px;
}

.form-row-jdar {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.form-row-jdar input,
.form-row-jdar select,
.billing-box-jdar textarea {
    font-size: 14px;
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #c5c5c5;
    padding: 16px;
    margin-bottom: 7px;
    color: #626262;
}

.billing-box-jdar textarea {
  height: 70px;
}

/* SUMMARY */
.summary-jdar {
    margin-top: 15px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
}
.summary-jdar p{
  margin-top: 15px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    color: #3c3c3c;
}
.summary-jdar p span{
  margin-left: 5px;
}
/* BUTTON */
#payBtnJDAR {
width: 100%;
    margin-top: 15px;
    background: #1b2a6b;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Poppins';
    font-size: 15px;
}
/* FOOTER BOX */
.cart-footer-jdar {
  margin-top: 15px;
  padding-top: 12px;
  border-top: 1px solid #eee;
}

/* TOTAL ROW */
.cart-total-jdar {
  display: flex;
  justify-content: space-between;
  align-items: center;

  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* PRICE STYLE */
.price-jdar {
  color: #8a1c6d;
  font-size: 18px;
}

/* BUTTON */
.checkout-btn-jdar {
  width: 100%;
  padding: 13px;

  background: linear-gradient(135deg, #0d3b66, #1e5fa3);
  color: #fff;

  border: none;
  border-radius: 30px;

  font-size: 15px;
  font-weight: 600;

  display: flex;
  justify-content: center;
  align-items: center;

  cursor: pointer;
  transition: 0.3s ease;
}

/* HOVER EFFECT */
.checkout-btn-jdar:hover {
  background: linear-gradient(135deg, #0b2f52, #174a82);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
/* Mobile (max-width: 768px) par hide */
@media (max-width: 768px) {
  .call-btn {
    display: none;
  }
}
@media (max-width: 480px) {
  .call-btn {
    display: none;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
  }

  .nav-links.active {
    display: flex;
  }
}
@media (max-width: 768px) {
  .trust-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 items per row */
    gap: 12px;
    padding: 10px;
  }

  .trust-box {
    text-align: center;
    padding: 10px;
  }

  .trust-box img {
    width: 40px;
    height: auto;
    margin-bottom: 6px;
  }

  .trust-box span {
    font-size: 12px;
    line-height: 1.3;
    display: block;
  }
}
/* ===== MOBILE VIEW ONLY ===== */
@media (max-width: 768px) {

  .carousel {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 5px;
  }

  .carousel::-webkit-scrollbar {
    display: none;
  }

  .card {
    min-width: 90%;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    scroll-snap-align: center;
  }

  /* IMAGE */
  .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  /* BODY */
  .card-body {
    padding: 15px;
  }

  .card-body h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .card-body p {
    font-size: 13px;
    color: #555;
    margin: 3px 0;
  }

  /* PRICE BOX */
  .price-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px dashed #ccc;
    padding: 8px;
    margin: 10px 0;
    border-radius: 8px;
  }

  .old {
    text-decoration: line-through;
    color: red;
    font-size: 14px;
    margin-right: 5px;
  }

  .new {
    font-size: 16px;
    font-weight: bold;
    color: #000;
  }

  .discount {
    background: #ffcc00;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
  }

  /* BUTTONS */
  .card-btns {
    display: flex;
    gap: 10px;
  }

  .btn {
    flex: 1;
    text-align: center;
    padding: 10px;
    font-size: 13px;
    border-radius: 25px;
  }

  .btn-primary {
    background: #1f3b5b;
    color: #fff;
  }

  .btn-outline {
    border: 1px solid #999;
    color: #333;
    background: transparent;
  }

  /* ARROWS HIDE */
  .nav-btn {
    display: none;
  }
}
/* ===== MOBILE VIEW ONLY ===== */
@media (max-width: 768px) {

  .test-section {
    padding: 30px 15px;
  }

  .carousel {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 5px;
  }

  .carousel::-webkit-scrollbar {
    display: none;
  }

  /* CARD */
  .test-card {
    min-width: 90%;
    max-width: 90%;
    background: #fff;
    border-radius: 18px;
    padding: 15px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    scroll-snap-align: center;
    flex-shrink: 0;
  }

  /* TITLE */
  .test-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .test-card p {
    font-size: 13px;
    color: #555;
    margin: 5px 0;
  }

  /* PRICE BOX */
  .price-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px dashed #ccc;
    padding: 8px;
    margin: 10px 0;
    border-radius: 8px;
  }

  .old {
    text-decoration: line-through;
    color: red;
    font-size: 13px;
    margin-right: 5px;
  }

  .new {
    font-size: 16px;
    font-weight: bold;
  }

  .discount {
    background: #ffcc00;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
  }

  /* BUTTONS */
  .card-btns {
    display: flex;
    gap: 10px;
    margin-top: 10px;
  }

  .btn {
    flex: 1;
    text-align: center;
    padding: 10px;
    font-size: 13px;
    border-radius: 25px;
  }

  .btn-primary {
    background: #1f3b5b;
    color: #fff;
  }

  .btn-outline {
    border: 1px solid #999;
    background: transparent;
    color: #333;
  }

  /* ARROWS HIDE */
  .nav-btn {
    display: none;
  }
}
@media (max-width: 768px) {
  /* Section padding */
  .risk-section {
padding: 43px 0px;
  }

  /* Header */
  .risk-section .section-header {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .risk-section .section-header h2 {
    font-size: 18px;
  }

  .risk-section .view-all {
    font-size: 12px;
  }

  /* Grid layout (2 per row) */
  .risk-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 10px;
  }

  /* Card */
  .risk-card {
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  }

  /* Icon */
  .risk-icon img {
   width: 60px;
        height: 60px;
    object-fit: contain;
    margin-bottom: 6px;
  }

  /* Title */
  .risk-card h4 {
    font-size: 13px;
    margin-bottom: 6px;
  }

  /* Button */
  .risk-btn {
    display: inline-block;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 6px;
    background: #243270;
    color: #fff;
    text-decoration: none;
  }
}
@media (max-width: 768px) {
  /* Section */
  .condition-section {
    padding: 12px;
  }

  /* Header */
  .condition-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .condition-section h2 {
    font-size: 18px;
  }

  .view-all {
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
    background: #243270;
    color: #fff;
    text-decoration: none;
  }



  /* Card */
  .condition-card {
    background: #fff;
    border-radius: 14px;
    padding: 14px 10px;
    text-align: center;
    text-decoration: none;
    color: #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  /* Icon circle */
  .condition-icon {
    background: #f1f1f1;
    width: 55px;
    height: 55px;
    margin: 0 auto 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333;
  }

  /* Text */
  .condition-card p {
    font-size: 13px;
    margin: 0;
  }

  /* Active card */
  .condition-card.active {
    background: #243270;
    color: #fff;
  }

  .condition-card.active .condition-icon {
    background: #fff;
    color: #243270;
  }
}
@media (max-width: 768px) {
  /* Section padding */
  .why-section {
    padding: 42px 10px;
  }

  /* Title */
  .why-section .section-title {
    font-size: 18px;
    text-align: center;
    margin-bottom: 15px;
  }

  /* Grid layout */
  .why-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 per row */
    gap: 12px;
  }

  /* Card */
  .why-card {
    background: #fff;
    border-radius: 12px;
    padding: 14px 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  }

  /* Icon */
  .why-card i {
    font-size: 20px;
    color: #243270;
    margin-bottom: 8px;
  }

  /* Heading */
  .why-card h4 {
    font-size: 13px;
    margin-bottom: 5px;
  }

  /* Text */
  .why-card p {
    font-size: 11px;
    color: #666;
    line-height: 1.3;
  }
}
@media (max-width: 768px) {
  /* Section */
  .client-section {
    padding: 15px 10px;
  }

  /* Title */
  .client-title {
    font-size: 18px;
    text-align: center;
    margin-bottom: 12px;
  }

  /* Wrapper fix */
  .client-wrapper {
    overflow: visible;
    position: relative;
  }

  /* 🔥 Slider scroll */
  .client-slider {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
  }

  /* Hide scrollbar */
  .client-slider::-webkit-scrollbar {
    display: none;
  }

  /* Hide arrows */
  .client-btn {
    display: none;
  }

  /* Card */
  .client-card {
    min-width: 100px;
    flex: 0 0 auto;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
  }


}
@media (max-width: 768px) {
  .review-section {
    padding: 16px 12px;
  }

  .section-title {
    font-size: 18px;
    text-align: center;
    margin-bottom: 16px;
  }

  /* Slider */
  .review-slider {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
  }

  .review-slider::-webkit-scrollbar {
    display: none;
  }

  .nav-btn {
    display: none;
  }

  /* 🔥 CARD FIX */
  .review-card {
    min-width: 90%;
    flex: 0 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f1f1;
  }

  /* TEXT */
  .review-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #444;
    margin-bottom: 14px;
  }

  /* USER ROW */
  .review-user {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  /* IMAGE */
  .user-img img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }

  /* NAME */
  .review-user h4 {
    font-size: 14px;
    margin: 0;
    font-weight: 600;
  }

  /* LOGO */
  .review-logo img {
    width: 45px;
    margin-left: auto;
  }
}
@media (max-width: 768px) {
  /* Section */
  .blog-section {
    padding: 15px 10px;
  }

  /* Header */
  .blog-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .blog-section h2 {
    font-size: 18px;
  }

  .view-all {
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
    background: #243270;
    color: #fff;
    text-decoration: none;
  }

  /* Wrapper */
  .blog-wrapper {
    overflow: visible;
  }

  /* 🔥 Slider scroll */
  .blog-slider {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 15px;
  }

  .blog-slider::-webkit-scrollbar {
    display: none;
  }

  /* Hide arrows */
  .nav-btn {
    display: none;
  }

  /* Card */
  .blog-card {
    min-width: 85%;
    flex: 0 0 auto;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    padding-bottom: 10px;
  }

  /* Image */
  .blog-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
  }

  /* Title */
  .blog-card h4 {
    font-size: 14px;
    padding: 10px;
    margin: 0;
  }

  /* Button */
  .blog-btn {
    display: inline-block;
    margin: 0 10px 8px;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 6px;
    background: #243270;
    color: #fff;
    text-decoration: none;
  }

  /* Meta */
  .blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #777;
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  .jdar-breadcrumb-section {
           padding: 7px 29px;

  }

  .jdar-breadcrumb-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
  }

  .breadcrumb-link {
         font-size: 13px;
        color: #282828;
    text-decoration: none;
  }

  .breadcrumb-sep {
        font-size: 19px;
        color: #2a2a2a;
  }
}
@media (max-width: 768px) {
  /* Section spacing */
  .jdar-category-section {
    padding: 10px;
  }

  /* Wrapper */
  .jdar-category-wrapper {
    overflow: visible;
    position: relative;
  }

  /* 🔥 Slider scroll */
  .jdar-category-slider {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
  }

  /* Hide scrollbar */
  .jdar-category-slider::-webkit-scrollbar {
    display: none;
  }

  /* Hide arrows */
  .cat-btn {
    display: none;
  }

  /* Card */
  .cat-card {
    min-width: 90px;
    flex: 0 0 auto;
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  }

  /* Image */
  .cat-card img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 6px;
  }

  /* Text */
  .cat-card p {
    font-size: 12px;
    margin: 0;
    color: #333;
  }
}
@media (max-width: 768px) {
  .jdar-pack-section {
        padding: 45px 20px;

  }

  .jdar-pack-heading {
    font-size: 18px;
    text-align: center;
    margin-bottom: 15px;
  }

  /* 🔥 ONE CARD PER ROW */
  .jdar-pack-grid {
    display: grid;
    grid-template-columns: 1fr; /* ✅ important */
    gap: 14px;
  }

  /* Card */
  .jdar-pack-card {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  }

  /* Image fix */
  .jdar-pack-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
  }

  /* Body */
  .jdar-pack-body {
    padding: 14px;
  }

  .jdar-pack-body h4 {
    font-size: 15px;
    margin-bottom: 5px;
  }

  .jdar-pack-body p {
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
  }

  /* Price */
  .jdar-pack-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
  }

  .old {
    font-size: 12px;
    text-decoration: line-through;
    color: #999;
  }

  .new {
    font-size: 18px;
    font-weight: bold;
  }

  .discount {
    font-size: 12px;
    background: #ffd700;
    padding: 3px 6px;
    border-radius: 6px;
  }

  /* Buttons */
  .jdar-pack-btns {
    display: flex;
    gap: 10px;
    margin-top: 12px;
  }

  .btn {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border-radius: 10px;
    text-align: center;
  }

  .jdar-book-btn {
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #243270;
  }
}
@media (max-width: 768px) {
  /* Container */
  .jdar-product-container {
    display: flex;
    flex-direction: column; /* 🔥 stack layout */
    gap: 15px;
    padding: 10px;
  }

  /* Left & Right full width */
  .jdar-product-left,
  .jdar-product-right {
    width: 100%;
  }

  /* Tabs */
  .jdar-tabs {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 8px;
  }

  .jdar-tabs button {
    flex: 0 0 auto;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 20px;
  }

  /* Product Card */
  .jdar-product-card {
    padding: 12px;
    border-radius: 12px;
  }

  .jdar-product-header h2 {
    font-size: 16px;
  }

  .booked {
    font-size: 11px;
  }

  /* Info items */
  .jdar-product-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .info-item {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .info-item i {
    font-size: 16px;
  }

  .info-item p {
    font-size: 12px;
    margin: 0;
  }

  /* Overview */
  .jdar-overview h3 {
    font-size: 15px;
  }

  .overview-text {
    font-size: 12px;
    line-height: 1.5;
  }

  .read-more-btn {
    font-size: 12px;
    margin-top: 6px;
  }

  /* 🔥 PRICE BOX (important) */
  .jdar-price-box {
    position: sticky;
    bottom: 0;
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
  }

  .jdar-price-box h3 {
    font-size: 14px;
  }

  .offer-text {
    font-size: 12px;
  }

  .price {
    margin: 8px 0;
  }

  .price .old {
    font-size: 12px;
  }

  .price .new {
    font-size: 18px;
    font-weight: bold;
  }

  /* Buttons */
  .btns {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .btn {
    width: 100%;
    padding: 10px;
    font-size: 13px;
    border-radius: 8px;
  }

  /* Download */
  .download-btn {
    font-size: 12px;
    margin-top: 8px;
    display: block;
    text-align: center;
  }

  /* Help box */
  .jdar-help-box {
    padding: 12px;
    border-radius: 12px;
    text-align: center;
  }

  .jdar-help-box h4 {
    font-size: 14px;
  }

  .jdar-help-box p {
    font-size: 12px;
  }

  .call-btn {
    width: 100%;
    margin-top: 8px;
  }
}
@media (max-width: 768px) {
  /* Container */
  .jdar-detail-container {
    display: flex;
    flex-direction: column; /* 🔥 stack layout */
    gap: 15px;
    padding: 10px;
  }

  /* Left & Right full width */
  .jdar-left,
  .jdar-right {
    width: 100%;
  }

  /* Box */
  .jdar-box {
    border-radius: 12px;
    padding: 12px;
    background: #fff;
  }

  /* Header */
  .jdar-box-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .jdar-box-header h3 {
    font-size: 16px;
  }

  /* Tags */
  .jdar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .jdar-tags span {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 20px;
    background: #eee;
  }

  .jdar-tags .active {
    background: #243270;
    color: #fff;
  }

  /* 🔥 Grid → single column */
  .jdar-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  /* Accordion item */
  .jdar-td-item {
    border-radius: 10px;
    padding: 10px;
    background: #f9f9f9;
  }

  .jdar-td-question {
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
  }

  .jdar-td-answer {
    font-size: 12px;
    margin-top: 6px;
    color: #666;
  }

  /* FAQ */
  .jdar-faq {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .faq-item {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 10px;
  }

  .faq-question {
 font-size: 14px !important;
        font-weight: 600 !important;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
  }

  .faq-answer {
    font-size: 12px;
    margin-top: 6px;
    color: #666;
  }

  /* 🔥 Right side blocks */
  .jdar-offer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-radius: 12px;
  }

  .jdar-offer img {
    width: 70px;
    height: auto;
  }

  .offer-text h3 {
    font-size: 14px;
  }

  .offer-text p {
    font-size: 12px;
  }

  /* Callback */
  .jdar-callback {
    text-align: center;
    padding: 12px;
    border-radius: 12px;
    font-size: 13px;
  }

  /* Most booked */
  .jdar-box.small h4 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .jdar-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .list-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    border-radius: 10px;
    background: #f9f9f9;
    font-size: 12px;
  }

  .list-item .price {
    font-weight: bold;
  }

  .list-item button {
           width: 50%;
    padding: 8px;
    border-radius: 6px;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .about-hero {
    padding: 15px 10px;
  }

  /* Container stack */
  .about-container {
    display: flex;
    flex-direction: column; /* 🔥 image upar, text niche */
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  /* Image */
  .about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  /* Content */
  .about-content h1 {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .about-content h3 {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .about-content p {
    font-size: 13px;
    line-height: 1.4;
  }
}
@media (max-width: 768px) {
  .jdar-values-section {
    padding: 15px 10px;
    text-align: center;
  }

  .jdar-values-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  /* ❌ line hide (mobile me bekaar lagti hai) */
  .jdar-line {
    display: none;
  }

  /* 🔥 grid layout */
  .jdar-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 per row */
    gap: 14px;
    margin-top: 15px;
  }

  /* item */
  .jdar-value-item {
    background: #fff;
    border-radius: 12px;
    padding: 14px 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
  }

  /* ❌ connector hide */
  .jdar-connector {
    display: none;
  }

  /* circle */
  .jdar-circle {
    width: 50px;
    height: 50px;
    margin: 0 auto 8px;
    border-radius: 50%;
    border: 2px solid;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .jdar-circle i {
    font-size: 18px;
  }

  /* text */
  .jdar-value-item p {
    font-size: 13px;
    margin: 0;
  }
}
@media (max-width: 768px) {
  .jdar-mission-wrapper {
    padding: 15px 10px;
  }

  /* Container stack */
  .jdar-mission-container {
    display: flex;
    flex-direction: column; /* 🔥 image upar */
    gap: 15px;
  }

  /* Image */
  .jdar-mission-left img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  /* Right content */
  .jdar-mission-heading {
    font-size: 18px;
    text-align: center;
    margin-bottom: 8px;
  }

  .jdar-mission-text {
    font-size: 13px;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  /* 🔥 Grid → single column */
  .jdar-mission-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .jdar-mission-col {
    width: 100%;
  }

  /* Points */
  .jdar-mission-point {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    font-size: 13px;
  }

  .jdar-mission-icon {
    color: #243270;
    font-size: 14px;
    margin-top: 2px;
  }
}
@media (max-width: 768px) {
  .jdar-journey-wrapper {
    display: none;
  }
}
@media (max-width: 768px) {
  .jdar-customer-wrapper {
    padding: 15px 10px;
  }

  /* 🔥 Stack layout */
  .jdar-customer-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  /* Full width */
  .jdar-customer-left,
  .jdar-customer-right {
    width: 100%;
  }

  /* Title */
  .jdar-customer-title {
    font-size: 18px;
    text-align: center;
    margin-bottom: 6px;
  }

  .jdar-customer-tag {
    display: block;
    text-align: center;
    font-size: 12px;
    margin-bottom: 12px;
  }

  /* 🔥 Grid → single column */
  .jdar-customer-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  /* Item */
  .jdar-customer-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  }

  /* Icon */
  .jdar-customer-icon {
    font-size: 16px;
    color: #243270;
  }

  /* Text */
  .jdar-customer-item h4 {
    font-size: 13px;
    margin-bottom: 2px;
  }

  .jdar-customer-item p {
    font-size: 12px;
    color: #666;
  }

  /* Image */
  .jdar-customer-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }
}
@media (max-width: 768px) {
  .cart-box {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    font-size: 13px;
    margin-left: 50px;
  }

  /* Icon */
  .cart-box i {
    font-size: 14px;
  }

  /* Text */
  .cart-text {
    display: inline; /* ✅ hide nahi hoga */
    font-size: 12px;
  }

  /* Count badge */
  .cart-count {
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 50%;
  }
}
@media (max-width: 768px) {
  .side-menu {
    position: fixed;
    top: 0;
    left: -100%; /* hidden */
    width: 260px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transition: 0.3s ease;
    overflow-y: auto;
  }

  /* ✅ open state */
  .side-menu.active {
    left: 0;
  }

  .side-header {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #eee;
  }

  .side-links a,
  .side-title {
    display: block;
    padding: 14px;
    border-bottom: 1px solid #f1f1f1;
    color: #000;
    text-decoration: none;
  }

  .close-btn {
    cursor: pointer;
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .search-bar {
    display: none;
  }
}
@media (max-width: 768px) {
  /* 🔥 Menu visible + slide setup */
  .side-menu {
    display: block !important; /* IMPORTANT */
    position: fixed;
    top: 0;
    left: -100%; /* hidden by default */
    width: 260px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transition: 0.3s ease;
    overflow-y: auto;
  }

  /* open state */
  .side-menu.active {
    left: 0;
  }

  /* header */
  .side-header {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #eee;
  }

  /* links */
  .side-links a,
  .side-title {
    display: block;
    padding: 14px;
    border-bottom: 1px solid #f1f1f1;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #c5c5c5;
  }
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  border-color: var(--jdar-purple);
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.card-body {
  padding: 15px;
}
.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.card {
  cursor: pointer;
}
.test-card {
  cursor: pointer;
}
.faq-answer {
  display: none;
  padding: 10px;
}

.faq-question {
  cursor: pointer;
  font-weight: bold;
  padding: 10px;
  background: #f5f5f5;
  font-size: 17px;
}
.jdar-pack-card {
  cursor: pointer;
}
.risk-arrow {
  color: #000;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 18px;
}
/* SECTION */
.blog-detail-section {
  background: #f4f7fb;
  padding: 50px 20px;
}

/* CONTAINER */
/* .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
} */

/* LEFT SIDE */
.blog-left {
  flex: 2;
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* TITLE */
.blog-title {
  font-size: 30px;
  color: #1e3a5f;
  margin-bottom: 10px;
}

/* META */
.blog-meta {
  font-size: 13px;
  color: #777;
  margin-bottom: 20px;
}

/* IMAGE */
.blog-image img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
}

/* CONTENT */
.blog-content {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}

/* RIGHT SIDE */
.blog-right {
  flex: 1;
}

/* FORM BOX */
.callback-box {
  background: linear-gradient(135deg, #1e3a5f, #294b7a);
  padding: 25px;
  border-radius: 15px;
  color: #fff;
  position: sticky;
  top: 180px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* TITLE */
.callback-box h3 {
  margin-bottom: 20px;
  font-size: 18px;
}

/* INPUT GROUP */
.input-group {
  margin-bottom: 12px;
}

/* INPUTS */
.input-group input,
.input-group select {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 14px;
}

/* BUTTON */
.callback-box button {
  width: 100%;
  padding: 12px;
  background: #22266a;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.callback-box button:hover {
  background: #e68900;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .blog-title {
    font-size: 22px;
  }
}
body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: #f4f7fb;
}

/* TITLE */
.title {
  text-align: center;
  margin: 30px 0;
  font-size: 28px;
  font-weight: 600;
  color: #1e3a5f;
}

/* GRID */
.blogs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 25px;
  padding: 20px 40px;
}

/* CARD */
.card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
   
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

/* IMAGE */
.card img {
  width: 76% !important;
  height: 170px;
  object-fit: cover;
  transition: 0.4s;
}

.card:hover img {
  transform: scale(1.05);
}

/* CONTENT */
.content {
  padding: 15px;
}

/* TAG */
.tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #1e3a5f;
  color: #fff;
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

/* TITLE TEXT */
.content h4 {
  margin: 8px 0;
  font-size: 16px;
  color: #222;
  font-weight: 600;
}

/* DATE */
.content p {
  font-size: 12px;
  color: #888;
  margin: 5px 0;
}

/* READ MORE LINK */
.content a {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  color: #1e3a5f;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.content a:hover {
  color: #ff9800;
}

/* OPTIONAL BUTTON STYLE */
button {
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    padding: 15px;
  }

  .title {
    font-size: 22px;
  }
}
/* SECTION */

.jdar-blog-detail-sec {
  padding: 50px 20px;
  background: #f4f7fb;
}

/* CONTAINER */
.jdar-blog-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
}

/* LEFT SIDE */
.jdar-blog-left {
  flex: 2;
}

/* TITLE */
.jdar-blog-title {
  font-size: 32px;
  margin-bottom: 10px;
  color: #1e3a5f;
}

/* META */
.jdar-blog-meta {
  margin-bottom: 20px;
}

.jdar-meta-item {
  font-size: 14px;
  color: #555;
}

/* IMAGE */
.jdar-blog-image img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
}

/* CONTENT */
.jdar-blog-content {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}

/* RIGHT SIDE */
.jdar-blog-right {
  flex: 1;
  margin-top: 14px;
}


/* FORM BOX */
.jdar-callback-box {
  background-color: #1e296a;
  padding: 25px;
  border-radius: 15px;
  color: #fff;
  position: sticky;
  top: 195px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* TITLE */
.jdar-callback-title {
  margin-bottom: 15px;
  font-size: 18px;
}

/* INPUT */
.jdar-input-group {
  margin-bottom: 12px;
}

.jdar-input-group input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
}

/* BUTTON */
.jdar-submit-btn {
width: 100%;
    padding: 12px;
    background: #991c69;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    font-family: 'Poppins';
    transition: 0.3s;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .jdar-blog-container {
    flex-direction: column;
  }
}
/* WRAPPER RIGHT ALIGN */
.jdar-top-actions {
  display: flex;
  justify-content: flex-end !important; /* 👈 right side */
  align-items: center;
  gap: 35px;
}

/* LINKS */
.jdar-top-link {
color: #fff;
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
    font-weight: 500;
}

/* ICON */
.jdar-top-link i {
  color: white;
  font-size: 18px;
}

/* HOVER */
.jdar-top-link:hover {
  opacity: 0.8;
}
.jdar-top-actions {
  display: flex;
  gap: 26px;
  margin-left: auto; /* 👈 ye push karega right end pe */
}
.navbar {
  display: flex;
  align-items: center;
}
.nav-call-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f5f5f5;
  padding: 8px 14px;
  border-radius: 30px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

/* ICON */
.nav-call-btn i {
  font-size: 20px;
  color: #333;
}
/* Mobile me hide karne ke liye */
/* Mobile view me pura call button hide */
@media (max-width: 768px) {
  .nav-call-btn {
    display: none !important;
  }
}

@media (max-width: 768px) {
.hamburger{
  display: flex;
 }
  }

/* TEXT */
.call-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.call-text small {
  font-size: 14px;
  color: #666;
}

.call-text span {
    font-size: 16px;
    font-weight: 600;
}
.client-section {
  padding: 40px 0;
  background: white;
}

.client-title {
  text-align: center;
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 600;
}

/* GRID */
.client-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: center;
}

/* CARD */
.client-card {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #d1cccc;
  text-align: center;
  transition: 0.3s;
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* IMAGE */
.client-card img {
  max-width: 100%;
  height:  114px !important;
  object-fit: contain;
}
.jdar-testimonial-section {
  background: #ffffff;
  padding: 50px 20px;
}

.jdar-testimonial-container {
  max-width: 1540px;
  margin: 0 auto;
}

.jdar-testimonial-card {
     background: #f7f7f7;
    border: 1px solid #d5d5d5;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    font-size: 16px;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 209px;
    box-shadow: 0px 0px 8px -4px;
}

.jdar-testimonial-card p {
  margin-bottom: 20px;
  color: #333;
}

.jdar-review-footer {
  display: flex;
      justify-content: space-between;
  gap: 20px;
}

.jdar-review-footer img {
  width: 90px;
}

.jdar-review-footer h4 {
  font-size: 16px;
  margin: 0;
  font-weight: 500;
}
.jdar-testi-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: 600;
}
.test {
    margin-bottom: 10px;
    min-height: 50px;
    display: flex;
    align-items: center;
}
.test a{
  text-decoration: none;
  color: #424242;
}
.by {
  font-size: 14px;
  color: #777;
  font-weight: bolder;
  margin-top: 10px;
}
.blog-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto; /* temporary debug */
}

.blog-card {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid #ddd;
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  height: 100%;
}

/* IMAGE */
.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

/* TITLE */
.blog-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin-bottom: 8px;
}
.blog-card h4 a{
  text-decoration: none;
  color: black;
  font-size: 18px
}
/* DESCRIPTION */
.descc {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 10px;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
}

/* DATE */
.date {
  font-size: 14px;
  color: #000;
  margin-bottom: 14px;
  text-align: left;
}

/* BUTTON */
.blog-btn {
  display: inline-block;
  background: #2c2f7b;
  color: #fff;
  padding: 8px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  margin-top: auto; /* button always bottom */
}

.blog-btn:hover {
  background: #1f2260;
}
.cart-box-jdar {
  width: 100%;
  background: #e9e1c7;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #aaa;
  position: relative;
  font-family: Arial, sans-serif;
}

/* HEADER */
.cart-header-jdar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header-jdar h3 {
  margin: 0;
  font-size: 16px;
}

.cart-header-jdar span {
  font-size: 13px;
  color: #003366;
}

.close-btn {
  cursor: pointer;
  font-size: 16px;
}

/* ITEMS */
.cart-items-jdar {
  max-height: 220px;
  overflow-y: auto;
}

/* ITEM (JS se banega) */
.cart-item-jdar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #999;
}

.item-name {
  font-size: 13px;
  color: #000;
}

.item-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-jdar {
  font-size: 13px;
  font-weight: 500;
}

.remove-jdar {
  cursor: pointer;
  font-size: 14px;
}

/* TOTAL */
.cart-total-jdar {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 12px;
}

.cart-total-jdar .price-jdar {
  background: #d0d0d0;
  padding: 2px 6px;
  border-radius: 4px;
}

/* BUTTON */
.checkout-btn-jdar {
  width: 100%;
  padding: 12px;
  background: #254b73;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 600;
}

.checkout-btn-jdar:hover {
  background: #1c3a59;
}

/* TOP ARROW */
.cart-box-jdar::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 30px;
  width: 15px;
  height: 15px;
  background: #e9e1c7;
  transform: rotate(45deg);
  border-left: 1px solid #aaa;
  border-top: 1px solid #aaa;
}

/* remove */
.cart-item-jdar {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 10px 0;
}

/* NAME */
.item-name {
  font-size: 13px;
  flex: 1;
}

/* PRICE */
.price-jdar {
  font-size: 13px;
  margin-right: 10px;
}

/* REMOVE BUTTON */
.remove-btn-jdar {
background: none;
    border: none;
    cursor: pointer;
    font-size: 23px;
    color: #991c69;
}

/* hover effect */
.remove-btn-jdar:hover {
  color: red;
}
/* ── ORDER PREVIEW BOX ── */
.cart-box-jdar {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  border: 1px solid #e4e4e4;
  font-family: "DM Sans", sans-serif;
}

.cart-box-jdar h2 {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    color: #424242;
    font-family: 'Poppins';
    padding: 1.25rem 1.5rem 1rem;
    letter-spacing: -0.01em;
    margin-bottom: 25px;
}

/* ── TABLE ── */
.checkout-table-jdar {
  width: 100%;
  border-collapse: collapse;
}

.checkout-table-jdar thead tr {
  background: #ffffff;
}

.checkout-table-jdar thead th {
padding: 0.85rem 1.25rem;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: #444444;
    font-family: 'Poppins';
    border: 1px solid #c7c7c7;
}

.checkout-table-jdar tbody tr {
  border: 1px solid #e4e4e4;
  transition: background 0.15s ease;
  animation: rowFadeIn 0.3s ease both;
}

@keyframes rowFadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.checkout-table-jdar tbody tr:hover {
  background: #faf8fc;
}

.checkout-table-jdar tbody td {
padding: 10px 1.25rem;
    vertical-align: middle;
    font-size: 15px;
    font-weight: 500;
    color: #525252;
    font-family: 'Poppins';
        border: 1px solid #dfdfdf;
    text-align: start;
}

/* Home Collection Badge */
.badge-available {
  display: inline-block;
  background: #2ecc71;
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

.badge-unavailable {
  display: inline-block;
  background: #e74c3c;
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

/* Price Pill */
.price-pill {
  display: inline-block;
  background: #7b2fa6;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 6px;
}

/* Quantity Input */
.qty-input {
  width: 55px;
  height: 34px;
  text-align: center;
  border: 1.5px solid #cccccc;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  outline: none;
  transition: border-color 0.18s;
}

.qty-input:focus {
  border-color: #7b2fa6;
}

/* Remove Button */
.remove-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 700;
  color: #7b2fa6;
  letter-spacing: 0.02em;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.18s ease;
}

.remove-btn:hover {
  background: #f5eeff;
  color: #5b1f80;
}
.jdar-overview {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  margin-top: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.jdar-overview h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #222;
}

.overview-text {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}
.faq-icon {
  font-size: 12px;
  float: right;
  transition: 0.3s;
}

/* OPTIONAL: jab active ho (open state) */
.faq-item.active .faq-icon {
  transform: rotate(45deg); /* + se × ban jayega */
}
.blog-sectionn {
background: #f8f9ff;
    padding: 60px 0;
        /* margin-bottom: 24px; */
}
/* ===== MOBILE VIEW ONLY ===== */
@media (max-width: 768px) {

  .blog-sectionn {
    padding: 30px 15px;
  }

  .section-header h2 {
    font-size: 22px;
  }

  .view-all {
    font-size: 12px;
  }

  .blog-wrapper {
    position: relative;
  }

  .blog-slider {
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .blog-slider::-webkit-scrollbar {
    display: none;
  }

  .blog-card {
    scroll-snap-align: center;
    padding: 12px;
  }

  .blog-card img {
    height: 160px;
  }

  .blog-card h4 {
    font-size: 16px;
  }

  .descc {
    font-size: 13px;
  }

  .date {
    font-size: 11px;
  }

  .blog-btn {
    font-size: 12px;
    padding: 7px 12px;
  }

  /* Hide arrows on mobile */
  .nav-btn {
    display: none;
  }
}
@media (max-width: 992px) {
  .hero-form{
    width: 50%;
  }
.top-bar{
  display: non;
}
.hero-form h3{
    font-weight: 500;
    font-size: 19px;
    color: #2e2e2e;
}
.hero-form input, .hero-form select {
    padding: 11px;
    font-size: 14px;
}
.hero-form button{
  padding: 8px;
      font-size: 15px;
}
.client-grid{
  grid-template-columns: repeat(2, 1fr)
}
.jdar-footer{
  padding: 50px 28px 1px;
}
.blogs-grid{
      grid-template-columns: 1fr 1fr; 
}
.jdar-list .list-item{
  align-items: start;
}
.checkout-btn-jdar{
      padding: 9px;
      font-size: 13px;
          font-weight: 500;
          
}
.checkout-container-jdar{
  flex-direction: column;
  padding: 0px 21px;
}
.billing-box-jdar{
  width: 100%;
}
.top-actions{
  display: none;
}
.package-carousel{
      grid-template-columns: 1fr 1fr;
}
  /* 🔥 GRID (NO SCROLL) */
  .condition-scroll {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr; /* 2 per row */
    gap: 14px;
    margin-top: 12px;
    margin-bottom: 28px;
  }
  .why-container{
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-slider{
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .jdar-pack-grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .card-container{
grid-template-columns: 1fr 1fr;
  }
  .jdar-customer-container{
    flex-direction: column;
  }
}
@media (max-width: 557px) {
  .hero-form{
    width: 100%;
  }
  .package-carousel{
      grid-template-columns: 1fr;
}
.blog-slider{
    grid-template-columns: 1fr;  
}
  .jdar-pack-grid{
    grid-template-columns: repeat(1, 1fr);
  }
    .card-container{
grid-template-columns: 1fr;
  }
  .blogs-grid{
      grid-template-columns: 1fr; 
}
}


.lab-story-section {
  padding: 100px 20px;
  background: linear-gradient(120deg, #eef2f7, #ffffff);
  overflow: hidden;
}

.lab-story-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 70px;
  flex-wrap: wrap;
}

/* IMAGE SIDE */
.lab-visual {
  flex: 1;
  position: relative;
}

.lab-visual img {
  width: 100%;
  border-radius: 25px;
  transform: rotate(-2deg);
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

/* FLOATING CARD */
.lab-floating-box {
  bottom: 30px;
  right: -20px;
  background: #ffffff;
  padding: 20px 25px;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  text-align: center;
}

.lab-floating-box h3 {
  color: #0a58ca;
  font-size: 24px;
}

/* CONTENT SIDE */
.lab-info {
  flex: 1;
}

.lab-label {
  color: #0a58ca;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
}

.lab-heading {
  font-size: 42px;
  margin: 10px 0 20px;
}

.lab-text {
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* FEATURES */
.lab-features {
  margin-bottom: 30px;
}

.lab-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.lab-item span {
  color: #0a58ca;
  font-weight: bold;
}

/* BUTTON */
.lab-action-btn {
  padding: 12px 30px;
  border: none;
  background: #0a58ca;
  color: #fff;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.lab-action-btn:hover {
  background: #063d91;
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .lab-story-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .lab-visual img {
    transform: none;
  }

  .lab-floating-box {
    right: 10px;
  }

  .lab-heading {
    font-size: 28px;
  }
}

.lab-story-section {
  padding: 100px 20px;
  background: linear-gradient(120deg, #eef2f7, #ffffff);
  overflow: hidden;
}

.lab-story-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 70px;
  flex-wrap: wrap;
}

/* IMAGE SIDE */
.lab-visual {
  flex: 1;
  position: relative;
  border-radius: 15px;              /* clean box */
  overflow: hidden;                 /* important for shape */
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.lab-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  border-radius: 0;                 /* remove oval look */
  transform: none;                  /* remove tilt */
}

/* FLOATING CARD */
.lab-floating-box {
  position: absolute;
  bottom: 20px;
  right: 20px;                      /* fix alignment */
  background: #ffffff;
  padding: 18px 22px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  text-align: center;
}

.lab-floating-box h3 {
  color: #0a58ca;
  font-size: 22px;
  margin-bottom: 5px;
}

/* CONTENT SIDE */
.lab-info {
  flex: 1;
}

.lab-label {
  color: #0a58ca;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
}

.lab-heading {
  font-size: 26px!important;
  margin: 10px 0 20px;
}

.lab-text {
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* FEATURES */
.lab-features {
  margin-bottom: 30px;
}

.lab-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.lab-item span {
  color: #0a58ca;
  font-weight: bold;
}

/* BUTTON */
.lab-action-btn {
  padding: 12px 30px;
  border: none;
  background: #0a58ca;
  color: #fff;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.lab-action-btn:hover {
  background: #063d91;
  transform: translateY(-3px);
}
  .hero-banner-mobile{
        display: none;
    }
/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-banner{
        display: none;
    }
    .hero-banner-mobile{
        display: block;
    }
  .lab-story-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .lab-visual {
    width: 100%;
  }

  .lab-floating-box {
    right: 10px;
    bottom: 10px;
  }

  .lab-heading {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
    
.lab-heading {
        font-size: 19px !important;
}
.card-section {
  max-width: 337px!important;
  margin: 97px auto !important;
  /*display: flex;*/
  flex-direction: column;
  gap: 0px!important;
}

.card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fff;
  transition: 0.3s ease;
  cursor: pointer;
  display: flex;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.blog-item-card{
    display:grid !important;
    grid-template-columns: 0.7fr 1.3fr !important;
}
.blog-item-card img{
    aspect-ratio: 1.6/1 !important;
    object-fit: cover;
    height: auto !important;
}

.card img {
 width: 100% !important;
  /*height: 73px;*/
  border-radius: 8px;
  object-fit: cover;
   aspect-ratio: 1/1;
}

.content h3 {
  font-size: 16px;
  margin: 0;
  color: #222;
}
.category-card{
    flex-direction: column;
}
.category-card a{
   width: 100%;
}
.category-card a img{
 width: 100%;
}
.category-card .card-body{
    width: 100%;
}
.nav-link:focus, .nav-link:hover {
    color: white !important;
    
}
