@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
:root {
  --primary: #FF6B35;
  --primary-light: #FF8C69;
  --primary-dark: #E55A2B;
  --primary-bg: #FFF5F0;
  --text-primary: #2C2C2C;
  --text-secondary: #6B6B6B;
  --text-white: #ffffff;
  --border: #E8E8E8;
  --background: #FAFAFA;
  --surface: #FFFFFF;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-primary: 0 4px 14px rgba(255, 107, 53, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;
}

.btn-primary-pill {
  display: inline-block;
  padding: 12px 32px;
  background-color: #FF6B35;
  color: #ffffff;
  border-radius: 9999px;
  transition: all 0.3s ease;
  border: 2px solid #FF6B35;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  cursor: pointer;
}
.btn-primary-pill:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.3);
}

.btn-outline-pill {
  display: inline-block;
  padding: 12px 32px;
  background-color: transparent;
  color: #FF6B35;
  border-radius: 9999px;
  transition: all 0.3s ease;
  border: 2px solid #FF6B35;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
}
.btn-outline-pill:hover {
  background-color: #FF6B35;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.3);
}

.app-badges {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.app-badges a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.app-badges a i {
  font-size: 20px;
}
.app-badges a.badge-android {
  background-color: #FF6B35;
  color: #ffffff;
  border: 2px solid #FF6B35;
}
.app-badges a.badge-android:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.3);
  color: #ffffff;
}
.app-badges a.badge-ios {
  background-color: #2C2C2C;
  color: #ffffff;
  border: 2px solid #2C2C2C;
}
.app-badges a.badge-ios:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.app-badges-center {
  justify-content: center;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #2C2C2C;
  background-color: #FAFAFA;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.layout_padding {
  padding: 90px 0;
}

.layout_margin {
  margin: 90px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.heading_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.heading_container h2 {
  position: relative;
  font-weight: bold;
}
.heading_container h2 span {
  color: #FF6B35;
}
.heading_container.heading_center {
  align-items: center;
  text-align: center;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  box-shadow: none;
}

/*header section*/
.hero_area {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #FF6B35 0%, rgb(255, 77.1069306931, 12.2) 100%);
  border-radius: 0 0 20px 0;
}

.sub_page .hero_area {
  min-height: auto;
  border-radius: 0;
}

.header_section {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid #E8E8E8;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}
.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.navbar-brand span {
  font-weight: 700;
  color: #FF6B35;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.custom_nav-container {
  padding: 0;
}
.custom_nav-container .navbar-nav {
  margin: auto;
}
.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 8px 18px;
  color: #374151;
  text-align: center;
  text-transform: uppercase;
  border-radius: 9999px;
  transition: all 0.3s ease;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.custom_nav-container .navbar-nav .nav-item:hover .nav-link {
  color: #FF6B35;
  background-color: rgba(255, 107, 53, 0.08);
}
.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: #FF6B35;
  background-color: rgba(255, 107, 53, 0.12);
  font-weight: 600;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  transition: all 0.3s;
}
.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #FF6B35;
  margin: 7px 0;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  transition: all 0.3s;
}
.custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #FF6B35;
  top: -10px;
  border-radius: 5px;
  transition: all 0.3s;
}
.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}
.custom_nav-container .navbar-toggler[aria-expanded=true] {
  transform: rotate(360deg);
}
.custom_nav-container .navbar-toggler[aria-expanded=true] span {
  transform: rotate(45deg);
}
.custom_nav-container .navbar-toggler[aria-expanded=true] span::before, .custom_nav-container .navbar-toggler[aria-expanded=true] span::after {
  transform: rotate(90deg);
  top: 0;
}
.custom_nav-container .navbar-toggler[aria-expanded=true] .s-1 {
  transform: rotate(45deg);
  margin: 0;
  margin-bottom: -4px;
}
.custom_nav-container .navbar-toggler[aria-expanded=true] .s-2 {
  display: none;
}
.custom_nav-container .navbar-toggler[aria-expanded=true] .s-3 {
  transform: rotate(-45deg);
  margin: 0;
  margin-top: -4px;
}
.custom_nav-container .navbar-toggler[aria-expanded=false] .s-1,
.custom_nav-container .navbar-toggler[aria-expanded=false] .s-2,
.custom_nav-container .navbar-toggler[aria-expanded=false] .s-3 {
  transform: none;
}

.quote_btn-container {
  display: flex;
  align-items: center;
}
.quote_btn-container a {
  color: #2C2C2C;
  text-transform: uppercase;
}
.quote_btn-container a span {
  margin-left: 5px;
}
.quote_btn-container a:hover {
  color: #FF6B35;
}
.quote_btn-container .quote_btn {
  display: inline-block;
  padding: 8px 28px;
  background-color: #FF6B35;
  color: #ffffff;
  border-radius: 9999px;
  transition: all 0.3s ease;
  border: 2px solid #FF6B35;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  cursor: pointer;
}
.quote_btn-container .quote_btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.3);
}

/*end header section*/
/* slider section */
.slider_section {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 45px 0;
}
.slider_section .row {
  align-items: center;
}
.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}
.slider_section .detail-box {
  text-align: center;
  color: #ffffff;
}
.slider_section .detail-box h1 {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 2.5rem;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.slider_section .detail-box p {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.6;
}
.slider_section .detail-box .btn-box {
  display: flex;
  justify-content: center;
  margin: 0 -5px;
  margin-top: 35px;
  flex-wrap: wrap;
  gap: 10px;
}
.slider_section .detail-box .btn-box a {
  margin: 5px;
  text-align: center;
  width: 185px;
}
.slider_section .detail-box .btn-box .btn1 {
  display: inline-block;
  padding: 12px 28px;
  background-color: #ffffff;
  color: #FF6B35;
  border-radius: 9999px;
  transition: all 0.3s ease;
  border: 2px solid #ffffff;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  cursor: pointer;
}
.slider_section .detail-box .btn-box .btn1:hover {
  color: #FF6B35;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.3);
}
.slider_section .detail-box .btn-box .btn1 {
  font-weight: 700;
}
.slider_section .detail-box .btn-box .btn1:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: #E55A2B;
}
.slider_section .img-box img {
  width: 100%;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}
.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  justify-content: center;
  align-items: center;
  margin-top: 45px;
}
.slider_section .carousel-indicators li {
  background-color: rgba(255, 255, 255, 0.5);
  width: 12px;
  height: 12px;
  border-radius: 100%;
  opacity: 1;
  transition: all 0.3s ease;
}
.slider_section .carousel-indicators li.active {
  width: 32px;
  height: 12px;
  background-color: #ffffff;
  border-radius: 9999px;
}

.service_section {
  text-align: center;
  background-color: #FAFAFA;
}
.service_section .heading_container {
  align-items: center;
}
.service_section .heading_container h2 {
  font-weight: 700;
  color: #2C2C2C;
}
.service_section .heading_container p {
  color: #6B6B6B;
  max-width: 600px;
  margin: 10px auto 0;
}
.service_section .service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.service_section .box {
  margin-top: 25px;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.service_section .box::before {
  display: none;
}
.service_section .box .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  background-color: #FFF5F0;
  margin: 0 auto 1rem;
  transition: all 0.3s;
}
.service_section .box .img-box i {
  font-size: 28px;
  color: #FF6B35;
  transition: all 0.3s;
}
.service_section .box .img-box img {
  width: 40px;
  transition: all 0.3s;
}
.service_section .box .detail-box {
  margin-top: 15px;
}
.service_section .box .detail-box h5 {
  font-weight: 600;
  position: relative;
  color: #2C2C2C;
}
.service_section .box .detail-box p {
  color: #6B6B6B;
  font-size: 0.95rem;
  line-height: 1.6;
}
.service_section .box .detail-box a {
  color: #FF6B35;
  font-weight: 500;
}
.service_section .box .detail-box a:hover {
  color: #E55A2B;
}
.service_section .box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 107, 53, 0.2);
}
.service_section .box:hover .img-box {
  background-color: #FF6B35;
}
.service_section .box:hover .img-box i {
  color: #ffffff;
}
.service_section .btn-box {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}
.service_section .btn-box a {
  display: inline-block;
  padding: 12px 45px;
  background-color: #FF6B35;
  color: #ffffff;
  border-radius: 9999px;
  transition: all 0.3s ease;
  border: 2px solid #FF6B35;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  cursor: pointer;
}
.service_section .btn-box a:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.3);
}

.about_section {
  background-color: #FFF5F0;
  color: #2C2C2C;
  border-radius: 0;
  position: relative;
}
.about_section .row {
  align-items: center;
}
.about_section .img-box {
  position: relative;
}
.about_section .img-box img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.about_section .detail-box .heading_container h2 {
  color: #2C2C2C;
  font-weight: 700;
}
.about_section .detail-box p {
  margin-top: 15px;
  color: #6B6B6B;
  line-height: 1.7;
  font-size: 1.05rem;
}
.about_section .detail-box a {
  display: inline-block;
  padding: 12px 45px;
  background-color: #FF6B35;
  color: #ffffff;
  border-radius: 9999px;
  transition: all 0.3s ease;
  border: 2px solid #FF6B35;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  cursor: pointer;
}
.about_section .detail-box a:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.3);
}
.about_section .detail-box a {
  margin-top: 15px;
}

.case_section .heading_container {
  align-items: center;
}
.case_section .heading_container h2::before {
  left: 50%;
  transform: translateX(-50%);
}
.case_section .box {
  margin-top: 45px;
  background-color: #ffffff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  text-align: center;
}
.case_section .box .img-box {
  position: relative;
}
.case_section .box .img-box img {
  width: 100%;
}
.case_section .box .detail-box {
  padding: 25px;
}
.case_section .box .detail-box h5 {
  font-weight: bold;
}
.case_section .box .detail-box p {
  font-size: 15px;
}
.case_section .box .detail-box a {
  color: #FF6B35;
}

.client_section {
  background-color: #FFFFFF;
}
.client_section .heading_container h2 {
  font-weight: 700;
  color: #2C2C2C;
}
.client_section .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 45px 0;
  text-align: center;
}
.client_section .box .img-box {
  width: 100px;
  height: 100px;
  min-width: 100px;
  position: relative;
  margin-bottom: -50px;
  z-index: 2;
}
.client_section .box .img-box img {
  width: 100%;
  border-radius: 100%;
  border: 4px solid #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}
.client_section .box .client_info .client_name h5 {
  font-weight: 600;
  margin-bottom: 0;
  text-transform: uppercase;
  color: #ffffff;
  font-size: 1rem;
}
.client_section .box .client_info .client_name h6 {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-size: 13px;
  text-transform: uppercase;
}
.client_section .box .client_info i {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.4);
}
.client_section .box p {
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}
.client_section .box .detail-box {
  background: linear-gradient(135deg, #FF6B35, rgb(255, 69.6336633663, 2));
  color: #ffffff;
  border-radius: 16px;
  padding: 70px 40px 25px 40px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.client_section .carousel-indicators {
  position: unset;
  margin: 0;
  justify-content: center;
  align-items: center;
}
.client_section .carousel-indicators li {
  background-color: #E8E8E8;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  opacity: 1;
  transition: all 0.3s ease;
}
.client_section .carousel-indicators li.active {
  width: 28px;
  height: 10px;
  background-color: #FF6B35;
  border-radius: 9999px;
}

.contact_section {
  position: relative;
  background-color: #FAFAFA;
}
.contact_section .heading_container h2 {
  font-weight: 700;
}
.contact_section .heading_container span {
  color: #FF6B35;
}
.contact_section .contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.contact_section .contact-card {
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.contact_section .contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}
.contact_section .contact-card i {
  font-size: 2rem;
  color: #FF6B35;
  margin-bottom: 1rem;
  display: block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  margin: 0 auto 1rem;
  background-color: #FFF5F0;
  border-radius: 12px;
}
.contact_section .contact-card h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.contact_section .contact-card a, .contact_section .contact-card span {
  color: #6B6B6B;
  font-size: 0.95rem;
}
.contact_section .contact-card a:hover {
  color: #FF6B35;
}
.contact_section form {
  margin-top: 45px;
}
.contact_section input {
  width: 100%;
  border: none;
  height: 50px;
  margin-bottom: 25px;
  padding-left: 15px;
  background-color: #FFFFFF;
  outline: none;
  color: #2C2C2C;
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  transition: all 0.3s;
}
.contact_section input:focus {
  border-color: #FF6B35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}
.contact_section input::placeholder {
  color: #6B6B6B;
}
.contact_section input.message-box {
  height: 120px;
}
.contact_section button {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  display: inline-block;
  padding: 12px 45px;
  background-color: #FF6B35;
  color: #ffffff;
  border-radius: 9999px;
  transition: all 0.3s ease;
  border: 2px solid #FF6B35;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  cursor: pointer;
}
.contact_section button:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.3);
}
.contact_section button {
  color: #fff;
  margin-top: 10px;
}
.contact_section .map_container {
  height: 100%;
  min-height: 325px;
  overflow: hidden;
  margin-left: 45px;
  border-radius: 16px;
  overflow: hidden;
}
.contact_section .map_container .map {
  height: 100%;
}
.contact_section .map_container .map #googleMap {
  height: 100%;
}

.footer_container {
  background-color: #2C2C2C;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 0;
  padding-top: 60px;
  margin-top: 0;
}

/* info section */
.info_section h4 {
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #ffffff;
}
.info_section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}
.info_section .info_contact .contact_link_box {
  display: flex;
  flex-direction: column;
}
.info_section .info_contact .contact_link_box a {
  margin: 5px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}
.info_section .info_contact .contact_link_box a i {
  margin-right: 8px;
  color: #FF6B35;
  width: 18px;
  text-align: center;
}
.info_section .info_contact .contact_link_box a:hover {
  color: #FF6B35;
}
.info_section .info_social {
  display: flex;
  margin-top: 20px;
  gap: 8px;
}
.info_section .info_social a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  font-size: 18px;
  transition: all 0.3s ease;
}
.info_section .info_social a:hover {
  background-color: #FF6B35;
  color: #ffffff;
  transform: translateY(-2px);
}
.info_section .info_links {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.info_section .info_links a {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  transition: all 0.2s ease;
}
.info_section .info_links a:hover {
  color: #FF6B35;
  padding-left: 5px;
}
.info_section form input {
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background-color: transparent;
  width: 100%;
  height: 45px;
  color: #ffffff;
  outline: none;
  transition: all 0.3s;
}
.info_section form input:focus {
  border-bottom-color: #FF6B35;
}
.info_section form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.info_section form button {
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 10px 55px;
  background-color: #FF6B35;
  color: #ffffff;
  border-radius: 9999px;
  transition: all 0.3s ease;
  border: 2px solid #FF6B35;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  cursor: pointer;
}
.info_section form button:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.3);
}
.info_section form button {
  margin-top: 15px;
}
.info_section .footer-app-badges {
  margin-top: 20px;
}
.info_section .footer-app-badges .app-badges a {
  font-size: 12px;
  padding: 8px 16px;
}
.info_section .footer-app-badges .app-badges a.badge-android {
  background-color: #FF6B35;
}
.info_section .footer-app-badges .app-badges a.badge-ios {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* end info section */
/* footer section*/
.footer_section {
  position: relative;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer_section p {
  padding: 20px 0;
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer_section p a {
  color: #FF6B35;
  font-weight: 500;
}
.footer_section p a:hover {
  color: #FF8C69;
}

.download_section {
  background-color: #FFFFFF;
  padding: 80px 0;
}
.download_section .row {
  align-items: center;
}
.download_section .detail-box h2 {
  font-weight: 700;
  color: #2C2C2C;
  margin-bottom: 15px;
}
.download_section .detail-box p {
  color: #6B6B6B;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 1.05rem;
}
.download_section .img-box {
  text-align: center;
}
.download_section .img-box img {
  max-width: 350px;
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.legal_section {
  background-color: #FAFAFA;
}
.legal_section .legal-content {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 3rem;
  border: 1px solid #E8E8E8;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.legal_section .legal-content h2 {
  font-weight: 700;
  color: #2C2C2C;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #FF6B35;
  display: inline-block;
}
.legal_section .legal-content h3, .legal_section .legal-content h4, .legal_section .legal-content h5 {
  font-weight: 600;
  color: #2C2C2C;
  margin-top: 1.5rem;
}
.legal_section .legal-content p, .legal_section .legal-content li {
  color: #6B6B6B;
  line-height: 1.7;
  font-size: 0.95rem;
}
.legal_section .legal-content strong {
  color: #2C2C2C;
}

.nav-linktree .nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-linktree .nav-link i {
  font-size: 14px;
}

.how-it-works {
  background-color: #FFFFFF;
  padding: 80px 0;
}
.how-it-works .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.how-it-works .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2C2C2C;
  margin-bottom: 10px;
}
.how-it-works .section-header h2 span {
  color: #FF6B35;
}
.how-it-works .section-header p {
  color: #6B6B6B;
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}
.how-it-works .steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.how-it-works .step-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #E8E8E8;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.how-it-works .step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.how-it-works .step-card .step-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.how-it-works .step-card .step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.how-it-works .step-card:hover .step-image img {
  transform: scale(1.05);
}
.how-it-works .step-card .step-number {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 36px;
  height: 36px;
  background: #FF6B35;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
  z-index: 2;
}
.how-it-works .step-card .step-content {
  padding: 20px 24px 24px;
}
.how-it-works .step-card .step-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #2C2C2C;
  margin-bottom: 8px;
}
.how-it-works .step-card .step-content p {
  font-size: 0.925rem;
  color: #6B6B6B;
  line-height: 1.6;
  margin: 0;
}

.stats-section {
  background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
  padding: 60px 0;
}
.stats-section .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stats-section .stat-item {
  color: #fff;
}
.stats-section .stat-item .stat-number {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 6px;
}
.stats-section .stat-item .stat-label {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 400;
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}
.whatsapp-float i {
  font-size: 2rem;
  color: #fff;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}
.whatsapp-float::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
