body {
  font-family: "Poppins", sans-serif;
  color: #666;
  line-height: 1.7;
}

#header-container {
  position: fixed;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease;
}
#header-container.sticky {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
#header-container.sticky #header {
  padding: 15px 0;
}
#header-container.sticky #header .logo-light {
  display: none;
}
#header-container.sticky #header .logo-dark {
  display: block;
}
#header-container.sticky #header #navigation ul li a {
  color: #121B22;
}
#header-container.sticky #header .mobile-nav-trigger span {
  background: #121B22;
}

#header {
  padding: 25px 0;
  transition: all 0.3s ease;
}
#header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header #logo img {
  height: 40px;
  width: auto;
}
#header #logo .logo-dark {
  display: none;
}
@media (max-width: 991px) {
  #header #navigation {
    display: none;
  }
}
#header #navigation ul {
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
#header #navigation ul li a {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
  text-decoration: none;
}
#header #navigation ul li a:hover {
  color: #f55d2c;
}

.mobile-nav-trigger {
  display: none;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
}
@media (max-width: 991px) {
  .mobile-nav-trigger {
    display: block;
  }
}
.mobile-nav-trigger span {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: all 0.3s ease;
}
.mobile-nav-trigger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-nav-trigger.active span:nth-child(2) {
  opacity: 0;
}
.mobile-nav-trigger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-open .mobile-nav-trigger span {
  background: #121B22;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: #fff;
  padding: 80px 40px;
  transition: right 0.3s ease;
  z-index: 999;
}
.mobile-nav.active {
  right: 0;
}
.mobile-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mobile-nav ul li {
  margin: 20px 0;
}
.mobile-nav ul li a {
  color: #121B22;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s ease;
  text-decoration: none;
}
.mobile-nav ul li a:hover {
  color: #f55d2c;
}

.welcome-area {
  position: relative;
  background: url("./../img/bg-image.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  padding: 0;
  height: 100vh;
  display: flex;
  align-items: center;
}
.welcome-area.bg-overlay::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(45deg, rgb(246, 94, 44), rgb(40, 23, 57));
  opacity: 0.9;
}
.welcome-area .container {
  position: relative;
  z-index: 2;
}
.welcome-area .container .row {
  min-height: 100vh;
  align-items: center;
  justify-content: center;
}
.welcome-area .welcome-intro {
  text-align: center;
  padding: 0 30px;
}
.welcome-area .welcome-intro h1 {
  color: #fff;
  font-size: 50px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.welcome-area .welcome-intro p {
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}
.welcome-area .welcome-intro .btn {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1.2rem;
}
.welcome-area .welcome-intro .btn:hover {
  cursor: pointer;
}
.welcome-area .shape-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 1;
  width: 100%;
}
.welcome-area .shape-bottom svg {
  width: 100%;
  height: auto;
  display: block;
}

.services-area {
  padding: 6rem 0;
  background: #fff;
}
.services-area .section-title {
  margin-bottom: 4rem;
  text-align: center;
}
.services-area .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #121B22;
}
.services-area .section-title p {
  color: #999999;
}
.services-area .service-card {
  background: #f8f9fa;
  color: #121B22;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: all 0.3s ease;
}
.services-area .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}
.services-area .service-card .card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.services-area .service-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-area .service-card .card-content {
  padding: 2rem;
  text-align: center;
}
.services-area .service-card .card-content .icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  font-size: 1.8rem;
  background: #f55d2c;
  color: #f8f9fa;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}
.services-area .service-card .card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #121B22;
}
.services-area .service-card .card-content p {
  color: rgb(53.3076923077, 79.9615384615, 100.6923076923);
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
@media (max-width: 1199.98px) {
  .services-area .service-card .card-image {
    height: 180px;
  }
  .services-area .service-card .card-content {
    padding: 1.5rem;
  }
  .services-area .service-card .card-content h3 {
    font-size: 1.3rem;
  }
}
@media (max-width: 767.98px) {
  .services-area {
    padding: 4rem 0;
  }
  .services-area .section-title {
    margin-bottom: 3rem;
  }
  .services-area .section-title h2 {
    font-size: 2rem;
  }
}
.features-area {
  padding: 6rem 0;
  background: #f8f9fa;
}
.features-area .feature-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}
.features-area .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
}
.features-area .feature-card:hover .icon {
  background: #f55d2c;
  color: white;
}
.features-area .feature-card .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 2rem;
  background: rgba(245, 93, 44, 0.1);
  color: #f55d2c;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}
.features-area .feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #121B22;
}
.features-area .feature-card p {
  color: #999999;
  margin-bottom: 0;
}

.process-area {
  padding: 6rem 0;
}
.process-area .process-step {
  border: 1px solid rgb(218.25, 223.5, 228.75);
  text-align: center;
  position: relative;
  padding: 2rem;
  height: 100%;
  border-radius: 8px;
}
.process-area .process-step::after {
  content: "";
  position: absolute;
  top: 3rem;
  right: -1rem;
  width: 2rem;
  height: 2px;
  background: #e8e8e8;
  display: none;
}
@media (min-width: 992px) {
  .process-area .process-step::after {
    display: block;
  }
}
.process-area .process-step:last-child::after {
  display: none;
}
.process-area .process-step .step-number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: #f55d2c;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}
.process-area .process-step h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #121B22;
}
.process-area .process-step p {
  color: #999999;
  margin-bottom: 0;
}

.contact-area {
  padding: 5rem 0;
  background: linear-gradient(45deg, rgb(40, 23, 57), rgb(246, 94, 44));
  border-bottom: 1px solid #f55d2c;
  color: white;
}
.contact-area h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.contact-area p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 0;
}
.contact-area .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
#footer {
  padding: 5rem 0 0;
  background: #121B22;
  color: white;
}
#footer .footer-logo {
  height: 40px;
  margin-bottom: 1.5rem;
}
#footer .footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}
#footer .footer-nav ul a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}
#footer .footer-nav ul a:hover {
  color: #f55d2c;
}
#footer a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}
#footer a:hover {
  color: #f55d2c;
}
#footer .copyright {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
#footer .copyright p {
  margin: 0;
  opacity: 0.7;
}

@media (max-width: 1199.98px) {
  .header {
    background: white;
  }
  .header .logo-light {
    display: none;
  }
  .header .logo-dark {
    display: block;
  }
  .header .nav-link {
    color: #121B22;
  }
}
@media (max-width: 991.98px) {
  .welcome-area .welcome-intro h1 {
    font-size: 2.5rem;
  }
  .welcome-area .welcome-intro p {
    font-size: 1rem;
  }
  .process-area .process-step {
    margin-bottom: 2rem;
  }
  #footer .footer-nav ul {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  #footer .contact-info {
    text-align: center;
    margin-top: 2rem;
  }
}
@media (max-width: 767.98px) {
  .section-title h2 {
    font-size: 2rem;
  }
  .contact-area {
    text-align: center;
  }
  .contact-area h2 {
    font-size: 2rem;
  }
  .contact-area .btn {
    margin-top: 1.5rem;
  }
  .welcome-area .welcome-intro h1 {
    font-size: 26px;
  }
  .welcome-area .welcome-intro p {
    font-size: 15px;
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.bg-light {
  background-color: #f8f9fa !important;
}

.text-center {
  text-align: center !important;
}

.g-4 {
  gap: 1.5rem !important;
}

.shape-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  width: 100%;
}
.shape-bottom svg {
  width: 100%;
  height: auto;
  display: block;
}
.shape-bottom svg path.st0 {
  opacity: 0.1;
  fill: #fff;
}
.shape-bottom svg path.st1 {
  fill: #fff;
}

#header-container {
  position: fixed;
  width: 100%;
  z-index: 1000;
}
#header-container.header {
  background: transparent;
}
#header-container.header .head-tr.bottom {
  background: rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

#header {
  padding: 25px 0;
  transition: all 0.3s;
}
#header.cloned {
  position: fixed;
  top: 0;
  background: #fff;
  padding: 18px 0;
}
#header.cloned .logo-light {
  display: none;
}
#header.cloned .logo-dark {
  display: block;
}
#header.cloned #navigation ul li a {
  color: #333;
}

.mmenu-trigger {
  display: none;
}

@media (max-width: 991px) {
  .mmenu-trigger {
    display: block;
    margin-left: 20px;
  }
  #navigation {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: #fff;
    padding: 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  #navigation ul {
    float: none;
  }
  #navigation ul li {
    float: none;
    border-bottom: 1px solid #eee;
  }
  #navigation ul li a {
    color: #333;
    padding: 15px 20px;
    display: block;
  }
}
.hamburger {
  padding: 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger-box {
  width: 24px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 24px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -8px;
}
.hamburger-inner::after {
  bottom: -8px;
}

.bg-theme {
  background: linear-gradient(45deg, rgb(246, 94, 44), rgb(40, 23, 57));
}
.bg-theme-2 {
  background: linear-gradient(45deg, rgb(40, 23, 57), rgb(246, 94, 44));
}
.bg-theme-3 {
  background: linear-gradient(-25deg, rgb(40, 23, 57), rgb(246, 94, 44));
}
.bg-theme-4 {
  background: linear-gradient(25deg, rgb(246, 94, 44), rgb(40, 23, 57));
}
.bg-theme-alt {
  background: linear-gradient(125deg, rgb(202, 197, 223), rgb(255, 255, 255));
}

.btn-primary {
  --bs-btn-bg: #f55d2c;
  --bs-btn-border-color: #f55d2c;
  --bs-btn-hover-bg: rgb(227.2307692308, 63.5384615385, 10.7692307692);
  --bs-btn-hover-border-color: rgb(227.2307692308, 63.5384615385, 10.7692307692);
}

.btn-secondary {
  --bs-btn-bg: #121B22;
  --bs-btn-border-color: #121B22;
  --bs-btn-hover-bg: rgb(0.3461538462, 0.5192307692, 0.6538461538);
  --bs-btn-hover-border-color: rgb(0.3461538462, 0.5192307692, 0.6538461538);
}

/*# sourceMappingURL=main.css.map */
