body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
}

/* ===========================================
   Make Bootstrap container padding "work"
   with 150% visual scale (desktop only)
   =========================================== */
:root {
  --page-scale: 1.5; /* 150% look */
}

/* Always good: avoid padding weirdness from box model differences */
*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (min-width: 992px) {
  /* 1) Chromium/WebKit path (uses real CSS zoom) */
  html {
    zoom: var(--page-scale);
  }

  /* Keep Bootstrap's default padding visible with zoom.
     No division here (zoom already keeps layout math consistent). */
  .container,
  .container-fluid {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  /* 2) Firefox fallback (no zoom support) */
  @supports not (zoom: 1) {
    html {
      overflow-x: hidden;
    }
    body {
      transform: scale(var(--page-scale));
      transform-origin: top left;
      width: calc(100% / var(--page-scale));
      min-height: calc(100vh / var(--page-scale));
    }

    /* In the transform path, divide to keep the *visual* padding equal
       to Bootstrap's default (≈12px each side). */
    .container,
    .container-fluid {
      padding-left: calc(0.75rem / var(--page-scale)) !important;
      padding-right: calc(0.75rem / var(--page-scale)) !important;
    }
  }

  /* OPTIONAL: if some sections don't use .container wrappers,
     give them Bootstrap-like side padding so you can see it too. */
  .hero-section,
  .cv-section,
  .slider-section-right,
  .slider-section-left,
  .card-slider,
  .profile-section,
  .review-section-unique,
  .footer {
    padding-left: 60px;
    padding-right: 60px;
  }

  /* If those sections already have big left/right paddings,
     you can comment out the block above to avoid doubling.
  */
}

/*======= Hero section Css Start here ========*/
.hero-section {
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
}

/* Background blue shape */
.bg-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: #4772cc;
  clip-path: ellipse(100% 100% at 100% 95%);
  z-index: 0;
}

/* GS Logo */
.top-logo {
  text-align: right;
  position: relative;
  z-index: 4;
}
.logo {
  position: relative;
  margin-top: 50px;
  height: 50px;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-right: 30px;
  padding-bottom: 40px;
  margin-top: -40px;
}

.hero-content h1 {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
}
.hero-content h1 .highlight-color {
  color: #fd9e00;
}

.hero-content p {
  margin-bottom: 25px;
  font-size: 13px;
  color: #333;
  line-height: 1.5;
}

/* Inputs */
.form-control {
  background: #e9e9e9;
  border: none;
  border-radius: 6px;
  height: 34px;
  margin-bottom: 8px;
  font-size: 10px;
  box-shadow: none;
}

/* Checkbox */
.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.form-check-input {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  accent-color: #fd9e00;
  /* orange tick */
}

.form-check-label {
  font-size: 12px;
  color: #333;
  margin: 0;
  margin-left: 2px;
  margin-top: 5px;
}

/* Button */
.btn-custom {
  background: #4772cc;
  color: #fff;
  font-weight: 600;
  padding: 5px 40px;
  border-radius: 8px;
  display: inline-block;
  width: 100%;
  font-size: 15px;
  text-align: center;
  line-height: 1.2;
}
.btn-custom:hover {
  color: #fff;
}

.hero-img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.hero-img img {
  width: auto;
  height: 390px;
}
.mobile {
  display: none;
}
/* Responsive */
@media (max-width: 991px) {
  .logo {
    position: relative;
    margin-top: 10px;
    margin-bottom: 20px;
    height: 40px;
    z-index: 2;
  }

  .hero-content {
    position: relative;
    z-index: 1;
    padding-right: 30px;
    padding-bottom: 20px;
    margin-top: 0;
  }
  .hero-content h1 {
    font-size: 1.5rem;
    text-align: center;
  }
  .hero-content p {
    font-size: 14px;
    text-align: center;
  }
  .form-control {
    height: 32px;
  }
  .form-check-label {
    font-size: 10px;
  }
  .btn-custom {
    font-size: 13px;
  }
  .mobile {
    display: block;
    text-align: center;
    margin-bottom: 20px;
    margin-left: 30px;
  }
  .mobile .logo {
    height: 50px;
    width: auto;
  }
  .desktop {
    display: none;
  }
  .hero-section {
    padding: 40px 20px;
  }

  .bg-shape {
    width: 100%;
    height: 20%;
    top: auto;
    bottom: 0;
    clip-path: ellipse(100% 100% at 80% 100%);
  }

  .hero-content {
    padding-right: 0;
    padding-left: 0;
    margin-bottom: 30px;
  }

  .logo {
    top: 15px;
    right: 20px;
    width: 60px;
  }

  .hero-img {
    position: static;
    text-align: center;
    z-index: 1;
  }

  .hero-img img {
    width: auto;
    height: 380px;
    border-bottom-left-radius: 20px;
    margin-bottom: -100px;
  }
}

/*======= Hero section Css End here ========*/

/*======= CV section Css Start here ========*/
.cv-section {
  text-align: center;
  padding: 100px 0;
}
.cv-title {
  font-weight: 700;
  font-size: 1.5rem;
  display: inline-block;
  position: relative;
}
.sec-title::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 14px;
  background-color: #fd9e00; /* orange highlight */
  z-index: -1;
}
.cv-subtitle {
  font-size: 12px;
  color: #333;
  margin-top: 15px;
  margin-bottom: 25px;
}
.cv-text {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
}
@media (min-width: 768px) {
  .cv-title {
    font-size: 22px;
    font-weight: 700;
  }
  .cv-subtitle {
    font-size: 13px;
  }
  .cv-text {
    font-size: 1rem;
  }
}
/*======= CV section Css End here ========*/

/* ======= Tokens / Assets (update the URLs) ======= */
:root {
  --bg: #203764;
  --card: #ffffff;
  --ink: #000000;
  --muted: #444444;
  --accent: #ffa726;
  --shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  /* Fallback images if a slide doesn't provide data-left/right */
  --img-left: url("../img/slide-left.png");
  --img-right: url("../img/slide-right.png");
}

/* ======= Section (blue background) ======= */
.dual-slider {
  position: relative;
  background: var(--bg);
  padding: 60px 0 0 0;
  overflow: hidden;
}
.wrap {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}
.cards {
  color: var(--ink);
  border-radius: 18px;
}

/* ======= Slider core ======= */
.slider {
  position: relative;
  overflow: hidden;
}
.track {
  display: flex;
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1); /* smooth + snappy */
}
.slide {
  position: relative;
  min-width: 100%;
  padding: 40px 177px;
  overflow: visible;
  margin-bottom: 50px;
}

/* Per-slide edges that move with slide */
.slide .edge {
  position: absolute;
  bottom: -50px;
  height: 92%;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}
.slide .edge.left {
  left: 0;
  width: min(28vw, 450px);
  background-image: var(--img-left);
}
.slide .edge.right {
  right: -40px;
  width: min(28vw, 290px);
  background-image: var(--img-right);
}

/* White card */
.col.subcard {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
}

/* Titles */
.information_header {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue",
    Arial, "Noto Sans", "Liberation Sans", sans-serif;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
  margin: 0 0 8px;
}
.information_header span {
  position: relative;
  display: inline-block;
}
.information_header span:last-child::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 10px;
  background: var(--accent);
  z-index: -1;
}
.lead {
  font-size: 12px;
  color: #333;
  margin: 6px 0 22px;
  line-height: 1.45;
  text-align: center;
}

/* Checklist layout */
.cv-checklist {
  display: grid;
  grid-template-columns: 150px 1fr;
  column-gap: 13px;
}
.cv-checklist strong {
  font-size: 13px;
  font-weight: 800;
  text-align: right;
  padding: 5px 0;
  padding-right: 13px;
  border-right: 2px solid #000;
  line-height: 1.35;
}
.cv-checklist div {
  font-size: 13px;
  color: var(--muted);
  padding: 5px 0;
  line-height: 1.45;
}
.pdt-none {
  padding-top: 0 !important;
}
.pdb-none {
  padding-bottom: 0 !important;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 2;
}
.arrow svg {
  width: 50px;
  height: 50px;
  fill: var(--accent);
}
.arrow:focus-visible {
  outline: 2px dashed #000;
  outline-offset: 6px;
}
.arrow.left-col {
  left: 16%;
  display: none;
}
.arrow.right-col {
  right: 16%;
}

/* Progress pill (same placement/size as before) */
.progress-wrap {
  position: absolute;
  bottom: 50px;
  left: 29%;
  transform: translateX(-50%);
  width: 70px;
  height: 14px;
  background: #ccc;
  border-radius: 25px;
  overflow: hidden;
  z-index: 2;
}
.progress {
  height: 100%;
  width: 0;
  background: var(--accent);
  border-radius: 4px;
  transition: 0.25s;
}

.outside-card {
  display: none;
}



/* ======= Responsive ======= */
@media (max-width: 1024px) {
  .cv-checklist {
    grid-template-columns: 1fr;
  }
  .cv-checklist strong {
    border: none;
    text-align: left;
    padding-right: 0;
  }
  .slide .edge {
    height: 88%;
  }
  .slide .edge.left {
    width: min(32vw, 360px);
  }
  .slide .edge.right {
    right: -20px;
    width: min(26vw, 260px);
  }
}

@media (max-width: 991px) {
  .dual-slider {
    background-color: #fff;
    padding: 60px 0 !important;
    background: url(../img/slide-right-o.png);
    background-size: cover;
    background-position: -40px;
  }
  .cards {
    background: transparent;
  }
  .slide {
    padding: 18px 18px 24px;
  }
  /* Larger presence on mobile, like your previous intent */
  .slide .edge {
    height: 80vh !important;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.7;
  }
  .slide .edge.left {
    left: 0;
    width: 95% !important;
    background-position: left bottom;
  }
  .slide .edge.right {
    right: 0;
    width: 52vw;
    background-position: right bottom;
    display: none;
  }
  .col.subcard {
    background: #183866 !important;
    color: #fff !important;
  }
  .cv-checklist div {
    color: #fff !important;
  }
  .arrow.right-col {
    right: -10px;
    margin-top: 20px;
    border-radius: 100%;
    background-color: white;
    box-shadow: 1px 1px 1px 2px #00000038;
  }
  .arrow.left-col {
    left: -10px;
    margin-top: 20px;
    border-radius: 100%;
    background-color: white;
    box-shadow: 1px 1px 1px 2px #00000038;
  }
  .outside-card {
    display: block;
  }
  .inside-card {
    display: none;
  }
  .lead {
    font-size: 16px;
    padding-bottom: 20px;
    padding-top:20px;
  }

}
@media (max-width: 768px) {
  .dual-slider {
    padding: 100px 145px 120px;
  }
  .cv-checklist strong {
    font-size: 17px;
  }
  .cv-checklist div {
    font-size: 15px;
  }
}
@media (max-width: 584px) {
  .dual-slider {
    padding: 100px 100px 120px;
  }
  .slide .edge {
    height: 70vh;
  }
  .slide .edge.left,
  .slide .edge.right {
    width: 60vw;
  }
}
@media (max-width: 500px) {
  .slide .edge {
    height: 64vh;
  }
}
@media (max-width: 400px) {
  .dual-slider {
    padding: 100px 30px 120px;
  }
  .slide .edge {
    height: 60vh;
  }
}
/*======= Card slider start here ======*/
.card-slider-section {
  margin: 80px 30px;
}
.slider-title {
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.swiper {
  padding-bottom: 30px;
  padding-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
}

.step-box {
  border-radius: 12px;
  padding: 20px 20px;
  text-align: left;
  background: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.step-box i {
  text-align: right;
}
/* Active middle card */
.swiper-slide-active .step-box {
  background: #ff9f00; /* orange */
  color: #fff;
  transform: scale(1.05);
  border: 1px solid #ff9f00;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.step-box h5 {
  font-weight: 700;
  margin: 0 0 10px;
  font-size: 1.0625rem;
}
.step-box p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
}
.step-box i {
  font-size: 40px;
  margin-bottom: 10px;
  display: block;
  color: #203764;
  transition: all 0.3s ease;
}
.swiper-slide-active .step-box i {
  color: #fff;
}

/* ARROWS — restyled to match reference (no circle, bold orange chevrons) */
.swiper-button-prev,
.swiper-button-next {
  background: transparent;
  width: 44px;
  height: 44px;
  border-radius: 0;
  box-shadow: none;
  color: #ff9f00;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
}
.swiper-button-prev {
  left: 8px;
}
.swiper-button-next {
  right: 8px;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 28px;
  font-weight: 900;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: #d87f00;
}

/* PAGINATION as a compact progressbar under slides (matches pill from screenshot) */
.swiper-pagination {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  width: 100px;
  height: 12px;
  display: none;
}
.swiper-pagination-progressbar {
  background: #e6e6e6;
  border-radius: 999px;
  overflow: hidden;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #ff9f00;
  border-radius: 999px;
}

/* Custom scroll progress indicator below CTA (mirrors screenshot knob) */
.scroll-progress {
  width: 110px;
  height: 16px;
  padding: 0 !important;
  margin: 18px auto 0;
  background: #e6e6e6;
  border-radius: 999px;
  position: relative;
}
.scroll-progress__bar {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 16px;
  width: 36px;
  background: #ff9f00;
  border-radius: 999px;
  transition: width 0.35s ease;
}

.cta-box .btn-2 {
  background-color: #4772cc !important;
  color: #fff !important;
  margin-top: 40px !important;
  text-decoration: none;
}

/* Responsive: ensure layout scales nicely at 150% zoom and wide screens */
@media (min-width: 768px) {
  .step-box {
    min-height: 320px!important;
    padding: 24px 18px;
  }
}
@media (min-width: 992px) {
  .step-box {
    min-height: 360px;
  }
  .swiper-button-prev {
    left: -14px;
  }
  .swiper-button-next {
    right: -14px;
  }
}

@media screen and (max-width: 768px) {
  .card-slider-section {
    margin: 80px 10px;
  }
  .swiper {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
  .swiper-button-next {
    right: -12px;
  }
  .swiper-button-prev {
    left: -12px;
  }
  
  .step-box h5 {
    font-weight: 700;
    margin: 0 0 10px;
    font-size: 20px;
  }
  .step-box p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
  }
}

/*======= Card slider End here ======*/

/* === information section starts here === */
.information_section {
  width: 100%;
}

.information_section .section_wrapper {
  display: grid;
}

.information_section .section_wrapper > div {
  grid-area: 1/1;
}

.information_cart_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.image_container img {
  width: 100%;
  height: 100%;
}

.information_cart_container {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 56px 30px;
}

.information_header {
  text-align: center;
  font-weight: 700;
  font-size: 24px;
}

.information_header span {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.information_header span::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 14px;
  background-color: #fd9e00;
  z-index: -1;
}

.information_cart_container h2 {
  font-size: 14px;
  text-align: center;
  margin: 40px 0;
  font-weight: 600;
}

.upper_cart,
.lower_cart {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.information_card {
  background-color: #e9e9e9;
  width: 160px;
  padding: 20px;
  border-radius: 5px;
}

.information_card h1 {
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
}
.information_card p {
  font-size: 12px;
  font-weight: 300;
}

@media (max-width: 992px) {
  .information_section {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .information_cart_wrapper {
    display: flex;
    padding: 40px;
  }

  .information_cart_container {
    padding: 40px 0;
  }

  .image_container img {
    height: 100%;
    width: 100%;
  }

  .upper_cart,
  .lower_cart {
    padding: 0;
  }

  .information_cart_container > h1 {
    font-size: 13px;
    margin: 20px 0;
  }

  .information_cart_container > h2 {
    font-size: 13px;
    padding: 0;
    margin: 20px 0;
  }
  .information_cart_container > h1 {
    font-size: 20px;
    margin: 20px 0;
  }
}

@media screen and (max-width: 768px) {
  .information_cart_container > h1 {
    font-size: 20px;
    margin: 20px 0;
  }
  .information_card {
    background-color: #e9e9e9;
    width: 200px;
    padding: 20px 20px;
    border-radius: 5px;
  }
  .information_cart_container > h2 {
    font-size: 13px;
    padding: 0;
    margin: 20px 0;
    padding: 0 20px;
  }
  .information_card h1 {
    position: relative;
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
  }
  .information_card p {
    font-size: 16px;
    font-weight: 300;
  }
}

/* === information section ends here === */

.singpe-profile-section {
  padding: 100px 0;
}
.left-image {
  margin-left: -20px;
}
.left-image img {
  height: 560px;
  width: auto;
}
.right-content {
  padding-right: 150px;
}

/*====== Single Testimonial Section CSS Start =====*/

/* Right side text */
.profile-right {
  position: relative;
  z-index: 5;
}

.profile-right h2 {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 25px;
}

/* Yellow underline */
.profile-right h2 span {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.profile-right h2 span::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 14px;
  background: #fd9e00;
  z-index: -1;
}

.profile-right p {
  font-size: 13px;
  color: #333;
  margin-bottom: 20px;
}

/* Quote */
.quote-block {
  display: flex;
  align-items: flex-start;
  margin-top: 50px;
}
.quote-block .bi-quote {
    font-size: 6rem;
    color: #fd9e00;
    line-height: 1;
    position: absolute;
    flex-shrink: 0;
    left: -20px;
    bottom: 20px;
    opacity: 0.5;
}
.quote-block p {
  font-weight: 700;
  font-size: 16px;
  margin-left: 12px;
  color: #000;
  position: relative;
  z-index: 2;
}
.profile-section .sm-bg {
  display: none;
}
.mobile-img {
  display: none;
}
@media screen and (max-width: 991px) {
  .right-content {
    padding-right: 0;
  }
  .profile-right p {
    font-size: 15px;
    color: #333;
    margin-bottom: 10px;
  }
  .quote-block .bi-quote {
    font-size: 5rem;
    color: #fd9e00;
    line-height: 1;
    position: absolute;
    flex-shrink: 0;
    left: -10px;
    bottom: 20px;
  }
  .desk-img {
    display: none;
  }
  .mobile-img {
    display: block !important;
  }
}
/*====== Single Testimonial Section CSS End =====*/

/*====== Google reviews Section CSS Start =====*/
.review-section-unique {
  text-align: center;
  padding: 100px 0 0 0;
  background: #fff;
  margin-bottom: -200px;
}

.review-bg-unique .information_header {
  margin-bottom: 50px;
}

.review-swiper {
  padding-bottom: 60px;
}

.review-card-unique {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  height: 380px;
}

.review-card-unique:hover {
  transform: translateY(-5px);
}

.review-img-unique {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.stars-unique {
  color: #fd9e00;
  font-size: 25px;
  margin-bottom: 15px;
}

.review-text-unique {
  font-size: 16px;
  color: #333;
}

/* Swiper Pagination (bullets) */
.swiper-pagination-bullet {
  background: #fd9e00;
  opacity: 0.7;
}
.swiper-pagination-bullet-active {
  background: #fd9e00;
  opacity: 1;
}

/*====== Google reviews Section CSS End =====*/

/* Footer */
.footer {
  background-color: #4772cc;
  color: #fff;
  text-align: center;
  padding: 300px 0 20px 0;
  position: relative;
}

.cta-box .cta-btn {
  background: #fff;
  color: #000;
  display: inline-block;
  font-size: 13px;
  font-weight: bold;
  padding: 5px 70px;
  border-radius: 7px;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  font-size: 12px;
  padding: 0 60px;
}

.footer-bottom .links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-bottom .links a {
  color: #fff;
  text-decoration: none;
}

/* Responsive */
@media (min-width: 768px) {
  .footer .cta-box {
    font-size: 26px;
  }
  .footer .note-box {
    position: absolute;
    right: 20px;
    top: 40px;
    margin: 0;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 100px;
  }
}
@media screen and (max-width: 768px) {
  .cta-box .cta-btn {
    margin-bottom: 60px !important;
  }
}

.google-btn{
  --g-blue:#4285F4; --g-red:#EA4335; --g-yellow:#FBBC05; --g-green:#34A853;
  display:inline-flex; align-items:center; gap:.6rem;
  background:#fff; color:#202124; border:1px solid #dadce0;
  padding:.7rem 1rem; border-radius:999px; font-weight:600;
  text-decoration:none; box-shadow:0 1px 2px rgba(0,0,0,.06);
  transition:box-shadow .2s, transform .02s, background .2s, border-color .2s;
}
.google-btn:hover{ box-shadow:0 3px 12px rgba(0,0,0,.12); border-color:#c9cccf; }
.google-btn:active{ transform:translateY(1px); }

.google-btn .g-pin{ font-size:1.05rem; line-height:1; }
.google-btn .g-text{ white-space:nowrap; }

.google-btn .g-dots{ display:inline-flex; gap:.28rem; margin-left:.2rem; }
.google-btn .g-dots i{ width:.4rem; height:.4rem; border-radius:50%; display:block; }
.google-btn .g-dots i:nth-child(1){ background:var(--g-blue); }
.google-btn .g-dots i:nth-child(2){ background:var(--g-red); }
.google-btn .g-dots i:nth-child(3){ background:var(--g-yellow); }
.google-btn .g-dots i:nth-child(4){ background:var(--g-green); }

/* Variante scura automatica */
@media (prefers-color-scheme: dark){
  .google-btn{ background:#2b2d31; color:#e8eaed; border-color:#3c4043; }
  .google-btn:hover{ border-color:#5f6368; }
}

@media (max-width: 1024px) {
    .slide .edge {
      display: none!important
    }
}

/* Desktop: griglia statica per la sezione .mySwiper */
@media (min-width: 768px) {
  .card-slider-section .mySwiper .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    transform: none !important; /* evita translateX di Swiper */
  }
  .card-slider-section .mySwiper .swiper-slide {
    width: auto !important;   /* niente width forzata */
    height: auto !important;
  }
  /* nascondi frecce/paginazione e la progress bar custom su desktop */
  .card-slider-section .swiper-button-prev,
  .card-slider-section .swiper-button-next,
  .card-slider-section .swiper-pagination,
  .card-slider-section .scroll-progress {
    display: none !important;
  }
}

/* Mobile: torna flex per lo slider */
@media (max-width: 767.98px) {
  .card-slider-section .mySwiper .swiper-wrapper { display: flex !important; }
  .card-slider-section .scroll-progress { display: block; }
}
img.cv-sfo {
    width: 75%;
    max-width: 200px;
}

.review-card-unique {
    overflow: hidden;
}