@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* Fonts */
:root {
  --default-font: "Roboto", sans-serif;
  --heading-font: "Roboto";
  --nav-font: "Roboto";
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --e-global-color-primary: #006534;
  --e-global-color-secondary: #ff9900;
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #444444;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2F2F2F;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #006534;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #f5f7fa;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #000;
  /* The default color of the main navmenu links */
  --nav-hover-color: #006534;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #060606;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #006534;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #f5f7fa;
}

.dark-background {
  --background-color: #2a2c39;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #f5f7fa;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  height: 150vh;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}


.gorxdigital_logo {
  width: 150px;
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgb(242, 247, 245);
  box-shadow: 4px -20px 60px -1px rgba(0, 0, 0, 0.4);
  margin: 10px;
  border-radius: 10px;
}

@media screen and (max-width:400px) {
  .scrolled .header {
    margin: 0;
    border-radius: 0;
  }

  .gorxdigital_logo {
    width: 130px;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Back-tobutton
--------------------------------------------------------------*/
#back-to-top {
  display: none;
  position: fixed;
  bottom: 60px;
  right: 10px;
  box-shadow: 0 10px 40px 0 rgba(47, 47, 47, .1) !important;
  background-color: #fff;
  color: #2d2a3e;
  width: 40px;
  border-radius: 100px;
  cursor: pointer;
  height: 40px;
  border: 3px solid #ebebeb;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
}

#back-to-top:hover {
  box-shadow: 0 10px 40px 0 rgba(47, 47, 47, .1) !important;
  background-color: #2d2a3e;
  color: #ffffff;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
    display: flex;
    justify-content: space-evenly;
    gap: 210px;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: space-evenly;
  }

  .navmenu li {
    position: relative;
    margin-left: 5px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 8px 20px;
    font-size: 17px;
    font-family: var(--default-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    border-radius: 50px;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    font-weight: 500;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 15px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
    margin-left: 0;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    background-color: transparent;
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>.same {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown:hover>.PPC {
    opacity: 1;
    top: 0;
    left: -105%;
    visibility: visible;
  }

  .contactBtn {
    cursor: pointer;
    box-shadow: -1px 3px 3px 0 rgba(80, 80, 80, 0.2);
    text-decoration: none;
    border: none;
    border-radius: 30px;
    color: #fff;
    font-weight: bold;
    flex: 0 0 auto;
  }

  .contactBtn a {
    padding: 10px 20px;
    text-align: center;
    font-size: 17px;
    color: #000;
    display: block;
    transition: all 0.16s ease-in;
  }

  .contactBtn a:hover {
    color: black;
  }

  .btn-4 {
    background: var(--e-global-color-secondary);
    transition: all 0.16s ease-in;
  }

  .btn-4:hover {
    background: none;
    color: #464646;
    box-shadow: 0 0 0 1px rgba(80, 80, 80, 0.5);
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }

  .contactBtn {
    cursor: pointer;
    box-shadow: -1px 3px 3px 0 rgba(80, 80, 80, 0.2);
    text-decoration: none;
    border: none;
    border-radius: 30px;
    color: #fff;
    font-weight: bold;
    flex: 0 0 auto;
  }

  .contactBtn a {
    padding: 10px;
    text-align: center;
    font-size: 14px;
    color: #000;
    display: block;
  }

  .btn-4 {
    background: var(--e-global-color-secondary);
    transition: all 0.16s ease-in;
  }

  .btn-4:hover {
    background: none;
    color: #464646;
    box-shadow: 0 0 0 1px rgba(80, 80, 80, 0.5);
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding-top: 160px;
  font-family: var(--default-font);
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 80%) 50%, color-mix(in srgb, var(--accent-color), transparent 98%) 25%, transparent 50%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--accent-color), transparent 92%), transparent 40%);
  pointer-events: none;
}

.hero .hero-content {
  position: relative;
  z-index: 1;
}

.hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero .hero-content h1 .accent-text {
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .hero .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .hero .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero .hero-content .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .hero .hero-content h1 {
    font-size: 2rem;
  }
}

.hero .company-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  color: var(--accent-color);
  font-weight: 500;
}

.hero .company-badge i {
  font-size: 1.25rem;
}

.hero .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 20%);
  border-color: color-mix(in srgb, var(--accent-color), black 20%);
}

.hero .btn-primary:active{
  background-color: color-mix(in srgb, var(--accent-color), black 20%);
  border-color: color-mix(in srgb, var(--accent-color), black 20%);
}

.hero .btn-link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .btn-link:hover {
  color: var(--accent-color);
}

.hero .btn-link i {
  font-size: 1.5rem;
  vertical-align: middle;
}

.hero .hero-image {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero .hero-image img {
  max-width: 100%;
  height: auto;
}

/* imag of add main image  */

.hero .stats-row {
  position: relative;
  z-index: 1;
  margin-top: 5rem;
  background-color: var(--surface-color);
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding-bottom: 2rem;
}

.hero .stats-row .stats .stats-hero .headline {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.2;
}

.hero .stats-row .stats .stats-hero .lead {
  color: var(--default-color);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 0;
}

.hero .stats-row .stats .stats-hero .stats-rating {
  background: var(--surface-color);
  border-radius: 5px;
  box-shadow: 0 4px 32px color-mix(in srgb, var(--accent-color), transparent 90%);
  min-width: 270px;
  gap: 8px;
}

.hero .stats-row .stats .stats-hero .stats-rating .stats-rating-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.hero .stats-row .stats .stats-hero .stats-rating .rating-score .fs-5 {
  color: var(--accent-color);
}

.hero .stats-row .stats .stats-hero .stats-rating .rating-score .stars {
  color: color-mix(in srgb, var(--accent-color), #ffd700 70%);
  font-size: 1.15rem;
}

.hero .stats-row .stats .stats-hero .stats-rating .user-feedback {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.95rem;
  font-family: var(--default-font);
}

.hero .stats-row .stats .stats-counters {
  margin-top: 0.5rem;
}

.hero .stats-row .stats .stats-counters .stats-counter-card {
  background: var(--contrast-color);
  border-radius: 10px;
  box-shadow: 0 2px 12px color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 1.75rem 1rem 1.25rem 1rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s;
}

.hero .stats-row .stats .stats-counters .stats-counter-card:hover {
  box-shadow: 0 4px 32px color-mix(in srgb, var(--accent-color), transparent 82%);
}

.hero .stats-row .stats .stats-counters .stats-counter-card .counter-value {
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  display: flex;
  align-items: flex-end;
}

.hero .stats-row .stats .stats-counters .stats-counter-card .counter-value .purecounter {
  font-size: inherit;
  color: inherit;
}

.hero .stats-row .stats .stats-counters .stats-counter-card .label {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 1rem;
  font-family: var(--default-font);
  font-weight: 500;
  margin-top: 0.3rem;
  letter-spacing: 0.02em;
}

@media (max-width: 992px) {
  .hero .stats-row .stats .stats-hero .headline {
    font-size: 1.7rem;
  }

  .hero .stats-row .stats .stats-counters .stats-counter-card {
    font-size: 0.97rem;
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
}

@media (max-width: 767px) {
  .hero .stats-row .stats .stats-hero {
    flex-direction: column;
  }

  .hero .stats-row .stats .stats-hero .headline {
    font-size: 1.3rem;
    text-align: center;
  }

  .hero .stats-row .stats .stats-hero .lead {
    font-size: 1rem;
    text-align: center;
  }

  .hero .stats-row .stats .stats-hero .stats-rating {
    margin-inline: auto;
  }

  .hero .stats-row .stats .stats-counters .stats-counter-card {
    padding: 1rem;
    font-size: 0.93rem;
  }
}

.hero .stats-row .stats .bi-star-fill,
.hero .stats-row .stats .bi-star-half {
  color: #ffae00;
  font-size: 1.18em;
  vertical-align: -0.13em;
  margin-right: 2px;
}

.hero .stats-row .stats .bi-star-fill:last-child,
.hero .stats-row .stats .bi-star-half:last-child {
  margin-right: 0;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.Presence_Matters .Presence_Matters-description {
  margin-bottom: 2rem;
  color: #343a47;
}


.Presence_Matters .feature-list {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}

.Presence_Matters .feature-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #343a47;
  border-radius: 20px;
}

.Presence_Matters .feature-list li i {
  color: var(--nav-dropdown-hover-color);
  font-size: 2rem;
}


.Presence_Matters .contact-info {
  margin-top: 50px;
  padding: 1rem 1.5rem;
  background-color: var(--background-color);
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.Presence_Matters .contact-info i {
  color: var(--nav-dropdown-hover-color);
  font-size: 2.2rem;
}

.Presence_Matters .contact-info .contact-label {
  color: #343a47;
  font-size: 0.875rem;
  margin: 0;
}

.Presence_Matters .contact-info .contact-number a {
  color: #343a47;
  font-weight: 600;
  margin: 0;
}

.Presence_Matters .image-wrapper {
  position: relative;
}

@media (max-width: 992px) {
  .Presence_Matters .image-wrapper {
    padding-left: 0;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .Presence_Matters .image-wrapper .images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .Presence_Matters .image-wrapper .main-image {
    margin-left: 0;
  }
}

.Presence_Matters .image-wrapper .small-image {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 45%;
  border: 8px solid var(--background-color);
}

@media (max-width: 992px) {
  .Presence_Matters .image-wrapper .small-image {
    position: static;
    width: 0;
    margin: 0 auto;
    border: 0;
  }
}

.Presence_Matters .image-wrapper .experience-badge {
  position: absolute;
  bottom: 5%;
  right: 5%;
  background-color: var(--heading-color);
  color: var(--background-color);
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  min-width: 200px;
  animation: experience-float 3s ease-in-out infinite;
}

@media (max-width: 992px) {
  .Presence_Matters .image-wrapper .experience-badge {
    position: static;
    width: fit-content;
    margin: 0 auto;
  }
}

.Presence_Matters .image-wrapper .experience-badge h3 {
  color: var(--contrast-color);
  font-size: 2.5rem;
  margin: 0;
  line-height: 0.5;
}

.Presence_Matters .image-wrapper .experience-badge h3 span {
  font-size: 1rem;
  display: inline-block;
  margin-left: 0.25rem;
}

.Presence_Matters .image-wrapper .experience-badge p {
  color: var(--background-color);
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}

@keyframes experience-float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/
.features-cards h2 {
  color: var(--default-color);
}

.features-cards .accent-text {
  background-color: #006534;
  padding: 5px 10px;
  color: white;
  border-radius: 10px;
}

.features-cards .feature-box {
  height: 100%;
  padding: 40px 30px;
  border-radius: 10px;
}

.features-cards .feature-box i {
  font-size: 44px;
  display: inline-block;
  line-height: 0;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.features-cards .feature-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.features-cards .feature-box p {
  font-size: 15px;
  margin-bottom: 0;
}

.features-cards .feature-box.orange {
  background-color: #fff3e2;
}

.features-cards .feature-box.orange i {
  color: #edb86e;
}

.features-cards .feature-box.blue {
  background-color: #deedfd;
}

.features-cards .feature-box.blue i {
  color: #20a5f8;
}

.features-cards .feature-box.green {
  background-color: #d5f1e4;
}

.features-cards .feature-box.green i {
  color: #48c88a;
}

.features-cards .feature-box.red {
  background-color: #fdeded;
}

.features-cards .feature-box.red i {
  color: #f28484;
}

.features-cards .feature-box.purple {
  background-color: #f2e6ff;
}

.features-cards .feature-box.purple i {
  color: #b38ddb;
}

.features-cards .feature-box.navy {
  background-color: #eaf0f7;
}

.features-cards .feature-box.navy i {
  color: #5f83a4;
}


@media screen and (max-width:700px) {
  .w-75 {
    width: 100% !important;
  }
}

@media screen and (max-width:444px) {
  .features-cards .accent-text {
    background-color: white;
    padding: 0;
    color: var(--accent-color);
    border-radius: 0;
  }
}

/*--------------------------------------------------------------
# Our Monthly On-Page SEO my-cards
--------------------------------------------------------------*/

.BackPartten {
  background: linear-gradient(320deg, color-mix(in srgb, var(--accent-color), transparent 50%) 50%, color-mix(in srgb, var(--accent-color), transparent 98%) 25%, transparent 50%);
  padding: 50px 0;
}

.services .services-row {
  position: relative;
}

.BackPartten .accent-text {
  background-color: #006534;
  padding: 5px 10px;
  color: white;
  border-radius: 10px;
}

.services .services-headline .services-subtitle {
  display: inline-flex;
  align-items: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.services .services-headline .services-subtitle i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.services .services-headline .services-subtitle span {
  color: var(--accent-color);
  font-weight: 600;
}

.services .services-headline .services-title {
  color: var(--heading-color);
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}

.services .services-description {
  margin-bottom: 30px;
}

.services .services-description p {
  font-size: 1.12rem;
  line-height: 1.6;
}

.services .services-image-container {
  position: relative;
  margin-bottom: 30px;
}

.services .services-image-container .services-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 460px;
}

.services .services-image-container .services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services .services-grid {
  margin-left: 50px;
}

@media (max-width: 992px) {
  .services .services-grid {
    margin-left: 0;
    margin-top: 10px;
  }
}

.services .service-card {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 25px;
  padding: 30px 25px;
  margin-bottom: 25px;
  border: 1px solid rgba(154, 154, 154, 0.3);
  transition: all 0.3s ease;
  height: 100%;
}

.services .service-card:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px);
}

.services .service-card:hover .service-icon {
  color: var(--contrast-color);
  transform: scale(0.95);
}

.services .service-card:hover .service-info h3 a,
.services .service-card:hover .service-info p {
  color: var(--contrast-color);
  transform: scale(0.95);
}

.services .responsiveM {
  margin-top: 48px;
}

.services .service-card:hover .service-content .read-more-btn {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 84%);
  color: var(--contrast-color);
}

.services .service-content .service-icon {
  width: 65px;
  height: 65px;
  line-height: 65px;
  margin: 0 auto;
  font-size: 48px;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.services .service-content .service-info h3 {
  font-size: 1.4rem;
  margin: 15px 0;
  transition: all 0.3s ease;
}

.services .service-content .service-info h3 a {
  color: var(--heading-color);
  text-decoration: none;
}

.services .service-content .service-info p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.services .service-content .service-action {
  margin-top: 20px;
}

@media screen and (max-width:992px) {
  .services .responsiveM {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .services .services-headline .services-title {
    font-size: 2rem;
  }
}

/* SERVES SECTION IN SEO PAGE  */

.services .process-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.services:last-child {
  padding-bottom: 0;
}

.services .content {
  width: 100%;
  position: relative;
  background: linear-gradient(145deg, color-mix(in srgb, var(--accent-color), transparent 95%), var(--surface-color));
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services .content:hover {
  transform: translateX(10px);
  box-shadow: -8px 8px 25px rgba(0, 0, 0, 0.1);
}

.services .content:hover .step-icon {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 15%), var(--accent-color));
  transform: rotate(10deg);
}

.services .content:hover .step-number {
  transform: translateX(-5px);
  opacity: 1;
}

.services .step-number {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent-color);
  font-family: var(--heading-font);
  line-height: 1;
  opacity: 0;
  /* Changed from 0.2 to 0 */
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.services .card-body {
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.services .step-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .step-icon i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.services .step-content h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.services .step-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media screen and (max-width:400px) {
  .services .card-body {
    flex-direction: column;
  }

  .services .step-number {
    font-size: 3rem;
  }
}


/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .cta-wrapper {
  display: flex;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, var(--accent-color), #004926);
  color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}


.call-to-action .cta-content {
  position: relative;
  z-index: 2;
  flex: 1;
}

.call-to-action .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.call-to-action .cta-content p {
  font-size: 1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.call-to-action .cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.call-to-action .cta-buttons .btn-primary {
  padding: 0.8rem 2rem;
  background-color: var(--surface-color);
  color: var(--default-color);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.call-to-action .cta-buttons .btn-primary:hover {
  background-color: color-mix(in srgb, var(--e-global-color-secondary), white 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.call-to-action .cta-buttons .btn-outline {
  padding: 0.8rem 2rem;
  background-color: transparent;
  color: var(--background-color);
  border: 2px solid var(--surface-color);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.call-to-action .cta-buttons .btn-outline:hover {
  background-color: var(--e-global-color-secondary);
  color: var(--default-color);
  border: none;
  transform: translateY(-3px);
}

/* pakage card  */


.pricing-card {
  background: rgba(255, 255, 255, 0.8);
  /* Semi-transparent background for blur effect */
  backdrop-filter: blur(10px);
  /* Adds the blur effect */
  color: var(--default-color);
  padding: 30px 25px;
  border-radius: 20px;
  width: 350px;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: rotate(-6deg);
  transition: transform 0.3s ease;
  position: relative;
  top: 25px;
  z-index: 9999999;
  right: 70px;
}

.sideCorner {
  transform: rotate(6deg);
  top: 25px;
  left: 30px;
}

/* Hide initially */
.pricing-card,
.sideCorner {
  opacity: 0;
  transform: translateY(30px) scale(0.98) rotate(0deg);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.call-to-action .cta-wrapper:hover .pricing-card,
.call-to-action .cta-wrapper:hover .sideCorner {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(-6deg);
}

.call-to-action .cta-wrapper:hover .sideCorner {
  transform: translateY(0) scale(1) rotate(6deg);
}

/* Creative hover-out with zoom effect */
.call-to-action .cta-wrapper .pricing-card,
.call-to-action .cta-wrapper .sideCorner {
  opacity: 0;
  transform: translateY(30px) scale(1.3) rotate(0deg);
  transition: opacity 0.6s ease-in, transform 0.6s ease-out;
}

/* end  */

.pricing-card h2 {
  font-size: 26px;
  margin-bottom: 8px;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 20px;
}

.pricing-card ul li {
  margin-bottom: 12px;
  font-size: 14px;
  position: relative;
  padding-left: 20px;
}

.pricing-card ul li::before {
  content: "›";
  position: absolute;
  left: 0;
  font-weight: bold;
}

.pricing-card hr {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.7);
  margin: 20px 0;
}

.price span {
  font-size: 28px;
  font-weight: bold;
}

.price p {
  font-size: 14px;
  opacity: 0.9;
  margin-top: 5px;
}

.cta-button {
  background-color: var(--e-global-color-secondary);
  color: var(--default-color);
  border: none;
  padding: 14px 0;
  width: 100%;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  font-size: 15px;
  margin-top: 20px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: var(--e-global-color-secondary);
}


@media (max-width: 992px) {
  .call-to-action .cta-wrapper {
    flex-direction: column;
    padding: 2.5rem;
  }

  .sideCorner,
  .pricing-card {
    display: none;
  }

  .call-to-action .cta-content {
    text-align: center;
  }

  .call-to-action .cta-content h2 {
    font-size: 2rem;
  }

  .call-to-action .cta-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .call-to-action .cta-buttons {
    justify-content: center;
  }

  .call-to-action .cta-image img {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .call-to-action .cta-wrapper {
    padding: 2rem;
  }

  .call-to-action .cta-content h2 {
    font-size: 1.8rem;
  }

  .call-to-action .cta-content p {
    font-size: 1rem;
  }

  .call-to-action .cta-buttons .btn-primary,
  .call-to-action .cta-buttons .btn-outline {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

/*--------------------------------------------------------------
# Showcase Section
--------------------------------------------------------------*/
.showcase-area {
  padding: 80px 0;
  background-color: var(--surface-color);
}

.showcase-area .showcase-text {
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  .showcase-area .showcase-text {
    margin-bottom: 0;
  }
}

.showcase-area .tagline {
  display: inline-flex;
  align-items: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.showcase-area .tagline i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.showcase-area .tagline span {
  color: var(--accent-color);
  font-weight: 600;
}

.showcase-area h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.showcase-area h2 .highlight {
  background-color: #006534;
  padding: 5px 10px;
  color: white;
  border-radius: 10px;
}

@media (min-width: 992px) {
  .showcase-area h1 {
    font-size: 3.5rem;
  }
}

.showcase-area .lead-text {
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 1.5rem;
}

.showcase-area .features-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.showcase-area .features-list li {
  font-size: 18px;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.showcase-area .features-list li i {
  font-size: 24px;
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.showcase-area .image-block {
  position: relative;
  padding: 0 40px;
}

.showcase-area .image-block .showcase-img {
  border-radius: 10px;
}

.features-2 .info-card,
.showcase-area .image-block .info-card {
  position: absolute;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 150px;
}

.features-2 .info-card.top-corner,
.showcase-area .image-block .info-card.top-corner {
  top: 40px;
  right: 0px;
}

.features-2 .info-card.bottom-corner,
.showcase-area .image-block .info-card.bottom-corner {
  bottom: 40px;
  left: 0px;
}

.features-2 .info-card .info-value,
.showcase-area .image-block .info-card .info-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 0.25rem;
}

.features-2 .info-card .info-label,
.showcase-area .image-block .info-card .info-label {
  font-size: 0.875rem;
  color: var(--contrast-color);
  margin-bottom: 0.5rem;
}

.features-2 .info-card .info-icon,
.showcase-area .image-block .info-card .info-icon {
  align-self: flex-end;
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--contrast-color), transparent 50%);
}

@media (max-width: 575px) {
  .showcase-area .image-block {
    padding: 0;
  }

  .features-2 .info-card,
  .showcase-area .image-block .info-card {
    position: relative;
  }

  .features-2 .info-card.top-corner,
  .features-2 .info-card.bottom-corner,
  .showcase-area .image-block .info-card.top-corner,
  .showcase-area .image-block .info-card.bottom-corner {
    inset: auto;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Industry Section
--------------------------------------------------------------*/
#industry {
  background-color: #D9E8E0;
  color: #000;
}

.industry .industry-overview {
  height: 100%;
  padding: 30px;
}

.industry .industry-overview h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.industry .accent-text {
  background-color: #006534;
  padding: 5px 10px;
  color: white;
  border-radius: 10px;
}

.industry .industry-overview p {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.7;
  margin-bottom: 0;
}

.industry .industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.industry .industry-card {
  background: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 20px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry .industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.industry .industry-card .industry-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
}

.industry .industry-card .industry-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.industry .industry-card .industry-content {
  flex-grow: 1;
}

.industry .industry-card .industry-content .industry-number {
  display: flex;
  align-items: baseline;
}

.industry .industry-card .industry-content p {
  font-size: 18px;
  margin: 0 0 0;
  font-weight: 500;
  font-family: var(--heading-font);
}

@media (max-width: 768px) {
  .industry .industry-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .industry .industry-card {
    padding: 15px;
  }

  .industry .industry-card .industry-icon {
    width: 50px;
    height: 50px;
  }

  .industry .industry-card .industry-icon i {
    font-size: 20px;
  }

}


/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 .feature-item .feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.features-2 .feature-item .feature-icon i {
  font-size: 2rem;
}

.features-2 .responsiveM {
  padding: 25px 0;
}

.features-2 .accent-text {
  background-color: #006534;
  padding: 5px 10px;
  color: white;
  border-radius: 10px;
}


.features-2 .feature-item .feature-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;

}

.features-2 .feature-item .feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 18px;
  margin-bottom: 0;
}


.features-2 .resbonsiveW {
  width: 50%;
  text-align: center;
}

.features-2 .phone-mockup {
  width: auto;
  position: relative;
  padding: 30px 0;
}

.features-2 .phone-mockup img {
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.7));
}

.features-2 .phone-mockup .phonemockupgraph {
  box-shadow: 4px -20px 60px -1px rgba(0, 0, 0, 0.4);
  z-index: 99;
}

@media (max-width: 992px) {
  .features-2 .feature-item {
    text-align: center !important;
  }

  .features-2 .feature-item .d-flex {
    flex-direction: column;
    text-align: center;
    justify-content: center !important;
    padding: 10px;
  }
}

@media screen and (max-width:768px) {
  .features-2 .phone-mockup {
    height: 200px;
  }

  .features-2 .innovate {
    width: auto;
    height: auto;
  }

  .features-2 .Mockups {
    height: 0;
    padding: 0;
    width: 0;
  }

  .features-2 .phone-mockup .phonemockupgraph {
    width: 100%;
    box-shadow: none;
  }

  .features-2 .phone-mockup img {
    width: 0;
  }

  .features-2 .resbonsiveW {
    width: 100%;
    text-align: left;
  }
}

@media screen and (max-width:520px) {
  .features-2 .accent-text {
    background-color: white;
    padding: 0;
    color: var(--accent-color);
    border-radius: 0;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-radius: 10px 10px 0 0;
  background-color: #e1ede7;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

.footer .credits a {
  color: var(--e-global-color-primary);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/

.faq .faq-title {
  background-color: transparent;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.faq .accent-text {
  background-color: #006534;
  padding: 5px 10px;
  color: white;
  border-radius: 10px;
  line-height: 5px;
}

.faq .faq-description {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.faq .faq-arrow {
  color: black;
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item .query {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item .query .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item .query:hover {
  color: var(--subheading-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p,
.hidden {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 32px;
  right: 20px;
  font-size: 25px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--subheading-color);
}

.faq .faq-container .faq-active .query {
  color: var(--subheading-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--subheading-color);
}

/* button faq  */
.process__accordions {
  font-family: var(--default-font);
}

.accordion__list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

@media (max-width: 479.98px) {
  .accordion__list {
    gap: 1.25rem;
  }
}

.accordion__item {
  background-color: var(--surface-color);
  border-radius: 10px;
  overflow: hidden;
  transition: 0.5s cubic-bezier(0.65, 0.2, 0.65, 1);
  box-shadow: 0px 0.25rem 0.375rem 0px rgba(25, 26, 35, 0.5);
  border: 1px solid #191a23;
}

@media (max-width: 479.98px) {
  .accordion__item {
    border-radius: 1.5rem;
  }
}

.accordion__button {
  display: flex;
  align-items: center;
  padding: 15px 35px;
  width: 100%;
  position: relative;
  cursor: pointer;
  background-color: transparent;
  border: none;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

@media (max-width: 767.98px) {
  .accordion__button {
    padding: 30px;
  }
}

@media (max-width: 479.98px) {
  .accordion__button {
    padding: 20px;
  }
}

.accordion__step-number {
  font-size: 16px;
  font-family: var(--default-font);
  padding-right: 1.5625rem;
  font-weight: 500;
}

@media (max-width: 767.98px) {
  .accordion__step-number {
    font-size: 40px;
    padding-right: 0.625rem;
  }
}

@media (max-width: 479.98px) {
  .accordion__step-number {
    font-size: 20px;
  }
}

.accordion__step-title {
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  flex: 1 1 auto;
  display: flex;
  line-height: 120%;
  padding-right: 1.25rem;
  justify-content: flex-start;
  text-align: left;
}

@media (max-width: 767.98px) {
  .accordion__step-title {
    font-size: 16px;
  }
}

.accordion__icon {
  flex: 0 0 32px;
  display: flex;
  width: 32px;
  height: 32px;
  background-color: #f7f7f7;
  border: 1px solid #191a23;
  border-radius: 50%;
  position: relative;
  transition: 0.5s cubic-bezier(0.65, 0.2, 0.65, 1);
}

@media (max-width: 479.98px) {
  .accordion__icon {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
  }
}

.accordion__icon::before {
  content: "";
  width: 1rem;
  height: 0.125rem;
  background-color: #191a23;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 479.98px) {
  .accordion__icon::before {
    width: 15px;
    height: 2px;
  }
}

.accordion__icon::after {
  content: "";
  width: 1rem;
  height: 0.125rem;
  background-color: #191a23;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
}

@media (max-width: 479.98px) {
  .accordion__icon::after {
    width: 15px;
    height: 2px;
  }
}

.accordion__content {
  padding: 0 60px;
  max-height: 0;
  overflow: hidden;
  will-change: max-height;
  transition: 0.5s cubic-bezier(0.65, 0.2, 0.65, 1);
  box-sizing: content-box;
  position: relative;
  z-index: 5;
}

@media (max-width: 767.98px) {
  .accordion__content {
    padding: 0 30px;
  }
}

@media (max-width: 479.98px) {
  .accordion__content {
    padding: 0 20px;
  }
}

.open .accordion__content {
  padding: 20px 60px 40px 60px;
}

@media (max-width: 767.98px) {
  .open .accordion__content {
    padding: 20px 30px;
  }
}

@media (max-width: 479.98px) {
  .open .accordion__content {
    padding: 0 20px 20px 20px;
  }
}

.open {
  background-color: #D9E8E0;
  color: #000;
}

.open .accordion__icon {
  transform: rotate(225deg);
}

/* Social Media  */
.social_medai {
  position: fixed;
  z-index: 10;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  transition: all 0.2s ease;
}

.social_medai .bg_links {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 100%;
  backdrop-filter: blur(5px);
  position: absolute;
}

.social_medai .logo {
  width: 40px;
  height: 40px;
  z-index: 9;
  background-image: url(profile-2.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  opacity: 0.9;
  transition: all 1s 0.2s ease;
  bottom: 0;
  right: 0;
}

.social_medai .social {
  opacity: 0;
  right: 0;
  bottom: 0;
}

.social_medai .social .icon {
  width: 100%;
  height: 100%;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  display: flex;
  transition: all 0.2s ease, background-color 0.4s ease;
  opacity: 0;
  border-radius: 100%;
}

.social_medai .social.whatsapp {
  transition: all 0.8s ease;
}

.social_medai .social.whatsapp .icon {
  background-image: url(icons8-whatsapp.svg);
}

.social_medai .social.instagram {
  transition: all 0.3s ease;
}

.social_medai .social.instagram .icon {
  background-image: url(icons8-instagram.svg);
}

.social_medai .social.facebook {
  transition: all 0.8s ease;
}

.social_medai .social.facebook .icon {
  background-image: url(icons8-facebook.svg);
}

.social_medai:hover {
  width: 105px;
  height: 105px;
  transition: all 0.6s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}

.social_medai:hover .logo {
  opacity: 1;
  transition: all 0.6s ease;
}

.social_medai:hover .social {
  opacity: 1;
}

.social_medai:hover .social .icon {
  opacity: 0.9;
}

.social_medai:hover .social:hover {
  background-size: 28px;
}

.social_medai:hover .social:hover .icon {
  background-size: 65%;
  opacity: 1;
}

.social_medai:hover .social.whatsapp {
  right: 0;
  bottom: calc(100% - 40px);
  transition: all 0.3s 0s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}

.social_medai:hover .social.whatsapp .icon:hover {
  background-color: #25d366;
}

.social_medai:hover .social.instagram {
  bottom: 45%;
  right: 45%;
  transition: all 0.3s 0.15s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}

.social_medai:hover .social.instagram .icon:hover {
  background-color: #ea4c89;
}

.social_medai:hover .social.facebook {
  bottom: 0;
  right: calc(100% - 40px);
  transition: all 0.3s 0.25s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}

.social_medai:hover .social.facebook .icon:hover {
  background-color: #1877F2;
}

/*--------------------------------------------------------------
# Services Alt Section
--------------------------------------------------------------*/
.service-details .swiper-wrapper {
  height: auto !important;
}

.service-details .service-sidebar {
  position: sticky;
  top: 100px;
}

.service-details .service-sidebar .service-overview {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.service-details .service-sidebar .service-overview .overview-header {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-details .service-sidebar .service-overview .overview-header i {
  font-size: 24px;
}

.service-details .service-sidebar .service-overview .overview-header .h3 {
  color: var(--contrast-color);
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.service-details .service-sidebar .service-overview .overview-content {
  padding: 30px;
}

.service-details .service-sidebar .service-overview .overview-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.service-details .service-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
}

.service-details .accent-text {
  background-color: #006534;
  padding: 5px 10px;
  color: white;
  border-radius: 10px;
}

.service-details .service-sidebar .service-overview .overview-content p {
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details .service-content .section-header {
  margin-bottom: 35px;
}

.service-details .service-content .section-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-details .service-content .details-content {
  margin-bottom: 40px;
}

.service-details .service-content .details-content p {
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
}

.service-details .service-content .details-content p:last-child {
  margin-bottom: 0;
}

.service-details .service-content .service-features {
  margin-bottom: 40px;
}

.service-details .service-content .service-features .feature-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.service-details .service-content .service-features .feature-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  z-index: -1;
  transition: 0.4s;
}

.service-details .service-content .service-features .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-details .service-content .service-features .feature-card:hover:before {
  height: 100%;
}

.service-details .service-content .service-features .feature-card:hover .icon-wrapper {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.service-details .service-content .service-features .feature-card .icon-wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 26px;
  border-radius: 50%;
  margin-bottom: 20px;
  transition: 0.3s;
}

.service-details .service-content .service-features .feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-details .service-content .service-features .feature-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.service-details .service-content .implementation-steps .step-container {
  position: relative;
}

.service-details .service-content .implementation-steps .step-container:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 18px;
  width: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.service-details .service-content .implementation-steps .step-container .step {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.service-details .service-content .implementation-steps .step-container .step:last-child {
  margin-bottom: 0;
}

.service-details .service-content .implementation-steps .step-container .step .step-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 700;
  border-radius: 50%;
  margin-right: 20px;
  z-index: 2;
  font-size: 14px;
}

.service-details .service-content .implementation-steps .step-container .step .step-content {
  flex: 1;
}

.service-details .service-content .implementation-steps .step-container .step .step-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-details .service-content .implementation-steps .step-container .step .step-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .service-details .service-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .service-details .service-content .service-features .feature-card {
    margin-bottom: 20px;
  }
}

@media screen and (max-width:500px) {
  .features-cards .accent-text {
    background-color: transparent;
    padding: 0;
    color: var(--accent-color);
    border-radius: 0;
  }

  .service-details .accent-text {
    background-color: transparent;
    padding: 0;
    color: var(--accent-color);
    border-radius: 0;
  }

  .BackPartten .accent-text {
    background-color: transparent;
    padding: 0;
    color: var(--accent-color);
    border-radius: 0;
  }

  .showcase-area h2 .highlight {
    background-color: transparent;
    padding: 0;
    color: var(--accent-color);
    border-radius: 0;
  }

  .industry .accent-text {
    background-color: transparent;
    padding: 0;
    color: var(--accent-color);
    border-radius: 0;
  }

  .faq .accent-text {
    background-color: transparent;
    padding: 0;
    color: var(--accent-color);
    border-radius: 0;
  }

}

/*-------------------------------------------------------------------------------------------------------------------------------------------
#                                                         Home page
---------------------------------------------------------------------------------------------------------------------------------------------*/

/* Existing styles */
.bg-gradient-hero {
  background: linear-gradient(135deg, #e6fef2 0%, #ffffff 50%, #e6fef2 100%);
}

.hero-padded {
  padding: 30px;
  margin-top: 85px;
}

@media screen and (max-width:400px) {
  .hero-padded {
    margin-top: 75px;
  }
}

.trust-badge {
  background-color: #d1fae5;
  border: 1px solid #86efac;
  padding: 8px 16px;
  font-size: 0.875rem;
  border-radius: 9999px;
  font-weight: 500;
  color: #166534;
}

.circle-dot {
  width: 12px;
  height: 12px;
}

.dashboard-box {
  transform: rotate(2deg);
  transition: transform 0.5s ease-in-out;
}

.dashboard-box:hover {
  transform: rotate(0deg);
}

.icon-bubble {
  width: 32px;
  height: 32px;
}

.floating-badge {
  position: absolute;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  color: white;
}

.badge-top-right {
  top: -1rem;
  right: -1rem;
  animation: bounce 1s infinite;
}

.badge-bottom-left {
  bottom: -1rem;
  left: -1rem;
  animation: pulse 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Custom user-provided styles */
.bg-green-light {
  background-color: #ecfdf5;
  color: #047857;
  border: 1px solid #bbf7d0;
}

.with-h1 {
  font-size: 30px;
}

.gradient-text {
  background: linear-gradient(to right, #2563eb, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-73 {
  background: linear-gradient(to right, #25d366, #006534);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
  animation: float 6s ease-in-out infinite;
  animation-delay: 2s;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

* {
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    backdrop-filter;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.tick_svvg-3,
.tick_svvg-4 {
  color: #198754;
  width: 1.4rem;
}


@media screen and (max-width:400px) {
  .tick_svvg-3 {
    color: #198754;
    width: 1.8rem;
  }

  .tick_svvg-4 {
    color: #198754;
    width: 2.5rem;
  }
}

.home-button {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: var(--accent-color);
}

.home-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
  transform: translate(-50%, -50%);
  z-index: 0;
  font-family: var(--default-font);
}

.home-button:hover::before {
  width: 550px;
  height: 550px;
}

@media screen and (max-width:992px) {
  .with-h1 {
    font-size: 1.75rem;
    /* 28x */
  }
}

@media screen and (max-width:768px) {
  .with-h1 {
    font-size: 1.5rem;
    /* 24px */
  }
}

@media screen and (max-width:480px) {
  .with-h1 {
    font-size: 1.3rem;
    /* 24px */
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top: 60px;
  padding-bottom: 60px;
  overflow: visible;
}

.about .content {
  padding-right: 20px;
  z-index: 9999;
}

.about .content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about .content li i {
  font-size: 1.6rem;
  margin-right: 5px;
}

@media (max-width: 768px) {
  .about .content h2 {
    font-size: 2rem;
  }
}

.about .content .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.about .content p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

@media (max-width: 992px) {
  .about .content {
    padding-right: 0;
    margin-bottom: 3rem;
  }
}

.about .down {
  position: relative;
  top: 80px;
  right: 80px;
  z-index: 999;
}

.about .down::after,
.about .down::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
}

.about .down::after {
  bottom: 61.5px;
  left: -24px;
  border-bottom-right-radius: 15px;
  box-shadow: 1px 11px #fff;
}

.about .down::before {
  top: -24px;
  left: 36px;
  border-bottom-right-radius: 15px;
  box-shadow: 12px 1px #fff;
}

.about .cta-wrapper {
  display: flex;
  gap: 1rem;
  align-items: center;
}

@media (max-width: 576px) {
  .about .cta-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

}

.about .btn {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.about .btn.btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.about .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.about .btn.btn-outline {
  background-color: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.about .btn.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.about .image-wrapper {
  position: relative;
  padding-left: 20px;
}

@media (max-width: 992px) {
  .about .image-wrapper {
    padding-left: 0;
    margin-top: 2rem;
  }

  .about .down {
    top: 0;
    right: 0;
  }

  .about .down::after,
  .about .down::before {
    box-shadow: none;
  }
}

.about .image-wrapper .main-image {
  border-radius: 20px;
}

.about .image-wrapper .floating-card {
  position: absolute;
  bottom: 75px;
  left: -20px;
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 15px 30px color-mix(in srgb, var(--default-color), transparent 80%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 992px) {
  .about .image-wrapper .floating-card {
    left: 20px;
    bottom: 20px;
    padding: 1rem;
  }
}

@media (max-width: 576px) {
  .about .image-wrapper .floating-card {
    position: static;
    margin-top: 2rem;
  }
}

.about .image-wrapper .floating-card .card-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about .image-wrapper .floating-card .card-content i {
  font-size: 2rem;
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .image-wrapper .floating-card .card-content .text h5 {
  margin: 0 0 0.25rem 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.about .image-wrapper .floating-card .card-content .text span {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

/*--------------------------------------------------------------
# custom-services Section
--------------------------------------------------------------*/

.custom-services-section {
  background: var(--contrast-color);
  position: relative;
  overflow: hidden;
}

.custom-container {
  position: relative;
  z-index: 2;
}

.custom-services-section .custom-sevices-header .accent-text {
  background-color: #006534;
  padding: 5px 10px;
  color: white;
  border-radius: 10px;
}

@media screen and (max-width:500px) {
  .custom-services-section .custom-sevices-header .accent-text {
    background-color: transparent;
    padding: 0;
    color: var(--accent-color);
    border-radius: 0;
  }
}

.custom-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  box-shadow: 0 10px 40px color-mix(in srgb, var(--heading-color), transparent 90%);
}

.custom-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.custom-card:hover .custom-bg-effect {
  opacity: 1;
  transform: scale(1.2) rotate(15deg);
}

.custom-card:hover .custom-icon-box {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 30%));
}

.custom-card:hover .custom-btn-cta {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 30%));
  transform: translateX(5px);
}

.featured-card {
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 95%));
  border: 2px solid var(--accent-color);
  transform: scale(1.02);
}

.featured-card .custom-icon-box {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 20%));
  width: 80px;
  height: 80px;
}

.featured-card .custom-icon-box i {
  font-size: 40px;
}

.featured-card .custom-content-box h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.featured-card .custom-meta-box {
  margin: 25px 0;
}

.compact-card {
  padding: 30px 25px;
}

.compact-card .custom-icon-box {
  width: 60px;
  height: 60px;
}

.compact-card .custom-icon-box i {
  font-size: 28px;
}

.custom-bg-effect {
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 95%));
  border-radius: 50%;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 1;
}

.custom-icon-box {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 10%), var(--accent-color));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.custom-icon-box i {
  font-size: 32px;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.custom-content-box {
  position: relative;
  z-index: 2;
}

.custom-content-box h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.custom-content-box h3 a {
  color: var(--heading-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.custom-content-box h3 a:hover {
  color: var(--accent-color);
}

.custom-content-box p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 15px;
}

.custom-meta-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0 25px;
  flex-wrap: wrap;
}

.custom-badge {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: var(--contrast-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.custom-badge.popular {
  background: linear-gradient(135deg, #28a745, #20c997);
}

.custom-price {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 16px;
}

.custom-btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 10%), var(--accent-color));
  color: var(--contrast-color);
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.custom-btn-cta:hover {
  color: var(--contrast-color);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.custom-btn-cta i {
  transition: all 0.3s ease;
}

.custom-stats-box {
  background: var(--accent-color);
  border-radius: 25px;
  padding: 50px 30px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.custom-stats-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, color-mix(in srgb, var(--accent-color), transparent 90%));
  z-index: 1;
}

.stat-unit {
  text-align: center;
  color: var(--contrast-color);
}

.stat-value {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--contrast-color), color-mix(in srgb, var(--accent-color), var(--contrast-color) 70%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .stat-value {
    font-size: 36px;
  }

  .stat-label {
    font-size: 14px;
  }

  .custom-card,
  .featured-card {
    padding: 30px 25px;
    margin-bottom: 30px;
    transform: none !important;
  }

  .custom-icon-box {
    width: 60px;
    height: 60px;
  }

  .custom-icon-box i {
    font-size: 28px;
  }

  .custom-content-box h3 {
    font-size: 20px;
  }

  .custom-stats-box {
    padding: 40px 20px;
    margin-top: 40px;
  }
}


/* Service page  */

.fs-section {
  position: relative;
}

.fs-content h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: right;
}

@media (max-width: 992px) {
  .fs-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .fs-content h2 {
    font-size: 28px;
  }
}

.fs-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
  text-align: right;
}

.fs-btn {
  display: inline-flex;
  align-items: center;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.fs-btn span {
  margin-right: 8px;
}

.fs-btn i {
  transition: transform 0.3s ease;
}

.fs-btn:hover {
  background-color: color-mix(in srgb, var(--background-color), #b5b4b4 15%);
  color: var(--accent-color);
  border: none;
}

.fs-btn:hover i {
  transform: translateX(5px);
}

.fs-image {
  position: relative;
  height: 380px;
  display: flex;
  justify-content: flex-end;
}

.fs-image img {
  position: relative;
  z-index: 2;
  max-height: 100%;
  object-fit: cover;
}

.fs-circle-shape {
  position: absolute;
  right: -30px;
  top: -30px;
  height: 180px;
  width: 180px;
  background-color: color-mix(in srgb, var(--e-global-color-secondary), transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.fs-accent-shape {
  position: absolute;
  bottom: -30px;
  left: 30px;
  height: 150px;
  width: 150px;
  background-color: color-mix(in srgb, #a855f7, transparent 80%);
  z-index: 1;
  animation: fs-float 5s infinite ease-in-out;
}

@media (max-width: 992px) {
  .fs-image {
    margin-top: 30px;
    height: 300px;
    justify-content: center;
  }
}

@media screen and (max-width:400px) {
  .fs-accent-shape {
    width: 0;
    height: 0;
  }
}

.fs-slider {
  position: relative;
  margin-top: 30px;
  padding-top: 30px;
}

.fs-slider .swiper-wrapper {
  height: auto !important;
}

.fs-section .service-card {
  background-color: #eee;
  padding: 32px;
  border-radius: 16px;
  position: relative;
  transition: all 0.4s;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.fs-section .service-card .icon-box {
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  border-radius: 50%;
  margin-bottom: 20px;
  transition: all 0.4s;
}

.fs-section .service-card .icon-box i {
  font-size: 30px;
  color: var(--contrast-color);
  transition: all 0.4s;
}

.fs-section .service-card .arrow-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  color: var(--accent-color);
  background-color: var(--surface-color);
  border-radius: 50%;
  transform: rotate(-45deg);
  position: absolute;
  right: -50px;
  top: -50px;
  transition: all 0.4s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.fs-section .service-card .content h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.fs-section .service-card .content h4 a {
  color: var(--heading-color);
  transition: all 0.4s;
}

.fs-section .service-card .content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  transition: all 0.4s;
}

.fs-section .service-card .content .service-number {
  position: relative;
  padding-left: 76px;
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 500;
  transition: all 0.4s;
}

.fs-section .service-card .content .service-number::after {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  height: 1px;
  width: 70px;
  background-color: var(--accent-color);
  transition: all 0.4s;
}

/* Hover effects */
.fs-section .service-card:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px);
}

.fs-section .service-card:hover .icon-box {
  background-color: var(--contrast-color);
}

.fs-section .service-card:hover .icon-box i {
  color: var(--accent-color);
}

.fs-section .service-card:hover .arrow-link {
  top: 16px;
  right: 16px;
  background-color: var(--contrast-color);
}

.fs-section .service-card:hover .content h4 a {
  color: var(--contrast-color);
}

.fs-section .service-card:hover .content p {
  color: var(--contrast-color);
}

.fs-section .service-card:hover .content .service-number {
  color: var(--contrast-color);
  padding-left: 0;
}

.fs-section .service-card:hover .content .service-number::after {
  background-color: var(--contrast-color);
  left: 30px;
}

.fs-section .swiper-navigation {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.fs-section .swiper-navigation button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  height: 56px;
  width: 56px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 20px;
  transition: all 0.4s;
  margin-right: 10px;
}

.fs-section .swiper-navigation button:last-child {
  margin-right: 0;
}

.fs-section .swiper-navigation button:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* home page industry  */

.industry .grid-line-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* 404 page  */
.fundo {
  animation: scales 3s alternate infinite;
  transform-origin: center;
}

.olhos {
  animation: olhos 2s alternate infinite;
  transform-origin: center;
}

.left-sparks {
  animation: left-sparks 4s alternate infinite;
  transform-origin: 150px 156px;
}

.right-sparks {
  animation: left-sparks 4s alternate infinite;
  transform-origin: 310px 150px;
}

.olhos {
  animation: olhos 2s alternate infinite;
  transform-origin: center;
}

@keyframes scales {
  from {
    transform: scale(0.98)
  }

  to {
    transform: scale(1)
  }
}

@keyframes rotatepao {
  0% {
    transform: rotate(0deg)
  }

  50%,
  60% {
    transform: rotate(-20deg)
  }

  100% {
    transform: rotate(0deg)
  }

}

@keyframes olhos {
  0% {
    transform: rotateX(0deg);
  }

  100% {
    transform: rotateX(30deg);
  }
}

@keyframes left-sparks {
  0% {
    opacity: 0;
  }

}


.main {
  min-height: 450px;
  margin: 0px auto;
  width: auto;
  max-width: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.path {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: dash 2s alternate infinite;
}

@keyframes dash {

  0%,
  30% {
    fill: 4B4B62;
    stroke-dashoffset: 0;
  }

  80%,
  100% {
    fill: transparent;
    stroke-dashoffset: -200;
  }
}

.main {
  margin-top: 100px;
}

/* text_containe */
.contain {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  margin: 0px auto;
}

.text_contain {
  text-align: center;
  align-items: center;
  margin-bottom: 10%;
}

@media screen and (max-width: 992px) {
  .contain {
    width: 90%;
  }

}

@media screen and (max-width: 475px) {
  .main {
    margin-bottom: 0px;
  }

  .industry .grid-line-2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}