body {
  background-color: #000;
  overflow-x: hidden;
}
p {
  transition: 0.3s ease-in-out;
}
a,
button,
.nav-link,
.orange_btn,
.dark_btn,
.content_box,
.review_card,
.submit_btn {
  transition: 0.3s ease-in-out;
}

/* Disclaimer Top Bar */
.top-bar {
  background: #000;
  color: #fff;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  z-index: 2;
  position: relative;
}

.top-bar marquee {
  display: flex;
  align-items: center;
}

.top-bar strong {
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Adjust Header for non-fixed Top Bar */
header {
  position: relative; /* Changed from absolute to relative so it follows the top-bar */
  width: 100%;
  background: rgba(38, 38, 38, 0.68);
  border-bottom: 1px solid rgba(51, 51, 51, 0.5);
  backdrop-filter: blur(12px);
  z-index: 1000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #fff;
  font-family: "Inter", sans-serif;
  margin: 0;
}

h1 span.highlight,
h2 span.highlight,
h3 span.highlight,
h4 span.highlight,
h5 span.highlight,
h6 span.highlight {
  background: linear-gradient(to right, #ff6600 0%, #ff9f1a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 2px 5px;
}

h1 span.bar,
h2 span.bar,
h3 span.bar,
h4 span.bar,
h5 span.bar,
h6 span.bar {
  display: inline-block;
  position: relative;
}
h1 span.bar::before,
h2 span.bar::before,
h3 span.bar::before,
h4 span.bar::before,
h5 span.bar::before,
h6 span.bar::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  background-image: url(../images/bar.svg);
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
  z-index: 0;
}

p {
  color: #fff;
  font-family: "Inter", sans-serif;
}

.orange_btn {
  background-color: #ff6600;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid #ff6600;
  font-weight: 600;
  animation: cta-pulse 1.5s ease-in-out infinite;
  display: inline-block;
  &:hover {
    background: #121212;
    border: 1px solid #262626;
    animation-play-state: paused;
  }
}

@keyframes cta-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.dark_btn {
  background-color: #121212;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid #262626;
  font-weight: 600;
  animation: cta-pulse 1s ease-in-out infinite;
  display: inline-block;
  &:hover {
    background: #ff6600;
    border: 1px solid #ff6600;
  }
}

nav .container-fluid {
  padding: 0 4rem;
}
header {
  position: absolute;
  width: 100%;
  background: rgba(38, 38, 38, 0.68);
  border-bottom: 1px solid rgba(51, 51, 51, 0.5);
  backdrop-filter: blur(12px);
  z-index: 1000;
}

a.navbar-brand span {
  color: #fff;
  font-size: 14px;
  font-family: "Inter";
}

nav.navbar li a.nav-link {
  padding: 28px 0;
  font-size: 15px;
  color: #999999;
  position: relative;
}
nav.navbar ul.navbar-nav {
  gap: 20px;
}

nav.navbar li a.nav-link::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #ff6600;
  transition: 0.3s ease-in-out;
}

nav.navbar li a.nav-link:hover,
nav.navbar li a.nav-link.active {
  color: #fff !important;
}
nav.navbar li a.nav-link:hover::after,
nav.navbar li a.nav-link.active::after {
  width: 100%;
}

h3.subtitle {
  display: inline-block;
  background: rgba(255, 102, 0, 0.15);
  border: 1px solid rgba(255, 102, 0, 0.3);
  border-radius: 50px;
  color: #ff8533;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 30px;
}
.btn_wrapper {
  display: flex;
  gap: 20px;
}

.offcanvas .offcanvas-body,
.offcanvas .offcanvas-header {
  background-color: #000;
}
nav .navbar-toggler {
  background: #ff6600;
}

/* hero section css */
.hero {
  background-image: url(../images/hero-bg.webp);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  padding: 200px 0 100px;
}
.serv_hero {
  background-image: url(../images/service-bg.webp);
  position: relative;
}
.hero_divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}

.hero h1 {
  font-size: 70px;
  font-weight: bold;
}

.hero p {
  color: #999999;
  margin: 40px 0 60px;
  font-size: 20px;
}
.hero-form {
  margin-top: 80px;
}
.ban_form {
  padding: 50px;
  background: rgba(16, 16, 16, 0.71);
  backdrop-filter: blur(18.4333px);
  border-radius: 25px;
  position: relative;
}
.ban_form h4 {
  margin: 0 0 30px;
  font-size: 28px;
}

.ban_form::before {
  content: "";
  position: absolute;
  inset: -1px;
  padding: 1px;
  border-radius: 25px;
  background: linear-gradient(to top, #5b5b5b, #010101);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.ban_form input,
.ban_form select,
.ban_form textarea {
  border: 0.791258px solid #5b5b5b;
  border-radius: 5.50246px;
  font-size: 12px;
  background: transparent;
  padding: 15px;
  color: #fff;
}
.ban_form select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
}
.ban_form input::placeholder,
.ban_form select::placeholder,
.ban_form textarea::placeholder {
  color: #999999;
}
.ban_form input:focus,
.ban_form select:focus,
.ban_form textarea:focus {
  outline: none;
  border-color: #ff6600;
  background: transparent;
  box-shadow: none;
  color: #fff;
}
.ban_form select option {
  background-color: #121212;
  color: #fff;
}
.ban_form select option:checked,
.ban_form select option:focus,
.ban_form select option:active {
  background-color: #ff6600;
  color: #fff;
}

.ban_form button {
  background-color: #121212;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid #ff6600;
  font-weight: 600;
  &:hover {
    background: #ff6600;
    border: 1px solid #ff6600;
  }
}

/* hero section css */

/* services css */
.services {
  padding: 50px 0;
  overflow-x: hidden; /* Prevent horizontal scrollbar on body */
}
.services h2 {
  font-size: 40px;
  font-weight: bold;
}
.services p {
  color: #999999;
  font-size: 18px;
}
.service_bx {
  border: 1px solid #616161;
  border-radius: 8px;
  height: 100%;
  position: relative;
  margin: 0 10px;
}
.service_bx .service_content {
  padding: 30px;
}
.service_bx .service_content h5 {
  font-size: 24px;
  font-weight: bold;
}
.service_bx .service_content ul {
  margin: 0;
}
.service_bx .service_content ul li {
  padding: 5px 0;
  font-size: 18px;
  color: #999999;
}
.service_bx .service_content img {
  position: absolute;
  bottom: 30px;
  right: 30px;
}
/* services css */

/* content_sect css */

.content_sect {
  padding: 80px 0 80px;
  position: relative;
  /* Clip strictly left/right (0), allow top/bottom overflow (-100%) */
  clip-path: inset(-100% 0 -100% 0);
}

.content_sect::before {
  content: "";
  width: 50%;
  height: 50%;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  position: absolute;
  background: rgba(255, 102, 0, 0.56);
  filter: blur(305.35px);
  border-radius: 50px;
  z-index: -1;
}
.content_sect h2 {
  font-size: 56px;
  font-weight: bold;
}
.content_sect p {
  color: #999999;
  font-size: 20px;
}
.content_sect ul {
  color: #fff;
  font-size: 20px;
}
section.content_sect img {
  transform: scale(1.2);
}

/* content_sect css */

/* why choose css */
.why_choose_wrapper {
  padding: 0 50px;
}
.why_choose {
  padding: 80px 0 100px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 0 2px #828282;
  border-radius: 50px;
}
.why_choose_wrapper.why_choose_services .choose_bx h5 {
  font-size: 20px;
}

.why_choose_wrapper.why_choose_services .why_choose::after {
  display: none;
}

.serv_detail_hero {
  padding: 150px 0 120px;
  background: url(../images/service-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.serv_detail_hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position:
    0 0,
    20px 20px;
  opacity: 0.3;
  z-index: 0;
}

.serv_hero_card {
  aspect-ratio: 16/7;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.serv_hero_card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 40px;
  padding: 2px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 102, 0, 0.6) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

.serv_hero_card img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.8));
  transition: transform 0.5s ease;
}

.serv_hero_card:hover img {
  transform: scale(1.05);
}

.serv_hero_text {
  position: relative;
  z-index: 2;
}

.serv_hero_text h2 {
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #fff;
}

.serv_hero_text p {
  font-size: 18px;
  color: #b0b0b0;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .serv_hero_text h2 {
    font-size: 48px;
  }
  .serv_hero_card {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 767px) {
  .serv_hero_text h2 {
    font-size: 36px;
  }
  .serv_hero_card {
    border-radius: 20px;
  }
  .serv_hero_card::after {
    border-radius: 20px;
  }
  .serv_hero_text p {
    font-size: 16px;
  }
}

.why_choose::after,
.why_choose::before {
  content: "";
  position: absolute;
  background: #ff6600;
  filter: blur(305.35px);
  border-radius: 40%;
  height: 100%;
  width: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

.why_choose::after {
  left: -40%;
}
.why_choose::before {
  right: -40%;
}

.why_choose h2 {
  font-size: 48px;
  font-weight: bold;
}

.why_choose p {
  color: #999999;
  font-size: 18px;
}
.why_points {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.why_points .why_points_bx {
  background: #262626;
  border: 1px solid #404040;
  padding: 10px 15px;
  border-radius: 60px;
}
.choose_bx {
  background: linear-gradient(130.71deg, #212121 0%, #171717 100%);
  border: 0.738452px solid #333333;
  border-radius: 8px;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  align-items: start;
}
.why_choose_services .choose_bx {
  gap: 15px;
}
.choose_bx h5 {
  font-size: 17px;
  font-weight: 600;
}
/* why choose css */

/* process css */
.process {
  padding: 100px 0 80px;
  background: url(../images/process-bg.webp) center/cover no-repeat;
}
.process h2 {
  font-size: 48px;
  font-weight: bold;
}
.process p {
  font-size: 18px;
  color: #999999;
}
.process_timeline {
  position: relative;
  margin-top: 50px;
}
.process_timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #ff6600;
  transform: translateX(-50%);
}
.timeline_item {
  position: relative;
  width: 50%;
  padding: 0 40px;
  margin-bottom: 40px;
}
.timeline_item.left {
  left: 0;
  text-align: right;
}
.timeline_item.right {
  left: 50%;
  text-align: left;
}
.timeline_item::after {
  content: "";
  position: absolute;
  top: 20px;
  width: 16px;
  height: 16px;
  background: #ff6600;
  border-radius: 50%;
  z-index: 1;
}
.timeline_item.left::after {
  right: -8px;
}
.timeline_item.right::after {
  left: -8px;
}
.content_box {
  background:
    linear-gradient(121.58deg, #212121 0%, #171717 100%) padding-box,
    linear-gradient(45deg, #999999 0%, #333333 100%) border-box;
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 30px;
  position: relative;
  transition: 0.3s;
}

.content_box:hover {
  border-color: #ff6600;
  transform: translateY(-5px);
}
.step_number {
  display: block;
  font-size: 40px;
  font-weight: bold;
  background: linear-gradient(180deg, #ff9f1a 0%, #ff6600 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  opacity: 0.8;
}
.timeline_item h5 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}
.timeline_item p {
  color: #999;
  margin: 0;
  font-size: 16px;
}
/* process css */

/* testimonials css */
.testimonial_wrapper {
  padding: 0 50px;
}
.testimonials {
  padding: 80px 0;
  border: 2px solid #828282;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  height: 50%;
  bottom: -20%;
  left: 50%;
  width: 100%;
  background: #ff6600;
  transform: translateX(-50%);
  filter: blur(199.4px);
  z-index: -1;
}
.testimonials h2 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
}
.testimonials h2 + p {
  font-size: 18px;
  color: #999999;
}

.review_slider .slick-slide {
  padding: 20px;
}
.review_card {
  background: linear-gradient(
    141.07deg,
    rgba(33, 33, 33, 0.39) 0%,
    rgba(23, 23, 23, 0.39) 100%
  );
  border: 1px solid #333;
  border-radius: 16px;
  padding: 40px;
  position: relative;
  transition: 0.3s;
  height: 100%;
}

.review_card:hover {
  border-color: #ff6600;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.review_slider .slick-current .review_card {
  background: linear-gradient(141.07deg, #212121 0%, #171717 100%);
  border-color: #ff6600;
  transform: scale(1.05); /* Optional: slight scale up for emphasis */
}
.quote_icon {
  width: 40px;
  margin-bottom: 20px;
  opacity: 0.8;
}
.stars {
  color: #ff6600;
  margin-bottom: 20px;
  font-size: 18px;
}
.review_text {
  font-size: 16px;
  line-height: 1.6;
  color: #999999;
  margin-bottom: 30px;
  font-style: normal;
}
.user_profile {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #333;
}
.user_img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ff6600;
}
.user_profile h5 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
  color: #fff;
}
.user_profile span {
  font-size: 14px;
  color: #999;
}

.rev_not {
  background: rgb(0 0 0 / 70%);
  border: 1px solid rgba(255, 102, 0, 0.2);
  border-left: 4px solid #ff6600;
  padding: 20px 30px;
  border-radius: 8px;
  margin: 0 auto;
}
.rev_not p {
  margin: 0;
  font-size: 15px;
  color: #b0b0b0;
  line-height: 1.6;
}
.rev_not strong {
  color: #ff6600;
  font-weight: 600;
}
/* testimonials css */

/* contact_sect css */
.contact_sect {
  padding: 100px 0;
}
.contact_sect h2 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
}
.contact_sect p {
  font-size: 18px;
  color: #999;
  margin-bottom: 30px;
}
.contact_sect ul {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}
.contact_sect ul li {
  font-size: 16px;
  color: #fff;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.autor_bx {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(51, 51, 51, 0.5);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.autor_bx .main_img {
  width: 120px; /* Adjust based on actual image aspect ratio */
  height: auto;
}
.autor_bx .content p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #999999;
}
.autor_bx .stars_img {
  width: 100px; /* Adjust star size */
}

/* Contact Form CSS */
.contact_form {
  background: #111;
  border: 1px solid #333;
  border-radius: 20px;
  padding: 40px;
  position: relative;
}
.contact_form .form-group {
  margin-bottom: 20px;
}
.contact_form label {
  display: block;
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 500;
}
.contact_form label span {
  color: #666;
  font-size: 14px;
}
.contact_form .form-control {
  background: #000;
  border: 1px solid #333;
  border-radius: 8px;
  color: #fff;
  padding: 12px 15px;
  height: auto;
}
.contact_form .form-control:focus {
  box-shadow: none;
  border-color: #ff6600;
  background: #000;
}
.contact_form select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
}
.contact_form textarea.form-control {
  resize: none;
  height: 120px;
}
.contact_form .form-check {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact_form .form-check-input {
  background-color: transparent;
  border-color: #333;
  width: 20px;
  height: 20px;
  margin-top: 0;
}
.contact_form .form-check-input:checked {
  background-color: #ff6600;
  border-color: #ff6600;
}
.contact_form .form-check-label {
  color: #999;
  font-size: 14px;
  margin-bottom: 0;
}
.submit_btn {
  width: 100%;
  background: #ff6600;
  border: none;
  padding: 15px;
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.3s;
}
.submit_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

/* contact_sect css */

/* Services Page Styles */
.services_page {
  padding: 100px 0;
  background: url(../images/process-bg.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
}
.serv_item {
  margin-bottom: 120px;
}
.serv_item:last-child {
  margin-bottom: 0;
}
.serv_content h3 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
}
.serv_content p {
  font-size: 16px;
  line-height: 1.6;
  color: #999;
  margin-bottom: 30px;
}
.serv_list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}
.serv_list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}
.serv_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background: #ff6600;
  border-radius: 2px;
  transform: rotate(45deg);
}
.serv_img {
  position: relative;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.serv_img::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 50%;
  filter: blur(199.4px);
  border-radius: 40%;
  background: #ff6600;
  z-index: -1;
  transform: translate(-50%, -50%);
}

.serv_img img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}
.serv_item:hover .serv_img img {
  transform: scale(1.05);
}
.modal-header .btn-close {
  position: absolute;
  top: 15px;
  left: 15px;
  opacity: 1;
  background-size: 12px;
  padding: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.modal-header .btn-close:hover {
  background-color: var(--primary-color);
  transform: rotate(90deg);
}
.floating_icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.floating_icon img {
  width: 100%;
  height: auto;
}
.bg_orange {
  background-color: #ff6600;
}
.bg_pink {
  background-color: #ff3366;
}
.bg_blue {
  background-color: #3399ff;
}
.bg_green {
  background-color: #33cc66;
}
.bg_purple {
  background-color: #9966ff;
}
.bg_gold {
  background-color: #ffcc33;
}
.bg_teal {
  background-color: #33cccc;
}
.bg_red {
  background-color: #ff4d4d;
}

.serv_item.flex-lg-row-reverse .serv_content {
  padding-left: 50px;
}
/* Transformation Section */
.transformation_sect {
  padding: 100px 0;
  background: var(--dark-bg);
}

.transformation_card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}

.transformation_card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.05);
}

.transformation_card .card_tag {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 2;
}

.transformation_card.before .card_tag {
  background: #ff4444;
  color: white;
}

.transformation_card.after .card_tag {
  background: var(--primary-color);
  color: white;
}

.transformation_card .image_wrap {
  height: 400px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.transformation_card .image_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.transformation_card:hover .image_wrap img {
  transform: scale(1.05);
}

.transformation_card .card_content {
  padding: 30px;
}

.transformation_card h5 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 15px;
}

.transformation_card p {
  color: #999;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Paper Preview Simulator */
.paper_preview {
  background: #fff;
  padding: 40px;
  height: 100%;
  min-height: 400px;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.before_preview {
  font-family: "Courier New", Courier, monospace;
  color: #333;
  font-size: 14px;
  line-height: normal;
  text-align: left;
}

.after_preview {
  font-family: "Georgia", serif;
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
}

.after_preview h4 {
  font-family: "Georgia", serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 30px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.after_preview .drop_cap {
  float: left;
  font-size: 60px;
  line-height: 40px;
  padding-top: 10px;
  padding-right: 8px;
  color: var(--primary-color);
  font-weight: bold;
}

@media (max-width: 991px) {
  .paper_preview {
    padding: 20px;
    min-height: 300px;
  }
}
@media (max-width: 991px) {
  .serv_item {
    margin-bottom: 60px;
    text-align: center;
  }
  .serv_item.flex-lg-row-reverse .serv_content {
    padding-left: 0;
  }
  .serv_list {
    display: inline-block;
    text-align: left;
  }
  .serv_img {
    margin-top: 30px;
  }
}

.bread_crumb ul {
  padding: 0;
  margin: 30px 0 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  color: #ffffff;
  font-size: 20px;
  gap: 10px;
}

.bread_crumb ul a {
  color: #999999;
  text-decoration: none;
}
.bread_crumb ul i {
  font-size: 16px;
}
/* services pages css */
.contact_info_card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

/* Discount Sticker Styles */
.discount_sticker {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: var(--primary-color);
  background: linear-gradient(135deg, #ff6600 0%, #ff3300 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  box-shadow: 0 10px 20px rgba(255, 102, 0, 0.4);
  z-index: 10;
  transform: rotate(15deg);
  animation: sticker-float 3s ease-in-out infinite;
  border: 2px dashed rgba(255, 255, 255, 0.4);
}

.discount_sticker .off {
  font-size: 25px;
  line-height: 1;
  display: block;
}

.discount_sticker .tag {
  font-size: 15px;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

@keyframes sticker-float {
  0% {
    transform: rotate(15deg) translateY(0);
  }
  50% {
    transform: rotate(10deg) translateY(-15px);
  }
  100% {
    transform: rotate(15deg) translateY(0);
  }
}

@media (max-width: 991px) {
  .discount_sticker {
    top: -20px;
    right: 0px;
    width: 80px;
    height: 80px;
  }
  .discount_sticker .off {
    font-size: 16px;
  }
}

.contact_info_card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 102, 0, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.contact_info_card .icon_box {
  width: 70px;
  height: 70px;
  background: rgba(255, 102, 0, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
}

.contact_info_card .icon_box i {
  font-size: 32px;
  color: #ff6600;
  transition: all 0.4s ease;
}

.contact_info_card:hover .icon_box {
  background: #ff6600;
  transform: rotateY(180deg);
}

.contact_info_card:hover .icon_box i {
  color: #fff;
  transform: rotateY(-180deg);
}

.contact_info_card h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.contact_info_card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.card_link {
  color: #ff6600;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.card_link i {
  transition: all 0.3s ease;
}

.card_link:hover {
  color: #fff;
}

.card_link:hover i {
  transform: translateX(5px);
}

.faq_item {
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.02) !important;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.faq_item:hover {
  border-color: rgba(255, 102, 0, 0.3) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: #ff6600;
  transition: all 0.4s ease;
}

.faq_item:hover::before {
  height: 100%;
}

.faq_item .accordion-button {
  font-size: 18px;
  font-weight: 600;
  padding: 10px 0;
  color: #fff !important;
}

.faq_item .accordion-button:not(.collapsed) {
  color: #ff6600 !important;
}

.faq_item .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-size: 1.25rem;
  transition: transform 0.3s ease;
}

.faq_item .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff6600'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq_item .accordion-body {
  padding: 15px 0 10px;
  font-size: 16px;
  line-height: 1.7;
}

/* footer css */

footer {
  padding: 150px 0 50px;
  border-top: 1px solid #333333;
  position: relative;
}

.footer_logo {
    display: flex;
    flex-direction: column;
}

.footer_logo span {
    color: #fff;
    font-size: 28px;
}

footer::before {
  content: "";
  background: rgba(255, 102, 0, 0.24);
  filter: blur(300.3px);
  position: absolute;
  width: 70%;
  height: 50%;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

footer .footer_logo img {
  width: 100%;
  max-width: 450px;
}

.footer_subscribe h3 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
}
.footer_subscribe p {
  color: #999;
  font-size: 15px;
  margin-bottom: 30px;
}
.subscribe_form {
  position: relative;
}
.subscribe_form input {
  width: 100%;
  background: #111;
  border: 1px solid #333;
  padding: 15px 140px 15px 20px; /* Space for button */
  border-radius: 8px;
  color: #fff;
  outline: none;
  height: 60px;
  font-size: 16px;
}
.subscribe_form input::placeholder {
  color: #666;
}
.subscribe_form button {
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  background: #ff6600;
  color: #fff;
  border: none;
  padding: 0 30px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
  font-size: 16px;
}
.subscribe_form button:hover {
  background: #e65c00;
}

/* footer css */

.foot_center {
  padding: 50px 0;
}
.foot_center p {
  color: #999;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
}
.foot_center ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.foot_center ul li {
  margin-bottom: 12px;
}
.foot_center ul li a {
  color: #999;
  text-decoration: none;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}
.foot_center ul li a:hover {
  color: #ff6600;
}
.foot_center h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #fff;
}

.footer_bottom {
  padding-top: 30px;
  border-top: 1px solid #333;
  margin-top: 50px;
}
.trust_badges {
  display: flex;
  gap: 15px;
}
.trust_badges .badge_item {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #404040;
  padding: 8px 15px;
  border-radius: 50px;
  background: #262626;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}
.trust_badges .badge_item img {
  height: 16px;
  width: auto;
}
.payment_methods img {
  height: 30px;
}
.social_links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}
.social_links span {
  color: #999;
  font-size: 14px;
}
.social_links a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #262626;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}
.social_links a:hover {
  background: #ff6600;
  color: #fff;
}
.social_links a i {
  font-size: 16px;
}

.dmca_box {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 20px 40px;
  margin-top: 40px;
}
.dmca_box h5 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.dmca_box p {
  color: #999;
  font-size: 14px;
  margin: 0;
}
/* footer css */

/* portfolio section css */
.portfolio {
  padding: 100px 0;
  background: #000;
  position: relative;
}

.portfolio h2 {
  font-size: 50px;
  font-weight: 800;
  margin-bottom: 25px;
}

.portfolio p {
  color: #999;
  font-size: 18px;
  max-width: 1000px;
  margin: 0 auto;
}

.portfolio_head {
  margin-top: 60px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 60px;
  display: inline-block;
  width: 100%;
  position: relative;
  text-align: center;
}

.portfolio_head .nav-pills {
  border: 1px solid #999;
  padding: 10px;
  border-radius: 50px;
  display: inline-flex;
  gap: 10px;
}

.portfolio_head .nav-link {
  color: #999;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.portfolio_head .nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.portfolio_head .nav-link.active {
  background: linear-gradient(to right, #ff6600 0%, #ff9f1a 100%);
  color: #fff !important;
  box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
}

.portfolio-slider {
  margin-top: 50px;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.portfolio-item-box {
  padding: 10px;
  transition: all 0.4s ease;
}

.portfolio-item-box a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
}

.portfolio-item-box img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item-box:hover a {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(255, 102, 0, 0.2);
}

.portfolio-item-box:hover img {
  transform: scale(1.1);
}
.port_disclaimer {
  margin-top: 30px;
}

.port_disclaimer p {
  max-width: 100%;
  font-size: 12px;
  text-align: center;
  color: #fff;
}


/* portfolio carousel css */

.text-orange {
  color: #ff6600 !important;
}

.next_steps_box {
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(10px);
}
