
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  font-family: Arial, sans-serif;
}

/* ================= HEADER Section Start ================= */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 9999;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* ================= LEFT ================= */
.nav-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-left-logo {
    display: flex;
    align-items: center;
}

.site-logo {
    height: 55px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-left-location {
  font-size: 14px;
  color: #333;
  cursor: pointer;
}

/* ================= CENTER (DESKTOP) ================= */
.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-center-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
}

.nav-center-menu a {
  text-decoration: none;
  color: #111;
  font-size: 14px;
  font-weight: 500;
}

.nav-center-menu a:hover {
  color: #ff5a1f;
}

/* ================= MORE / MEGA MENU ================= */
.nav-center-more {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  width: 650px;
  max-width: calc(100vw - 40px);
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  gap: 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 999;
}

.nav-center-more:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

/* MEGA MENU CONTENT */
.menu-column {
  flex: 1;
}

.menu-column h4 {
  margin-bottom: 20px;
  font-size: 13px;
  color: #777;
  letter-spacing: 1px;
}

.menu-box,
.menu-item {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 14px;
  cursor: pointer;
}

.menu-box:hover,
.menu-item:hover {
  border-color: #ff5a1f;
}

.menu-box h5,
.menu-item strong {
  font-size: 15px;
}

.menu-box p,
.menu-item p {
  font-size: 13px;
  color: #666;
  margin-top: 4px;
}

.badge {
  background: #ff5a1f;
  color: #fff;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 20px;
  margin-left: 8px;
}

/* ================= RIGHT ================= */
.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-right-call {
  font-size: 14px;
  font-weight: 500;
}

.nav-right-cta-btn {
  text-decoration: none;
  background: #ff5a1f;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}

/* ---------- HAMBURGER ---------- */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 32px;
  color: #ff5a1f;
  cursor: pointer;
}

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #fff;
  padding: 80px 20px 20px;
  transition: right 0.3s ease;
  z-index: 10000;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

.mobile-menu h4 {
  margin-top: 24px;
  font-size: 13px;
  color: #777;
}

.close-menu {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 34px;
  color: #ff5a1f;
  cursor: pointer;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .nav-center {
    display: none;
  }

  .site-logo {
    height: 50px;
  }

  .nav-left-location {
    display: none;
  }

  .nav-right-call {
    display: none;
  }

  .nav-right-cta-btn {
    display: inline-block;
  }

  .menu-toggle {
    display: block;
  }
}

/* ================= HEADER SECTION END ================= */


/* ================= HERO Start ================= */
.hero {
  min-height: 90vh;
  background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
      url("../assets/home page image/Hero section Image.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  justify-content: space-between;
  padding: 60px;
  color: #fff;
}

.hero-left {
  max-width: 55%;
}

.hero-left h1 {
  font-size: 52px;
  color: #ffd966;
}

.hero-left h2 {
  margin-top: 10px;
  font-size: 32px;
}

.offer {
  margin-top: 30px;
  background: #b80000;
  display: inline-block;
  padding: 15px 25px;
  border-radius: 10px;
  font-size: 18px;
}

.offer strong {
  font-size: 28px;
}

/* -------- FORM -------- */
.hero-right {
  background: #fff;
  color: #000;
  padding: 25px;
  width: 360px;
  border-radius: 12px;
}

.form h3 {
  text-align: center;
  margin-bottom: 10px;
}

.form p {
  text-align: center;
  font-size: 14px;
  margin-bottom: 15px;
}

.form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.phone {
  display: flex;
  gap: 8px;
}

.phone span {
  padding: 10px;
  background: #eee;
  border-radius: 6px;
}

.form button {
  width: 100%;
  background: #f26522;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.form small {
  font-size: 11px;
  display: block;
  margin-top: 10px;
  color: #555;
}
/* ================= HERO End ================= */

/* ========== Custom Alert CSS Start =========== */
/* ===== Custom Alert Style ===== */
.alert-box {
  position: fixed;
  top: 30px;
  right: 30px;
  background: #111;
  color: #fff;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 10000;
}

.alert-box.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Variants */
.alert-box.success {
  background: #16a34a;
}

.alert-box.error {
  background: #dc2626;
}

/* ========== Custom Alert CSS End =========== */

/* ================= Steps Section CSS Start ================= */
.steps-section {
  padding: 60px 40px;
  background: #ffffff;
  text-align: center;
}

.steps-section h2 {
  font-size: 38px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.steps-section h3 {
  font-size: 42px;
  font-weight: 800;
  color: #f6b300;
  margin-bottom: 50px;
}
.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.step-card {
  background: #fafafa;
  border-radius: 18px;
  padding: 25px 25px 30px;
  text-align: left;

  border-left: 6px solid #f6b300;

  box-shadow: 0 10px 30px rgba(0,0,0,0.06);

  display: flex;
  flex-direction: column;
  gap: 18px;
}
.step-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}
.step-card p {
  font-size: 17px;
  line-height: 1.6;
  color: #444;
  margin: 0;
}
/* ================= Steps Section CSS End ================= */

/* ================= Our Services Section CSS Start ================= */
.services-section {
  padding: 70px 0;
  background: #f6f6f6;
}

.services-container {
  width: 1200px;
  margin: auto;
}

.services-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #222;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  display: block;
  text-decoration: none;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.service-card h3 {
  padding: 18px;
  font-size: 18px;
  color: #333;
  text-align: center;
  line-height: 1.4;
}

.service-card:hover h3 {
  color: #f87903;
}

@media (max-width: 768px) {

  /* ===== Custom Alert CSS Start ===== */
  .alert-box {
    top: 15px;
    right: 50%;
    transform: translate(50%, -10px);
    width: calc(100% - 30px);
    max-width: 420px;
    font-size: 13px;
    padding: 12px 16px;
    border-radius: 6px;
    text-align: center;
  }

  .alert-box.show {
    transform: translate(50%, 0);
  }
  /* ===== Custom Alert CSS End ===== */

  /* ===== Our Services CSS Start ===== */
  .services-section {
    padding: 40px 0;
  }

  .services-container {
    width: 100%;
    padding: 0 16px;
  }

  .services-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    border-radius: 10px;
  }

  .service-card img {
    height: 180px;
  }

  .service-card h3 {
    font-size: 16px;
    padding: 14px;
  }

}

/* ================= Our Services Section CSS End ================= */

/* ====== Artical Section Start ======== */
.why-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.why-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.why-section .subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
  max-width: 700px;
}
.card-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.card {
  display: block;
  text-decoration: none;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}
.image-box {
  width: 100%;
  height: 260px;
  background: #f2f2f2;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.card:hover .image-box img {
  transform: scale(1.05);
}
.card-content {
  padding: 22px 24px;
}

.card-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: #111;
  margin-bottom: 6px;
}

.card-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
}

/* ====== Artical Section End ======== */

/* ======= Construction Packages Css Start ============= */
.cp-section {
  padding: 70px 6%;
  background: #fff;
}

.cp-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* ---------- Filters ---------- */
.cp-filters {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.cp-filters label {
  font-size: 14px;
  color: #333;
}

.cp-filters select {
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.cp-type {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.cp-type input {
  accent-color: #ff5722;
}

.cp-type small {
  font-size: 11px;
  color: #777;
}

/* ---------- Cards Layout ---------- */
.cp-card-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* ---------- Card ---------- */
.cp-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

.cp-card-content {
  padding: 26px 24px 28px;
}

.cp-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}

.cp-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #ff5722;
  margin-bottom: 14px;
}

.cp-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 16px;
}

/* ---------- List ---------- */
.cp-card ul {
  padding-left: 18px;
  margin-bottom: 22px;
}

.cp-card ul li {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.4;
}

/* ---------- Button ---------- */
.cp-btn {
  width: 100%;
  padding: 11px 0;
  border-radius: 8px;
  border: 1px solid #ff5722;
  background: transparent;
  color: #ff5722;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cp-btn:hover {
  background: #ff5722;
  color: #fff;
}

/* ---------- Popular Card ---------- */
.cp-card.highlight {
  border: 2px solid #d6b56d;
}

.cp-card .badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #d6b56d;
  color: #000;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 0;
  border-radius: 14px 14px 0 0;
}

/* ---------- Compare Text ---------- */
.cp-compare {
  text-align: center;
  margin-top: 35px;
  font-size: 14px;
}

.cp-compare a {
  color: #ff5722;
  font-weight: 500;
  text-decoration: none;
}

.cp-compare a:hover {
  text-decoration: underline;
}
/* ====== Construction Packages Css End ======== */

/* ====== Infinite Loop CSS Start ======== */

.steps-section {
  margin: 20px;
}

.carousel {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.slider-track {
  display: flex;
  gap: 2rem;
  animation: scroll 15s linear infinite;
}

.carousel:hover .slider-track {
  animation-play-state: paused;
}

.slidercard {
  width: 120px;
  height: 120px;
  padding: 1rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  object-fit: contain;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ====== Infinite Loop CSS End ======== */

/*====== Contact Tagline End ========*/
.footer-tagline {
  width: 98%;
  border: 2px solid;
  border-radius: 8px;
  color: #bbb;
  background: #1b1a14;
  padding: 35px 0px;
  margin-left: 1%;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  text-align: center;
transition: 0.3s ease;
}
.footer-tagline:hover {
box-shadow: 0 12px 28px rgba(0,1,1,0.8);
  transform: scale(1.01);
  color: #bbb;
}

.footer-tagline .footer-col {
width: 100%;
}

.footer-tagline h3 {
  font-size: 2.2rem;
  font-weight: 700;
  font-style: oblique;
  color: blanchedalmond;
  margin-bottom: 8px;
  white-space: nowrap;
}

.footer-tagline h5 {
  font-size: 1.2rem;
  color: #bbb;
  margin-bottom: 15px;
}

.footer-tagline button {
  background: #ff5a1f;
  color: #fff;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: 0.3s ease;
}

.footer-tagline button:hover {
  transform: scale(1.05);
  color: #f1f5eb;
  background: #799b3a;
}

.footer-ss-link{
  font-size: 2.8rem;
}
/*====== Contact Tagline End ========*/

/* ====== Floting Icon Start ======== */
.floating-icons {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;

  display: flex;
  flex-direction: column;
  gap: 14px;
}
.floating-icons .icon {
  width: 56px;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  text-decoration: none;

  box-shadow: 0 8px 22px rgba(0,0,0,0.25);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.floating-icons .icon:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 28px rgba(0,0,0,0.3);
}
.floating-icons .whatsapp {
  background-color: #25D366;
}
.floating-icons .call {
  background-color: #FFC107;
}
.floating-icons .icon i {
  font-size: 35px;
  color: #fff;
}
.floating-icons .whatsapp {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ====== Floting Icon End ======== */

/* ====== Footer Section Start ======== */
/* ===== FOOTER BASE ===== */
.footer {
  background: #1b1a14;
  color: #ccc;
  font-family: Arial, sans-serif;
  padding-top: 70px;
}

/* ===== GRID CONTAINER ===== */
.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 50px;

  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr;
  grid-template-rows: auto auto;
  column-gap: 50px;
  row-gap: 50px;
}

/* ===== COMMON COLUMN ===== */
.footer-col h4 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 22px;
}

.footer-col a {
  display: block;
  color: #bbb;
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 12px;
  line-height: 1.6;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #ff5a1f;
  text-decoration: underline;
}

/* ===== COLUMN POSITIONING ===== */

/* Site Map */
.footer-col:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

/* Others */
.footer-col:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

/* Information (FULL WIDTH under Others) */
.footer-col:nth-child(3) {
  grid-column: 2 / 4;
  grid-row: 2;
}

/* Get in Touch */
.footer-col:nth-child(4) {
  grid-column: 3;
  grid-row: 1;
}

/* ===== RIGHT COLUMN SPECIAL ===== */
.footer-right a.footer-cta {
  display: block;
  font-size: 19px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 18px;
}

.footer-divider {
  height: 1px;
  background: #333;
  margin: 25px 0;
}

.footer-right p {
  font-size: 15px;
  margin-bottom: 8px;
}

/* ===== SOCIAL ICONS ===== */
.social-icons {
  margin-top: 20px;
}

.social-icons a {
  display: inline-block;
  margin-right: 15px;
  font-size: 40px;
  color: #bbb;
}

.social-icons a:hover {
  color: #ff5a1f;
}
#footer-info{
  margin-top: -300px;
}
/* ===== BOTTOM BAR ===== */
.footer-bottom {
  margin-top: 60px;
  padding: 18px 20px;
  border-top: 1px solid #333;
  text-align: center;
  font-size: 15px;
  color: #aaa;
}

/* ====== Footer Section End ======== */


/* ================= MOBILE VIEW CSS ================= */
@media (max-width: 768px) {

  /* ===== GLOBAL ===== */
  body {
    font-size: 14px;
  }

  /*===== NAVBAR ===== */
  .nav-container {
    padding: 10px 14px;
  }

  .nav-menu {
    display: none;
  }

  .location {
    display: none;
  }

  .nav-right .call {
    display: none;
  }

  .cta-btn {
    padding: 8px 14px;
    font-size: 13px;
  }
  .nav-right-cta-btn {
    font-size: 10px;
  }

  /* ----- Mobile Menu Css -----*/
  .mobile-menu {
    width: 70%;
  }

  /* ===== HERO ===== */
  .hero {
    flex-direction: column;
    padding: 30px 16px;
    min-height: auto;
    gap: 30px;
  }

  .hero-left {
    max-width: 100%;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 32px;
  }

  .hero-left h2 {
    font-size: 22px;
  }

  .offer {
    font-size: 15px;
    padding: 12px 18px;
  }

  .offer strong {
    font-size: 22px;
  }

  .hero-right {
    width: 100%;
  }

  /* ===== STEPS SECTION ===== */
  .steps-section {
    padding: 40px 16px;
  }

  .steps-section h2 {
    font-size: 26px;
  }

  .steps-section h3 {
    font-size: 28px;
  }

  .steps-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step-card {
    padding: 20px;
  }

  .step-card p {
    font-size: 15px;
  }

  /* ===== ARTICLE SECTION ===== */
  .why-section {
    margin: 50px auto;
    padding: 0 16px;
  }

  .why-section h2 {
    font-size: 26px;
  }

  .why-section .subtitle {
    font-size: 15px;
  }

  .card-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .image-box {
    height: 200px;
  }

  .card-content h3 {
    font-size: 19px;
  }

  .card-content p {
    font-size: 14px;
  }

  /* ===== INFINITE SLIDER ===== */
  .slider-track {
    gap: 1.2rem;
  }

  .slidercard {
    width: 90px;
    height: 90px;
    padding: 0.6rem;
  }

  /* ===== FOOTER TAGLINE ===== */
  .footer-tagline {
    padding: 25px 16px;
  }

  .footer-tagline h3 {
    font-size: 1.5rem;
    white-space: normal;
  }

  .footer-tagline h5 {
    font-size: 1rem;
  }

  /* ===== FLOATING ICONS ===== */
  .floating-icons {
    bottom: 16px;
    right: 16px;
    gap: 10px;
  }

  .floating-icons .icon {
    width: 48px;
    height: 48px;
  }

  .floating-icons .icon i {
    font-size: 28px;
  }

  /* ===== FOOTER ===== */
  .footer {
    padding-top: 50px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    row-gap: 35px;
    padding: 0 20px;
  }

  .footer-col:nth-child(1),
  .footer-col:nth-child(2),
  .footer-col:nth-child(3),
  .footer-col:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-col h4 {
    font-size: 18px;
  }

  .footer-col a {
    font-size: 14px;
  }

  .footer-right a.footer-cta {
    font-size: 16px;
  }
  .social-icons a{
    font-size: 40px;
  }

  .footer-bottom {
    font-size: 13px;
    padding: 14px;
  }

  #footer-info {
    margin-top: 0;
  }
}
/* ================= MOBILE CSS END ================= */



/* ===============================
   Responsive (Mobile & Tablet) Aabhi kaam krna hai es css par
================================ */
@media (max-width: 1024px) {
  .cp-card-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cp-section {
    padding: 50px 5%;
  }

  .cp-section h2 {
    font-size: 24px;
  }

  .cp-card-wrapper {
    grid-template-columns: 1fr;
  }

  .cp-filters {
    gap: 15px;
  }
}
