/* GLOBAL */
body {
  font-family: 'Inter', sans-serif;
}

/* ================= NAVBAR ================= */
.navbar {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
}

.btn-pink {
  background: linear-gradient(45deg, #ff007a, #ff2d95);
  color: #fff;
  border-radius: 30px;
  padding: 10px 22px;
  border: none;
  font-weight: 600;
}

.btn-pink:hover {
  opacity: 0.9;
}

/* ================= OFFCANVAS ================= */
.offcanvas {
  width: 80%;
  max-width: 320px;
}

.offcanvas-body a {
  font-size: 18px;
  text-decoration: none;
  color: #222;
}

.offcanvas-body a:hover {
  color: #ff2d95;
}

/* ================= HERO ================= */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.92), rgb(255 255 255 / 56%)), url(images/bannerhome.jpg) center / cover no-repeat;
}

/* badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eaffd8;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.9rem;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: #7ed957;
  border-radius: 50%;
}

/* title */
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
}

.hero-title span {
  background: linear-gradient(45deg, #ff007a, #ff2d95);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* text */
.hero-text {
  color: #555;
  max-width: 500px;
}

/* info */
.hero-info .info-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-info i {
  background: #f2f2f2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.hero-info p {
  margin: 0;
  font-weight: 600;
}

.hero-info small {
  color: #777;
}

/* mobile */
@media (max-width: 768px) {
  .hero-section {
    padding: 90px 0;
  }
  .hero-info {
    flex-direction: column;
  }
}


/* section 2 */

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h1 {
  font-weight: 700;
}

.section-title span {
  color: #9be000;
}

.nav-pills .nav-link {
  border-radius: 30px;
  color: #333;
  padding: 10px 20px;
}

.nav-pills .nav-link.active {
  color: #ff4d8d;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.workspace-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.workspace-img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  height: 300px;
}

.badge-custom {
  background: #ffe6ef;
  color: #ff2d6f;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
}

.btn-custom {
  background: #000;
  color: #fff;
  border-radius: 30px;
  padding: 10px 20px;
}

.btn-custom:hover {
  background: #ff2d6f;
  color: #fff;
}

/* secton 2 */

/* section 3 */


/* SECTION BACKGROUND */
.features-section {
  padding: 100px 0;
  background: radial-gradient(circle at left, #1a1a1a, #000);
  color: #fff;
}

/* HEADING */
.section-title h1 {
  font-size: 48px;
  font-weight: 700;
}

.section-title p {
  color: #aaa;
  /*max-width: 500px;*/
}

/* CARD */
.feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 25px;
  height: 100%;
  transition: 0.3s;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.2);
}

/* ICON */
.icon-box {
  width: 50px;
  height: 50px;
  background: rgba(255, 0, 100, 0.15);
  color: #ff2d6f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 20px;
}

/* TEXT */
.feature-card h5 {
  font-weight: 600;
}

.feature-card p {
  color: #aaa;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-title h1 {
    font-size: 32px;
  }
}


/* section 3 */

/* section 4 */

.timeline-section {
  padding: 80px 0;
  text-align: center;
}

/* BADGE */
.badge-title {
  background: #e8f5d8;
  color: #6a9f1f;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 15px;
}

/* HEADING */
.timeline-section h2 {
  font-weight: 700;
}

.timeline-section p {
  color: #777;
  margin-bottom: 50px;
}

/* CARD */
.timeline-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  position: relative;
  text-align: left;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.timeline-card:hover {
  transform: translateY(-8px);
}

/* TOP DOT */
.timeline-card::before {
  content: "";
  width: 20px;
  height: 20px;
  background: #ff2d6f;
  border-radius: 50%;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* ICON */
.icon-circle {
  width: 40px;
  height: 40px;
  background: #ffe6ef;
  color: #ff2d6f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

/* TIME */
.time {
  color: #ff2d6f;
  font-weight: 600;
  font-size: 14px;
}

/* TEXT */
.timeline-card h6 {
  font-weight: 600;
  margin-top: 10px;
}

.timeline-card p {
  font-size: 14px;
  color: #777;
}

/* CONNECT LINE (desktop only) */
.timeline-row {
  position: relative;
}

.timeline-row::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 5%;
  width: 90%;
  height: 2px;
  background: #ddd;
  z-index: 0;
}

.timeline-card {
  z-index: 1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .timeline-row::before {
    display: none;
  }
}

/* section 4 */

/* section 5 */
  .section-title {
      font-size: 2rem;
      font-weight: 700;
    }

    .section-subtitle {
      color: #6c757d;
      /*max-width: 500px;*/
    }

    .img-card {
      border-radius: 20px;
      overflow: hidden;
    }

    .img-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .pink-card {
      background: linear-gradient(135deg, #ff007a, #ff4da6);
      color: white;
      border-radius: 20px;
      padding: 40px;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    @media (max-width: 768px) {
      .pink-card {
        padding: 25px;
      }
    }
    /* section 5 */

    /* section 6 */

    .card-box {
      border-radius: 20px;
      overflow: hidden;
    }

    .card-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .pink-card {
      background: linear-gradient(135deg, #ff007a, #ff4da6);
      color: white;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      height: 100%;
      min-height: 180px;
    }

    .green-card {
      background: #c6f32d;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      height: 100%;
      min-height: 180px;
    }

    .badge-custom {
      background: #ffe3ec;
      color: #ff007a;
      border-radius: 50px;
      padding: 6px 14px;
      font-size: 12px;
      display: inline-block;
      margin-bottom: 10px;
    }

    .feature {
      display: flex;
      gap: 12px;
      margin-bottom: 20px;
      align-items: flex-start;
    }

    .icon {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: #f1f1f1;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
    }

    .icon i {
      color: #ff007a;
    }

    @media (max-width: 768px) {
      .pink-card, .green-card {
        min-height: 140px;
      }
    }
    /* section 6 */

    /* section 7 */
  .section-title {
      font-weight: 700;
      font-size: 2.5rem;
    }

    .section-subtitle {
      color: #6c757d;
    }

    .pricing-card {
      background: #fff;
      border-radius: 20px;
      padding: 30px;
      height: 100%;
      border: 1px solid #eee;
      transition: all 0.3s ease;
      position: relative;
    }

    /* Hover Effect */
    .pricing-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    }

    .price {
      font-size: 2rem;
      font-weight: 700;
    }

    .feature {
      display: flex;
      gap: 10px;
      margin-bottom: 10px;
      font-size: 14px;
    }

    .feature i {
      color: #ff007a;
    }

    .btn-outline-custom {
      border-radius: 50px;
    }

    /* Highlight Card */
    .featured {
      border: 2px solid #ff007a;
      box-shadow: 0 10px 30px rgba(255,0,122,0.2);
    }

    .featured:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 25px 50px rgba(255,0,122,0.3);
    }

    .badge-popular {
      position: absolute;
      top: -12px;
      left: 20px;
      background: #ff007a;
      color: #fff;
      padding: 5px 12px;
      font-size: 12px;
      border-radius: 50px;
    }

    .btn-pink {
      background: #ff007a;
      color: white;
      border-radius: 50px;
      padding: 10px;
    }

    .btn-pink:hover {
      background: #e6006f;
    }


    /* section 7 */

    /* section 8 */
   .section {
      padding: 60px 0;
    }

    .step-number {
      width: 40px;
      height: 40px;
      border: 1px solid #ddd;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      color: #ff3b7d;
      margin-right: 15px;
    }

    .step {
      display: flex;
      margin-bottom: 20px;
    }

    .image-card img {
      width: 100%;
      border-radius: 20px;
      object-fit: cover;
    }

    /* MARQUEE */
    .marquee-wrapper {
      background: black;
      overflow: hidden;
      white-space: nowrap;
      padding: 15px 0;
    }

    .marquee {
      display: inline-block;
      animation: scroll 20s linear infinite;
    }

    .marquee span {
      font-size: 28px;
      font-weight: 700;
      color: #fff;
      margin: 0 40px;
      letter-spacing: 2px;
    }

    .star {
      color: #ff4fa3;
      margin: 0 20px;
    }

    @keyframes scroll {
      from {
        transform: translateX(0);
      }
      to {
        transform: translateX(-100%);
      }
    }

    /* Responsive tweaks */
    @media (max-width: 768px) {
      h1 {
        font-size: 28px;
      }

      .marquee span {
        font-size: 20px;
      }
    }


    /* section 8 */
    /* section 9 */

    .community-love {
  background: #f7f5f3;
}

/* CARD STYLE */
.testimonial-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  border: 1px solid #eee;
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* STARS */
.stars {
  color: #b4e000;
  font-size: 18px;
  margin-bottom: 10px;
}

/* TEXT */
.testimonial-card p {
  font-size: 14px;
  color: #333;
}

/* IMAGE */
.user img {
  width: 40px;
  height: 40px;
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .testimonial-card {
    padding: 20px;
  }
}

    /* section 9 */
    /* section10 */

    .location-highlight {
  background: #f5f3f1;
}

.location-badge {
  background: #e6f0c7;
  color: #4a5d23;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
}

.address-card {
  background: #fff;
  border-radius: 15px;
  border: 1px solid #eee;
}

.map-card {
  background: #fff;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid #eee;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.icon {
  font-size: 18px;
  color: #333;
}

@media (max-width: 768px) {
  .map-card {
    padding: 6px;
  }
}

/* section 10 */
/* section 11 */
.faq-section {
  background: #f8f9fb;
}

.faq-section .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
}

.faq-section .faq-subtitle {
  color: #6c757d;
  font-size: 1rem;
}

.faq-section .faq-accordion {
  max-width: 750px;
  margin: 0 auto;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.faq-section .accordion-item {
  border: none;
  border-bottom: 1px solid #eee;
}

.faq-section .accordion-button {
  font-weight: 600;
  font-size: 1rem;
  color: #222;
  background: transparent;
  box-shadow: none;
  padding: 18px 10px;
}

.faq-section .accordion-button:not(.collapsed) {
  color: #000;
  background: transparent;
}

.faq-section .accordion-button:focus {
  box-shadow: none;
}

.faq-section .accordion-body {
  color: #666;
  font-size: 0.95rem;
  padding: 0 10px 15px;
}

.faq-section .accordion-button::after {
  transform: scale(0.8);
}

/* Responsive */
@media (max-width: 768px) {
  .faq-section .faq-title {
    font-size: 2rem;
  }

  .faq-section .faq-accordion {
    padding: 15px;
  }
}

/* section 11 */

/* sectio 12 */

.cta-section {
  background: linear-gradient(135deg, #ff2d7a, #ff0066);
  min-height: 380px;
  color: #fff;
}

.cta-title {
  font-size: 2.8rem;
  font-weight: 700;
}

.btn-cta-primary {
  background: #c6ff00;
  color: #000;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 600;
}

.btn-cta-primary:hover {
  background: #b2f200;
}

.btn-cta-outline {
  border: 1px solid #fff;
  color: #fff;
  padding: 12px 26px;
  border-radius: 50px;
}

.btn-cta-outline:hover {
  background: #fff;
  color: #ff0066;
}

.cta-note {
  font-size: 0.85rem;
  opacity: 0.8;
}

.cta-or {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-title {
    font-size: 2rem;
  }

  .cta-section {
    padding: 60px 20px;
  }
}

/* section 12 */

/* footer */

.footer-section {
  background: #0e0e0e;
  color: #ccc;
  padding: 60px 0 30px;
  font-size: 0.9rem;
}

.footer-logo {
  color: #fff;
  font-weight: 700;
}

.footer-text {
  font-size: 0.85rem;
  color: #aaa;
}

.footer-heading {
  color: #fff;
  margin-bottom: 15px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-social span {
  width: 35px;
  height: 35px;
  background: #1c1c1c;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.75rem;
}

.footer-divider {
  border-color: #222;
  margin: 30px 0;
}

.footer-bottom-links a {
  color: #888;
  margin-left: 15px;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-section {
    text-align: center;
  }

  .footer-bottom-links a {
    margin: 0 8px;
  }
}
/* footer */