@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(6px);
  }
  60% {
    transform: translateY(3px);
  }
}

.app-showcase-section {
  background: #fff4f4;
  padding: 80px 20px;
  text-align: center;
}

.main-heading {
  font-size: 36px;
  font-weight: bold;
  color: #d4463f;
  margin-bottom: 10px;
}

.sub-heading {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 50px;
}

.app-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Left & Right Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* Cards */
.feature-card {
  background: white;
  border-radius: 16px;
  padding: 20px 10px;
  width: 140px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  color: #222;
}

/* Mobile Mockup */
.mockup-container {
  position: relative;
  width: 230px;
}

.mockup-img {
  width: 100%;
}

.mockup-center-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.mockup-center-icon img {
  width: 48px;
  height: 48px;
}

.hero-wrap {
  min-height: 100vh;
}


@media (max-width: 768px) {
  .slider-text {
    align-items: flex-start !important;
  }

  .hero-scroll-cs {
    margin-top: 60px !important;
  }
}

.google-play-badge {
  height: 70px;
}


/* SECTION 2ND AFTER HERO */


  .kangkan-craft-section {
    background-color: #fff;
    overflow: hidden;
    padding: 3rem 0;
  }

  .kangkan-craft-section .img-fluid {
    max-height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
  }

  .kangkan-craft-section .img-fluid:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  

  /* Animation */
  @keyframes fadeSlideUp {
    0% {
      opacity: 0;
      transform: translateY(40px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .kangkan-craft-section .col-md-6 {
    animation: fadeSlideUp 1s ease forwards;
    opacity: 0;
  }

  .kangkan-craft-section .col-md-6:nth-child(1) {
    animation-delay: 0.2s;
  }

  .kangkan-craft-section .col-md-6:nth-child(2) {
    animation-delay: 0.4s;
  }

  /* Heading and Text */
  .section-heading {
    font-weight: bold;
    color: #d4463f;
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .section-subtext {
    color: #6c757d;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }

  /* Button */
  .download-btn {
    background-color: #d4463f;
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 12px 28px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
  }

.call-now-btn {
  border-radius: 50px;
  font-weight: 600;
  padding: 12px 26px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 2px solid #28a745; /* Bootstrap success green */
  color: #28a745;
  text-decoration: none;
  background-color: transparent;
}

.call-now-btn:hover {
  background-color: #28a745;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


/* WHY CHOOSE STYLE  */
/* General Card Styling */
.why_us .text {
  border-radius: 24px; /* More rounded */
  border: 10px solid transparent; /* Thicker border */
  padding: 26px 20px;
  color: rgb(41 49 66 / 1);
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.why_us .text:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

/* Card 1 */
.why_us .col-md-3:nth-child(1) .text {
  background: linear-gradient(135deg, #e0f8e9, #d0f0dc);
  border-color: #b2e7c4;
}

/* Card 2 */
.why_us .col-md-3:nth-child(2) .text {
  background: linear-gradient(135deg, #fde1ea, #fbd0df);
  border-color: #f4a6bb;
}

/* Card 3 */
.why_us .col-md-3:nth-child(3) .text {
  background: linear-gradient(135deg, #e4e9fb, #d7ddf7);
  border-color: #a3b0ea;
}

/* Card 4 */
.why_us .col-md-3:nth-child(4) .text {
  background: linear-gradient(135deg, #fff0de, #ffe2c4);
  border-color: #ffc89c;
}

/* Icon Styling */
.why_us .text .fa {
  font-size: 40px;
  color: rgb(41 49 66 / 1);
  background: rgba(255, 255, 255, 0.8);
  padding: 16px 18px;
  border-radius: 10px;
  display: inline-block;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
}

/* Heading */
.why_us .text .heading {
  font-size: 20px;
  font-weight: 700;
  color: rgb(41 49 66 / 1);
  margin-bottom: 12px;
}

/* Paragraph */
.why_us .text p {
  font-size: 15px;
  line-height: 1.6;
  color: rgb(41 49 66 / 1);
}

/* Icon animation */
.animated-icon {
  transition: transform 0.3s ease;
}

.call-now-btn:hover .animated-icon {
  transform: scale(1.2) rotate(-8deg);
}



  /* Responsive */
  @media (max-width: 767px) {
    /* .section-heading {
      font-size: 1.8rem;
    } */

    .section-subtext {
      font-size: 1.1rem;
    }
    .download-btn {
      width: 100%;
      text-align: center;
    }
  }


@media (max-width: 768px) {
  .google-play-badge {
    height: 62px;
    margin-bottom: 10px;
  }
}


@media (max-width: 768px) {
  .hero-wrap {
    min-height: 675px; /* Your desired height on mobile */
  }
}

.app-screenshot{
    margin-left: -0px!important;
}
@media (min-width: 768px) {
  .app-screenshot {
    margin-left: 0px !important;
  }
}


.store-badges {
  position: absolute;
  bottom: 100px;
  width: 100%;
}

.store-badges img {
  margin: 0 10px;
  height: 70px;
  transition: transform 0.3s ease;
}

.store-badges img:hover {
  transform: scale(1.05);
}

/* Reduce Google Play badge height on mobile */
@media (max-width: 768px) {
  .google-play-badge {
    height: 62px!important;
    margin-bottom: 10px!important;
  }
}


/* CSS FOR APP SCREENSHOT */

.app_screenshots {
  background: url('images/bg_3.jpg') no-repeat center center/cover;
  padding: 60px 20px;
  text-align: center;
}

.app_screenshots__header span {
  display: block;
  font-size: 16px;
  color: #ddd;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.app_screenshots__header h2 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 40px;
  font-weight: 600;
}

.app_screenshots__carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 20px;
  padding-bottom: 20px;
  justify-content: center;
}

.app_screenshots__carousel::-webkit-scrollbar {
  display: none;
}

.app_screenshots__item {
  flex: 0 0 auto;
  width: 250px;
  height: 500px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  scroll-snap-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

/* .app_screenshots__item:hover {
  transform: scale(1.03);
} */

@media (max-width: 768px) {
  .app_screenshots__item {
    width: 200px;
    height: 400px;
  }

  .app_screenshots__header h2 {
    font-size: 24px;
  }
}



/* CUSTOM ADDED STYLE  */

