@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

* {
  font-family: "Poppins", sans-serif;
}

/* QUOTE SECTION BACKGROUND */
.quote-section {
  background-color: #132880;
  color: white;
  padding: 100px 59px 0px 59px;
  display: flex;
  justify-content: center;
}

/* CONTAINER */
.quote-container {
  max-width: 1450px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

/* LEFT FORM */
.quote-title {
  font-size: 40px;
  font-weight: 700;
  color: #a8ffff;
  margin-top: 40px;
}

.quote-field {
  margin-bottom: 30px;
}

.quote-field label {
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
}

.quote-field input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid white;
  padding: 10px 0;
  font-size: 20px;
  color: white;
  outline: none;
}

.quote-field input::placeholder {
  color: #ffffffa8;
}

/* RIGHT SIDE TEXT */
.quote-right {
  font-size: 25px;
  line-height: 1.7;
  margin-top: 39px;
  color: #a8ffff;
}

.quote-subtitle {
  font-size: 33px;
  font-weight: 700;
  margin-top: 47px;
  margin-bottom: 0px;
  padding-bottom: 20px;
  color: #ffffff;
}

.floating-group {
  position: relative;
  margin-bottom: 30px;
}

.floating-group label {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
  pointer-events: none;
  font-size: 20px;
}

.floating-group input {
  width: 100%;
  border: none;
  border-bottom: 2px solid #fff;
  background: transparent;
  padding: 20px 0;
  color: #fff;
  outline: none;
}

.floating-group input:focus + label,
.floating-group input:not(:placeholder-shown) + label {
  top: -20px;
  font-size: 25px;
  color: #a8ffff;
}

/* Curved text SVG */
.arc-svg {
  position: absolute;
  top: -129px;
  left: 50%;
  transform: translateX(-50%);
}

.arc-svg path {
  fill: none;
}

.arc-text {
  fill: #a8ffff;
  font-size: 17px;
  font-weight: 700;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 900px) {
  .quote-container {
    grid-template-columns: 1fr;
  }

  .quote-right {
    margin-top: 30px;
  }
}

/* Container */
.dropdown-box {
  position: relative;
  margin-bottom: 35px;
}

/* Select box */
.dropdown-box select {
  width: 100%;
  /* padding: 10px 10px 2px 1xp; */
  font-size: 20px;
  background: transparent;
  color: #ffffff;
  border: none;
  border-bottom: 2px solid #ffffff;
  outline: none;
  appearance: none;
  cursor: pointer;
  padding-top: 22px;
  padding-bottom: 10px;
}

/* Label */
.dropdown-box label {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  color: #cfd8ff;
  transition: 0.3s ease;
  pointer-events: none;
}

/* Floating label when selected or focused */
.dropdown-box select:focus + label,
.dropdown-box select:not([value=""]) + label {
  top: -18px;
  font-size: 20px;
  color: #fff;
}

/* Custom arrow */
.dropdown-box::after {
  content: "";
  position: absolute;
  right: 0px;
  left: 94%;
  /* Adjust horizontal position */
  top: 20px;
  /* Adjust vertical placement */
  width: 100px;
  /* Perfect arrow width */
  height: 35px;
  /* Perfect arrow height */
  pointer-events: none;

  background-image: url("../images/pricing/dwon-arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Styling for dropdown options */
.dropdown-box select option {
  background: #07206e;
  /* Dark blue */
  color: #ffffff !important;
  /* White font */
}

/* SECTION */
.Organisation-section {
  background-color: #132880;
  color: white;
  padding: 0px 50px 100px 60px;
  display: flex;
  justify-content: center;
}

/* GRID */
.Organisation-container {
  max-width: 1450px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.required-star {
  color: #a8ffff;
  /* Cyan/blue like your theme */
  font-weight: inherit;
}

/* BUTTON */
.Organisation-btn {
  margin-top: 20px;
  background: linear-gradient(to bottom, #8cd1ff, #3775ff);
  color: #fff;
  font-size: 20px;
  padding: 15px 40px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* RIGHT SIDE */
.pricing-right {
  font-size: 20px;
  line-height: 1.7;
}

.pricing-title {
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  padding: 0px;
  margin-top: 34px;
}

.pricing-point {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.pricing-point .icon {
  width: 65px;
  margin-right: 15px;
}

.pricing-para {
  color: #a8ffff;
  font-size: 22px;
}

.pricing-subtitle {
  font-size: 38px;
  font-weight: 700;
  margin-top: 40px;
  color: #fff;
  padding: 6px;
}

.pricing-image {
  margin-top: 25px;
  width: 100%;
  border-radius: 20px;
  border: 5px solid #65acf0;
}

.select-field {
  position: relative;
  margin-bottom: 35px;
}

.select-field select {
  width: 100%;
  padding: 15px 0;
  font-size: 18px;
  background: transparent;
  border: none;
  border-bottom: 2px solid #fff;
  color: #fff;
  appearance: none;
  outline: none;
  cursor: pointer;
}

/* arrow */
.select-field::after {
  content: "V";
  position: absolute;
  right: 0;
  top: 18px;
  color: #a8ffff;
  font-size: 20px;
  pointer-events: none;
}

/* floating label */
.select-field label {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  color: #cfd8ff;
  transition: 0.3s;
  pointer-events: none;
}

/* float label when selected */
.select-field select:focus + label,
.select-field select:not([value=""]) + label {
  top: -18px;
  font-size: 15px;
  color: #a8ffff;
}

/* detect selected option for float trick */
.select-field select option[disabled][hidden] {
  color: transparent;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pricing-container {
    grid-template-columns: 1fr;
  }
}

/* Background section */
.packages-section {
  background: #132880;
  padding: 120px 40px 120px 40px;
  color: #fff;
  font-family: Poppins, sans-serif;
}

/* 3 COLUMN LAYOUT EXACTLY LIKE YOUR IMAGE */
.packages-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  grid-template-columns: 1fr minmax(400px, 1.3fr) 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

/* Package small card */
.package-card {
  height: 350px;
  text-align: center;
}

/* .package-card:hover {
    transform: translateY(-12px);
    box-shadow: 0px 20px 35px rgba(0, 0, 0, 0.35);
} */

.package-card {
  /* transition: transform .35s ease, box-shadow .35s ease; */
}

.package-title {
  font-size: 26px;
  font-weight: 600;
  /* margin-bottom: 15px; */
  text-transform: uppercase;
  color: white;
  padding: 0px;
}

/* Image sizes like your screenshot */
.package-img {
  width: 260px;
  height: 270px;
}

.package-card:hover .package-img {
  /* transform: scale(1.06); */
}

.package-img {
  /* transition: transform .45s ease; */
}

/* White floating text box */
.package-box {
  background: #fff;
  color: #000;
  padding: 10px 5px 10px 5px;
  /* border-radius: 6px; */
  /* margin-top: -41px; */
  width: 50%;
  height: 132px;
  position: relative;
  left: 140px;
  top: -132px;
  transform: translateX(-50%);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}

.package-box {
  /* opacity: 1; */
  /* transform: translate(-50%, -10px);
    transition: all .45s ease; */
}

.package-card:hover .package-box {
  /* transform: translate(-50%, -20px);
    opacity: 1; */
}

.package-box h4 {
  font-size: 17px;
  line-height: 18px;
  padding-bottom: 0px;
  text-align: left;
  color: #07206e;
}

.package-box1 {
  font-size: 17px;
  font-weight: bold;
  line-height: 20px;
  padding-bottom: 0px;
  text-align: left;
  color: #07206e;
}

.img-para {
  font-size: 13px;
  text-align: left;
  line-height: 15px;
  margin: 0px;
}

.img-para1 {
  font-size: 13px;
  margin-top: -5px;
  text-align: left;
  line-height: 19px;
}

/* Center tall feature card */
.feature-card {
  border-radius: 0px;
  position: relative;
  aspect-ratio: 1 / 1;
  /* Make it a square */
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  /* Ensure image covers the square area */
}

.feature-text {
  position: absolute;
  top: 3%;
  width: 100%;
  text-align: center;
  color: white;
}

.feature-text h5 {
  font-size: 30px;
  font-weight: 300;
  line-height: 1.4;
  color: white;
}

.feature-text span {
  color: #ffffff;
  font-weight: 700 !important;
  margin-left: 16px !important;
}

/* CENTER BUTTON */
.feature-btn {
  margin-top: 20px;
  padding: 12px 40px;
  font-size: 18px;
  background: linear-gradient(to bottom, #8cd1ff, #3775ff);
  border: none;
  border-radius: 40px;
  color: #fff;
  cursor: pointer;
}

.left-column {
  height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 30px;
}

.right-column {
  height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.feature-btn {
  transition: transform 0.25s ease;
}

.feature-btn:hover {
  transform: scale(1.08);
}

/* .package-card {
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0px);
    }
} */

/* RESPONSIVE — PERFECT FOR MOBILES */
@media (max-width: 1000px) {
  .packages-layout {
    grid-template-columns: 1fr;
  }

  .center-column {
    order: -1;
  }

  .package-card {
    margin-bottom: 30px;
  }
}

/*/* MAIN SECTION */
.cafm-section {
  background: #132880;
  padding: 10px 0;
  font-family: Poppins, sans-serif;
}

.cafm-container {
  width: 90%;
  margin: auto;
}

/* ==========================
   HEADER (5-column grid)
========================== */

.cafm-header {
  background: white;
  padding: 9px 40px;
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  align-items: center;
}

.cafm-header h2 {
  color: #0a2a7b;
  font-size: 32px;
  font-weight: 700;
  padding: 0px;
}

.package-headings {
  grid-column: 2 / 6;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.package-headings span {
  font-size: 18px;
  font-weight: 700;
  color: #0a2a7b;
  text-align: right;
}

/* ==========================
   BODY (same 5-column grid)
========================== */

.cafm-body {
  background: #072f7b;
  padding: 20px 10px 10px 10px;
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 20px;
}

/* ==========================
   LEFT BULLET LIST
========================== */

/* .feature-list {
    grid-column: 1 / 2;
    margin: 0;
    padding: 0 0 0 20px;
    list-style: disc;
    color: white;
    width: 40%;
}

.feature-list li {
    font-size: 20px;
    margin-bottom: 18px;
} */

.feature-list {
  list-style-position: inside;
  padding: 0;
  margin: 0;
  color: white;
  width: 40%;
}

.feature-list li {
  padding: 10px 0;
  font-size: 20px;
  margin-bottom: 18px;
  /* border-bottom: 1px solid #eee; */
}

/* ==========================
   TICK COLUMNS (aligned EXACTLY)
========================== */

.tick-columns {
  grid-column: 2 / 6;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.tick-col {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: -11px;
}

.tick-col span {
  color: #a8ffff;
  font-size: 26px;
  font-weight: 700;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Background Section */
.packages-hero {
  background-image: url("../images/pricing/banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.wrap {
  width: 100%;
  max-width: 1300px;
  margin: auto;
  position: relative;
  top: 120px;
}

.top-bar1 {
  background: var(--blue);
  height: 20px;
  border-radius: 6px;
  margin-bottom: 18px;
}

.packages-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.heading-arc {
  width: 180px;
  /* adjust to match your circle width */
  height: 90px;
  /* half of width for semicircle */
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -60px;
  /* moves above the badge */
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.heading-arc span {
  font-size: 16px;
  font-weight: 700;
  color: #a7f0ff;
  /* glow blue text like screenshot */
  text-transform: uppercase;
  letter-spacing: 2px;

  /* MAGIC ARC EFFECT */
  display: inline-block;
  transform: rotate(-10deg);
  transform-origin: bottom center;
}

/* Apply curvature */
.heading-arc span {
  --arc: 180deg;
  /* arc amount */
  --radius: 90px;
  /* circle radius */

  display: inline-block;
  padding-bottom: calc(var(--radius) / 8);
}

.heading-arc span::before {
  content: attr(data-text);
  position: absolute;
  width: 100%;
  height: 100%;
}

/* Package Card */
.pkg {
  background-color: #132880;
  margin-bottom: 60px;
  height: 390px;
  width: 248px;
  border-radius: 35px;
  padding: 70px 14px 30px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  border: 4px solid rgb(255 255 255);
}

.heading {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -88px;
  width: 220px;
  text-align: center;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
}

.badge {
  position: absolute;
  top: -77px;
  left: 19%;
  /* transform: translateX(-50%); */
  width: 150px !important;
  height: 150px;
  border-radius: 50%;
  background: #65acf0;
  border: 6px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.badge img {
  width: 100px;
  height: 120px;
  object-fit: contain;
}

/* Content */
.content {
  color: #fff;
}

.content h4 {
  margin: 10px 0px 0px 37px;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  color: white;
  padding: 0px;
}

.content ul {
  margin: 8px 0 0 18px;
  padding: 0;
  line-height: 1.45;
  font-size: 16px;
  color: #e6f6ff;
}

.content ul li::marker {
  color: white;
  font-weight: 700;
}

/* CTA Button */
.pkg-footer {
  text-align: center;
  margin-top: 12px;
}

.cta {
  background: linear-gradient(to bottom, var(--btn-light), var(--btn-dark));
  padding: 10px 20px;
  border-radius: 28px;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(55, 117, 255, 0.35);
  text-decoration: none;
  display: inline-block;
}

/* Compare Button */
.compare-row {
  text-align: center;
  margin-top: 25px;
}

.compare {
  background: linear-gradient(#98e24b, #4fb21e);
  color: #fff;
  padding: 10px 26px;
  border-radius: 22px;
  font-weight: 700;
  display: inline-block;
}

/* restore bullet dots */
.pkg .content ul {
  list-style: disc !important;
  margin: 8px 0 0 18px;
  padding-left: 18px;
  color: #fff;
}

.pkg .content ul li::marker {
  color: #fff;
  /* same as screenshot light teal */
  font-size: 14px;
}

/* move button OUTSIDE the card */
.pkg-footer {
  margin-top: 20px;
  text-align: center;
  position: relative;
  z-index: 5;
  bottom: 40px;
}

/* button styling EXACT like screenshot */
.cta {
  display: inline-block;
  min-width: 180px;
  text-align: center;
  padding: 12px 20px;
  border-radius: 30px;

  background: linear-gradient(180deg, #87c7ff 0%, #356dff 100%);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;

  box-shadow: 0px 8px 20px rgba(0, 80, 255, 0.35);
}

/* ensure button is separate from the card visually */
.pkg {
  margin-bottom: 60px;
}

.packages-info {
  text-align: center;
  margin-top: -20px;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.4;
}

.packages-info p {
  margin: 4px 0;
  opacity: 0.9;
}

.card-badge {
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
}

.compare {
  background: linear-gradient(#98e24b, #4fb21e);
  color: #fff;
  padding: 10px 26px;
  border-radius: 22px;
  font-weight: 700;
  display: inline-block;
  cursor: pointer;

  /* base animation setup */
  /* transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease; */
}

.compare:hover {
  /* transform: translateY(-6px) scale(1.05);
    box-shadow: 0px 8px 20px rgba(152, 226, 75, 0.55);
    filter: brightness(1.15); */
}

/* Responsive */
@media (max-width: 1000px) {
  .packages-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .packages-row {
    grid-template-columns: 1fr;
  }

  .heading {
    top: -78px;
    width: 160px;
    font-size: 12px;
  }

  .pkg {
    padding: 80px 18px 22px;
  }
}

.card-badge {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.card-badge:hover {
  /* transform: translateY(-15px);
    box-shadow: 0 20px 45px rgba(255, 252, 252, 0); */
}

/* ====================================================
   BASE BUTTON STYLING (Pill Shape and Text)
==================================================== */

.glossy-btn {
  /* Shape and Display */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  /* Adjust padding to match button height/width */
  border-radius: 50px;
  /* Highly rounded, pill shape */
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;

  /* Text */
  color: white;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;

  /* Transition for subtle hover effects */
  transition: all 0.2s ease;
}

/* ====================================================
   DARK BLUE COLOR AND 3D/GLOSSY EFFECT
==================================================== */
.request-img {
  width: 40%;
  height: auto;
  display: block;
  cursor: pointer;
}

.booklive-link {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

@media (min-width: 1100px) and (max-width: 1400px) {
  .package-card {
    height: 310px;
    text-align: center;
  }

  .package-box h4 {
    font-size: 15px;
    line-height: 15px;
    padding-bottom: 0px;
    text-align: left;
    color: #07206e;
  }

  .package-title {
    font-size: 22px;
    font-weight: 600;
    /* margin-bottom: 15px; */
    text-transform: uppercase;
    color: white;
    padding: 0px;
  }

  .img-para {
    font-size: 11px;
    text-align: left;
    line-height: 15px;
  }

  .img-para1 {
    font-size: 11px;
    margin-top: -5px;
    text-align: left;
    line-height: 17px;
    text-align: left;
  }

  .package-box {
    background: #fff;
    color: #000;
    padding: 10px 10px 10px 10px;
    width: 53%;
    height: 125px;
    position: relative;
    left: 37%;
    top: -126px;
    transform: translateX(-50%);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
  }

  .quote-section {
    background-color: #132880;
    color: white;
    padding: 0px 60px;
    display: flex;
    justify-content: center;
  }

  .package-img {
    width: 200px;
    height: 220px;
  }

  .feature-img {
    width: 100%;
    height: 610px;
    object-fit: cover;
  }

  .feature-text h5 {
    font-size: 25px;
    font-weight: 300;
    line-height: 1.4;
    color: white;
  }

  .quote-para {
    font-size: 22px;
    text-align: justify;
    line-height: 32px;
  }

  .pricing-para {
    font-size: 20px;
    text-align: justify;
    line-height: 32px;
  }

  .floating-group input {
    width: 100%;
    border: none;
    border-bottom: 2px solid #fff;
    background: transparent;
    padding: 15px 0;
    color: #fff;
    outline: none;
  }

  .quote-title {
    font-size: 35px;
    font-weight: 500;
    color: #a8ffff;
    margin-top: 30px;
    padding: 0px;
  }

  .floating-group {
    position: relative;
    margin-bottom: 20px;
  }

  .quote-subtitle {
    font-size: 28px;
    font-weight: 600;
    margin-top: 47px;
    margin-bottom: 0px;
    padding-bottom: 20px;
    color: #ffffff;
  }

  .pricing-point {
    display: flex;
    align-items: center;
    margin-top: 16px;
  }

  .pricing-title {
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    padding: 0px;
    margin-top: 24px;
  }

  .pricing-subtitle {
    font-size: 41px;
    font-weight: 700;
    margin-top: 36px;
    color: #fff;
    padding: 0px;
    text-align: center;
  }

  .cafm-section {
    background: #132880;
    padding: 10px 0;
    font-family: Poppins, sans-serif;
    /* max-width: 1240px; */
    width: 95%;
    margin-left: 31px;
  }
}

.btn-top1 {
  position: relative;
  bottom: 8%;
}

.site_blue_button2 {
  width: 200px !important;
  display: inline-block;
  padding: 3px !important;
  border-radius: 30px;
  border: 6px solid #76b9f7;
  background: linear-gradient(
    to bottom,
    #b4daff 0%,
    #8ec7ff 50%,
    #76b9f7 50%,
    #76b9f7 100%
  );
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.site_blue_button2:hover,
.site_blue_button2:hover span {
  color: #061c93 !important;
}

.site_green_button2 {
  width: fit-content !important;
  display: inline-block;
  padding: 0px 30px !important;
  border-radius: 30px;
  border: 6px solid #69a632;
  background-color: #55b719;
  background: linear-gradient(
    to bottom,
    #98cc5b 0%,
    #98cc5b 50%,
    #69a632 50%,
    #69a632 100%
  );
  color: #fff;
  text-align: center;
  font-size: 22px !important;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  line-height: 23px !important;
  height: 60px !important;
}

/* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

.popup-box {
  width: 100%;
  max-width: 1400px;
  max-height: 90%;
  border-radius: 18px;
  overflow-y: scroll;
  /* scrolling enabled */
  scrollbar-width: none;
  /* Firefox hide scrollbar */
  -ms-overflow-style: none;
  /* IE/Edge hide scrollbar */
}

.popup-box::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari hide scrollbar */
}

/* Close Button */
.popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 30px;
  border: none;
  background: none;
  cursor: pointer;
  color: #444;
}

.popup-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #132880;
}

/* Header Row */
.cafm-header-row {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  background: #132880;
  color: #fff;
  padding: 15px 10px;
  border-radius: 10px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

.cafm-header-left {
  text-align: left;
  padding-left: 10px;
}

/* Table Rows */
.cafm-table {
  width: 100%;
}

.cafm-row {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  padding: 12px 10px;
  border-bottom: 1px solid #e5e5e5;
}

.cafm-row:hover {
  background: #f5f9ff;
}

.cafm-feature {
  font-size: 15px;
  color: #333;
}

.cafm-tick {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #4fb21e;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .popup-box {
    padding: 15px;
  }

  .cafm-header-row,
  .cafm-row {
    grid-template-columns: 1.5fr repeat(4, 0.8fr);
  }
}

.popupclose {
  position: absolute;
  top: 15px;
  right: 18px;

  width: 36px;
  height: 36px;

  background: rgba(0, 0, 0, 0.75);
  /* black background */
  color: white;
  border: none;
  border-radius: 50%;
  /* round button */

  font-size: 22px;
  font-weight: bold;
  line-height: 34px;
  text-align: center;
  cursor: pointer;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  /* shadow effect */
  transition: 0.2s ease;
}

/* Hover effect */
.popupclose:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

.empty-space {
  height: 25px;
  /* adjust as needed */
  display: block;
}

.feature-card {
  position: relative;
  display: inline-block;
}

.request-overlay {
  position: absolute;
  top: 62%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.2s ease;
  height: 90px;
}

.request-overlay:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

/* Button Wrapper */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 65px;
  height: 65px;
  background: #132880;
  /* Blue circle */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  text-decoration: none;

  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;

  z-index: 9999;
}

/* Show button */
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* Centered GIF */
.scroll-gif {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transform: rotate(-90deg);
  /* arrow up */
}

html {
  scroll-behavior: smooth;
}

/* Show button */
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* Centered GIF */
.scroll-gif {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transform: rotate(-90deg);
  /* arrow up */
}

html {
  scroll-behavior: smooth;
}

.button-text {
  position: absolute;
  top: 62%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  pointer-events: none;
  letter-spacing: 2px;
  z-index: 99;
  transition: color 0.3s ease;
  /* 👈 smooth */
}

/* Change color when the image is hovered */
.request-overlay:hover + .button .button-text,
.button:hover .button-text {
  color: #132880;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.btn-text:hover {
  color: #0b2c7a; /* match your theme blue */
}
