.unique-hero {
  height: 100vh;
  background: #171744;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.unique-hero::before {
  position: absolute;
  content: "";
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-image: url("../img/homes/banner-shape.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 1;
  z-index: 1;
}

.unique-hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #35e6b8;
  margin-bottom: 15px;
}

.unique-hero-title {
  font-size: 32px;
  font-weight: bold;
  background: linear-gradient(to right, #35e6b8, #00c2ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.unique-hero-heading {
  font-size: 30px;
  font-weight: 700;
  margin: 10px 0 40px;
}

/* === COUNTERS === */
.unique-hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 50px;
}

.unique-hero-stat {
  text-align: center;
}

.unique-hero-number {
  font-size: 32px;
  font-weight: bold;
  color: #cf2128;
  display: block;
}

.unique-hero-label {
  margin: 5px 0 0;
  font-size: 10px;
  letter-spacing: 1px;
}

/* === SCROLL INDICATOR === */
.unique-scroll-down {
  position: absolute;
  bottom: 100px;
  text-align: center;
  font-size: 10px;
  color: white;
}

.unique-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid #35e6b8;
  border-radius: 14px;
  margin: 10px auto 0;
  position: relative;
}

.unique-mouse::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #35e6b8;
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: unique-scroll 1.5s infinite;
}

@keyframes unique-scroll {
  0% {
    top: 6px;
    opacity: 1;
  }

  100% {
    top: 20px;
    opacity: 0;
  }
}

/* === RESPONSIVE STYLES === */

/* For tablets and smaller desktops */
@media (max-width: 1024px) {
  .unique-hero-title {
    font-size: 28px;
  }

  .unique-hero-heading {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .unique-hero-stats {
    gap: 30px;
    margin-bottom: 40px;
  }

  .unique-hero-number {
    font-size: 26px;
  }

  .unique-hero-label {
    font-size: 12px;
  }
}

/* For mobile devices */
@media (max-width: 768px) {
  .unique-hero {
    padding: 0 20px;
    height: auto;
    /* allow content to expand */
    min-height: 100vh;
  }

  .unique-hero::before {
    top: 0;
    /* reset so background fills */
    left: 0;
    transform: none;
    width: 100%;
    height: 100%;
  }

  .unique-hero-subtitle {
    font-size: 16px;
  }

  .unique-hero-title {
    font-size: 24px;
  }

  .unique-hero-heading {
    font-size: 20px;
    margin: 10px 0 25px;
  }

  .unique-hero-stats {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }

  .unique-hero-number {
    font-size: 24px;
  }

  .unique-hero-label {
    font-size: 11px;
  }

  .unique-scroll-down {
    bottom: 50px;
    font-size: 12px;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  .unique-hero-subtitle {
    font-size: 14px;
  }

  .unique-hero-title {
    font-size: 20px;
  }

  .unique-hero-heading {
    font-size: 18px;
  }

  .unique-hero-stats {
    gap: 15px;
  }

  .unique-hero-number {
    font-size: 20px;
  }

  .unique-hero-label {
    font-size: 10px;
  }

  .unique-mouse {
    width: 20px;
    height: 32px;
  }
}

.demo-section {
  background: #06143a;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.demo-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.demo-subtitle {
  font-size: 16px;
  margin-bottom: 40px;
  opacity: 0.8;
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.demo-card {
  background: #fff;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.demo-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.demo-img img {
  width: 100%;
  display: block;
  transition: transform 15s linear;
  transform: translateY(0);
}

/* Auto scroll image upwards on hover */
.demo-card:hover .demo-img img {
  transform: translateY(-91%);
}

.demo-label {
  background: #fff;
  color: #333;
  padding: 15px;
  font-weight: 600;
  font-size: 15px;
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* ek row me 2 columns fix */
  gap: 30px;
  justify-items: center;
  /* cards ko center align karne ke liye */
}

@media (max-width: 768px) {
  .demo-grid {
    grid-template-columns: 1fr;
    /* mobile pe ek card ek row me */
  }
}

/* Section Styles */
.features-section-unique {
  background: #cf2128;
  padding: 60px 20px;
  color: #fff;
  text-align: center;
}

.features-container-unique {
  max-width: 1200px;
  margin: 0 auto;
}

.features-subtitle-unique {
  color: #0fd07a;
  font-size: 18px;
  margin-bottom: 10px;
}

.features-title-unique {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.features-desc-unique {
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 40px;
}

.features-grid-unique {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Feature 1 */
.feature-card-design {
  background: #ea2d35;
  padding: 25px;
  border-radius: 10px;
}

.feature-icon-design {
  font-size: 32px;
  color: #fff;
  margin-bottom: 15px;
}

.feature-heading-design {
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-text-design {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
}

/* Feature 2 */
.feature-card-responsive {
  background: #ea2d35;
  padding: 25px;
  border-radius: 10px;
}

.feature-icon-responsive {
  font-size: 32px;
  color: #fff;
  margin-bottom: 15px;
}

.feature-heading-responsive {
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-text-responsive {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
}

/* Feature 3 */
.feature-card-animations {
  background: #ea2d35;
  padding: 25px;
  border-radius: 10px;
}

.feature-icon-animations {
  font-size: 32px;
  color: #fff;
  margin-bottom: 15px;
}

.feature-heading-animations {
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-text-animations {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
}

/* Feature 4 */
.feature-card-customizable {
  background: #ea2d35;
  padding: 25px;
  border-radius: 10px;
}

.feature-icon-customizable {
  font-size: 32px;
  color: #fff;
  margin-bottom: 15px;
}

.feature-heading-customizable {
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-text-customizable {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
}

/* Feature 5 */
.feature-card-seo {
  background: #ea2d35;
  padding: 25px;
  border-radius: 10px;
}

.feature-icon-seo {
  font-size: 32px;
  color: #fff;
  margin-bottom: 15px;
}

.feature-heading-seo {
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-text-seo {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
}

/* Feature 6 */
.feature-card-support {
  background: #ea2d35;
  padding: 25px;
  border-radius: 10px;
}

.feature-icon-support {
  font-size: 32px;
  color: #fff;
  margin-bottom: 15px;
}

.feature-heading-support {
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-text-support {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
}

/* Section with background image */
.feature-section {
  background: url("../img/homes/core-bg.jpg") no-repeat center center/cover;
  padding: 80px 20px;
  position: relative;
}

.feature-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.feature-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2; /* keeps images above overlay */
}

.feature-img {
  width: 90px; /* adjust size */
  height: 90px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

/* Hover zoom & glow */
.feature-img:hover {
  transform: scale(1.2);
  filter: brightness(1.3) drop-shadow(0 0 10px rgba(255, 255, 255, 0.6));
}

.problem-section {
  background: #cf2128;
  text-align: center;
  padding: 60px 20px;
  color: #fff;
}

.problem-subtitle {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 16px;
}

.problem-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.problem-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.problem-box {
  max-width: 300px;
  text-align: center;
}

/* Icon Styles */
.problem-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

/* Alternate Gradient Colors */
.problem-icon1 {
  color: #ff4b2b;
}
.problem-icon2 {
  color: #d16ba5;
}
.problem-icon3 {
  color: #6a5acd;
}

.problem-heading {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.problem-text {
  font-size: 14px;
  line-height: 1.6;
  color: #cfd4e3;
}

/* Background & Layout */
.cta2-section {
  background: #06112a;
  text-align: center;
  padding: 80px 20px;
  color: #fff;
}

.cta2-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* Subtitle */
.cta2-subtext {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 15px;
}

/* Title */
.cta2-title {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.4;
}

.cta2-highlight {
  color: #cf2128;
}

/* Button */
.cta2-btn {
  display: inline-block;
  background: #cf2128;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta2-btn i {
  margin-left: 8px;
}

.cta2-btn:hover {
  color: #ffffff;
  background: #da3c41;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px #3d1214;
}
