:root {
  --primary-color: #2563eb;
  --secondary-color: #1e40af;
  --accent-color: #f59e0b;
  --success-color: #10b981;
  --danger-color: #ef4444;
  --info-color: #06b6d4;
   --orange-primary: #f97316;
            --orange-hover: #ea580c;
            --orange-light: #fed7aa;
            --gray-900: #111827;
            --gray-600: #4b5563;
            --gray-400: #9ca3af;
  
}
body {
  font-family: 'Poppins', sans-serif;
  color: white;
  overflow-x: hidden;
}
.fs-30c{
  font-size: 3rem !important;
}
.hero-section-quality {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 80px 0;
}

.guarantee-card {
  transition: all 0.3s ease;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
}

.guarantee-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: white;
}

.icon-primary-quality { background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)); }
.icon-success-quality { background: linear-gradient(45deg, var(--success-color), #059669); }
.icon-warning-quality { background: linear-gradient(45deg, var(--accent-color), #d97706); }
.icon-info-quality { background: linear-gradient(45deg, var(--info-color), #0891b2); }
.icon-secondary-quality { background: linear-gradient(45deg, #6b7280, #4b5563); }
.icon-danger-quality { background: linear-gradient(45deg, var(--danger-color), #dc2626); }

.section-title-quality {
  position: relative;
  margin-bottom: 60px;
  color: black;
}
.rocket-emoji {
  font-size: 3rem;
  animation: bounce 2s infinite;
}
.section-title-quality::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
}

.cta-section-qualtiy {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: white;
  padding: 80px 0;
}

.btn-custom {
  padding: 15px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary-custom {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  border: none;
  color: white;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.btn-outline-custom {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.btn-outline-custom:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}

.guarantee-number {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--accent-color);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

@media (max-width: 768px) {
  .hero-section-quality {
      padding: 60px 0;
  }
  
  .hero-section-quality h1 {
      font-size: 2.5rem;
  }
}

.review-container {
  max-width: 800px;
  margin: 0 auto;
}

.review-card {
  background: white;
  border-radius: 20px;
  padding: 12px 20px 12px 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  border-radius: 50%;
  opacity: 0.1;
}

.review-card::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  border-radius: 50%;
  opacity: 0.1;
}

.profile-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #ff6b6b;
  margin: 0 auto 30px;
  display: block;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.quote-text {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #555;
  text-align: center;
  margin-bottom: 30px;
  font-style: italic;
  position: relative;
}

.quote-text::before {
  content: '"';
  font-size: 4rem;
  color: #ff6b6b;
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: serif;
  opacity: 0.3;
}

.quote-text::after {
  content: '"';
  font-size: 4rem;
  color: #ff6b6b;
  position: absolute;
  bottom: -40px;
  right: -10px;
  font-family: serif;
  opacity: 0.3;
}

.reviewer-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin-bottom: 5px;
}

.reviewer-title {
  font-size: 1.1rem;
  color: #888;
  text-align: center;
  margin-bottom: 20px;
}

.stars {
  text-align: center;
  margin-bottom: 20px;
}

.stars i {
  color: #ffd700;
  font-size: 1.2rem;
  margin: 0 2px;
}

.accent-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  margin: 20px auto;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .review-card {
      padding: 40px 20px 30px;
      margin: 0 15px;
  }
  
  .quote-text {
      font-size: 1.1rem;
  }
  
  .profile-image {
      width: 100px;
      height: 100px;
  }
}

.fade-in {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}
.card-wrapper-1 {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.service-card {
  background: linear-gradient(135deg, #4e8ce9, #7d5fd1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 24px;
  width: 280px;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.icon-text {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  justify-content: space-between;
}

.left-part {
  display: flex;
  align-items: center;
}

.icon-text i {
  font-size: 20px;
  margin-right: 10px;
}

.service-title {
  font-weight: 600;
  font-size: 16px;
}

.service-desc {
  font-size: 14px;
  opacity: 0.85;
  margin-top: 5px;
}

.arrow {
  font-size: 14px;
  transform: rotate(-45deg);
  transition: all 0.3s ease;
  opacity: 0.5;
}

.service-card:hover .arrow {
  opacity: 1;
  transform: rotate(-45deg) translateX(5px);
}

.fs-1 {
  font-size: 2rem !important;
  /* Approx 48px to 60px depending on screen size */
}

.heading-subtitle {
  font-size: 24px;
  font-weight: 600;
}

.heading-subtitle-2 {
  font-size: 20px;
  font-weight: 600;
}

.sassy-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.testimonial-card {
  background: transparent;
  border: 1px solid #CBD6E2;
  border-radius: 15px;
  padding: 20px;
  width: 300px;
  text-align: left;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: fadeIn 1s ease-in-out;
}

.logo {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.profile {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company {
  font-weight: 600;
  font-size: 1.1rem;
  color: #FFFFFF;
  margin-bottom: 5px;
}

.role {
  font-size: 0.9rem;
  color: #A0A0A0;
  margin-bottom: 10px;
}

.testimonial-card .quote {
  font-size: 0.95rem;
  color: white;
  margin-bottom: 10px;
  opacity: 0.9;
  text-align: center;
}

.testimonial-card .rating {
  font-size: 1rem;
  color: #FFFFFF;
  font-weight: 600;
  text-align: center;
}

.testimonial-card .stars {
  color: #F1C40F;
  margin-left: 5px;
  font-size: 1rem;
}

.sassy-img {
  height: 50px;
}

.hero-section {
  background-image: url(./../images/bg.png);
  background-size: cover;
  background-position: center;
  width: 100%;
  /* min-height: 105vh; */
  align-items: center;
  justify-content: center;
  /* padding-left: 2rem; */
}

/* .hero-section-padded-container and its media query were removed to ensure full width */
.text-warning {
  color: #f97316 !important;
}

.gradient-border {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.testimonial-box {
  background: linear-gradient(to bottom, #1e1e2f, #2a2a3b);
}

.feature-card {
  position: relative;
  left: 0px;
  top: 0px;
  border-radius: 16px !important;
  border: 1px solid #CBD6E2;
  backdrop-filter: blur(10px);
}

.feature-card .arrow-icon {
  display: inline-block;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
  margin-left: 8px;
}

.feature-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  filter: brightness(0.95);
}

.feature-card:hover .arrow-icon {
  transform: rotate(45deg);
}

.card-title i {
  margin-right: 5px;
}


.brand-logo {
  max-width: 120px;
  height: auto;
  padding: 1rem;
}

.stars {
  font-size: 1.2rem;
  color: gold;
}

.badge-img {
  height: 35px;
}

.transform-36 {
  transform: translateY(-55px);
}

/* Animated Bar */
.trusted-bar {
  width: 100% !important;
  height: 218px;
  border-radius: 24px !important;
}

.f-15 {
  font-size: 24px !important;
}

.trusted-bar .brand-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  padding: 0;
  max-width: 130px;
}

.logo-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  margin-top: 1rem;
}

.logo-marquee {
  display: flex;
  gap: 4rem;
  animation: scrollLeft 20s linear infinite;
  width: max-content;
  margin-top: 20px;
}

.logo-marquee img {
  /* max-height: 50px; */
  /* Increased for better clarity */
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}



@keyframes scrollLeft {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* 2nd portion */

.section-heading {
  font-weight: 700;
  font-size: 28px;
  color: black;
}

.highlight-btn {
  background-color: #ff6b00;
  color: rgb(0, 0, 0);
  font-weight: 600;

}

.mb-4 {
  color: black;
}

.highlight-btn:hover {
  background-color: #e65c00;
}

.stats .value {
  font-size: 50px;
  font-weight: 700;
  color: #0d1b2a;
}

.stats .label {
  font-size: 14px;
  font-weight: 500;
  color: #454545;
}

.info-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.info-card .icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.info-card h5 {
  font-weight: 700;
  font-size: 18px;
  color: #0d1b2a;
}

.info-card ul {
  padding-left: 1.2rem;
  margin: 0;
  list-style-type: disc;
}

.info-card ul li {
  font-size: 14px;
  margin-bottom: 8px;
}

.color-black {
  color: black;
}

.f-20-s {
  font-size: 20px;
}

.detail-testimonial {
  text-align: start;
  padding-left: 1.9rem;
}

.px-5 {
  padding-right: 5rem !important;
  padding-left: 5rem !important;
  padding-top: 1rem;
  padding-bottom: 6.25rem;
}

@media (max-width: 768px) {
  .section-heading {
    font-size: 22px;
  }

  .f-15 {
    font-size: 15px !important;
  }

  .trusted-bar {
    width: 100% !important;
    height: 120px !important;
  }

  .mb-0-s {
    margin-bottom: 0px !important;
  }

  .px-5 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .logo-marquee-wrapper {
    margin-top: 0px !important;
  }

  .logo-marquee {
    margin-bottom: 0px !important;
  }

  .stepper {
    flex-direction: column;
    align-items: flex-start;
  }

  .step-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }

  .center-image {
    width: 190px;
    height: 190px;
  }

  .circle-lg {
    width: 200px;
    height: 200px;
  }

  .profile-2 {
    top: 56% !important;
    right: 0rem !important;
  }

  .logo-marquee {
    gap: 2px;
    margin-top: -4px !important;
  }
}

/* 3rd portion */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #0c2d4d;
  margin-bottom: 2rem;
}

.check-icon {
  color: #fa7a3d;
  font-weight: bold;
}

.highlight {
  font-weight: 600;
}

.problem-item {
  display: flex;
  align-items: start;
  margin-bottom: 1.25rem;
}

.problem-text {
  margin-left: 0.75rem;
}

.custom-scroll {
  max-height: 420px;
  overflow-y: auto;
}

.bg-gray-custom {
  background: #F5F5F5 !important;
}

.custom-scroll::-webkit-scrollbar {
  width: 4px;
}

.custom-scroll::-webkit-scrollbar-thumb {
  background-color: #fa7a3d;
  border-radius: 2px;
}

.custom-scroll::-webkit-scrollbar-track {
  background: #f0f0f0;
}

.btn-primary {
  background-color: #fa7a3d;
  border-color: #fa7a3d;
  color: white;
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
  transition: background-color 0.3s;
}

.btn-outline-primary {
  color: #fa7a3d;
  border-color: #fa7a3d;
}

.btn-outline-primary:hover {
  background-color: #fa7a3d;
  border-color: #fa7a3d;
  color: white;
}

.px-4 {
  padding-left: 1.3rem !important;
  padding-right: 1.3rem !important;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

.btn-outline-light {
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
}

.btn-primary:hover {
  background-color: #e0682f;
  border-color: #fa7a3d;
}

.rounded-image {
  border-radius: 20px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.vertical-divider {
  border-left: 2px solid #dee2e6;
}


/* 4th Portion */


.feature-icon {
  font-size: 2rem;
  color: #ff835f;
  margin-bottom: 0.5rem;
}

.card {
  border: none;
  background: #fff;
  padding: 1.5rem;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

.btn-cta {
  background-color: #ff5d22;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border-radius: 5px;
  color: white;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.container-hourly {
  display: flex;
  gap: 20px;
}

.card-hourly {
  width: 145px;
  height: 178px;
  background-color: #d9d9d9;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-hourly.selected {
  background-color: #fff;
  border: 2px solid #f4a261;
  position: relative;
}

.card-hourly h2 {
  font-size: 24px;
  color: #042638;
  margin: 10px 0;
  font-weight: 600;
}

.card-hourly p {
  color: #666;
  font-size: 14px;
  margin-left: 1rem;
  background-color: white;
}

.btn-lite {
  top: 2rem;
  position: relative;
}

.btn-contact {
  top: 4rem;
  position: relative;
}

.bg-gray-skele {
  background-color: #D9D9D9 !important;
}

.skeleton {
  height: 6px !important;
  width: 4rem !important;
  border-radius: 100px;
}

.pt-4rem {
  padding-top: 4rem !important;
}

.skeleton-small {
  height: 6px !important;
  width: 3rem !important;
  border-radius: 100px;
}

/* 5th portion */


.card-custom {
  background-color: #fff;
  color: black;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* .comparison img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
} */
.image-container {
  position: relative;
}

.overlay-text {
  position: absolute;
  top: 0px;
  /* Or use top: 10px; for top positioning */
  left: 0px;
  padding: 6px 10px;
  border-radius: 4px;
  width: 50%;
  text-align: center;
}

.overlay-right {
  position: absolute;
  top: 0px;
  /* Or use top: 10px; for top positioning */
  right: 0px;
  padding: 6px 10px;
  border-radius: 4px;
  width: 50%;
  text-align: center;
}

.check {
  color: green;
  font-size: 15px;
}

.fa-check {
  color: green;

}

.pt-c {
  padding-top: 4.8rem;
}

.cross {
  color: red;
  font-size: 12px;
}

.btn-orange {
  background-color: #f26522;
  color: white;
  font-weight: 600;
  border-radius: 6px;
  padding: 0.6rem 1.2rem;
  border: none;
}

/* 6th Portion */
.section-title {
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0;
  text-align: center;
  color: #454545;
}

.category-title {
  position: relative;
  font-weight: 600;
  font-size: 1.2rem;
  display: inline-block;
  margin-bottom: 1rem;
  width: 100%;
  color: #f46036;
  padding-bottom: 5px;
  /* space for the border */
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, #f46036 40%, #C7C7C7 60%);
}

.tech-badge {
  border: 1px solid #15314b;
  color: #15314b;
  border-radius: 6px;
  padding: 6px 12px;
  margin: 5px;
  display: inline-block;
  font-size: 0.9rem;
}

.btn-orange {
  background-color: #f46036;
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  margin-top: 2rem;
}

.btn-orange:hover {
  background-color: #d94e2e;
}

/* 7th portion */
.section-title {
  font-weight: 700;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  padding-top: 2rem;
}

.reason-title {
  font-weight: 600;
  font-size: 1rem;
}

.reason-desc {
  font-size: 0.9rem;
  color: #666;
}

.dot {
  height: 8px;
  width: 8px;
  background-color: #0a1e2d;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}

.btn-orange {
  background-color: #f46036;
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
}

.btn-orange:hover {
  background-color: #d94e2e;
}

.img-rounded {
  border-radius: 1rem;
  width: 613px;
  height: auto;
}

.scroll-box {
  max-height: 400px;
  /* Adjust height as needed */
  overflow-y: auto;
  padding-right: 10px;
}

/* Optional: Customize scroll bar */
.scroll-box::-webkit-scrollbar {
  width: 6px;
}

.scroll-box::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.scroll-box::-webkit-scrollbar-thumb {
  background-color: #f46036;
  border-radius: 3px;
}

/* 8th Portion */

.cta-section {
  background-color: #042638;
  /* Made orange as per request */
  color: white;
  border-radius: 1rem;
  padding: 2rem;
}

.btn-orange {
  background-color: #f46036;
  color: white;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 0.4rem;
  border: none;
}

.btn-orange:hover {
  background-color: #d94e2e;
}

.btn-outline-light {
  border: 1px solid white;
  color: white;
}

.testimonial-card-2 {
  background-color: #EB671F;
  color: white;
  border-radius: 15px;
  padding: 20px;
  position: relative;
  text-align: center;
  font-family: Arial, sans-serif;
  margin: 20px auto;
}

.testimonial-card-2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 8%;
  transform: translateX(0%) rotate(27deg);
  border-width: 29px 15px 0;
  border-style: dotted;
  border-radius: 24px;
  border-color: #EB671F transparent transparent;
}

.stars {
  margin-bottom: 10px;
}

.stars span {
  color: #ffd700;
  font-size: 1.5rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.4;
}

.test-box {
  background-color: #EB671F;
  color: white;
  border-radius: 1rem;
  padding: 1.5rem;
  position: relative;
}

.testimonial-stars {
  color: #ffd700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.client-info {
  margin-top: 1rem;
}

.client-info img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.whte{
  color: white;
  gap: 6px;
}
.btn-center {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  align-items: center;
  color: black;
  gap: 6px;
}

.test-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.client-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0.8rem;
  text-align: center;
}

.client-meta img {
  width: 40px;
  height: 40px;
}



.hero {

  color: black;
}

.stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2rem;
  background-color: #f8f9fa;
}

.step-card {
  border: 2px solid #f46036;
  border-radius: 20px;
  padding: 1.5rem;
  max-width: 280px;
  background-color: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  flex: 0 0 auto;
  min-height: 230px;
}

.step-number {
  font-weight: bold;
  font-size: 1.5rem;
  color: #f46036;
  margin-bottom: 0.5rem;
}

.step-title {
  font-size: 1.1rem;
  color: #0c1a35;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-description {
  font-size: 0.95rem;
  color: #6b6b6b;
  line-height: 1.4;
}

.step-arrow {
  font-size: 2rem;
  color: #f46036;
  flex: 0 0 auto;
}


.portfolio-header {
  font-size: 2rem;
  font-weight: bold;
}

.portfolio-subtext {
  color: #6c757d;
}

.see-work-link {
  color: #f0632b;
  font-weight: bold;
  text-decoration: none;
}

.scroll-container {
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
  padding-bottom: 8px;
}

.scroll-container::-webkit-scrollbar {
  height: 3px;
}


.scroll-container::-webkit-scrollbar-thumb {
  background-color: #f0632b;
  border-radius: 10px;
}

.card-wrapper {
  display: inline-block;
  vertical-align: top;
  width: 300px;
  margin-right: 1rem;
}

.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.badge {
  background-color: #e0e0e0;
  color: #333;
  margin-right: 5px;
}

.card-placeholder {
  background-color: #dcdcdc;
  height: 120px;
  border-radius: 10px;
}

.cta-btn {
  background-color: #f0632b;
  border: none;
}

.arrow-static {
  font-size: 1.5rem;
  color: #f0632b;
  user-select: none;
  cursor: default;
}

/* Pricing Section */

.pricing-header {
  font-weight: 700;
  font-size: 2rem;
}

.pricing-subtext {
  color: #6c757d;
  font-size: 1rem;
}

.pricing-card {
  border: 1px solid #dee2e6;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  background-color: #ffffff;
  transition: 0.3s;
}

.pricing-card:hover,
.selected {
  .text-muted {
    color: white !important;
  }

  background-color: #f0632b;
  color: white;
  border: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover .btn {
  background-color: #ffffff;
  color: #0d0d0d;
  font-weight: 600;
}

.selected .btn {
  background-color: #ffffff;
  color: #0d0d0d;
  font-weight: 600;
}

.price {
  font-size: 2rem;
  font-weight: 700;
}

.text-muted-light {
  color: rgba(255, 255, 255, 0.6);
}

.btn-outline {
  border: 1px solid #dee2e6;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
}

.btn-outline:hover {
  background-color: #f0632b;
  color: white;
  border-color: #f0632b;
}
.just-center{
  justify-content: left !important;
}
.just-end{
  justify-content: end !important;
}
@media (max-width: 767px) {
  .pricing-card {
    margin-bottom: 1.5rem;
  }
  .f-20-s{
    font-size: 10px !important; 
  }
  .fs-1{
    font-size: 12px !important;
  }
  .heading-subtitle{
    font-size: 12px !important;
  }
  .just-center{
    justify-content: center !important;
  }
  .just-end{
    justify-content: center !important;
  }
}

/* Frequently Asked Questions */


.faq-title {
  font-weight: 700;
  color: #002b45;
}

.accordion-button {
  background-color: #f1f1f1;
  font-weight: 600;
  color: #002b45;
  border-radius: 12px;
}

.accordion-button:not(.collapsed) {
  background-color: #f1f1f1;
  color: #002b45;
  box-shadow: none;
}

.accordion-item {
  border: none;
  margin-bottom: 10px;
}

.faq-button-orange {
  border: 1px solid #f0632b;
  color: #f0632b;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  background: transparent;
}

.faq-button-orange:hover {
  background-color: #f0632b;
  color: white;
}

.faq-cta {
  background-color: #f0632b;
  color: white;
  font-weight: 600;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
}

.faq-cta:hover {
  background-color: #d6521f;
}

.accordion-body {
  font-size: 0.95rem;
  color: #444;
}


/* Final portion */

.circle {
  background-color: #EB671F;
  border-radius: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .col-auto:hover,.btn-primary:hover,.btn-outline-primary:hover,.pricing-card:hover,.card-wrapper:hover,.step-card:hover,.btn-outline-light:hover{
  
  transform: scale(1.05);
} */
.circle-lg {
  width: 300px;
  height: 300px;
}

.team-label {
  position: absolute;
  cursor: pointer;
  transition: transform 0.2s;
  background: white;
  color: black;
  border-radius: 5px;
  font-size: 0.9rem;
  padding: 7px;
}

.team-label.selected {
  background-color: #EB671F;
  color: white;
}

.team-label:hover {
  transform: scale(1.05);
}

.profile {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
}

.sassy-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rouded{
  border-radius: 50%;
}
.company-name {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.center-image {
  width: 290px;
  height: 290px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
}

.profile-2 {
  top: 36%;
  right: -8rem;
}

/* .form-control,
.form-select {
  background-color: #0a1a2f;
  color: white;
  border: 1px solid #555;
} */

/* .form-control:focus,
.form-select:focus {
  box-shadow: none;
  border-color: #f56a1e;
} */

/* .submit-btn {
  background-color: transparent;
  color: white;
  border: 1px solid white;
  padding: 10px 25px;
} */

.step-icon {
  width: 50px;
  height: 50px;
  background-color: #f56a1e;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.logo-row img {
  max-height: 40px;
  margin: 0 10px;
}

.form-label {
  color: #e0e6f0;
}

.form-control,
.form-select {
  background-color: #2a3a4a;
  border: 1px solid #4a5a6a;
  color: #e0e6f0;
}

.form-control:focus,
.form-select:focus {
  background-color: #2a3a4a;
  border: 1px solid #4a5a6a;
  color: #e0e6f0;
}

/* footer */
footer {
  border-top: 1px solid #333;
}

footer a:hover {
  color: #f56a1e;
  text-decoration: underline;
}

.scroll-container-fluid {
  overflow-x: auto;
  /* Enable horizontal scrollbar */
  white-space: nowrap;
  /* Prevent items from wrapping to the next line */
  -webkit-overflow-scrolling: touch;
  /* Smooth scrolling on touch devices */
  padding-bottom: 10px;
  /* Add some space for the scrollbar so it doesn't overlap content */
}

.scroll-container-fluid .card-wrapper {
  display: inline-block;
  /* Allow cards to sit side-by-side */
  vertical-align: top;
  /* Align cards to the top if they have different heights */
  margin-right: 1rem;
  /* Add some spacing between cards */
  /* Ensure cards don't shrink if there's not enough space, forcing scroll */
  flex-shrink: 0;
}

.scroll-container-fluid .card-wrapper:last-child {
  margin-right: 0;
  /* Remove margin from the last card */
}

/* Optional: Style the scrollbar for a better look (Webkit browsers) */
.scroll-container-fluid::-webkit-scrollbar {
  height: 3px;
  /* Height of the horizontal scrollbar */
}

.scroll-container-fluid::-webkit-scrollbar-track {
  background: #f1f1f1;
  /* Track color */
  border-radius: 4px;
}

.scroll-container-fluid::-webkit-scrollbar-thumb {
  background: #f46036;
  /* Thumb color (using an existing orange from the file) */
  border-radius: 4px;
}

.scroll-container-fluid::-webkit-scrollbar-thumb:hover {
  background: #d94e2e;
  /* Darker thumb color on hover */
}

.portfolio-fullwidth-container {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.hero-section-padded-container {
  /* padding-left: 3rem !important; */
  /* Add left padding */
}

.section-title-bottom {
  font-weight: 700;
  font-size: 2.5rem;
}

.steps-container-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

.step-bottom {
  text-align: center;
  width: 18%;
  position: relative;
}

.circle-bottom {
  background-color: #d86c0b;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  position: relative;
}

.step-description-bottom {
  margin-top: 20px;
  font-size: 1rem;
  color: #f1f1f1;
}

.steps-container-bottom::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 2px;
  background-color: #d86c0b;
  z-index: 1;
}

@media (max-width: 768px) {
  .steps-container-bottom {
    flex-direction: column;
    align-items: center;
  }

  .step-bottom {
    width: 80%;
    margin-bottom: 40px;
  }

  .steps-container-bottom::before {
    display: none;
  }
}

.hero {
  background: linear-gradient(to right, #111827, #1f2937);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero button {
  background-color: #10b981;
  color: white;
  padding: 1rem 2rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero button:hover {
  background-color: #059669;
}

.features {
  max-width: 1100px;
  margin: 3rem auto;
  display: grid;
  gap: 2rem;
  padding: 0 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card-section {
  background: white;
  color: black;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  padding: 2rem;
  border-left: 6px solid #EB671F;
  transition: transform 0.3s ease;
}

.card-section:hover {
  transform: translateY(-5px);
}

.card-section h3 {
  margin-top: 0;
  font-size: 1.70rem;
}

.cta-bottom {
  text-align: center;
  padding: 3rem 2rem;
}

.cta-bottom button {
  background-color: #10b981;
  color: white;
  padding: 1rem 2rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.cta-bottom p {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #4b5563;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

        /* Exit Intent Modal Styles */
        .exit-modal-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(4px);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }

        .exit-modal-backdrop.show {
            display: flex;
        }

        .exit-modal {
            background: white;
            border-radius: 16px;
            max-width: 400px;
            width: 90%;
            max-height: 90vh;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
            position: relative;
            animation: modalSlideIn 0.4s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes modalSlideIn {
            from { 
                opacity: 0;
                transform: scale(0.9) translateY(-20px);
            }
            to { 
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .exit-modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 32px;
            height: 32px;
            background: var(--orange-primary);
            border: none;
            border-radius: 8px;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: background-color 0.2s ease;
        }

        .exit-modal-close:hover {
            background: var(--orange-hover);
        }

        .exit-modal-header {
            padding: 2rem 2rem 1.5rem 2rem;
            text-align: center;
            background: white;
        }

        .exit-modal-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fef3e2;
            color: var(--orange-primary);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
        }

        .exit-modal-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: #fb923c;
            border-radius: 50%;
        }

        .exit-modal-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .exit-modal-description {
            color: var(--gray-600);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .exit-modal-form {
            background: var(--orange-primary);
            padding: 2rem;
        }

        .exit-modal-form label {
            color: white;
            font-weight: 500;
            margin-bottom: 0.5rem;
            display: block;
        }

        .exit-modal-form input,
        .exit-modal-form textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid transparent;
            border-radius: 8px;
            font-size: 0.95rem;
            transition: border-color 0.2s ease;
            resize: none;
        }

        .exit-modal-form input:focus,
        .exit-modal-form textarea:focus {
            outline: none;
            border-color: #fed7aa;
            box-shadow: 0 0 0 3px rgba(254, 215, 170, 0.3);
        }

        .exit-modal-form textarea {
            height: 100px;
        }

        .exit-modal-submit {
            width: 100%;
            background: white;
            color: var(--orange-primary);
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.2s ease;
            margin-top: 1.5rem;
        }

        .exit-modal-submit:hover:not(:disabled) {
            background: #f9fafb;
            transform: translateY(-1px);
        }

        .exit-modal-submit:disabled {
            opacity: 0.7;
            cursor: not-allowed;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            
            .exit-modal {
                margin: 1rem;
                max-width: none;
            }
            
            .exit-modal-header {
                padding: 1.5rem 1.5rem 1rem 1.5rem;
            }
            
            .exit-modal-form {
                padding: 1.5rem;
            }
            
            .exit-modal-title {
                font-size: 1.25rem;
            }
        }