/**====================== 

COMMON CSS START 

=========================**/

section {
  padding: 90px 0;
}

body {
  font-family: 'Roboto';
  margin: 0;
  padding: 0;
}

/** TEXT & BACKGROUND CSS **/

.text-outline-white {
  -webkit-text-stroke: 1px #ffffff;

  color: transparent;
}

.bg-black {
  background-color: #101010;
}

.bg-white {
  background-color: #fff;
}

.bg-grey {
  background-color: #fcfcfc;
}

.text-black {
  color: #010205;
}

.text-white {
  color: #fff;
}

.text-grey {
  color: #8e8e93;
}

.text-red {
  color: #d32f2f;
}

.para-color {
  color: #434343;
}

.para-text {
  font-size: 16px;

  font-weight: 400;

  margin: 0;
}

/** RED BUTTON CSS **/

.red-bg-button {
  font-size: 16px;

  font-weight: 500;

  border-radius: 16px;

  border: 1px solid rgba(255, 255, 255, 0.4);

  background: #ec2024;

  box-shadow: 0 20px 35px 0 rgba(236, 32, 36, 0.18);

  padding: 13px 20px;

  transition: all 0.5s ease;
}

.red-bg-button:hover {
  transform: translateY(-5px);

  background: #ec2024;

  transition: all 0.5s ease;

  border-color: rgba(255, 255, 255, 0.4);
}

/** OUTLINE BUTTON CSS **/

.outline-button {
  font-size: 16px;

  font-weight: 500;

  border-radius: 16px;

  border: 1px solid rgba(255, 255, 255, 0.4);

  background: #151515;

  padding: 13px 20px;

  transition: all 0.5s ease;
}

.outline-button:hover {
  transform: translateY(-5px);

  transition: all 0.5s ease;

  border-color: rgba(255, 255, 255, 0.4);

  background: #ec2024;

  box-shadow: 0 20px 35px 0 rgba(236, 32, 36, 0.18);
}

/** HEADING CSS **/

.heading-box h2 {
  font-size: 40px;
}

.heading-box p {
  line-height: 30px;
}

/**====================== 

COMMON CSS FINISH 

=========================**/


/**====================== 

MAIN HEADER CSS START 

=========================**/

header.site-header {
  background-color: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  padding: 1rem 1rem;

}


header.site-header .navbar {
  padding: 0;
}

header.site-header .navbar .navbar-brand img {
  max-width: 190px;
}

header.site-header .navbar-nav {
  position: relative;
  gap: 20px;
}

header.site-header .navbar-nav li.nav-item {
  position: relative;
}


header.site-header .navbar-nav li.nav-item::before {
  content: " ";
  position: absolute;
  width: 1px;
  height: 15px;
  top: 25%;
  right: -5px;
  background-color: #fff;
}

header.site-header .navbar-nav li.nav-item a.nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0;
}

.dropdown-menu.fullwidth {
  width: 95vw;
  margin: 0 auto;
  transform: translateX(-600px) translateY(17px);
  padding: 15px 15px;
  position: relative;
}

.dropdown-menu.fullwidth .dropdown-row {
  margin: 0;
}

.dropdown-menu.fullwidth::before {
  background-image: url(https://nsfwcoders.com/wp-content/uploads/2025/icons/header-dropdown-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  content: " ";
  left: 0;
  width: 100%;
  height: 100%;
  top: 0px;
  position: absolute;
  z-index: -1000000;
}


.dropdown-menu.fullwidth .dropdown-info-card {
  padding: 20px 20px;
}

.dropdown-menu.fullwidth .dropdown-info-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.dropdown-menu.fullwidth .dropdown-info-card .contact-card .contact-icons {
  background-image: url(https://nsfwcoders.com/wp-content/uploads/2025/icons/contact-icon-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 12px;
  padding: 30px 20px;
  display: flex;
  justify-content: space-between;
}

.dropdown-menu.fullwidth .dropdown-info-card .contact-card .contact-icons a img {
  width: 90%;
}

.dropdown-menu.fullwidth .dropdown-info-card p {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}

.dropdown-menu.fullwidth .dropdown-info-card a {
  font-size: 15px;
  font-weight: 500;
  color: #EC2024;
}

.dropdown-menu.fullwidth .dropdown-info-card ul.dropdown-link-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.dropdown-menu.fullwidth .dropdown-info-card ul.dropdown-link-list li {
  margin: 0;
}

.dropdown-menu.fullwidth .dropdown-info-card ul.dropdown-link-list li a {
  font-size: 15px;
  font-weight: 500;
  color: #010205;
  transition: all 0.3s ease;
  text-decoration: none;
}

.dropdown-menu.fullwidth .dropdown-info-card ul.dropdown-link-list li a:hover {
  color: #EC2024;
  transition: all 0.3s ease;
}

.header-action-button-box .contact-popup-button {
  background-color: #000;
  border: 1px solid #ec2226;
  padding: 10px 25px;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  animation: pulseRed 1.5s infinite;
}

@keyframes pulseRed {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.8);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(255, 0, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }
}

/**====================== 

MAIN HEADER CSS FINISH 

=========================**/


/**====================== 

SIDEBAR HEADER CSS START 

=========================**/

.sidebar-col {
  padding: 0;
}

.section-col {
  padding: 0;
}

.sidebar-box {
  background-color: #101010;

  height: 100%;

  border-right: 0.5px solid #fffcfc1a;

  padding: 25px 25px;

  padding-left: 30px;

  text-align: center;

  position: relative;

  z-index: 10;
}

.schdule-call-button .btn-primary {
  display: flex;

  align-items: center;

  gap: 6px;

  justify-content: center;

  font-size: 17px;

  font-weight: 500;

  color: #fff;

  border-radius: 10px;

  background-color: #ec2226 !important;

  border: none;
}

.schdule-call-button .btn-primary span svg {
  margin-bottom: 2px;
}

.sidebar-sticky-box {
  position: sticky;

  top: 35px;
}

.sidebar-link-list-box {
  margin-top: 25px;
}

.sidebar-link-list-box ul.sidebar-link {
  padding: 0;

  margin: 0;

  display: flex;

  align-items: start;

  flex-direction: column;

  gap: 30px;

  list-style: none;
}

.sidebar-link-list-box ul.sidebar-link li a {
  font-size: 15px;

  font-weight: 400;

  color: #fff;

  display: flex;

  align-items: center;

  gap: 10px;

  text-decoration: none;
}

.sidebar-link-list-box ul.sidebar-link li a svg {
  width: 18px;

  height: 18px;
}

/**====================== 

SIDEBAR HEADER CSS FINISH 

=========================**/

/******* ====================== HOME PAGE CSS START ====================== *******/

/**====================== 

BANNER SEC CSS START 

=========================**/

.home-banner-content h1 {
  font-size: 50px;

  line-height: 66px;
}

.home-banner-content p {
  margin-bottom: 20px;

  color: #ffffffd1;

  line-height: 32px;
}

.banner-action-button {
  display: flex;

  align-items: center;

  justify-content: flex-start;

  gap: 20px;
}

/**====================== 

BANNER SEC CSS FINISH 

=========================**/

/**====================== 

DEMO READY SEC CSS START 

=========================**/

.demo-card {
  border: 1px solid #e5e5ea;

  border-radius: 12px;

  padding: 35px 30px;

  transition: all 0.5s ease;

  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.03);

  height: 100%;
}

.demo-card:hover {
  transform: translateY(-7px);

  transition: all 0.5s ease;
}

.demo-content h3 {
  font-size: 24px;
}

.demo-content p {
  line-height: 29px;
}

/**====================== 

DEMO READY SEC CSS FINISH 

=========================**/

/**============================

OFFERING SOLUTION SEC CSS START 

===============================**/

.solution-video-box {
  border-radius: 14px;

  background: #f2f2f7;

  text-align: center;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 15px 15px;
}

.solution-video-box video {
  border-radius: 14px;
  width: 100%;
}

.solution-content-inner-wrapper {
  margin-bottom: 43px;

  padding: 10px 15px;
}

.solution-content-inner-wrapper h3 {
  font-size: 22px;
}

.solution-content-inner-wrapper p {
  line-height: 27px;
}

.solution-content-inner-wrapper .progress {
  height: 11px;

  border-radius: 8px;

  display: flex;

  align-items: center;
}

.solution-content-inner-wrapper .progress .progress-bar {
  height: 7px;

  border-radius: 8px;

  margin-left: 5px;

  margin-bottom: 0;
}

.progress-one {
  background: #fce0e0;
}

.red-progress {
  background: #ec2226;
}

.progress-two {
  background: #f2f2f7;
}

.black-progress {
  background: #c7c7cc;
}

.solution-button-box {
  padding-left: 16px;
}

/**==============================

OFFERING SOLUTION SEC CSS FINISH 

=================================**/

/**==============================

ENTERPRISE SEC CSS START 

=================================**/

.enterprise-wrapper {
  padding: 20px 20px;

  border-radius: 10px;

  border: 0.8px solid #e5e5ea;

  background: #fff;

  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.04);

  transition: all 0.5s ease;

  height: 350px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;
}

.enterprise-content h3 {
  font-size: 28px;
}

.enterprise-content p {
  line-height: 32px;
}

.enterprise-small-text h4 {
  font-size: 16px;
}

.enterprise-small-text p {
  line-height: 26px;
}

.enterprise-action-button {
  display: flex;

  align-items: center;

  justify-content: space-between;
}

.enterprise-action-button button.enterprise-btn {
  display: flex;

  padding: 13px 40px;

  font-size: 16px;

  font-weight: 400;

  border: 1px solid;

  border-radius: 16px;
}

.btn-fill {
  background-color: #000;

  border-color: #000;

  transition: all 0.5s ease;
}

.btn-fill:hover {
  background: #ec2024;

  border-color: #ec2024 !important;

  box-shadow: 0 20px 35px 0 rgba(236, 32, 36, 0.18);

  transition: all 0.5s ease;
}

.btn-fill a {
  color: #fff;
}

.btn-border {
  background-color: #fff;

  border: 1px solid #000;
}

.btn-border:hover {
  background: #ec2024;

  border-color: #ec2024 !important;

  box-shadow: 0 20px 35px 0 rgba(236, 32, 36, 0.18);

  transition: all 0.5s ease;

  color: #fff;
}

/**==============================

ENTERPRISE SEC CSS FINISH 

=================================**/

/**==============================

CLIENT TESTIMONIAL SEC CSS START 

=================================**/

.testimonial-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}


.testimonial-card-box {
  border-radius: 20px;
  border: 1px solid #e5e5ea;
  background: rgba(251, 251, 253, 0.7);
  padding: 15px 15px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.5s ease;
  flex: 1;
}

.testimonial-card-box:hover {
  flex: 2;
  transition: all 0.5s ease;
}

.testimonial-image {
  /* height: 240px; */
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  z-index: 2;
  transition: all 0.5s ease;
}


.testimonial-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  transition: none !important;
}


.testimonial-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 46.11%,
      rgba(0, 0, 0, 0.5) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 46.11%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

.play-video-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  border-radius: 100px;
  border: 1px solid #191d2f;
  background: #111;
  padding: 12px 16px;
  display: none;
  align-items: center;
  gap: 10px;
  transition: all 0.5s ease;
  z-index: 2;
  cursor: pointer;
}

.testimonial-card-box:hover .play-video-btn {
  display: flex;
  background: #ec2024;
  border-color: #ec2024;
  transition: all 0.5s ease;
  box-shadow: 0 20px 35px 0 rgba(236, 32, 36, 0.18);
}

.play-video-btn span {
  text-shadow: 0 2px 3px rgba(47, 5, 97, 0.2);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.testimonial-overlay {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  padding: 15px 15px;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}

.testimonial-card-box:hover .testimonial-overlay {
  display: block;
}

.testimonial-overlay p {
  line-height: 27px;
}

.client-testimonial-content {
  display: flex;

  justify-content: space-between;
}

.client-name-box h4 {
  font-size: 17px;
}

.client-name-box h5 {
  font-size: 15px;
}

.testimonial-thumb,
.testimonial-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: opacity 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
}

.testimonial-video {
  opacity: 0;

  object-fit: cover;
}

.testimonial-card-box:hover .testimonial-video {
  width: 100%;
  object-fit: cover;
  opacity: 1;
}

.text-grey {
  color: rgb(162, 162, 162);
}


/**==============================

CLIENT TESTIMONIAL SEC CSS FINISH 

=================================**/

/**==============================

HOME CONTACT FORM SEC CSS START 

=================================**/

.contact-inner-wrapper {
  border-radius: 20px;

  border: 1px solid var(--Grays-Gray-5, #e5e5ea);

  background: #fff;

  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.04);

  padding: 60px 50px;
}

.form-input .input-group .form-control {
  border-radius: 7px;

  border: 0.4px solid var(--Grays-Gray-4, #d1d1d6);

  background: rgba(249, 249, 249, 0.6);

  padding: 17px 24px;

  font-size: 16px;

  font-weight: 400;

  color: #000;
}

.form-input .input-group .form-control::placeholder {
  color: #6b6b6b;
}

.book-meeting-box {
  padding: 15px 15px;

  padding-top: 0;

  background-image: url(https://nsfwcoders.com/wp-content/uploads/2025/home/home-contact-map-bg.webp);

  height: 100%;

  background-repeat: no-repeat;

  background-size: cover;

  background-position: center;
}

.book-meeting-box h3 {
  font-size: 18px;
}

.book-meeting-box ul.meeting-list {
  list-style: none;

  display: flex;

  flex-direction: column;

  gap: 11px;

  padding: 0;
}

.book-meeting-box ul.meeting-list li a {
  font-size: 14px;

  font-weight: 500;
}

.one-row {
  display: flex;
  gap: 3%;
}

/**==============================

HOME CONTACT FORM SEC CSS FINISH 

=================================**/

/******* ====================== HOME PAGE CSS FINISH ====================== *******/

/******* ====================== CANDY AI CLONE PAGE CSS START ====================== *******/

/**====================== 

BANNER SEC CSS START 

=========================**/

.banner-sec {
  position: relative;

  z-index: 2;

  overflow: hidden;
}

.banner-sec::before {
  content: "";

  position: absolute;

  width: 100%;

  height: 100%;

  background-image: url("https://nsfwcoders.com/wp-content/uploads/2025/10/10016491_27230-2.webp");

  background-repeat: no-repeat;

  background-size: cover;

  background-position: center;

  top: 0;

  left: 0;

  right: 0;

  margin: 0 auto;

  z-index: -1;
}

.banner-content h1 {
  font-size: 40px;
}

.banner-content p {
  line-height: 28px !important;
}

.banner-content .action-button {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 20px;
}

.banner-image img {
  max-width: 78%;
}

/**====================== 

BANNER SEC CSS FINISH 

=========================**/

/**====================== 

TRUSTED SEC CSS START 

=========================**/

.stats-box span {
  font-size: 40px;
}

.stats-box p {
  margin: 0;

  font-size: 15px;
}

/**====================== 

TRUSTED SEC CSS FINISH 

=========================**/

/**====================== 

HUMANIZING SEC CSS FINISH 

=========================**/

.tabs-main-box .feature-tabs {
  gap: 15px;
}

.tabs-main-box .feature-tabs .nav-link {
  display: flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  border: 1px solid #aeaeb2;
  background: #fdfdfd;
  color: #000 !important;
  font-size: 16px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 10px;
  font-weight: 500;
}

.tabs-main-box .feature-tabs .nav-link span {
  line-height: 0;
}

.tabs-main-box .feature-tabs .nav-link span img {
  max-width: 24px;
}

.tabs-main-box .feature-tabs .nav-link.active {
  background: #ec2226;

  color: #fff !important;

  border-color: #ec2226;
}

.candy-clone-feature-card {
  border: 1px solid #e5e5ea;

  border-radius: 12px;

  padding: 35px 30px;

  transition: all 0.5s ease;

  position: relative;

  z-index: 2;

  overflow: hidden;

  height: 100%;
}

.candy-clone-feature-card::before {
  content: "";

  position: absolute;

  top: 0;

  right: 0;

  background-image: url(https://nsfwcoders.com/wp-content/uploads/2025/10/Group-1707482300.webp);

  background-repeat: no-repeat;

  background-position: left;

  background-size: cover;

  width: 100%;

  height: 100%;

  z-index: -1;
}

.candy-clone-feature-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);

  transition: all 0.5s ease;
}

.candy-clone-feature-card h3 {
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.candy-clone-feature-card h3 span {
  line-height: 0;
}

.candy-clone-feature-card h3 span img {
  max-width: 25px;
}

.candy-clone-feature-card p {
  line-height: 28px;
}

.candy-clone-feature-image {
  position: relative;
  overflow: hidden;
}

.candy-clone-feature-image img {
  width: 100%;
}

.candy-clone-feature-image .play-btn {
  position: absolute;
  bottom: -12px;
  right: -12px;
  max-width: 13%;
}

/**====================== 

HUMANIZING SEC CSS FINISH 

=========================**/

/**=============================

POWERFUL FEATURES SEC CSS START 

================================**/

.inner-wrapper {
  border: 1px solid #ffffff3b;

  border-radius: 20px;

  padding: 30px 50px;
}

.candy-feature-box .candy-icon {
  margin-bottom: 20px;
}

.candy-feature-box .candy-icon img {
  max-width: 12%;
}

.candy-feature-box .candy-content h3 {
  font-size: 20px;
}

.candy-feature-box .candy-content p {
  line-height: 30px;

  color: #9a9a9a;
}

/**=============================

POWERFUL FEATURES SEC CSS FINISH 

================================**/

/**=============================

FULLY COMPLIANT SEC CSS START 

================================**/

.ai-image-box img {
  max-width: 70%;
}

.ai-content h3 {
  font-size: 30px;

  line-height: 42px;
}

.ai-content p {
  margin-bottom: 20px;

  line-height: 29px;
}

/**=============================

FULLY COMPLIANT SEC CSS FINISH 

================================**/

/**=======================

PLATFORM SEC CSS START 

==========================**/

.case-study-big-text {
  overflow: hidden;
}

.case-study-big-text h4 {
  color: #fbfbfb;

  text-align: center;

  -webkit-text-stroke-width: 1px;

  -webkit-text-stroke-color: #ededed;

  font-family: Roboto;

  font-size: 190px;

  font-style: normal;

  font-weight: 900;
}

.project-showcase-box .project-image {
  border-radius: 8px;

  border: 1px solid rgba(255, 255, 255, 0.2);

  position: relative;

  overflow: hidden;
}

.project-showcase-box .project-image img {
  border-radius: 8px;

  transition: all 0.4s ease;
}

.project-showcase-box:hover .project-image img {
  transform: scale(1.1);

  transition: all 0.4s ease;
}

.figcaption {
  position: absolute;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  background: rgba(0, 0, 0, 0.6);

  display: flex;

  justify-content: center;

  align-items: center;

  opacity: 0;

  transition: all 0.4s ease;

  transform: translateY(20px);

  text-align: center;

  padding: 0 15px;
}

.project-showcase-box:hover .figcaption {
  transition: all 0.4s ease;

  transform: translateY(0);

  opacity: 1;
}

.figcaption p {
  color: #fff;

  line-height: 30px;
}

.project-name {
  display: flex;

  align-items: center;

  justify-content: space-between;
}

.project-name h3 {
  font-size: 24px;
}

.project-name .view-btn {
  padding: 8px 29px;

  border-radius: 40px;

  border: 1px solid #000;

  background: #fff;

  color: #000;

  font-weight: 500;

  font-size: 16px;

  transition: all 0.5s ease;
}

.project-name .view-btn a {
  color: #000;
}

.project-showcase-box:hover .project-name .view-btn {
  background-color: #ec2226;

  border-color: #ec2226;

  transition: all 0.5s ease;

  box-shadow: 0 20px 35px 0 rgba(236, 32, 36, 0.18);

  color: #fff;

  transform: translateY(-2px);
}

.project-showcase-box:hover .project-name .view-btn a {
  color: #fff;
}

/**=======================

PLATFORM SEC CSS FINISH 

==========================**/

/**=======================

INDUSTRIES SEC CSS START 

==========================**/

.step-box {
  border-right: 2px solid rgba(255, 255, 255, 0.1);

  background: rgba(255, 255, 255, 0.06);

  padding: 30px 30px;
}

.step-box h3 {
  font-size: 15px;

  font-weight: 400;

  margin-bottom: 40px;
}

.step-box h4 {
  font-size: 20px;

  text-transform: capitalize;
}

.step-box p {
  font-weight: 300;

  color: #c7c7cc;

  line-height: 28px;

  margin: 0;
}

/**=======================

INDUSTRIES SEC CSS FINISH 

==========================**/

/**=======================

SOLUTION SEC CSS START 

==========================**/

.solution-box {
  border-top: 1px solid #c7c7cc;

  border-bottom: 1px solid #c7c7cc;

  padding: 30px 0;

  position: relative;
}

.solution-image img {
  width: 275px;

  height: 160px;

  object-fit: cover;

  transform: rotate(-10deg);

  transition: all 0.4s ease;

  opacity: 0;
}

.solution-box:hover img {
  transition: all 0.4s ease;

  opacity: 1;
}

.solution-content-wrapper {
  display: flex;

  gap: 20px;
}

.solution-content h3 {
  font-size: 24px;

  text-transform: capitalize;
}

.solution-content p {
  margin: 0;

  line-height: 28px;
}

.solution-action-arrow .action-button {
  background: #fff;

  border-radius: 60px;

  border: 1px solid #8e8e93;

  display: flex;

  width: 50px;

  height: 50px;

  align-items: center;
}

.solution-action-arrow .action-button svg {
  fill: #434343;
}

.solution-box:hover .solution-action-arrow .action-button {
  background-color: #ec2226;

  border-color: #ec2226;

  transition: all 0.5s ease;

  box-shadow: 0 20px 35px 0 rgba(236, 32, 36, 0.18);

  color: #fff;

  transform: translateY(-5px);
}

.solution-box:hover .solution-action-arrow .action-button svg {
  fill: #fff;
}

.solution-action-arrow .action-button img {
  max-width: 50px;
}

/**=======================

SOLUTION SEC CSS FINISH 

==========================**/

/**=======================

CTA SEC CSS START 

==========================**/

.cta-sec {
  background-image: url("https://nsfwcoders.com/wp-content/uploads/2025/10/image-60.png");

  background-repeat: no-repeat;

  background-size: cover;

  background-position: center;
}

.cta-content h2 {
  font-size: 30px;
}

.cta-button-box {
  display: flex;

  align-items: center;

  justify-content: center;
}

/**=======================

CTA SEC CSS FINISH 

==========================**/

/**=======================

TYPE IMAGE SEC CSS START 

==========================**/

.type-card {
  border: 1px solid #c7c7cc;

  border-radius: 10px;

  padding: 30px 15px;

  background: #fff;

  transition: all 0.5s ease;

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  gap: 14px;

  height: 100%;
}

.type-card img {
  max-width: 22%;
}

.type-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

  transform: translateY(-5px);

  transition: all 0.5s ease;
}

.type-card h3 {
  font-size: 18px;
}

/**=======================

TYPE IMAGE SEC CSS FINISH 

==========================**/

/**=======================

MONETIZE SEC CSS START 

==========================**/

.proven-image-content p {
  margin-top: 0;

  margin-bottom: 20px;

  line-height: 26px;

  color: #434343;
}

.proven-image-content img {
  width: 100%;

  height: 500px;

  object-fit: cover;

  object-position: top;

  border-radius: 20px;
}

.process-step {
  display: flex;

  align-items: flex-start;

  margin-bottom: 40px;

  position: relative;

  padding-left: 50px;

  padding-right: 50px;
}

.process-ste:last-child {
  margin-bottom: 0;
}

.process-step::before {
  content: " ";

  position: absolute;

  height: 100%;

  border-left: 3px dashed #ec2024;

  left: 68px;

  z-index: -1;

  top: 40px;
}

.process-number {
  background: #fcd7d8;

  color: #ec2024;

  width: 40px;

  height: 40px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  font-weight: 600;

  margin-right: 20px;

  flex-shrink: 0;
}

.process-text {
  margin-top: 4px;
}

.process-text h3 {
  color: #000;

  font-size: 20px;

  font-weight: 500;
}

.process-text p {
  margin-top: 0;

  line-height: 27px;

  font-size: 16px;
}

/**=======================

MONETIZE SEC CSS FINISH 

==========================**/

/**=======================

TECH STACK SEC CSS START 

==========================**/

.contact-cto-button-box {
  display: flex;

  justify-content: center;

  align-items: center;
}

.technology-top-slider-col {
  margin-bottom: 15px;
}

.tech-slide {
  font-size: 18px;

  text-align: center;

  padding: 30px 15px;

  border-radius: 10px;

  border-width: 1px;

  border-style: solid;

  border-color: rgb(34, 34, 34);

  border-image: initial;

  transition: 0.3s;

  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgb(0, 0, 0) 50%,
      rgba(255, 255, 255, 0.12) 100%);

  height: 116px;

  display: flex;

  align-items: center;

  justify-content: center;
}

.tech-slide p {
  margin: 0;

  color: #fff;

  font-size: 16px;

  font-weight: 500;
}

/**=======================

TECH STACK SEC CSS FINISH 

==========================**/

/**=======================

LAUNCHING COST SEC CSS START 

==========================**/

.launching-cost-sec {
  background-color: #ec2226;
}

.cost-content {
  text-align: center;
}

.cost-content h2 {
  font-size: 35px;
}

.cost-content .read-more-para {
  position: relative;
}

.cost-content .read-more-para p {
  line-height: 30px;
}

.cost-content .read-more-para p span.dots {
  display: inline;
}

.cost-content .read-more-para p span.read-more {
  display: inline;

  cursor: pointer;

  font-weight: 700;

  text-decoration: underline;

  text-transform: capitalize;
}

.cost-content .read-more-para p span.more-text {
  display: none;
}

/**=======================

LAUNCHING COST SEC CSS FINISH 

==========================**/

/**=======================

TESTIMONIAL SEC CSS START 

==========================**/

.testimonial-content {
  text-align: center;

  position: relative;

  z-index: 1;

  overflow: hidden;
}

.testimonial-content h3 {
  font-size: 215px;

  font-weight: 600;

  position: absolute;

  top: 45%;

  left: 0;

  transform: translate(0%, -50%);

  width: 100%;

  pointer-events: none;

  right: 0;

  margin: 0 auto;

  z-index: -1;

  text-align: center;
}

.testimonial-content img {
  max-width: 25%;
}

.client-content-box {
  display: flex;

  justify-content: space-between;
}

.client-name h5 {
  font-size: 22px;
}

.client-name span.text-white {
  font-size: 15px;

  font-weight: 500;
}

.testimonial-contact-button .testimonial-btn {
  background: #101010;

  border-radius: 60px;

  border: 1px solid #fff;

  display: flex;

  width: 70px;

  height: 70px;

  justify-content: center;

  align-items: center;

  transition: all 0.5s ease;
}

.testimonial-contact-button .testimonial-btn:hover {
  background-color: #ec2226;

  border-color: #ec2226;

  transition: all 0.5s ease;

  box-shadow: 0 20px 35px 0 rgba(236, 32, 36, 0.18);

  transform: translateY(-5px);
}

.testimonial-content .video-box {
  width: 400px;

  height: 400px;

  border-radius: 190px;

  margin: 0 auto;

  background: #c1c1c1;

  overflow: hidden;
}

.testimonial-content .video-box video {
  width: 100%;

  height: 100%;

  border-radius: 190px;
}

/**=======================

WHY CHOOSE SEC CSS START 

==========================**/

.why-choose-box {
  border: 1px solid #d1d1d6;

  border-radius: 15px;

  padding: 25px 25px;

  background: #fff;

  transition: all 0.3s ease;

  height: 100%;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  transition: all 0.5s ease;
}

.why-choose-box:hover {
  transform: translateY(-5px);

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);

  transition: all 0.5s ease;
}

.why-choose-content h3 {
  font-size: 18px;

  line-height: 26px;

  display: flex;

  justify-content: space-between;
}

.why-choose-content h3 span.dot {
  width: 10px;

  height: 9px;

  border-radius: 30px;

  display: inline-block;

  position: unset;

  line-height: 0;

  transform: translateY(6px);
}

.why-choose-content p {
  line-height: 31px;
}

.why-choose-contact-button {
  margin-top: 20px;

  display: flex;

  align-items: center;

  justify-content: end;
}

.why-choose-contact-button .why-choose-contact {
  border-radius: 70px;

  border: 1px solid #000;

  display: flex;

  width: 50px;

  height: 50px;

  justify-content: center;

  align-items: center;

  transition: all 0.5s ease;

  background-color: #fff;
}

.why-choose-contact-button .why-choose-contact svg {
  stroke: #111111;
}

.why-choose-box:hover .why-choose-contact-button .why-choose-contact {
  background-color: #ec2226;

  border-color: #ec2226;

  transition: all 0.5s ease;

  box-shadow: 0 20px 35px 0 rgba(236, 32, 36, 0.18);

  transform: translateY(-5px);
}

.why-choose-box:hover .why-choose-contact-button .why-choose-contact svg {
  stroke: #fff;
}

/**=======================

WHY CHOOSE SEC CSS FINISH 

==========================**/

/**=======================

FAQ SEC CSS START 

==========================**/

.accordion .accordion-item {
  margin-bottom: 25px;

  border-radius: 14px;

  border: 0.6px solid #d1d1d6;

  background: #fff;

  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.03);

  overflow: hidden;
}

.accordion .accordion-item h3.accordion-header.accordion-button {
  background: #fff;

  border-radius: 14px !important;

  box-shadow: none;

  padding: 20px 27px;

  font-size: 16px;

  color: #434343;

  font-weight: 500;
}

.accordion-body {
  padding: 0 0 15px 30px;
}

.accordion-body p {
  line-height: 28px;
}

/**=======================

FAQ SEC CSS FINISH 

==========================**/

/******* ====================== CANDY AI CLONE PAGE CSS FINISH ====================== *******/

/******* ====================== OUR DREAM PAGE CSS START ====================== *******/

/**=======================

BANNER SEC CSS START 

==========================**/

.our-dream-banner-content h1 {
  font-size: 50px;
  line-height: 66px;
}

.our-dream-banner-content p {
  margin-bottom: 20px;
  line-height: 32px;
}

.our-dream-banner-action-button {
  display: flex;
  align-items: center;
  gap: 20px;
}

.our-dream-banner-image img {
  height: 500px;
}

.our-dream-banner-action-button .get-started-btn,
.learn-more-btn {
  padding-left: 40px;
  padding-right: 40px;
}

/**=======================

BANNER SEC CSS FINISH 

==========================**/

/**=======================

STEP COUNT SEC CSS START 

==========================**/
.border-col {
  border-right: 1px solid #d1d1d6;
}

.border-col:last-child {
  border: none;
}

.step-count-box {
  height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.step-count-box h3 {
  font-size: 40px;
}

/**=======================

STEP COUNT SEC CSS FINISH 

==========================**/

/**=======================

PLAN SEC CSS START 

==========================**/
.plan-box {
  border-radius: 20px;
  border: 1px solid #d9d9d9;
  background: #fff;
  display: inline-flex;
  padding: 35px 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.plan-box.transform-box {
  transform: translateY(50px);
}

.plan-content h3 {
  font-size: 21px;
}

.plan-content p {
  line-height: 31px;
}

.plan-action-btn {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.plan-action-btn .plan-learn-btn {
  font-size: 16px;
  font-weight: 500;
  color: #434343;
  display: flex;
  align-items: center;
  gap: 20px;
}

/**=======================

PLAN SEC CSS FINISH 

==========================**/

/**=======================

CONNECT SEC CSS START 

==========================**/

.connect-box {
  border-radius: 20px;
  border: 0.7px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(131deg, rgba(30, 30, 30, 0.7) 6.82%, #000 91.07%);
  padding: 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.connect-content-box h3 {
  font-size: 24px;
}

.connect-content-box p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 26px;
}

.connect-icon {
  text-align: end;
}

.connect-icon svg {
  width: 60px;
}

/**=======================

CONNECT SEC CSS FINISH 

==========================**/

/**=======================

NEXT GEN CHATBOT SEC CSS FINISH 

==========================**/
.dreams-tabs-main-box .dreams-tabs-list {
  justify-content: center;
  gap: 25px;
}

.dreams-tabs-main-box .dreams-tabs-list .nav-link {
  display: flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  border: 1px solid #aeaeb2;
  background: #fdfdfd;
  color: #000 !important;
  font-size: 16px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 10px;
  font-weight: 500;
}

.dreams-tabs-main-box .dreams-tabs-list .nav-link span {
  line-height: 0;
}

.dreams-tabs-main-box .dreams-tabs-list .nav-link span img {
  max-width: 25px;
}

.dreams-tabs-main-box .dreams-tabs-list .nav-link.active {
  background: #ec2226;
  color: #fff !important;
  border-color: #ec2226;
}

.tab-inner-wrapper {
  display: flex;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  gap: 15px;
  position: relative;
}

.tab-inner-main-box {
  position: relative;
  overflow: hidden;
  transition: all 1s ease;
  flex: 1;
  border-radius: 20px;
  flex-shrink: 0;
}

.tab-inner-main-box:hover {
  flex: 2;
  transition: all 1s ease;
}

.tab-inner-main-box img.tab-inner-main-img {
  border-radius: 20px;
  max-width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
}

.tab-inner-main-box figcaption.hover-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transition: transform 0.8s ease;
  padding: 20px 20px;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.8) 100%);
}

.tab-inner-main-box figcaption.hover-content h3 {
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tab-inner-main-box figcaption.hover-content h3 span img {
  max-width: 25px;
  margin-bottom: 2px;
}

.tab-inner-main-box figcaption.hover-content h3 span svg {
  max-width: 25px;
}

.tab-inner-main-box figcaption.hover-content p {
  line-height: 30px;
  display: none;
}

.tab-inner-main-box:hover figcaption.hover-content p {
  display: block;
}

/**=======================

NEXT GEN CHATBOT SEC CSS FINISH 

==========================**/

/**=======================

KEY SEC CSS START 

==========================**/

.key-inner-wrapper-box {
  padding: 70px 20px;
  border-bottom: 1px solid #e5e5ea;
  background-color: #fff;
  transition: all 0.5s ease;
}

.key-inner-wrapper-box:hover {
  border-bottom: 1px solid #ec2226;
  background-color: #fce0e0;
}

.key-content-box h3 {
  font-size: 30px;
}

.key-content-box p {
  line-height: 30px;
}

/**=======================

KEY SEC CSS FINISH 

==========================**/

/**=======================

TRANSFORMATIVE SEC CSS START 

==========================**/

.transformative-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  width: 100%;
}

.transformative-box {
  border-radius: 12px;
  border: 0.7px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.03);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 210px;
}

.transformative-box span svg {
  width: 60px;
}

.transformative-box h3 {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.6);
}

/**=======================

TRANSFORMATIVE SEC CSS FINISH 

==========================**/

/**=======================

LAUNCH FEATURE SEC CSS START 

==========================**/

.launch-feature-image {
  position: relative;
}

.launch-feature-image img.lauch-chatbot-main-image {
  height: 470px;
  width: 90%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}

.lauch-inner-box {
  border-radius: 20px;
  border: 0.4px solid #d1d1d6;
  background: #fff;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.04);
  padding: 20px 20px;
  position: absolute;
  bottom: -30px;
  right: 0;
}

.chatbot-user-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.chatbot-user-image img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  object-position: center;
  border: 2px solid #fff;
  position: relative;
  margin-left: -14px;
  border-radius: 50px;
}

.chatbot-user-count span {
  font-size: 25px;
}

.chatbot-user-content p {
  font-size: 18px;
  color: #5f5f5f;
}

.chatbot-user-image img:nth-child(1) {
  margin-left: 0;
}

.launch-feature-content h2 {
  font-size: 50px;
  line-height: 70px;
}

.launch-feature-content p {
  color: #434343;
  line-height: 30px;
}

.launch-feature-content .launch-feature-contact {
  padding-left: 40px;
  padding-right: 40px;
}

/**=======================

LAUNCH FEATURE SEC CSS FINISH 

==========================**/

/**==============================

DEVELOPMENT PROCESS SEC CSS START 

=================================**/

.process-main-wrapper-box {
  position: relative;
  overflow: hidden;
}

.process-wrapper {
  position: relative;
  max-height: 600px;
  overflow-y: scroll;
  overflow-x: hidden;
  box-sizing: border-box;
}

.process-wrapper::-webkit-scrollbar {
  display: none;
}

.custom-scrollbar {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  pointer-events: none;
}

.custom-scrollbar .thumb {
  position: absolute;
  top: 0;
  width: 100%;
  height: 60px;
  background: #ec2226;
  border-radius: 4px;
  cursor: grab;
  pointer-events: auto;
}

.process-wrapper-row {
  margin-bottom: 40px;
}

.process-wrapper-row:last-child {
  margin-bottom: 0;
}

.process-inner-wrapper {
  display: flex;
  gap: 20px;
  padding: 15px 15px;
}

.process-inner-wrapper .process-count {
  width: 120px;
  height: 54px;
  background-color: #ec2226;
  border-radius: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-inner-wrapper .process-count span {
  font-size: 23px;
  color: #ffff;
  font-weight: 600;
}

.process-inner-wrapper .process-wrapper-content {
  padding: 0 25px;
}

.process-inner-wrapper .process-wrapper-content h3 {
  font-size: 25px;
}

.process-inner-wrapper .process-wrapper-content p {
  color: #434343;
  line-height: 29px;
}

/**================================

DEVELOPMENT PROCESS SEC CSS FINISH 

==================================**/

/**================================

CORE FEATURE SEC CSS START 

==================================**/

.core-feature-border-col {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.core-feature-border-col:last-child {
  border-right: none;
}

.core-feature-box {
  display: flex;
  flex-direction: column;
  gap: 23px;
  padding: 10px 20px;
}

.core-feature-box .core-feature-count-box {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 500;
  color: #000;
}

.core-feature-box .core-feature-content h3 {
  font-size: 24px;
}

.core-feature-box .core-feature-content p {
  line-height: 28px;
  color: #333;
}

/**================================

CORE FEATURE SEC CSS FINISH 

==================================**/

/**================================

ELEVATE SEC CSS START 

==================================**/

.elevate-action-button {
  display: flex;
  justify-content: center;
}

.elevate-action-button button.get-in-touch-btn {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: #fff;
  box-shadow: 0 20px 35px 0 rgba(236, 32, 36, 0.18);
  display: flex;
  padding: 15px 45px;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 500;
  color: #000;
  transition: all 0.3s ease;
}

.elevate-action-button button.get-in-touch-btn:hover {
  transform: translateY(-7px);
  transition: all 0.3s ease;
}

/**================================

ELEVATE SEC CSS FINISH 

==================================**/

/**================================

TESTIMONIAL SEC CSS START 

==================================**/

.our-dream-testimonial {
  margin-top: 130px;
}

/**================================

TESTIMONIAL SEC CSS FINISH 

==================================**/

/**================================

ADVANTAGE SEC CSS FINISH 

==================================**/

.row.advantage-top-row {
  border-bottom: 1px solid #d1d1d6;
  padding-bottom: 45px;
}

.row.advantage-bottom-row {
  padding-top: 30px;
}

.advantage-border-col {
  border-right: 1px solid #d1d1d6;
}

.advantage-border-col:last-child {
  border-right: none;
}

.advantage-main-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  padding: 15px 15px;
}

.advantage-content h3 {
  font-size: 24px;
  font-weight: 700;
}

.advantage-content p {
  color: #434343;
  line-height: 28px;
}

/**================================

ADVANTAGE SEC CSS FINISH 

==================================**/

/******* ====================== OUR DREAM PAGE CSS FINISH ====================== *******/

/******* ====================== THANKYOU PAGE CSS START ====================== *******/

.thankyou-sec {
  padding: 60px 0px;
}

.thankyou-text h2 {
  font-size: 70px;
  font-weight: 700;
  line-height: 90px;
  text-transform: capitalize;
  color: #ec2024;
}

.thankyou-text P {
  font-size: 17px;
  line-height: 30px;
}

.thankyou-heading h6 {
  font-size: 17px;
  font-weight: 600;
  color: #000;
  margin: 0;
}

.thankyou-contact-box {
  border: 1px solid #e5e5ea;
  border-radius: 12px;
  padding: 30px 30px;
  transition: all 0.5s ease;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.03);
  height: 100%;
}

.thankyou-contact-box .icon-heading {
  display: flex;
  align-items: center;
  gap: 24px;
}

.thankyou-contact-box .icon-heading svg {
  width: 40px;
}

.thankyou-contact-box .icon-heading .calendar-svg {
  width: 30px;
}

.thankyou-contact-box .icon-heading h4 {
  margin: 0;
  color: #000;
  font-weight: 700;
  font-size: 22px;
  text-transform: capitalize;
}

.thankyou-contact-box p a {
  color: #ec2024;
}

.contact-number-list-box ul.contact-number-list {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.contact-number-list-box ul.contact-number-list li {
  position: relative;
}

.contact-number-list-box ul.contact-number-list li::before {
  content: "";
  position: absolute;
  background: #000;
  width: 2px;
  height: 87%;
  right: -27px;
}

.contact-number-list-box ul.contact-number-list li:last-child::before {
  display: none;
}

.contact-number-list-box ul.contact-number-list li a {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.contact-number-list-box ul.contact-number-list li a span svg {
  width: 22px;

  fill: #ec2024;
}

.platform-list-box ul.platform-list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.platform-list-box ul.platform-list li a svg {
  width: 20px;
}

/******* ====================== THANKYOU PAGE CSS FINISH ====================== *******/

/******* ====================== CONTACT US PAGE CSS FINISH ====================== *******/

/**================================
CONTACT US SEC CSS FINISH 
==================================**/
form#contact-us-page-form button.red-btn {
  display: flex;
  align-items: center;
  gap: 13px;
}

form#contact-us-page-form button.red-btn svg {
  margin-top: 1px;
}

form#contact-us-page-form .contact-map-image {
  padding: 0 10px;
}

/**================================
CONTACT US SEC CSS FINISH 
==================================**/


/**================================
CONTACT SUPPORT SEC CSS START 
==================================**/

.contact-support-col {
  padding: 0;
}

.contact-support-main-box {
  border: 1px solid #E5E5EA;
  background: #FFF;
  padding: 40px 25px;
  padding-bottom: 25px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  height: 100%;
  justify-content: space-between;
  gap: 60px;
}


.contact-support-main-box:hover {
  background: #F9F9F9;
  transition: all 0.3s ease;
}


.contact-support-main-box .contact-support-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}


.contact-support-main-box .contact-support-content p {
  line-height: 28px;
  font-size: 17px;
}

.contact-information-wrapper {
  padding: 30px 30px;
  border-radius: 20px;
}

/**================================
CONTACT SUPPORT SEC CSS FINISH 
==================================**/


/**================================
CONTACT INFORMATION SEC CSS START 
==================================**/

.contact-information-box .contact-information-img {
  margin-bottom: 30px;
}

.contact-information-box .contact-information-img img {
  max-width: 80px;
}

.contact-information-box .contact-information-img img.phone-image {
  max-width: 66px;
}

.contact-information-box .contact-information-img img.follow-image {
  max-width: 68px;
}

.contact-information-box .contact-information-content h4 {
  font-size: 22px;
  margin-bottom: 10px;
}

.contact-information-box .contact-information-content p {
  color: #bfbfbf;
  line-height: 29px;
  font-size: 17px;
}


.contact-information-box .contact-information-content ul.contact-information-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-information-box .contact-information-content ul.contact-information-list li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  color: #bfbfbf;
}

.contact-information-box .contact-information-content ul.social-media-links li a {
  color: #08F;
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-information-box .contact-information-content ul.social-media-links li a svg {
  width: 15px;
}

/**================================
CONTACT INFORMATION SEC CSS FINISH 
==================================**/

/**================================
WHAT YOU NEED SEC CSS START 
==================================**/
.need-box {
  padding: 25px 25px;
  border: 1px solid #E5E5EA;
  background: #FFF;
  padding-bottom: 25px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  height: 100%;
  justify-content: space-between;
  gap: 60px;
}

.need-box:hover {
  background: #F9F9F9;
  transition: all 0.3s ease;
}


.need-box .need-content h3 {
  font-size: 22px;
  margin-bottom: 11px;
}

.need-box .need-content p {
  font-size: 17px;
  line-height: 31px;
}

.need-button-box {
  display: flex;
  align-items: center;
  gap: 15px;
}


.need-button-box a {
  text-decoration: none;
  color: #08F;
  font-weight: 500;
}



/**================================
WHAT YOU NEED SEC CSS FINISH 
==================================**/

/******* ====================== CONTACT US PAGE CSS FINISH ====================== *******/


/**================================
FOOTER SEC CSS START 
==================================**/

.site-footer {
  padding: 70px 50px;
  overflow: hidden;
  padding-bottom: 0;
}

.site-footer .row.footer-top-row {
  align-items: center;
  margin-bottom: 60px;
}

.footer-heading-box h3 {
  font-size: 40px;
  line-height: 60px;
}

.back-to-top-img {
  position: relative;
  z-index: 2;
}

.back-to-top-img::before {
  content: " ";
  position: absolute;
  background-image: url(https://nsfwcoders.com/wp-content/uploads/2025/09/bottom-arr-txt.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  left: -17px;
  top: -17px;
  width: 130px;
  height: 130px;
  animation: animName 20s linear infinite;
  z-index: -1;
}


@keyframes animName {

  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }

}


.site-footer .footer-widget h3 {
  font-size: 20px;
}

.site-footer ul.footer-widget-link {
  padding: 0;
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}


.site-footer ul.footer-widget-link li a {
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff85;
  transition: all 0.3s ease;
}


.site-footer ul.footer-widget-link li a:hover {
  transition: all 0.3s ease;
  color: #ec2024;
}


.site-footer .row.footer-bottom-row {
  margin-top: 60px;
  border-top: 1px solid #fff;
  padding: 30px 40px 30px 0;
  align-items: center;
}

.footer-logo img {
  max-width: 200px;
}

.copyright-text {
  text-align: end;
}

/**================================
FOOTER SEC CSS FINISH 
==================================**/


/******* ====================== MODALS CSS START ====================== *******/

/** LEAD FORM POPUP MODAL CSS START **/

.lead-form-modal .modal-content .modal-header {
  padding: 0;
  border: none;
}

.lead-form-modal .modal-content button.btn-close {
  background-image: none;
  border-radius: 10px;
  border: 1px solid #E9E9E9;
  background: #FFF;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.06);
  opacity: 1;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -10px;
  top: -10px;
  z-index: 10;
}

.lead-form-modal .modal-content .modal-body {
  padding: 30px 30px;
}

.lead-form-modal .modal-content .modal-body .lead-box .lead-row {
  align-items: center;
}


.lead-form-modal .modal-content .modal-body .lead-box .lead-info-box {
  padding: 25px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-radius: 20px;
}

.lead-content h3 {
  font-size: 30px;
  line-height: 45px;
  margin-bottom: 12px;
}

.lead-content p {
  color: rgba(255, 255, 255, 0.90);
  line-height: 28px;
}

.lead-form-modal .modal-content .modal-body .lead-box .lead-form-box {
  padding-left: 10px;
}

.lead-form-box .lead-form-row .lead-form-input-col {
  margin-bottom: 30px;
}

.lead-form-box .lead-form-row .lead-form-input-col:last-child {
  margin-bottom: 0;
}

.lead-form-box .lead-form-row .input-group .form-control {
  border-width: 0 0 1px 0;
  border-color: #D1D1D6;
  border-radius: 0;
  font-size: 16px;
  font-weight: 400;
  color: #010205;
  padding: 14px 0px;
}


.lead-form-box .lead-form-row .input-group .form-control::placeholder {
  font-size: 15px;
  font-weight: 400;
  color: #595959;
  margin-bottom: 14px;
}

.lead-form-box .lead-form-row .input-group.form-check {
  gap: 10px;
}

.lead-form-box .lead-form-row .input-group.form-check .form-check-input {
  border-radius: 3px !important;
  border-color: #ec2024;
  cursor: pointer;
  box-shadow: none;
}

.lead-form-box .lead-form-row .input-group.form-check .form-check-input:checked {
  background-color: #ec2024;
  border-color: #ec2024;
}

.lead-form-box .lead-form-row .input-group.form-check label.form-check-label {
  font-size: 15px;
  font-weight: 500;
  color: #212121;
  margin-top: 1px;
}

.lead-action-button .lead-submit-button {
  width: 200px;
  color: #fff;
}

.error-message {
  color: red;
  font-size: 0.85em;
  margin-top: 5px;
}

/** LEAD FORM POPUP MODAL CSS FINISH **/

/******* ====================== MODALS CSS FINISH ====================== *******/