* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevent horizontal scroll */
  width: 100%;
    scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI ", Symbol, "Noto Color Emoji";
}


html {
  scroll-behavior: smooth;
}

/* In your style.css or inside <style> */
html, body {
  overflow-x: hidden;
}

[data-aos] {
  will-change: transform;
  backface-visibility: hidden;
}

.navbar {
  background-color: white;
  /* Orange color */
  /* box-shadow: 0px 0px 7px rgba(219, 166, 68, 0.7); */
  /* Orange box shadow */
  padding: 10px 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

section>*:last-child {
  margin-bottom: 0;
}


.navbar-brand {
  color: #0f0f0f !important;
}

.nav-link {
  color: #141414 !important;
  font-size: 15px;
  font-weight: 500;
  gap: 18px;
}

.nav-item {
  gap: 18px;
  margin-left: 20px;
}

.nav-link:hover {
  color: #de9516 !important;
}

.carousel-item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;

}

:root {
  --orange: #EB6671;
  --dark: #141414;
}

body {
  font-family: 'Poppins', sans-serif;
}

.btn-orange {
  background-color: var(--orange);
  color: white;
}

.btn-orange:hover {
  background-color: #e65c00;
}

.section-title {
  color: #670066;
  font-weight: 600;
}

.hero-bg {
  background: url('https://source.unsplash.com/1600x700/?technology,scheduling') no-repeat center center/cover;
  color: white;
}

.blod {
  font-size: 53px;
  font-weight: 900;

}

.lead {
  font-size: 18px;

}

.text {
  font-size: small;
}

#about img {
  max-width: 100%;
  border-radius: 10px;
}
.bner{
  height: 502px;
  width: 800px;
}
.carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
}

.text-orange {
  color: #670066;
}

.hero {
  background-color: #fff;
  padding-top: 100px;
  min-height: 100vh;
}

@media screen and (max-width: 768px) {
  .hero {
    padding-top: 150px;
  }

  .btn-outline-dark {
    margin-top: 20px;
  }

}

  @media (max-width: 767.98px) {
    .heading-text {
      font-size: 28px !important;
      margin-left: 1rem !important;
    }

    .paragraph-text,
    .qr-img,
    .btn-group-custom {
      margin-left: 1rem !important;
    }

    .qr-img {
      width: 150px !important;
    }
  }

  @media (min-width: 768px) {
    .heading-text {
      font-size: 51px !important;
      margin-left: 4rem !important;
    }

    .paragraph-text,
    .qr-img,
    .btn-group-custom {
      margin-left: 4rem !important;
    }

    .qr-img {
      width: 190px !important;
    }
  }

 
 @media (max-width: 767.98px) {
    .btn-group-custom {
      flex-direction: column !important;
      align-items: stretch !important;
      margin-left: 1rem !important;
      gap: 0.75rem !important;
    }

    .btn-group-custom .btn {
      width: 100%;
      font-size: 14px;
      padding: 10px 16px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .btn-group-custom img {
      width: 24px !important;
    }
  }

  @media (min-width: 768px) {
    .btn-group-custom {
      margin-left: 4rem !important;
    }

    .btn-group-custom .btn {
      font-size: 16px;
      padding: 12px 24px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .btn-group-custom img {
      width: 40px !important;
    }
  }

  @media (max-width: 576px) {
    .btn-mobile-small {
      padding: 6px 12px !important;
      font-size: 14px !important;
    }

    .btn-mobile-small img {
      width: 25px !important;
    }
  }


.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  border-radius: 15px;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.feature-card img {
  height: 180px;
  object-fit: cover;
  border-bottom: 2px solid #ff6600;
}


/* Timeline Base Styling */
.timeline-wrapper {
  padding: 0 1.5rem;
}

.timeline {
  position: relative;
  margin: 0 auto;
  max-width: 900px;
  padding-left: 30px;
  border-left: 2px solid #ff6600;
}

.timeline-step {
  position: relative;
  margin-bottom: 50px;
  padding-left: 30px;
}

.timeline-icon {
  position: absolute;
  top: 0;
  left: -17px;
  width: 34px;
  height: 34px;
  background:linear-gradient(135deg, #EB6671, #670066);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 1.5s infinite;
}

.timeline-content {
  background: white;
  border-radius: 10px;
  padding: 15px 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
}

.timeline-content:hover {
  transform: translateY(-4px);
}

/* Icon Pulse Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

/* Responsive Fix */
@media (max-width: 576px) {
  .timeline {
    padding-left: 20px;
  }

  .timeline-step {
    padding-left: 20px;
  }

  .timeline-icon {
    left: -15px;
  }
}

.faq-section {
  padding: 60px 0;
  background-color: #fff8f0;
}

.faq-image {
  max-width: 100%;
  border-radius: 15px;
  /* box-shadow: 0 0 30px rgba(0, 0, 0, 0.1); */
}

.faq-accordion .accordion-button {
  background-color: #fff;
  color: #333;
  font-weight: 500;
  border-radius: 8px;
}

.faq-accordion .accordion-body {
  color: #666;
}


/* .btn-orange {
            background-color: orange;
            color: white;
            border-radius: 50px;
            padding: 10px 30px;
            border: none;
            transition: all 0.3s ease;
        }

        .btn-orange:hover {
            background-color: #ff6600;
            color: #fff;
        }

        .contact-section {
            padding: 60px 0;
            background-color: #fff8f0;
        }

        .contact-image {
            max-width: 100%;
            border-radius: 15px;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
        }


          .text-orange {
        color: orange;
    }

    .btn-orange {
        background-color: orange;
        color: white;
        border-radius: 50px;
        padding: 8px 20px;
        border: none;
    }

    .btn-orange:hover {
        background-color: #ff6600;
    }

    .form-control {
        border-radius: 50px;
        padding: 10px 20px;
    }
     */

.btn-orange {
  background:linear-gradient(135deg, #EB6671, #670066);
  color: white;
}

.btn-orange:hover {
  background-color: #e65c00;
  color: white;
}

/* For smooth shadow transitions on inputs */
input.form-control,
textarea.form-control {
  transition: box-shadow 0.3s ease;
}

.text-orange {
  color: #EB6671 !important;
}

.btn-orange {
  background:linear-gradient(135deg, #EB6671, #670066);
  border: none;
  color: white;
  transition: background-color 0.3s ease;
}

.btn-orange:hover {
  background:linear-gradient(135deg, #EB6671, #670066);
  color: white;
}

.footer-link {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #EB6671;
  text-decoration: underline;
}

.social-icon:hover {
  color: #EB6671 !important;
}

.bi {
  color: white;
}

.btn-warning {
  background:linear-gradient(135deg, #EB6671, #670066);
  border: none;
  color: white;
  transition: background-color 0.3s ease;
  padding: 10px 20px;
}

.card-custom {
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
}

.step-title {
  font-weight: 700;
  font-size: 1.25rem;
}

.cta-btn {
  background:linear-gradient(135deg, #EB6671, #670066);
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 30px;
}

.step-divider {
  border-top: 1px solid #ddd;
  margin: 20px 0;
}

.text-orange {
  color: #EB6671;
}

.bg-orange {
  background:linear-gradient(135deg, #EB6671, #670066);
}

.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hover-effect {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 16px;
}

.hover-effect:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  background-color: #ecaa7e;
}

.feature-style p {
  font-size: 15px;
}

 .gradient-text {
    background: linear-gradient(135deg, #EB6671, #670066);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
  }