.text-red-color {
  color: red;
}

.text-gradient-color {
  background: linear-gradient(27deg, rgba(255, 0, 0, 1) 0%, rgba(255, 61, 61, 1) 86%);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 6s ease infinite;
  font-weight: 700;
}

.bg-red-color {
  background-color: red;
}

.red-strip {
  background-color: black;
  color: #fff;
}
/* ----------------------------------------- */
/* navbar */
.nav-active {
  background-color: red;
}

.nav-active a {
  color: white;
}

.navbar {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  font-style: Arial, sans-serif;
}

.city-dropdown .dropdown-toggle {
  background-color: #ffefef;
  border: none;
  font-weight: 600;
  padding: 24px 16px;
  border-radius: 4px;
}


@media (max-width: 991px) {
  .city-dropdown {
    margin: 10px 0;
  }
}
/* ------------------------------------------------ */

.box-shadow {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
  overflow-x: hidden;
}

    .banner-img-box {
      height: 100%;
      display: flex;
      align-items: flex-end;
    }

    /* Ensure full image visible without crop */
    .hero-slide-img {
      width: 100%;
      height: auto;
      object-fit: contain; /* No cropping */
    }




/* ✅ Floating square icons */
.floating-icon {
  position: absolute;
  background-color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: floatUpDown 3s ease-in-out infinite;
  z-index: 5;
}

.floating-icon i {
  font-size: 1.2rem;
}

@keyframes floatUpDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Icon Positions */
/* .icon-1 { top: 10%; left: 8%; animation-delay: 0s; } */
.icon-1 {
  top: 30%;
  right: 35%;
  animation-delay: 0s;
}

.icon-2 {
  top: 20%;
  right: 10%;
  animation-delay: 0.4s;
}

.icon-3 {
  top: 60%;
  right: 40%;
  animation-delay: 0.8s;
}

/* .icon-3 { top: 50%; left: 6%; animation-delay: 0.8s; } */
.icon-4 {
  bottom: 18%;
  right: 18%;
  animation-delay: 1.2s;
}

.icon-5 {
  bottom: 17.5%;
  right: 7%;
  animation-delay: 1.6s;
}

/* .icon-5 { bottom: 8%; left: 30%; animation-delay: 1.6s; } */

/* ✅ Form Box */
.form-box {
  background-color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 20px;
  margin-top: 30px;
}

.form-box .form-control,
.form-box textarea {
  border-radius: 6px;
  margin-bottom: 15px;
}

.form-box button {
  width: 35%;
  padding: 5px;
  font-weight: 600;
  text-align: center;
}

/* Responsive */
@media (max-width: 991.98px) {
  .floating-icon {
    display: none;
  }
}

/* css for City Selection Modal */
.city-card {
  cursor: pointer;
  border: 1px solid #eee;
  border-radius: 10px;
  transition: 0.3s;
  padding: 2px;
  text-align: center;
}

.city-card:hover {
  border-color: red;
  transform: translateY(-4px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.city-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 8px;
}

.bg-img {
  background-image: url('../images/banner-bg-img.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15; /* Optional for overlay effect */
}
/* ------------------------------------------------------ */

/* OUR SERVICES */
.service-card {
  background: #ffffff;
  border-radius: 2rem;
  text-align: center;
  padding: 20px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  background: radial-gradient(ellipse at center,
      rgba(17, 47, 83, 0.1) 0%,
      transparent 70%);
}

.service-inner {
  position: relative;
  z-index: 1;
  transition: transform 0.5s ease;
}

.service-card:hover .service-inner {
  transform: translateY(-15px);
}

.boxy {
  width: 100%;
  max-width: 200px;
  height: auto;
  aspect-ratio: 1/1;
  /* Keeps it square */
  margin: 0 auto 10px;
  border: 6px solid #f0f0f0;
  border-radius: 15px;
  background-color: #ebebeb;
  position: relative;
  top: -60px;
}

.boxy img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.service-card:hover .boxy {
  border: 10px solid #fff;
}

.service-text {
  /* color: #112f53; */
  /* color: red; */
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

.text-content {
  position: relative;
  top: -20px;
}

.read-more-btn {
  background-color: red;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 5px 0;
  /* width: 100%; */
  /* display: block; */
  font-weight: 500;
  /* border: 1px solid red; */
}

@media (max-width: 576px) {
  .service-card {
    padding: 15px;
  }

  .boxy {
    max-width: 100px;
    top: -25px;
  }

  .service-text {
    font-size: 1rem;
  }
}
/* ------------------------------------------- */

/* Css for AY-image-section */
/* Left & Right Images */
.a-image {
  max-width: 250px;
  height: auto;
  object-fit: contain;
}

.y-image {
  max-width: 250px;
  height: auto;
  object-fit: contain;
}

/* Box Styles */
.ay-img-box {
  height: 90px;
  width: 90px;
  margin: 0 auto;
}

.ay-img-box img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.ay-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  padding: 0.75rem;
  transition: transform 0.3s ease;
}

.ay-box:hover {
  transform: translateY(-5px);
  background: #FBE1E1;
}

.ay-box h6 {
  font-size: 0.95rem;
}

.ay-box p {
  font-size: 0.8rem;
  color: #555;
}

/* Responsive */
@media (max-width: 991.98px) {

  .a-image,
  .y-image {
    max-width: 180px;
    margin-bottom: 1rem;
  }
}

@media (max-width: 575.98px) {

  .a-image,
  .y-image {
    max-width: 140px;
  }
}

/* ---------------------------------------------- */

/* css for our patners */
.stats-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 100px;
}

.stats-left,
.stats-right {
  flex: 1 1 50%;
  color: white;
  /* padding: 2rem 1rem; */
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.stats-left {
  background-color: black;
  color: white;
  clip-path: polygon(0 0, 95% 0, 85% 100%, 0% 100%);
  z-index: 2;
}

.stats-right {
  background-color: red;
  color: white;
  clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
  margin-left: -10%;
  z-index: 1;
}

.stat-item {
  flex: 1 1 50%;
  text-align: center;
  padding: 1rem;
}

.stat-icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.stat-value {
  font-size: 2rem;
  font-weight: bold;
}

.stat-label {
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 767.98px) {
  .stats-wrapper {
    flex-direction: column;
  }

  .stats-left,
  .stats-right {
    clip-path: none;
    margin-left: 0;
    flex: 1 1 100%;
    padding: 2rem 1rem;
  }

  .stat-item {
    flex: 1 1 100%;
  }
}

/* -------------------------------------------------------- */
/* css for Who we are  */
.video-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  /* border: 1px solid; */
}

.video-wrapper video {
  width: 100%;
  height: 50%;
  display: block;
}

/* Gradient overlays */
.video-gradient::before,
.video-gradient::after,
.video-gradient .left-gradient,
.video-gradient .right-gradient {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  content: "";
}

.video-gradient::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 11%;
  background: linear-gradient(to bottom, rgba(255, 255, 255), transparent);
}

.video-gradient::after {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 11%;
  background: linear-gradient(to top, rgba(255, 255, 255), transparent);
}

.video-gradient .left-gradient {
  top: 0;
  left: 0;
  width: 8%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255), transparent);
}

.video-gradient .right-gradient {
  top: 0;
  right: 0;
  width: 8%;
  height: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255), transparent);
}

/* -------------------------------------------------------------- */
/* css for pricing-header-section */
.pricing-header {
  position: relative;
  text-align: center;
  padding: 2rem 1rem;
  background-color: #ffffff;
  overflow: hidden;
}

.bg-text-outline {
  font-size: 5rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px #f0f0f0;
  /* text-stroke: 1px #f0f0f0; */
  text-transform: uppercase;
  position: absolute;
  /* bottom:; */
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
}

.main-title {
  font-size: 2.1rem;
  font-weight: 800;
  /* color: #001e5a; */
  color: black;
  z-index: 1;
  position: relative;
}

@media (max-width: 768px) {
  .bg-text-outline {
    font-size: 3.5rem;
    -webkit-text-stroke: 0.7px #f0f0f0;
  }

  .main-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .bg-text-outline {
    font-size: 2.5rem;
  }

  .main-title {
    font-size: 1.25rem;
  }
}

/* ------------------------------------------- */
/* css for pricing-cards-section */
.pricing-card {
  padding: 1rem;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top-left-radius: 0;
  border-top-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 0;
}

.bg-red {
  background-color: red;
  color: white;
}

.pricing-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.plan-title {
  font-weight: 600;
  font-size: 1.25rem;
  /* margin-bottom: 0.5rem; */
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 700;
  /* margin: 1rem 0; */
}

.price-decimal {
  font-size: 1.2rem;
  font-weight: 500;
}

/* --------------------------- */

.feature-list .feature-item {
  cursor: pointer;
  padding: 12px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;

}

.feature-list .feature-item.active {
  background-color: #e9f5ff;
  /* border-left-color: #0d6efd; */
  border-left-color: red;
  font-weight: 600;
}


/* Table Styling */
.pricing-table {
  border-collapse: separate !important;
  border-spacing: 10px 0;
  /* column gap */
  width: 100%;
}

.pricing-table th,
.pricing-table td {
  text-align: center;
  vertical-align: middle;
  background-color: #ffffff;
  border: none;
  padding: 12px;
  min-width: 120px;
}

.pricing-table tbody tr:nth-child(even) td {
  background-color: #f7f7f7;
}

thead th {
  /* background-color: #f0f0f0; */
  font-weight: 600;
}

@media (max-width: 767px) {
  .pricing-table th,
  .pricing-table td {
    font-size: 13px;
    padding: 8px;
  }
}

/* ------------------------------------------- */
/* css for two blur images-section */
html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  height: 100%;
}

.equal-height-row {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  min-height: 500px;
}

.equal-height-row>div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
  overflow: hidden;
}

.left-section,
.right-section {
  padding: 4rem 3rem;
  color: white;
  height: 100%;
  overflow: hidden;
}

.left-section {
  /* background-image: linear-gradient(to right, rgba(0, 23, 50, 0.8), rgba(0, 23, 50, 0.8)),  */
  background-image: linear-gradient(to right, rgba(40, 65, 94, 0.8), rgba(40, 65, 94, 0.8)),
    url("../images/building-img-1.jpg");
  background-size: cover;
  background-position: center;

}

.right-section {
  /* background-image: linear-gradient(to left, rgba(255, 0, 0, 0.8), rgba(255, 0, 0, 0.8)),  */
  background-image: linear-gradient(to left, rgba(255, 59, 59, 0.8), rgba(255, 59, 59, 0.8)),
    url("../images/building-img-2.jpg");
  background-size: cover;
  background-position: center;
}

.left-section .content,
.right-section .content {
  overflow-y: auto;
  max-height: 100%;
}

.get-btn {
  background-color: red;
  border: none;
  color: white;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
}

.get-btn:hover {
  background-color: red;
}

.icon-list i {
  font-size: 1.2rem;
  margin-right: 10px;
  color: #ffffff;
}

.icon-list li {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .equal-height-row {
    flex-direction: column;
  }

  .left-section,
  .right-section {
    text-align: center;
    padding: 2rem;
  }
}

/* ----------------------------------------- */
/* css for cost-estimator-section */
.package-row {
  border-bottom: 1px solid #ddd;
  padding: 12px 0;
}

.package-row:last-child {
  border-bottom: none;
}

.city-label {
  font-weight: bold;
  color: #e74c3c;
}

/* --------------------------------------------------- */
/* css for coming-projects-section */
.project-card {
  /* background: #fff; */
  background-color: red;
  color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* .project-card:hover {
  transform: translateY(-5px);
} */

.project-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.project-info {
  padding: 10px 8px;
  color: #fff;
}

.project-info h6 {
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
}

.project-info p {
  font-size: 0.9rem;
  /* color: #555; */
  color: #fff;
  margin-bottom: 0;
}

/* Spacing between swiper slides */
.projectSwiper .swiper-slide {
  height: auto;
}

/* Pause autoplay on hover */
.projectSwiper:hover {
  cursor: grab;
}

/* Responsive: make sure cards look good on smaller screens */
@media (max-width: 768px) {
  .project-img {
    height: 130px;
  }
}

@media (max-width: 576px) {
  .project-img {
    height: 120px;
  }
}

/* ---------------------------------- */

.pricing-project-header {
  position: relative;
  text-align: center;
  padding: 2rem 1rem;
  /* background-color: #ffffff; */
  overflow: hidden;
  padding-bottom: 0px;
}

.bg-project-text-outline {
  font-size: 5rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px #f0f0f0;
  /* text-stroke: 1px #f0f0f0; */
  text-transform: uppercase;
  position: absolute;
  /* bottom:; */
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
}

.main-project-title {
  font-size: 2.1rem;
  font-weight: 800;
  /* color: #001e5a; */
  color: black;
  z-index: 1;
  position: relative;
}

@media (max-width: 768px) {
  .bg-project-text-outline {
    font-size: 3.5rem;
    -webkit-text-stroke: 0.7px #f0f0f0;
  }

  .main-project-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .bg-project-text-outline {
    font-size: 2.5rem;
  }

  .main-project-title {
    font-size: 1.25rem;
  }
}



/* ✅ Base button */
.btn-project {
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 0.4rem;
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
  flex: 1;
  text-align: center;
  cursor: pointer;
}

/* ✅ Button color variants */
.btn-black {
  background: #000;
  color: #fff;
}


/* ✅ Active state */
.btn-project.active {
  transform: scale(1.1);
  background: red;

  color: #fff;
}

/* ✅ Responsive buttons stack on mobile */
@media (max-width: 768px) {
  .btn-project {
    flex: 100%;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
}

/* ------------------------------------------------ */
/* css for lets talk button */
.fixed-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1055;
  /* high z-index ensures it's above other content */
}

.dropdown-menu-form {
  padding: 15px;
  width: 280px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

@media (max-width: 768px) {
  .dropdown-menu-form {
    width: 90vw;
    max-width: 95%;
  }

  .fixed-contact {
    right: 10px;
    bottom: 20px;
  }
}

/* ---------------------------- */
/* css for customer reviews */
.testimonial-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 2.5rem;/* gap between cards */
  transition: transform 0.4s ease;
}

.testimonial-card {
  flex: 0 0 30%;
  max-width: 30%;
  min-width: 280px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: none;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  height: 100%;
}

.testimonial-card.center {
  transform: scale(1.1) translateY(-10px);
  z-index: 2;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.image-wrapper {
  padding: 10px 10px 0 10px;
  /* padding inside top */
}

.testimonial-card img {
  width: 100%;
  height: 160px;
  /* smaller height */
  /* object-fit: cover; */
  border-radius: 10px;
  /* keeps rounded edges inside card */
}

.testimonial-card .card-body {
  text-align: center;
  padding: 0.8rem 1rem 1.2rem 1rem;
  /* reduced padding */
}

.testimonial-card h5 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.testimonial-card p {
  font-size: 0.85rem;
  line-height: 1.4;
  min-height: 50px;
}

.profile-img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-container {
    flex-direction: column;
    gap: 1rem;
  }

  .testimonial-card {
    max-width: 100%;
    flex: 1 0 100%;
  }

  .testimonial-card.center {
    transform: scale(1.05);
  }
}

.carousel-controls-wrapper {
  text-align: center;
  margin-top: 20px;
}

.carousel-controls-wrapper button {
  margin: 0 8px;
}

/* ----------------------------- */
/* css for OUR PARTNERS-section */
.partners-section {
  padding: 60px 0;
}

.partners-title {
  font-weight: 700;
  font-size: 2rem;
}

.swiper-slide-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide-icon i {
  font-size: 2rem;
  color: #000;
  transition: transform 0.3s ease;
}

.swiper-slide-icon i:hover {
  transform: scale(1.1);
  color: red;
}

/* --------------------------------------- */
/* css for footer-section */
footer {
  color: black;
  font-size: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

footer h5 {
  font-weight: 600;
  margin-bottom: 1rem;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 0.5rem;
}

footer ul li a {
  text-decoration: none;
  color: black;
  transition: 0.3s;
}

footer ul li a:hover {
  color: red;
}

.footer-bottom {
  background: red;
  color: #ccc;
  padding: 20px 0;
  font-size: 14px;
}

.social-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  background: #f1f1f1;
  color: black;
  margin-right: 8px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: red;
  color: #fff;
}

.subscribe-box input {
  border: 1px solid #ddd;
  border-radius: 0;
}

.subscribe-box button {
  background: red;
  border: none;
  color: #fff;
  border-radius: 0;
}

/* ✅ Floating Social Icons Around Footer Man */
.footer-floating-icon {
  position: absolute;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  /* animation: bounce 2s infinite ease-in-out; */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Random placements */
.icon-fb {
  top: 30%;
  left: 20%;
  animation-delay: 0s;
}

.icon-tw {
  top: 30%;
  right: 35%;
  animation-delay: 0.4s;
}

.icon-li {
  bottom: 15%;
  left: 20%;
  animation-delay: 0.8s;
}

.icon-ig {
  bottom: 15%;
  right: 35%;
  animation-delay: 1.2s;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 991.98px) {
  .footer-floating-icon {
    display: none;
  }
}

/* -------------------------------------------- */
/* css for Key Differences Between */
.box-center {
  text-align: center;
}

.key-headline {
  background: #fff;
  display: inline-block;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 20px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  /* margin-bottom: 30px; */
}

.content {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  border-radius: 10px;
  overflow: hidden;
  /* gap: 20px;  */
}

.box {
  flex: 1;
  padding: 20px 20px;
  text-align: left;
  border-radius: 10px;
  margin: 0px;
}

.design {
  background: linear-gradient(135deg, red, #fc7b7b);
  color: #fff;
}

.development {
  background: #f5f5f5;
  color: #000;
  border: 1px solid #ddd;
}

.box img {
  max-width: 150px;
  margin-bottom: 20px;
  display: block;
}

.box h2 {
  font-size: 22px;
  margin-top: 10px;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
}

.box ul {
  padding-left: 20px;
}

.box ul li {
  margin-bottom: 12px;
  /* spacing between each point */
  line-height: 1.5;
  /* better readability */
}

.separator {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: bold;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  color: #333;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  margin: auto;
  padding: 0px;
}

/* Responsive */
@media (max-width: 768px) {
  .content {
    flex-direction: column;
    gap: 30px;
  }

  .separator {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/* --------------------------------------- */

/* Our Services */
.custom-card {
  border: none;
  /* box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);/ */
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.custom-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.custom-card img {
  width: 100%;
  /* height: 180px; */
  object-fit: cover;
  padding: 5px;
}

.custom-card .card-body {
  padding: 0.6rem;
  font-size: 0.95rem;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* ------------------------------------- */

.feature-card {
  background: red;
  border-radius: 12px;
  padding: 20px;
  color: #fff;
  height: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
  /* border: 2px solid transparent; */
}

/* .feature-card:hover {
  transform: translateY(-5px);
} */

/* 🔥 Active (Clicked) Card Highlight */
.feature-card.active {
  background: red;
  /* border-color: #fff; */
  box-shadow: 5px 6px 7px 0px rgba(23, 21, 21, 0.74);
  /* box-shadow: 0 0 15px rgba(255, 255, 255, 0.4); */
  transform: scale(1.05);
}

.feature-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.line {
  height: 2px;
  width: 100%;
  margin-bottom: 10px;
  background-color: #fff;
}

.phone-img {
  max-width: 100%;
  height: auto;
  transition: opacity 0.4s ease;
}

.fade-in {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ✅ Responsive Improvements */
@media (max-width: 991px) {
  .text-section {
    margin-top: 30px;
    text-align: center;
  }

  .feature-card {
    padding: 15px;
  }

  .feature-card h5 {
    font-size: 1.1rem;
  }
}

.line-1 {
  height: 1px;
  width: 100%;
  padding: 2px;
  /* border: 1px solid #fff; */
  margin-top: 10px;
  background-color: red;
}

/* -------------------------------------- */

.budget-card {
  border-radius: 12px;
  padding: 25px;
  background: #fff;
  max-width: 600px;
  margin: 0px auto;
}

.budget-price {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Slider */
.slider-container {
  position: relative;
  /* margin: 20px auto; */
  width: 100%;
}

.custom-slider {
  width: 100%;
  height: 8px;
  border-radius: 6px;
  background: linear-gradient(to right, rgb(255, 196, 0), rgb(252, 123, 2), violet, red);
  /* outline: 4px solid rgb(247, 247, 247); */
  appearance: none;
  z-index: 2;
  position: relative;
}

/* White thumb */
.custom-slider::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  /* White color */
  border: 1px solid #333;
  cursor: pointer;
  position: relative;
  z-index: 3;
}

.custom-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  /* White color */
  border: 1px solid #333;
  cursor: pointer;
  position: relative;
  z-index: 3;
}

/* Vertical lines */
.slider-markers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 1;
}

.slider-markers span {
  display: block;
  width: 4px;
  height: 30px;
  background: #333;
  margin-top: -1px;
}

/* Labels */
.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-top: 10px;
  font-weight: 600;
}

/* Plan Cards */
.plan-card {
  border: 1px solid #eee;
  border-radius: 12px;
  /* padding: 20px; */
  background: #fff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* ----------------------------------------- */

.media-section {
  /* min-height: 100vh; */
  display: flex;
  /* align-items: center; */
}

.swiper {
  width: 100%;
  height: 100%;
}

.media-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.right-slide-content {
  padding: 2rem;
}

@media (max-width: 991px) {
  .media-section {
    min-height: auto;
  }

  .media-img {
    height: auto;
  }
}

/* ✅ Step Box Styling */
.step-wrapper {
  position: relative;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.step-bg {
  background: red;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  border-radius: 12px;
  padding: 80px 18px;
  text-align: left;
  height: 100%;
}

.step-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  position: absolute;
  top: 25%;
  left: 50px;
  transform: translateY(-50%);
  width: calc(100% - 25px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.step-box h5 {
  font-weight: 700;
  margin-bottom: 5px;
  color: #333;
}

.step-box p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

/* .step-icon {
  background: #0d6efd;
  color: #fff;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
} */

/* ----------------------------------- */

.section-title {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 0px;
}

.package-title {
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 0px;
}

.package-price {
  color: #ffb400;
  font-weight: 700;
  border-radius: 0px;
}

.accordion-button {
  font-weight: 600;
  /* background: #f8f9fa; */
  background: #fcfcfc;
  border-radius: 0px;
  height: 35px;
}

.accordion-button:focus {
  box-shadow: none;
}

.comparison-col {
  /* padding: 2rem; */
  background: #f8f9fa;
  border: 1px solid #eee;
  min-height: 140px;
  border-radius: 0px;
}

.comparison-col ul {
  list-style: none;
  padding: 10px;
  padding-bottom: 0px;
  margin: 0;
  border-radius: 0px;
}

.comparison-col ul li {
  margin-bottom: 5px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .comparison-col {
    text-align: center;
  }
}


/* Bigger Switch */
.large-switch {
  width: 3.5rem;
  /* default ~2.5rem */
  height: 2rem;
  /* default ~1.5rem */
  cursor: pointer;
}

/* Black toggle */
.custom-switch {
  background-color: #ccc;
  border: 2px solid #000;
}

.custom-switch:checked {
  background-color: black;
  border-color: black;
}

/* Red toggle */
.custom-switch.red:checked {
  background-color: red;
  border-color: red;
}

/* Move the circle properly in bigger size */
.large-switch .form-check-input:checked {
  background-position: right center;
}

/* -------------------------------------------------- */
.land-swiper {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.land-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
  background: rgba(255, 255, 255, 0.95);
  width: 42px;
  height: 42px;
  /* border-radius: 50%; */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: #000 !important;
  font-size: small;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
  /* font-weight: bold; */
}

.headline-box {
  padding: 18px;
  background: red;
  color: white;
  text-align: center;
  font-weight: 700;
  font-size: 21px;
}

.right-box {
  border-radius: 15px;
  /* box-shadow: 0 8px 25px rgba(0,0,0,0.12); */
}

.right-heading {
  font-weight: 700;
  font-size: 24px;
}

.right-text {
  color: #444;
  line-height: 1.7;
}

/* .left-box {
  padding: 15px;
} */

/* ---------------------------------------------------------- */
.partners-swiper {
  width: 100%;
  padding: 20px 0;
}

.partners-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.partners-swiper .swiper-slide img {
  width: 140px;
  height: auto;
  object-fit: contain;
}

/* ------------------------------------------------------------------- */

 .popup-box{
        /* background: blue; */
        /* border-radius: 12px; */
        padding-top: 40px;
        padding-left: 40px;
        padding-right: 40px;
        padding-bottom: 0px;
        /* max-width: 950px; */
        /* margin: 50px auto; */
        /* box-shadow: 0 10px 30px rgba(0,0,0,0.15); */
        position: relative;
    }
    .popup-close{
        position: absolute;
        right: 25px;
        top: 20px;
        font-size: 22px;
        cursor: pointer;
        color: #444;
    }

    /* LEFT SIDE BG IMAGE */
    .left-box-modal{
        background: url("../images/crane\ .png") no-repeat bottom center;
        background-size: contain;
        padding-bottom: 150px;
    }

    .right-box-modal{
        background: #ffefef;
        border-radius: 8px;
        padding: 30px;
        /* margin-bottom: 25px; */
    }
    .btn-yellow{
        background: #ffb500;
        border: none;
        padding: 12px;
        width: 100%;
        font-weight: 600;
    }
    .btn-yellow:hover{
        background: #ffa100;
    }
    .form-control, .form-select{
        border-radius: 6px;
        border-color: #ffb500;
    }
    .error{
        font-size: 14px;
        color: red;
        margin-top: -5px;
    }

    @media(max-width:768px){
        .left-box-modal{
            padding-bottom: 100px;
            background-size: cover;
        }
        .popup-box{
            padding: 30px 20px;
        }
    }

    /* -------------------------------------------- */

    /* .pricing {
  --card-radius: 16px;
  --card-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 92%);
  --muted: color-mix(in srgb, var(--default-color), transparent 55%);
  --line: color-mix(in srgb, var(--default-color), transparent 85%);
  --accent-soft: color-mix(in srgb, var(--accent-color), transparent 85%);
  --accent-strong: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.pricing .pricing-toggle-container {
  text-align: center;
}

.pricing .pricing-toggle-container .pricing-toggle {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  border: 1px solid var(--accent-soft);
}

.pricing .pricing-toggle-container .pricing-toggle .monthly,
.pricing .pricing-toggle-container .pricing-toggle .yearly {
  font-weight: 600;
  color: var(--default-color);
  opacity: 0.7;
  transition: 0.3s;
  cursor: pointer;
}

.pricing .pricing-toggle-container .pricing-toggle .monthly.active,
.pricing .pricing-toggle-container .pricing-toggle .yearly.active {
  color: var(--heading-color);
  opacity: 1;
}

.pricing .pricing-toggle-container .pricing-toggle .switch {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 28px;
}

.pricing .pricing-toggle-container .pricing-toggle .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.pricing .pricing-toggle-container .pricing-toggle .switch .slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--accent-soft);
  transition: 0.3s;
  border-radius: 999px;
}

.pricing .pricing-toggle-container .pricing-toggle .switch .slider::before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  top: 3px;
  background-color: var(--surface-color);
  transition: 0.3s;
  border-radius: 50%;
  box-shadow: 0 2px 8px color-mix(in srgb, var(--default-color), transparent 85%);
}

.pricing .pricing-toggle-container .pricing-toggle .switch input:checked+.slider {
  background: var(--accent-color);
}

.pricing .pricing-toggle-container .pricing-toggle .switch input:checked+.slider::before {
  transform: translateX(26px);
}

.pricing .pricing-toggle-container .hint {
  color: var(--muted);
}

.pricing .price-card {
  background: var(--surface-color);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  padding: 28px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}

.pricing .price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px color-mix(in srgb, var(--default-color), transparent 88%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.pricing .price-card.featured {
  border-color: var(--accent-strong);
  box-shadow: 0 16px 44px color-mix(in srgb, var(--accent-color), transparent 80%);
  position: relative;
  background: radial-gradient(1200px 1200px at 110% -10%, color-mix(in srgb, var(--accent-color), transparent 92%) 0%, transparent 50%) no-repeat, var(--surface-color);
}

.pricing .price-card.featured .btn-choose {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .price-card.featured .btn-choose:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 8%);
  color: var(--contrast-color);
}

.pricing .price-card .ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 18px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.pricing .price-card .ribbon i {
  font-size: 12px;
}

.pricing .price-card .card-head {
  margin-bottom: 18px;
}

.pricing .price-card .card-head .badge-title {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border: 1px solid var(--accent-soft);
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.pricing .price-card .card-head .title {
  font-size: 22px;
  margin: 2px 0 8px;
}

.pricing .price-card .card-head .subtitle {
  color: var(--muted);
  margin: 0 0 14px;
}

.pricing .price-card .card-head .price-wrap {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.pricing .price-card .card-head .price-wrap .price {
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-weight: 800;
  line-height: 1;
  display: none;
}

.pricing .price-card .card-head .price-wrap .price sup {
  font-size: 18px;
  top: -0.6em;
  position: relative;
  margin-right: 2px;
}

.pricing .price-card .card-head .price-wrap .price.price-monthly,
.pricing .price-card .card-head .price-wrap .price.price-yearly {
  font-size: 40px;
}

.pricing .price-card .card-head .price-wrap .price .period {
  font-size: 14px;
  color: var(--muted);
  margin-left: 6px;
  font-weight: 600;
}

.pricing .price-card .feature-list {
  border-top: 1px dashed var(--line);
  padding-top: 16px;
}

.pricing .price-card .feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--default-color);
}

.pricing .price-card .feature-list li i {
  color: var(--accent-color);
  font-size: 18px;
}

.pricing .price-card .feature-list li.muted {
  color: var(--muted);
}

.pricing .price-card .feature-list li.muted i {
  color: var(--muted);
}

.pricing .price-card .cta {
  margin-top: auto;
}

.pricing .price-card .cta .btn-choose {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 10px;
  transition: 0.3s;
}

.pricing .price-card .cta .btn-choose:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-toggle-container~.row .price-card .price-monthly {
  display: inline-flex;
}

.pricing .pricing-toggle-container~.row .price-card .price-yearly {
  display: none;
}

@supports (selector(:has(*))) {
  .pricing .pricing-toggle-container:has(.switch input:checked)~.row .price-card .price-monthly {
    display: none;
  }

  .pricing .pricing-toggle-container:has(.switch input:checked)~.row .price-card .price-yearly {
    display: inline-flex;
  }

  .pricing .pricing-toggle-container:has(.switch input:checked)~.row .pricing-toggle .monthly {
    opacity: 0.6;
  }

  .pricing .pricing-toggle-container:has(.switch input:checked)~.row .pricing-toggle .yearly {
    opacity: 1;
    color: var(--heading-color);
  }
}

@supports not (selector(:has(*))) {
  .pricing .pricing-toggle-container .yearly::after {
    content: " ";
  }
}

@media (max-width: 992px) {

  .pricing .price-card .card-head .price-wrap .price.price-monthly,
  .pricing .price-card .card-head .price-wrap .price.price-yearly {
    font-size: 36px;
  }

  .pricing .price-card .card-head .price-wrap .price sup {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .pricing .price-card {
    padding: 22px;
  }

  .pricing .pricing-toggle-container .pricing-toggle {
    gap: 10px;
  }
} */