

/* Grid for Demos - FORCED TWO COLUMNS */
.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Explicitly two equal columns */
    gap: 30px; /* Space between grid items */
}

.demo-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.demo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.demo-card h2 {
    color: #2c3e50;
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 2px solid #ff914d;
    padding-bottom: 10px;
}

.slider-note {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 15px;
    text-align: center;
}

/* Before/After Slider Essentials */
.before-after-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 12px;
    aspect-ratio: 3/2; /* Maintain aspect ratio for responsive images */
}

.before-after-slider img,
.before-after-slider video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.before-image,
.after-image {
    display: block;
    width: 100%;
    height: 100%;
}

.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.1s ease-out;
}

/* Slider handle */
.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background-color: #ff914d;
    display: flex;
    justify-content: center;
    align-items: center; /* Center items vertically along the line */
    cursor: ew-resize;
    pointer-events: none;
    z-index: 5;
    transform: translateX(-50%);
}

/* Updated: Smaller circle */
.slider-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px; /* Reduced from 40px to 20px (50%) */
    height: 20px; /* Reduced from 40px to 20px (50%) */
    background-color: #ff914d;
    border: 3px solid #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%); /* Centered */
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    pointer-events: all;
}

/* Updated: Arrows vertically centered */
.arrow-left,
.arrow-right {
    position: absolute;
    font-size: 18px; /* Slightly smaller arrows for the smaller handle */
    color: #ffffff;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
    z-index: 10;
    /* Vertically center using top: 50% and transform: translateY(-50%) */
    top: 50%;
    transform: translateY(-50%);
}

.arrow-left {
    left: -18px; /* Adjusted position for smaller circle */
}

.arrow-right {
    right: -10px; /* Adjusted position for smaller circle */
}


/* Range slider (hidden, but functional) */
.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 10;
}
.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff914d, #f5ab7dff);
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    margin-top:50px
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #f5ab7dff, #ff914d);
}

.download-icon {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
}

 /* Banner (Non-Fixed Version) */
.botm-bnner {
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
  border: 1px solid #ddd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1100px;
  margin: 25px auto; /* spacing from other content */
}

.ban-botm {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 220px;
}

.banner-text {
  font-size: 15px;
  color: #333;
  line-height: 1.4;
}

.banner-text strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 3px;
  color: #111;
}

.review-logos {
  display: flex;
  gap: 15px;
  align-items: center;
  border-left: 1px solid #eee;
  padding-left: 15px;
}

.review-logos img {
  height: 28px;
  width: auto;
  filter: grayscale(20%);
  transition: filter 0.3s;
}

.review-logos img:hover {
  filter: grayscale(0%);
}

.banner-btn {
  background: linear-gradient(135deg, #4f46e5, #4338ca);
  color: #fff;
  border: none;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 3px 8px rgba(79, 70, 229, 0.3);
}

.banner-btn:hover {
  background: linear-gradient(135deg, #4338ca, #3730a3);
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(79, 70, 229, 0.45);
}
/*fixedbox*/
 .botm-bnner {
    background: linear-gradient(135deg, #f7f7f7, #eaeaea);
    border: 1px solid #ddd;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeIn 0.6s ease;
    transition: all 0.3s ease;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .ban-botm {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
    min-width: 250px;
  }

  .banner-text {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
  }

  .banner-text strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 3px;
    color: #111;
  }

  .review-logos {
    display: flex;
    gap: 15px;
    align-items: center;
    border-left: 1px solid #ccc;
    padding-left: 15px;
  }

  .review-logos img {
    height: 30px;
    width: auto;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
  }

  .review-logos img:hover {
    filter: grayscale(0%);
  }

  .banner-btn, .offer-btn {
    background: linear-gradient(135deg, #232329, #0a0a0f);
    color: #fff;
    border: none;
    padding: 12px 26px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
    text-decoration: none;
    display: inline-block;
  }

  .banner-btn:hover, .offer-btn:hover {
    background: linear-gradient(135deg, #0a0a0f, #232329);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(79, 70, 229, 0.4);
  }

  /* Second Box */
  .offer-box {
    text-align: center;
    flex: 1;
    background: linear-gradient(145deg, #f3f3f3, #e7e7e7);
    border-radius: 12px;
    padding: 25px;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .offer-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .offer-box strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
  }

  .offer-box span {
    display: block;
    font-size: 14px;
    color: #444;
    margin-bottom: 15px;
  }
/*individual*/
.pricing-single {
  max-width: 380px;
  margin: 60px auto;
  background: linear-gradient(145deg, #ffffff, #f3f3f3);
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-single:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.pricing-single::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 6px;
  background: linear-gradient(90deg, #4f46e5, #6366f1, #4338ca);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.pricing-single h3 {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

/* Single-line dual price */
.price-line {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
}

.price-line span {
  display: inline-block;
  margin: 0 10px;
  font-size: 32px;
  font-weight: 700;
  color: red;
}

.price-line small {
  font-size: 16px;
  color: #555;
  font-weight: 500;
}

.cta-btn {
  background: linear-gradient(135deg, #131314, #16161a);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(79,70,229,0.3);
  text-decoration: none;
  display: inline-block;
}

.cta-btn:hover {
  background: linear-gradient(135deg, #16161a, #131314);
  color:#fff;
  box-shadow: 0 6px 16px rgba(79,70,229,0.45);
  transform: translateY(-2px);
}
.footer a{font-size: 13px;}
/* Responsive Adjustments: Crucial for forcing 2 columns or stacking */
@media (min-width: 768px) { /* On screens 768px and wider, apply two columns */
    .demo-grid {
        grid-template-columns: 1fr 1fr; /* Force 2 columns */
    }
}

@media (max-width: 767px) { /* On screens smaller than 768px, stack into a single column */
    header h1 {
        font-size: 2em;
    }
    header p {
        font-size: 1em;
    }
    .demo-grid {
        grid-template-columns: 1fr; /* Stack into one column */
    }
    .demo-card {
        padding: 20px;
    }
    .demo-card h2 {
        font-size: 1.5em;
    }
}