:root {
  --primary-color: #e57a1e;
  --secondary-color: #0a0a09;
  --dark-color: #212529;
  --light-color: #f8f9fa;
}

/* Base body styling */
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--dark-color);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 0.875rem;
  background-color: #f8f9fa;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.navbar-brand span {
  color: var(--primary-color);
}

.navbar {
  /* padding: 15px 0; */
  background-color: var(--light-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-link {
  color: var(--dark-color);
  font-weight: 600;
  margin: 0 10px;
  position: relative;
  font-size: 16px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link.active:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  bottom: -5px;
  left: 0;
}

/* Desktop Dropdown Styles */
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .dropdown-toggle::after {
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    border: none;
    transition: transform 0.3s ease;
  }

  .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 10px 0;
    margin-top: 10px;
  }
}

@media (max-width: 992px) {
  .navbar-brand img {
    height: 55px !important;
  }
}

@media (min-width: 992px) and (max-width: 1400px) {
  .navbar-brand img {
    height: 55px !important;
  }
}

.navbar-brand img {
  height: 55px;
}

.dropdown-item {
  padding: 8px 20px;
  color: var(--dark-color);
  font-weight: 500;
}

.dropdown-item:hover {
  background-color: var(--light-color);
  color: var(--primary-color);
}

/* Custom hamburger menu */
.navbar-toggler {
  border: none;
  padding: 0;
  width: 30px;
  height: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler .icon-bar {
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--dark-color);
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.navbar-toggler .icon-bar:nth-child(1) {
  top: 0;
}

.navbar-toggler .icon-bar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.navbar-toggler .icon-bar:nth-child(3) {
  bottom: 0;
}

/* When navbar is open (show X icon) */
.navbar-toggler[aria-expanded="true"] .icon-bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .icon-bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .icon-bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Offcanvas Menu */
.offcanvas {
  width: 280px !important;
}

.offcanvas-end {
  right: 0;
  left: auto;
}

.offcanvas-header {
  justify-content: flex-end;
  padding: 15px;
}

.offcanvas-body {
  padding: 0;
}

/* Mobile Navigation Items */
.mobile-nav-item {
  padding: 12px 20px;
  border-bottom: 1px solid #f0f0f0;
  display: block;
  color: var(--dark-color);
  text-decoration: none;
}

.mobile-nav-item:hover {
  background-color: var(--light-color);
  color: var(--primary-color);
}

/* Mobile Dropdown Styles */
.mobile-dropdown {
  position: relative;
}

.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid #f0f0f0;
  color: var(--dark-color);
  text-decoration: none;
}

.mobile-dropdown-toggle:hover {
  background-color: var(--light-color);
  color: var(--primary-color);
}

.mobile-dropdown-toggle i {
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}

.mobile-dropdown-toggle.active i {
  transform: rotate(180deg);
  color: var(--primary-color);
}

.mobile-dropdown-menu {
  display: none;
  padding-left: 15px;
  background-color: var(--light-color);
}

.mobile-dropdown-menu.show {
  display: block;
}

.mobile-dropdown-item {
  padding: 10px 20px;
  border-bottom: 1px solid #e0e0e0;
  display: block;
  color: var(--dark-color);
  text-decoration: none;
}

.mobile-dropdown-item:last-child {
  border-bottom: none;
}

.mobile-dropdown-item:hover {
  color: var(--primary-color);
  background-color: var(--light-color);
}

.mobile-dropdown-item i {
  margin-right: 8px;
  width: 18px;
  text-align: center;
}

.quote-btn {
  display: inline-block;
  padding: 8px 18px;
  background-color: var(--primary-color);
  color: var(--light-color) !important;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.quote-btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* Responsive tweaks for 991px to 1200px */
@media (min-width: 991px) and (max-width: 1200px) {
  .nav-link {
    margin: 0 6px;
    font-size: 0.7rem;
  }

  .dropdown-item {
    padding: 6px 15px;
    font-size: 0.9rem;
  }

  .quote-btn {
    padding: 6px 14px;
    font-size: 0.9rem;
    border-radius: 25px;
  }

  .navbar {
    padding: 10px 0;
  }

  .dropdown-menu {
    padding: 8px 0;
  }
}

.hero-section {
  padding: 4rem 0 6rem;
  overflow: hidden;
}

.hero-bg-img {
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.hero-section .container {
  z-index: 2;
  position: relative;
}


/* Quote Form */
.quote-form {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
}

.form-label {
  font-weight: 600;
  font-size: 0.875rem;
  color: #6c757d;
}

.form-control {
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid #ddd;
}

.form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-floating {
  position: relative;
}

.form-floating label {
  position: absolute;
  top: 0;
  left: 1rem;
  padding-left: 1rem;
  color: #6c757d;
  pointer-events: none;
  transition: all 0.2s ease;
}

.form-floating input:focus~label,
.form-floating input:not(:placeholder-shown)~label {
  top: -1.25rem;
  font-size: 0.875rem;
  color: #0d6efd;
}

.btn-primary {
  background-color: #0d6efd;
  border: none;
  color: white;
  font-weight: 600;
  padding: 1rem;
  border-radius: 5px;
}

.btn-primary:hover {
  background-color: #0b5ed7;
}

@media (max-width: 767px) {
  .quote-form .row {
    flex-direction: column;
  }

  .col-md-3,
  .col-md-2 {
    width: 100%;
  }

  .btn-primary {
    width: 100%;
  }
}

/* Safety Badges */
.safety-badge {
  background-color: white;
  color: var(--primary-color);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  margin-top: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  animation: fadeInUp 1s ease;
}

.safety-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.safety-title {
  font-weight: 700;
  font-size: 0.75rem;
  /* Smaller size */
  margin-bottom: 0.5rem;
}

.guarantee-text {
  font-size: 0.75rem;
  color: #6c757d;
}

/* Mobile and Tablet Responsiveness */
@media (max-width: 991.98px) {
  .navbar .navbar-collapse {
    text-align: right;
  }

  .navbar-toggler {
    margin-left: auto;
    transition: var(--transition);
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .nav-link::after {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 1.6rem;
    /* Even smaller on mobile */
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .quote-form {
    padding: 1.25rem;
  }
}

.safety-badge {
  background-color: #f8f9fa;
  /* Light background for professionalism */
  color: var(--dark-color);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.safety-badge:hover {
  transform: translateY(-5px);
  /* Subtle hover effect */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  /* Enhanced shadow on hover */
}

.icon i {
  font-size: 3rem;
  /* Larger icons for visual emphasis */
  margin-bottom: 1.25rem;
}

.safety-title {
  font-weight: 600;
  font-size: 1.125rem;
  /* Slightly smaller but still prominent */
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.guarantee-text {
  font-size: 1rem;
  color: #6c757d;
  /* Soft muted color for text */
  margin-bottom: 1.25rem;
}

.safety-badge p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.safety-badge small {
  font-size: 0.875rem;
  color: #adb5bd;
  /* Lighter text for additional details */
}

/* Ensure responsiveness on mobile */
@media (max-width: 767.98px) {
  .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Top Header */
#top-header {
  background-color: var(--secondary-color);
  padding: 10px 0;
  line-height: 1.5;
  font-size: 15px;
  color: var(--light-color);
}

.header-top-left a,
.header-top-right a {
  color: var(--light-color);
  text-decoration: none;
  margin-right: 15px;
  font-weight: 500;
}

.header-top-left a:hover,
.header-top-right a:hover {
  color: var(--primary-color);
}

.social-links {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.social-links li b {
  color: var(--light-color);
  margin-right: 5px;
}

.social-links a i {
  font-size: 16px;
  transition: color 0.3s ease;
}

.social-links a:hover i {
  color: var(--primary-color);
}

/* Services Section */
.services-section {
  padding: 70px 20px;
  background: var(--light-color);
}

.section-title {
  font-size: 34px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: var(--primary-color);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Service Card */
.service-card {
  display: block;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: var(--dark-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Hover effect with gradient */
.service-card::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  transition: all 0.4s ease;
  z-index: 0;
}

.service-card:hover::before {
  top: 0;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  color: #fff;

}

/* Content above gradient */
.service-card * {
  position: relative;
  z-index: 1;
}

.service-icon {
  font-size: 45px;
  color: var(--primary-color);
  margin-bottom: 18px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.2);
  color: #fff;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
}

.service-card {
  transition: all 0.55s ease-in-out;
}

.service-card::before {
  transition: top 0.65s ease-in-out;
}

.service-icon {
  transition: transform 0.55s ease, color 0.55s ease;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
}

/* Section Styling */
.process-section {
  background: var(--light-color);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  position: relative;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--dark-color);
  max-width: 700px;
  margin: 0 auto;
}

/* Card */
.process-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.5s ease-in-out;
  position: relative;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Icon */
.process-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px;
  font-size: 28px;
  color: #fff;
  transition: all 0.5s ease;
}

.process-card:hover .process-icon {
  background: var(--dark-color);
  transform: rotate(10deg) scale(1.1);
}

/* Titles & Text */
.process-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.process-desc {
  font-size: 0.95rem;
  color: #555;
}

.site-footer {
  background: #111;
  /* Dark background */
  color: #ddd;
  padding-top: 60px;
  font-size: 15px;
  line-height: 1.7;
}

.site-footer .footer-title {
  color: #ff7600;
  font-weight: 600;
  margin-bottom: 18px;
}

.site-footer p {
  color: #bbb;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #ff7600;
}

/* Book Now Button */
.btn-book {
  background: #0047DB;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  padding: 8px 18px;
  margin-top: 12px;
  transition: background 0.3s;
}

.btn-book:hover {
  background: #0036a8;
}

/* Contact Icons */
.footer-contact i {
  color: #ff7600;
  margin-right: 8px;
}

/* Social Icons */
.footer-social {
  margin-top: 15px;
}

.footer-social a {
  color: #fff;
  font-size: 18px;
  margin-right: 12px;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #ff7600;
}

/* Bottom */
.footer-bottom {
  background: rgba(120, 90, 65, 0.18);
  backdrop-filter: blur(12px);
  padding: 15px 0;
  margin-top: 40px;
}

.footer-policy {
  display: flex;
  gap: 15px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-policy a {
  color: #ddd;
  font-size: 14px;
}

.footer-policy a:hover {
  color: #ff7600;
}

.copyright {
  margin: 0;
  font-size: 14px;
  color: #aaa;
}

/* Back to top */
.back-to-top {
  background: #ff7600;
  color: #fff;
  border-radius: 50%;
  padding: 8px 12px;
  transition: background 0.3s;
}

.back-to-top:hover {
  background: #e56a00;
}

/* Responsive */
@media (max-width: 767px) {
  .footer-policy {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .footer-bottom {
    text-align: center;
  }

  .back-to-top {
    margin-top: 12px;
  }
}

/* Breadcrumb Section */
.site-breadcrumb {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 60px 0;
  position: relative;
  color: var(--light-color);
}

.site-breadcrumb::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  background: var(--primary-color);
  opacity: 0.8;
}

.breadcrumb-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--light-color);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 5px;
  font-size: 0.7rem;
}

.breadcrumb-menu li {
  color: var(--light-color);
}

.breadcrumb-menu li a {
  color: var(--light-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumb-menu li a:hover {
  color: var(--primary-color);
}

.breadcrumb-menu li.active {
  font-weight: 600;
  color: var(--primary-color);
  pointer-events: none;
}

.breadcrumb-menu li::after {
  content: "/";
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-menu li:last-child::after {
  content: "";
}

/* FAQ Section */
.faq_section {
  background: var(--light-color);
  padding: 60px 0;
}


/* Accordion Styling */
.custom-faq .accordion-item {
  border: none;
  margin-bottom: 12px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.custom-faq .accordion-button {
  background: var(--dark-color);
  color: var(--light-color);
  font-weight: 600;
  border: none;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* Remove Bootstrap default arrow */
.custom-faq .accordion-button::after {
  display: none !important;
}

.custom-faq .accordion-button:focus {
  box-shadow: none;
}

.custom-faq .accordion-button:not(.collapsed) {
  background: var(--primary-color);
  color: #fff;
}

.custom-faq .accordion-body {
  background: #fff;
  color: var(--dark-color);
  padding: 15px 20px;
}

/* Custom + / - Icon */
.custom-faq .accordion-button .icon {
  margin-left: 10px;
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-faq .accordion-button.collapsed .icon::before {
  content: "+";
  color: var(--light-color);
}

.custom-faq .accordion-button:not(.collapsed) .icon::before {
  content: "-";
  color: #fff;
}

.service-page {
  background: var(--light-color);
  color: var(--dark-color);
}

.service-title {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 15px;
}

.service-img {
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.service-section {
  margin-top: 40px;
}

.service-section h3,
.service-section h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

/* Paragraphs */
.service-page p {
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Decimal List */
.list-decimal {
  counter-reset: num;
  list-style: none;
  padding: 0;
}

.list-decimal li {
  counter-increment: num;
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
}

.list-decimal li::before {
  content: counter(num) ".";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.list-decimal span {
  font-weight: 600;
  color: var(--secondary-color);
}

/* Number List */
.list-number {
  list-style: decimal inside;
  padding-left: 0;
}

.list-number li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.list-number span {
  font-weight: 600;
  color: var(--secondary-color);
}

/* Icon List */
.list-icon {
  list-style: none;
  padding: 0;
}

.list-icon li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.list-icon i {
  color: var(--primary-color);
  margin-right: 8px;
  font-size: 1rem;
}

.review-card,
.service-box {
  padding: 20px;
  text-align: center
}

.bd,
.initial-circle,
.service-box h3 {
  font-weight: 700
}

@media only screen and (max-width:676px) {

  .service b,
  .service h2 {
    font-size: 28px !important
  }

  .services-container {
    flex-direction: column
  }

  .funfact_section {
    display: none;
  }
}

.services-container {
  display: flex;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
  justify-content: space-around
}

.service-box img {
  width: 60px;
  height: 60px
}

.service-box h3 {
  margin: 10px 0 5px;
  font-size: 18px
}

.service-box p {
  font-size: 14px;
  color: #555
}

.service-box i {
  font-size: 35px;
  color: #e57a1e
}

.review-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #f9f9f9
}

.review-card .review {
  line-height: 20px
}

.initial-circle {
  width: 50px;
  height: 50px;
  background-color: #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 10px
}

.star {
  color: #e57a1e
}

.review-card span,
.widget-heading {
  font-weight: bolder
}

.latest-blog .blog-post {
  display: flex;
  margin-bottom: 15px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px
}

.blog-image img {
  height: auto;
  width: 100px;
  border-radius: 5px;
  border: 5px solid #918e8e45
}

.blog-content {
  margin-left: 15px
}

.blog-content small {
  font-size: 12px;
}

.blog-title {
  font-weight: 700;
  color: #333;
  font-size: 16px;
  text-decoration: none
}

.blog-description {
  color: #000;
  margin-top: 5px;
  margin-bottom: 5px
}

.blog-bg,
.keywords-section {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, .1)
}

.process-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
  gap: 20px;
  background: white;
}

.process-step {
  flex: 1 1 22%;
  position: relative;
  z-index: 1;
}

.circle {
  width: 120px;
  height: 120px;
  border: 4px solid #FFA500;
  /* orange border */
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  overflow: hidden;
}

.process-container::before {
  content: '';
  position: absolute;
  top: 60px;
  /* half of circle height */
  left: 10%;
  right: 10%;
  height: 2px;
  border-top: 2px dashed #007BFF;
  z-index: 0;
}

.process-step h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  color: #555;
}

.circle i {
  color: #FFA500;
}

.feature {
  background-color: #fff;
  border-radius: 10px;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
  padding: 20px;
  min-width: 250px;
  box-sizing: border-box;
}

.icon {
  font-size: 40px;
  color: #e57a1e;
  margin-bottom: 10px;
}

.feature-title {
  font-weight: bold;
  margin: 10px 0;
}

.feature-description {
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .container {
    flex-direction: row;
    align-items: center;
  }

  .feature {
    /* width: 90%; */
  }
}

/* About Section Theme */
.section-heading .heading-title {
  font-size: 2rem;
}

.heading-description {
  color: var(--dark-color);
  margin-bottom: 1rem;
}

/* Themed Button */
.btn-theme {
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 30px;
  padding: 10px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-theme:hover {
  background-color: var(--secondary-color);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-theme {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 30px;
  padding: 10px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-theme:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* Feature Boxes */
.feature-box {
  padding: 15px;
}

.feature-title {
  font-size: 1.1rem;
  margin-top: 10px;
  font-weight: 600;
  color: var(--dark-color);
}

.feature-desc {
  color: #555;
  font-size: 0.95rem;
}

/* Circle Icons */
.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

/* Middle Image */
.choose-image {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  padding: 8px;
  max-width: 80%;
}

/* Responsive */
@media(max-width:768px) {
  .feature-box {
    text-align: center;
  }

  .choose-image {
    max-width: 200px;
    margin: 20px auto;
  }
}
header {
    text-align: center;
    margin-bottom: 40px;
}

.heading-main {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.heading-main i {
    margin-right: 10px;
    color: var(--primary-color);
}

.heading-sub {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
}

.heading-sub i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.heading-sub:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    background: var(--light-color);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    color: var(--light-color);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-bottom-right-radius: 8px;
}

.step-title {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
    padding-left: 40px;
    font-weight: 600;
}

.step-content {
    color: var(--dark-color);
    padding-left: 40px;
}

.connector {
    display: none;
}

@media (min-width: 768px) {
    .process-steps {
        flex-direction: row;
        justify-content: space-between;
        position: relative;
    }

    .step {
        flex: 1;
        min-height: 220px;
        text-align: center;
        padding: 25px 15px;
        margin-bottom: 40px;
    }

    .step-number {
        left: 50%;
        transform: translateX(-50%);
        border-radius: 0 0 8px 8px;
    }

    .step-title,
    .step-content {
        padding-left: 0;
    }

    .connector {
        display: block;
        position: absolute;
        top: 30px;
        height: 3px;
        background: var(--primary-color);
        width: 100%;
        z-index: -1;
    }

    .step-icon {
        font-size: 2rem;
        color: var(--primary-color);
        margin: 15px 0;
    }
}

 .step-icon {
        font-size: 2rem;
        color: var(--primary-color);
        margin: 10px 0;
    }

@media (max-width: 767px) {
    /* .step {
        margin-left: 30px;
    } */

    /* .step:not(:last-child):after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 15px;
        height: 20px;
        width: 3px;
        background: var(--primary-color);
    } */
}

