/**
* Theme Name: Antra Child
* Description: This is a child theme of Antra, generated by Merlin WP.
* Author: <a href="http://themelexus.com/">Themelexus</a>
* Template: antra
* Version: 1.0.9
*/

@media only screen and (max-width: 768px) {
	.wpsc-form .row{
		display: flex !important;
	}	
}

/* ========= WPSC Slider (white background friendly) ========= */
.wpsc-slider{
  --wpsc-bg: #ffffff;
  --wpsc-surface: #ffffff;
  --wpsc-border: #e7e9ee;
  --wpsc-text: #111827;
  --wpsc-muted: #6b7280;
  --wpsc-accent: #2563eb;     /* change if you have a brand color */
  --wpsc-accent-soft: rgba(37, 99, 235, .12);

  max-width: 980px;
  margin: 0 auto;
  padding: 10px 0;
}

.wpsc-slider .carousel{
  border: 1px solid var(--wpsc-border);
  background: var(--wpsc-bg);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(17, 24, 39, .08);
  overflow: hidden;
}

.wpsc-slider .carousel-inner{
  padding: 22px;
}

/* make sure bootstrap doesn't collapse items if display gets overridden */
.wpsc-slider .carousel-item{
  padding: 0;
}

.wpsc-slide{
  background: var(--wpsc-surface);
  border: 1px solid var(--wpsc-border);
  border-radius: 14px;
  padding: 22px 22px 18px;
  position: relative;
  box-shadow: 0 6px 18px rgba(17, 24, 39, .06);
}

/* subtle top accent bar */
.wpsc-slide::before{
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 12px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--wpsc-accent), rgba(37,99,235,.25));
  opacity: .9;
}

/* Step title */
.wpsc-slide h3{
  margin: 8px 0 12px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .2px;
  color: var(--wpsc-text);
}

/* Body text */
.wpsc-slide p{
  margin: 0;
  color: var(--wpsc-text);
  font-size: 15px;
  line-height: 1.7;
}

.wpsc-slide p strong{
  font-weight: 800;
}

/* Replace <br><br> spacing with nicer spacing */
.wpsc-slide p br{
  display: block;
  content: "";
  margin: 8px 0;
}

/* Controls: round buttons that look good on white */
.wpsc-slider .carousel-control-prev,
.wpsc-slider .carousel-control-next{
  width: 52px;
  opacity: 1;
}

.wpsc-slider .carousel-control-prev-icon,
.wpsc-slider .carousel-control-next-icon{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background-color: #ffffff;                 /* button surface */
  border: 1px solid var(--wpsc-border);
  box-shadow: 0 8px 18px rgba(17, 24, 39, .10);
  background-size: 55% 55%;
}

/* hover/focus states */
.wpsc-slider .carousel-control-prev:hover .carousel-control-prev-icon,
.wpsc-slider .carousel-control-next:hover .carousel-control-next-icon{
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(17, 24, 39, .14);
  border-color: rgba(37, 99, 235, .35);
}

.wpsc-slider .carousel-control-prev:focus,
.wpsc-slider .carousel-control-next:focus{
  outline: none;
}

.wpsc-slider .carousel-control-prev:focus-visible .carousel-control-prev-icon,
.wpsc-slider .carousel-control-next:focus-visible .carousel-control-next-icon{
  outline: 3px solid var(--wpsc-accent-soft);
  outline-offset: 2px;
}

/* optional: add indicators if you use them */
.wpsc-slider .carousel-indicators [data-bs-target]{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background-color: #cbd5e1;
}
.wpsc-slider .carousel-indicators .active{
  background-color: var(--wpsc-accent);
}

/* Responsive tweaks */
@media (max-width: 768px){
  .wpsc-slider .carousel-inner{ padding: 16px; }
  .wpsc-slide{ padding: 18px; }
  .wpsc-slide h3{ font-size: 17px; }
  .wpsc-slide p{ font-size: 14px; line-height: 1.65; }
  .wpsc-slider .carousel-control-prev,
  .wpsc-slider .carousel-control-next{ width: 46px; }
  .wpsc-slider .carousel-control-prev-icon,
  .wpsc-slider .carousel-control-next-icon{ width: 40px; height: 40px; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .wpsc-slider .carousel-control-prev-icon,
  .wpsc-slider .carousel-control-next-icon{
    transition: none !important;
    transform: none !important;
  }
}
/* Fixed slide width (same for every step) */
.wpsc-slider{
  --slide-width: 820px;  /* desktop fixed width */
  --slide-min-height: 230px; /* keeps height consistent too (optional) */
}

.wpsc-slider .carousel-inner{
  /* center the fixed-width slide area */
  display: flex;
  justify-content: center;
  padding: 22px; /* keep your existing padding */
}

.wpsc-slider .carousel-item{
  /* Bootstrap carousel items are 100% width by default */
  flex: 0 0 100%;
  width: 100%;
  margin-right: initial;
}

.wpsc-slider .wpsc-slide{
  width: var(--slide-width);
  max-width: 100%;        /* don't overflow on smaller screens */
  margin: 0 auto;         /* centered */
  min-height: var(--slide-min-height); /* optional: consistent height */
  box-sizing: border-box;
}

/* Responsive fixed widths */
@media (max-width: 992px){
  .wpsc-slider{ --slide-width: 92vw; } /* still “fixed” relative to viewport */
}
@media (max-width: 576px){
  .wpsc-slider{ --slide-width: 94vw; }
}


/* Keep controls clickable and above content */
.wpsc-slider .carousel-control-prev,
.wpsc-slider .carousel-control-next{
  z-index: 5;
}

/* Your round buttons (keep as-is / improved) */
.wpsc-slider .carousel-control-prev-icon,
.wpsc-slider .carousel-control-next-icon{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background-color: #fff !important;
  border: 1px solid #e7e9ee;
  box-shadow: 0 8px 18px rgba(17,24,39,.10);

  /* IMPORTANT: avoid any global "background: ..." nuking things */
  background-image: none !important;
  position: relative;
}

/* Draw arrow using pure CSS (no Bootstrap SVG needed) */
.wpsc-slider .carousel-control-prev-icon::after,
.wpsc-slider .carousel-control-next-icon::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-right: 3px solid #111827;
  border-bottom: 3px solid #111827;
  transform: translate(-50%, -50%) rotate(135deg); /* default = left */
}

.wpsc-slider .carousel-control-next-icon::after{
  transform: translate(-50%, -50%) rotate(-45deg); /* right */
}

/* Hover */
.wpsc-slider .carousel-control-prev:hover .carousel-control-prev-icon,
.wpsc-slider .carousel-control-next:hover .carousel-control-next-icon{
  border-color: rgba(37,99,235,.35);
  box-shadow: 0 10px 22px rgba(17,24,39,.14);
  transform: translateY(-1px);
}

.modal { z-index: 99999 !important; }
.modal-backdrop { z-index: 99998 !important; }

/* Ensure the header & close button stay clickable */
#wpscImageModal .modal-header { position: sticky; top: 0; background: #caa05c; color: #fff; z-index: 10; }
#wpscImageModal .wpsc-modal-close { pointer-events: auto !important; opacity: 1 !important; }
#wpscImageModal .modal-content { pointer-events: auto !important; }
#wpscImageModal .modal-body { padding: 10px !important;}




.wpsc-process {
    padding: 20px 0;
    text-align: center;
}

.wpsc-process .slider-container {
    position: relative;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
}

.wpsc-process .slider-wrapper {
    display: flex;
    transition: transform 0.6s ease;
}

.wpsc-process .slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

/* Left Step Circle */
.wpsc-process .step-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #b08d57;
    color: white;
    font-size: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 10px rgba(176, 141, 87, 0.2);
}

/* Right Card */
.wpsc-process .content-card {
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    max-width: 600px;
    text-align: left;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-left: 6px solid #b08d57;
}

.wpsc-process .content-card h2 {
    margin-top: 0;
    font-size: 34px;
}

.wpsc-process .content-card ul {
    padding-left: 0;
    list-style: none;
}

.wpsc-process .content-card li {
    margin-bottom: 15px;
    font-size: 18px;
    position: relative;
    padding-left: 30px;
}

.wpsc-process .content-card li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #b08d57;
}

/* Navigation */
.wpsc-process .navigation {
    margin-top: 50px;
}

.wpsc-process .counter {
    margin-bottom: 15px;
    font-size: 18px;
}

.wpsc-process .nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #b08d57;
    background: white;
    color: #b08d57;
    font-size: 22px;
    cursor: pointer;
    margin: 0 10px;
    transition: 0.3s;
}

.wpsc-process .nav-btn:hover {
    background: #b08d57;
    color: white;
}

@media (max-width: 900px) {
    .wpsc-process .slide {
        flex-direction: column;
        gap: 40px;
    }
}

div#content {
	margin-top: 10rem;
}

/* .why-choose{
  --accent: #d6b153;               /* your gold */
  --text: #111827;                 /* near-black */
  --muted: #6b7280;                /* gray */
  --card-bg: #ffffff;
  --border: rgba(17, 24, 39, 0.08);
  --shadow: 0 10px 25px rgba(0,0,0,.08);

  padding: clamp(40px, 5vw, 80px) 0;
  background:
    radial-gradient(1200px 400px at 50% 0%, rgba(214,177,83,.12), transparent 60%),
    linear-gradient(#ffffff, #fbfbfd);
} */

.why-choose .container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.why-choose .title{
  margin: 0 0 28px;
  text-align: center;
  font-size: clamp(28px, 3.2vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  font-weight: 800;
}

.why-choose .title .accent{
  position: relative;
  display: inline-block;
  color: var(--text);
}

/* Grid */
.why-choose .cards{
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

/* Card */
.why-choose .card{
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px 16px 18px;
  text-align: center;
  box-shadow: 0 1px 0 rgba(0,0,0,.03);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 210px;
  position: relative;
  overflow: hidden;
}

/* subtle top glow line */
.why-choose .card::before{
  content:"";
  position:absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(214,177,83,.9), transparent);
  opacity: .0;
  transition: opacity .18s ease;
}

.why-choose .card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(214,177,83,.35);
}

.why-choose .card:hover::before{
  opacity: 1;
}

/* Icon container */
.why-choose .icon-ring{
  width: 84px;
  height: 84px;
  margin: 0 auto 14px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(214,177,83,.18), transparent 60%),
    rgba(214,177,83,.08);
  border: 1px solid rgba(214,177,83,.25);
}

.why-choose .icon-ring img{
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.08));
}

/* Label */
.why-choose .label{
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
  padding: 0 6px;
  text-wrap: balance;
}

/* Responsiveness */
@media (max-width: 1100px){
  .why-choose .cards{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .why-choose .cards{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-choose .card{ min-height: 190px; padding: 18px 14px 16px; }
  .why-choose .label{ font-size: 16px; }
}