/**
* Template Name: C.o.m.p.a.n.y
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Alata&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
:root {
  --default-font: "Nunito Sans",  sans-serif;
  --heading-font: "Alata",  sans-serif;
  --nav-font: "Alata",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #333; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #111111; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #FF7722; /* 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: #ffffff; /* 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: #444444;  /* The default color of the main navmenu links */
  --nav-hover-color: #FF7722; /* 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: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #FF7722; /* 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: #f7f7f7;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #FF7722;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #2ae149;
  --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);
}

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);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 70px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 26px;
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--heading-color);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 26px;
  font-weight: 700;
}

.header .header-social-links {
  padding: 0 0 0 15px;
}

.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 10px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}

.header .header-social-links a:hover {
  color: var(--accent-color);
}

.header .header-social-links a i {
  line-height: 0px;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .logo h1 {
    font-size: 24px;
  }

  .header .header-social-links {
    order: 2;
    padding: 0 15px 0 0;
  }

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-family: var(--nav-font);
    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;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .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: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .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 {
    color: var(--nav-dropdown-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>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* 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;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.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 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.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;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  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 .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--surface-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: calc(100vh - 75px);
  padding: 0;
  margin: 0;
  position: relative;
}

@media (max-height: 500px),
(max-width: 1200px) {
  .hero .carousel {
    min-height: calc(100vh - 48px);
  }
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero .container {
  background: color-mix(in srgb, var(--surface-color), transparent 40%);
  position: relative;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 50px;
  border-top: 4px solid var(--accent-color);
  z-index: 3;
}

@media (max-width: 1200px) {
  .hero .container {
    margin-left: 50px;
    margin-right: 50px;
  }
}

.hero h2 {
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero .btn-get-started {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  transition: 0.5s;
  margin: 10px;
  border-radius: 4px;
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.hero .btn-get-started:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 50px;
  color: var(--contrast-color);
  transition: 0.3s;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

.hero .carousel-control-prev:hover .carousel-control-next-icon,
.hero .carousel-control-prev:hover .carousel-control-prev-icon,
.hero .carousel-control-next:hover .carousel-control-next-icon,
.hero .carousel-control-next:hover .carousel-control-prev-icon {
  background: var(--accent-color);
  color: var(--default-color);
}

.hero .carousel-indicators li {
  cursor: pointer;
  background: var(--default-color);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

.hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--accent-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .inner-title {
  margin: 30px 0;
}
.about .inner-title span {
  display: block;
  color: #FF7722;
  font-weight: 600;
}

@media (min-width: 991px) {
  .about .inner-title {
    max-width: 65%;
    margin: 0 0 30px 0;
  }
}

.about .our-story {
  padding: 40px;
  background-color: #f6f6f6;
}

@media (min-width: 991px) {
  .about .our-story {
    padding-right: 25%;
  }
}

.about .our-story h4 {
  text-transform: uppercase;
  font-size: 1.1rem;
  color: #FF9933;
}

.about .our-story h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .our-story p:last-child {
  margin-bottom: 0;
}

.about ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.about ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 1.25rem;
  margin-right: 0.5rem;
  line-height: 1.2;
  color: var(--accent-color);
}

.about .watch-video i {
  font-size: 2rem;
  transition: 0.3s;
  color: var(--accent-color);
}

.about .watch-video a {
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-left: 8px;
  transition: 0.3s;
}

.about .watch-video:hover a {
  color: var(--accent-color);
}

.about .about-img {
  min-height: 400px;
  position: relative;
}

@media (min-width: 992px) {
  .about .about-img {
    position: absolute;
    top: 0;
    right: 0;
    min-height: 600px;
  }
}

.about .about-img img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .service-item .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .service-item .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .service-item .icon svg path {
  transition: 0.5s;
  fill: color-mix(in srgb, var(--default-color), transparent 95%);
}

.services .service-item h3 {
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.1);
}

.services .service-item.item-cyan i {
  color: #0dcaf0;
}

.services .service-item.item-cyan:hover .icon i {
  color: #fff;
}

.services .service-item.item-cyan:hover .icon path {
  fill: #0dcaf0;
}

.services .service-item.item-orange i {
  color: #fd7e14;
}

.services .service-item.item-orange:hover .icon i {
  color: #fff;
}

.services .service-item.item-orange:hover .icon path {
  fill: #fd7e14;
}

.services .service-item.item-teal i {
  color: #20c997;
}

.services .service-item.item-teal:hover .icon i {
  color: #fff;
}

.services .service-item.item-teal:hover .icon path {
  fill: #20c997;
}

.services .service-item.item-red i {
  color: #df1529;
}

.services .service-item.item-red:hover .icon i {
  color: #fff;
}

.services .service-item.item-red:hover .icon path {
  fill: #df1529;
}

.services .service-item.item-indigo i {
  color: #6610f2;
}

.services .service-item.item-indigo:hover .icon i {
  color: #fff;
}

.services .service-item.item-indigo:hover .icon path {
  fill: #6610f2;
}

.services .service-item.item-pink i {
  color: #f3268c;
}

.services .service-item.item-pink:hover .icon i {
  color: #fff;
}

.services .service-item.item-pink:hover .icon path {
  fill: #f3268c;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .clients-wrap {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.clients .client-logo {
  background-color: var(--surface-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  overflow: hidden;
}

.clients .client-logo img {
  padding: 50px;
  max-width: 80%;
  transition: 0.3s;
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 30px;
    max-width: 50%;
  }
}

.clients .client-logo:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 5px;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: var(--heading-color);
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a i {
  line-height: 0;
}

.team .team-member .social a:hover {
  color: var(--accent-color);
}

.team .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .team-member .member-info {
  padding: 25px 15px;
  text-align: center;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  position: relative;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.features .features-item i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 0;
}

.features .features-item h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .features-item h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features .features-item:hover {
  border-color: var(--accent-color);
}

.features .features-item:hover h3 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

.portfolio-details .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 40px 40px;
  height: 100%;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  color: var(--accent-color);
  font-size: 48px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 500;
}

.pricing .description {
  font-size: 14px;
}

.pricing .cta-btn {
  border: 1px solid var(--default-color);
  color: var(--default-color);
  display: block;
  text-align: center;
  padding: 10px 35px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  margin-top: 20px;
  margin-bottom: 6px;
}

.pricing .cta-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul li:last-child {
  padding-bottom: 0;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .featured {
  position: relative;
}

.pricing .featured .popular {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 15px 6px 15px;
  margin: 0;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
}

.pricing .featured .cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.blog-posts .post-img img {
  transition: 0.5s;
}

.blog-posts .post-date {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  right: 0;
  bottom: 0;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.blog-posts .post-content {
  padding: 30px;
}

.blog-posts .post-title {
  font-size: 20px;
  transition: 0.3s;
  margin-bottom: 15px;
}

.blog-posts .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.blog-posts .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts p {
  margin-top: 20px;
}

.blog-posts hr {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-bottom: 15px;
}

.blog-posts .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.blog-posts .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.blog-posts article:hover .post-title,
.blog-posts article:hover .readmore {
  color: var(--accent-color);
}

.blog-posts article:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding-top: 0;
}

.contact .info {
  background-color: var(--surface-color);
  padding: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact .info h3 {
  font-weight: 600;
  font-size: 24px;
}

.contact .info p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 30px;
  font-size: 15px;
}

.contact .info-item+.info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .info-item i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 0px;
  box-shadow: none;
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email] {
  height: 48px;
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
  height: 290px;
}

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 13px 50px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.blog-author-widget img {
  max-width: 160px;
}

.blog-author-widget h4 {
  font-weight: 600;
  font-size: 24px;
  margin: 15px 0 0 0;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author-widget .social-links {
  margin: 5px 0;
}

.blog-author-widget .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin: 0 3px;
  font-size: 18px;
}

.blog-author-widget .social-links a:hover {
  color: var(--accent-color);
}

.blog-author-widget p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 10px 0 0 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.recent-posts-widget .post-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}



/* Megamenu 2 - Desktop */
@media (min-width: 1200px) {
  .navmenu .megamenu-2 {
    position: static;
    /* Hide Mobile Megamenu in Desktop */
    /* Tab Navigation */
    /* Tab Content */
  }

  .navmenu .megamenu-2 .mobile-megamenu {
    display: none;
  }

  .navmenu .megamenu-2 .desktop-megamenu {
    background-color: var(--nav-dropdown-background-color);
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    border-radius: 6px;
    z-index: 99;
    padding: 0;
    display: flex;
    max-height: 80vh;
    overflow: hidden;
  }

  .navmenu .megamenu-2:hover>.desktop-megamenu {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .megamenu-2 .tab-navigation {
    width: 250px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 25px 0;
    flex-shrink: 0;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs {
    border: none;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item {
    width: 100%;
    padding-left: 10px;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border: none;
    width: 100%;
    background: transparent;
    transition: all 0.3s;
    border-left: 3px solid transparent;
    border-radius: 0;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
    padding-left: 25px;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link.active {
    background-color: var(--surface-color);
    border-left-color: var(--accent-color);
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link.active i {
    color: var(--accent-color);
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link.active span {
    color: var(--accent-color);
    font-weight: 600;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link i {
    font-size: 20px;
    transition: 0.3s;
    flex-shrink: 0;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link span {
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
  }

  .navmenu .megamenu-2 .tab-content {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
    /* Content Grid Layout */
    /* Featured Banner */
    /* Resources Layout */
  }

  .navmenu .megamenu-2 .tab-content .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
    align-items: start;
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section h4 {
    color: var(--heading-color);
    font-size: 16px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    transform: translateX(8px);
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link:hover i {
    color: var(--accent-color);
    transform: scale(1.1);
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link i {
    color: color-mix(in srgb, var(--nav-dropdown-color), transparent 20%);
    font-size: 18px;
    transition: all 0.3s;
    min-width: 18px;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link div {
    flex: 1;
    min-width: 0;
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link div span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
    line-height: 1.3;
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link div small {
    color: color-mix(in srgb, var(--nav-dropdown-color), transparent 40%);
    font-size: 12px;
    line-height: 1.3;
    display: block;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner {
    background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info {
    flex: 1;
    min-width: 0;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info h5 {
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.3;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info p {
    color: var(--nav-dropdown-color);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info .cta-btn {
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info .cta-btn:hover {
    color: color-mix(in srgb, var(--accent-color), black 15%);
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info .cta-btn:hover i {
    transform: translateX(4px);
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info .cta-btn i {
    transition: 0.3s;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: start;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category {
    background-color: var(--surface-color);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    transition: all 0.3s;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
    border-color: var(--accent-color);
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category i {
    color: var(--accent-color);
    font-size: 24px;
    margin-bottom: 15px;
    display: block;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category h5 {
    color: var(--heading-color);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category p {
    color: var(--nav-dropdown-color);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category .resource-link {
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category .resource-link:hover {
    color: color-mix(in srgb, var(--accent-color), black 15%);
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category .resource-link:hover i {
    transform: translateX(3px);
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category .resource-link i {
    transition: 0.3s;
  }
}

/* Megamenu 2 - Mobile */
@media (max-width: 1199px) {
  .navmenu .megamenu-2 {
    /* Hide Desktop Megamenu in Mobile */
  }

  .navmenu .megamenu-2 .desktop-megamenu {
    display: none;
  }

  .navmenu .megamenu-2 .mobile-megamenu {
    position: static;
    display: none;
    z-index: 99;
    padding: 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;
    border-radius: 6px;
    overflow: hidden;
  }

  .navmenu .megamenu-2 .mobile-megamenu li {
    position: relative;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu .megamenu-2 .mobile-megamenu li:last-child {
    border-bottom: none;
  }

  .navmenu .megamenu-2 .mobile-megamenu li a {
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--nav-dropdown-color);
    font-size: 15px;
    transition: 0.3s;
    font-weight: 500;
  }

  .navmenu .megamenu-2 .mobile-megamenu li a:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  }

  .navmenu .megamenu-2 .mobile-megamenu li ul {
    padding: 0;
    background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  }

  .navmenu .megamenu-2 .mobile-megamenu li ul li a {
    padding-left: 35px;
    font-size: 14px;
    font-weight: 400;
  }

  .navmenu .megamenu-2 .mobile-megamenu.dropdown-active {
    display: block;
  }
}

/* Extended Dropdown 2 - Desktop */
@media (min-width: 1200px) {
  .extended-dropdown-2 ul {
    min-width: 380px;
    padding: 12px;
    border-radius: 14px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
    background-color: color-mix(in srgb, var(--nav-dropdown-background-color), transparent 5%);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .extended-dropdown-2 ul li {
    min-width: auto;
    border-bottom: none;
  }

  .extended-dropdown-2 ul li:not(:last-child) {
    margin-bottom: 6px;
  }

  .extended-dropdown-2 ul a {
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: var(--nav-dropdown-color);
    transition: all 0.25s ease;
    border-radius: 10px;
    background-color: transparent;
    position: relative;
  }

  .extended-dropdown-2 ul a .menu-item-content {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
  }

  .extended-dropdown-2 ul a .menu-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  .extended-dropdown-2 ul a .menu-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #7644ff 80%));
    opacity: 0.15;
    z-index: -1;
    transition: all 0.3s ease;
  }

  .extended-dropdown-2 ul a .menu-icon i {
    font-size: 18px;
    color: var(--accent-color);
    margin: 0;
    transition: all 0.3s ease;
  }

  .extended-dropdown-2 ul a .menu-text {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .extended-dropdown-2 ul a .menu-text .menu-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 3px;
    color: var(--nav-dropdown-color);
    transition: color 0.3s ease;
  }

  .extended-dropdown-2 ul a .menu-text .menu-description {
    font-size: 13px;
    color: color-mix(in srgb, var(--nav-dropdown-color), transparent 40%);
    font-weight: 400;
    transition: color 0.3s ease;
  }

  .extended-dropdown-2 ul a .menu-badge {
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color);
    margin-left: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }

  .extended-dropdown-2 ul a .menu-badge.hot {
    background-color: color-mix(in srgb, #ff5722, transparent 85%);
    color: #ff5722;
  }

  .extended-dropdown-2 ul a .menu-badge.updates {
    background-color: color-mix(in srgb, #4caf50, transparent 85%);
    color: #4caf50;
    min-width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
  }

  .extended-dropdown-2 ul a:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  }

  .extended-dropdown-2 ul a:hover .menu-icon {
    transform: translateY(-2px);
  }

  .extended-dropdown-2 ul a:hover .menu-icon::before {
    opacity: 0, 3;
    box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 75%);
  }

  .extended-dropdown-2 ul a:hover .menu-icon i {
    color: color-mix(in srgb, var(--accent-color), #000000 10%);
  }

  .extended-dropdown-2 ul a:hover .menu-text .menu-title {
    color: var(--nav-dropdown-hover-color);
  }

  .extended-dropdown-2 ul a:hover .menu-text .menu-description {
    color: color-mix(in srgb, var(--nav-dropdown-hover-color), transparent 30%);
  }

  .extended-dropdown-2 ul a:hover .menu-badge {
    transform: scale(1.05);
  }

  .extended-dropdown-2 ul a:hover .menu-badge:not(.hot):not(.updates) {
    background-color: color-mix(in srgb, var(--accent-color), transparent 75%);
  }

  .extended-dropdown-2 ul a:hover .menu-badge.hot {
    background-color: color-mix(in srgb, #ff5722, transparent 75%);
  }

  .extended-dropdown-2 ul a:hover .menu-badge.updates {
    background-color: color-mix(in srgb, #4caf50, transparent 75%);
  }
}

/* Extended Dropdown 2 - Mobile */
@media (max-width: 1199px) {
  .extended-dropdown-2 ul {
    background-color: var(--nav-mobile-background-color);
    border-radius: 10px;
    padding: 10px;
  }

  .extended-dropdown-2 ul li:not(:last-child) {
    margin-bottom: 5px;
  }

  .extended-dropdown-2 ul a {
    padding: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .extended-dropdown-2 ul a .menu-item-content {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .extended-dropdown-2 ul a .menu-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  .extended-dropdown-2 ul a .menu-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #7644ff 80%));
    opacity: 0.15;
    z-index: -1;
  }

  .extended-dropdown-2 ul a .menu-icon i {
    font-size: 16px;
    color: var(--accent-color);
    margin: 0;
  }

  .extended-dropdown-2 ul a .menu-text {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .extended-dropdown-2 ul a .menu-text .menu-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
  }

  .extended-dropdown-2 ul a .menu-text .menu-description {
    font-size: 12px;
    color: color-mix(in srgb, var(--nav-dropdown-color), transparent 40%);
  }

  .extended-dropdown-2 ul a .menu-badge {
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color);
    margin-left: 10px;
    flex-shrink: 0;
  }

  .extended-dropdown-2 ul a .menu-badge.hot {
    background-color: color-mix(in srgb, #ff5722, transparent 85%);
    color: #ff5722;
  }

  .extended-dropdown-2 ul a .menu-badge.updates {
    background-color: color-mix(in srgb, #4caf50, transparent 85%);
    color: #4caf50;
    min-width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
  }

  .extended-dropdown-2 ul a:hover,
  .extended-dropdown-2 ul a:active {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  }

  .extended-dropdown-2 ul a:hover .menu-text .menu-title,
  .extended-dropdown-2 ul a:active .menu-text .menu-title {
    color: var(--nav-dropdown-hover-color);
  }

  .extended-dropdown-2 ul .active {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  }

  .extended-dropdown-2 ul .active .menu-title {
    color: var(--nav-dropdown-hover-color);
  }
}


/* =========================
   SERVICES SECTION
========================= */

.services-redesign {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}


/* =========================
   LEFT FEATURED SERVICE
========================= */

.featured-service {
    min-height: 500px;
    position: relative;
    overflow: hidden;

    border-radius: 0;
    padding: 45px;

    background: radial-gradient( circle at 85% 20%, rgba(255,255,255,.22), transparent 28% ), linear-gradient( 145deg, #F72, #F93 55%, #F4C430 );
    background:    radial-gradient(
            circle at 85% 20%,
            rgba(255,255,255,.22),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #087f98,
            #08aab4 55%,
            #36c5bc
        );

    color: #fff;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    box-shadow: 0 20px 50px rgba(0, 120, 145, .18);
}

.featured-number {
    position: absolute;
    right: 25px;
    top: 10px;

    font-size: 110px;
    font-weight: 800;

    color: rgba(255,255,255,.12);
    line-height: 1;
}

.featured-icon {
    width: 75px;
    height: 75px;

    border-radius: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.25);

    backdrop-filter: blur(10px);

    font-size: 34px;

    position: relative;
    z-index: 2;
}

.featured-content {
    position: relative;
    z-index: 3;

    max-width: 500px;
}

.service-label {
    display: block;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    opacity: .8;

    margin-bottom: 14px;
}

.featured-content h2 {
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1;
    letter-spacing: -2px;

    margin-bottom: 22px;
}

.featured-content h2 span {
    display: block;
    color: #dfffff;
}

.featured-content p {
    max-width: 470px;

    font-size: 16px;
    line-height: 1.7;

    color: rgba(255,255,255,.88);

    margin-bottom: 28px;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    padding: 14px 20px;

    color: #087f98;
    background: #fff;

    border-radius: 12px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: .3s ease;
}

.service-btn span {
    width: 28px;
    height: 28px;

    border-radius: 50%;

    background: #edf6f6;

    display: flex;
    align-items: center;
    justify-content: center;
}

.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
    color: #08aab4;
}


/* =========================
   DECORATIVE SEO ELEMENTS
========================= */

.featured-decoration {
    position: absolute;

    right: -35px;
    bottom: -35px;

    width: 230px;
    height: 230px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.2);
}

.featured-decoration::before {
    content: "";

    position: absolute;

    inset: 25px;

    border-radius: 50%;

    border: 1px dashed rgba(255,255,255,.3);
}

.featured-decoration span {
    position: absolute;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    border-radius: 14px;

    background: rgba(255,255,255,.16);
    backdrop-filter: blur(8px);

    font-size: 17px;
    font-weight: 700;
}

.featured-decoration span:nth-child(1) {
    left: 78px;
    top: 85px;

    font-size: 20px;
}

.featured-decoration span:nth-child(2) {
    right: 10px;
    top: 40px;
}

.featured-decoration span:nth-child(3) {
    left: 20px;
    bottom: 35px;
}


/* =========================
   RIGHT 2 x 2 GRID
========================= */

.services-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 0;
}


/* =========================
   SERVICE CARD
========================= */

.service-card {
    position: relative;
    overflow: hidden;

    min-height: 238px;

    border-radius: 0;

    padding: 28px;

    background: #fff;

    border: 1px solid #e8eef2;

    box-shadow: 0 12px 35px rgba(30,60,80,.08);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.service-card:hover {
    transform: translateY(-7px);

    box-shadow: 0 20px 40px rgba(30,60,80,.14);
}

.service-card::after {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    border-radius: 50%;

    right: -55px;
    bottom: -60px;

    opacity: .13;
}


/* CARD COLORS */

.service-web::after {
    background: #ffbd21;
}

.service-app::after {
    background: #00aaa8;
}

.service-digital::after {
    background: #ff613b;
}

.service-ppc::after {
    background: #7058d5;
}


/* =========================
   CARD TOP
========================= */

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 22px;
}

.card-icon {
    width: 55px;
    height: 55px;

    border-radius: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f3f8fa;

    font-size: 25px;
}

.card-number {
    font-size: 45px;
    line-height: 1;

    font-weight: 800;

    color: #e8edf0;
}


/* =========================
   CARD CONTENT
========================= */

.service-card h3 {
    position: relative;
    z-index: 2;

    font-size: 21px;
    line-height: 1.15;

    color: #14213d;

    margin-bottom: 12px;
}

.service-card p {
    position: relative;
    z-index: 2;

    font-size: 13px;
    line-height: 1.55;

    color: #697782;

    margin-bottom: 18px;
}

.service-card a {
    position: relative;
    z-index: 3;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    color: #079ca9;

    transition: .25s ease;
}

.service-card a span {
    transition: .25s ease;
}

.service-card a:hover span {
    transform: translateX(5px);
}


/* =========================
   INDIVIDUAL ICON COLORS
========================= */

.service-web .card-icon {
    color: #d49a00;
    background: #fff8df;
}

.service-app .card-icon {
    color: #009c9c;
    background: #e1fafa;
}

.service-digital .card-icon {
    color: #ed5835;
    background: #fff0eb;
}

.service-ppc .card-icon {
    color: #6650c4;
    background: #f0edff;
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .services-redesign {
        grid-template-columns: 1fr;
    }

    .featured-service {
        min-height: 430px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .services-redesign {
        padding: 20px 15px;
        gap: 16px;
    }

    .featured-service {
        min-height: 430px;
        padding: 30px;
        border-radius: 22px;
    }

    .featured-content h2 {
        font-size: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        min-height: 210px;
    }

}

/* =========================
   COLORFUL SERVICE CARDS
   DESIGN / LAYOUT UNCHANGED
========================= */

.service-card {
    position: relative;
    overflow: hidden;

    min-height: 238px;
    border-radius: 0;

    padding: 28px;

    color: #fff;

    border: none;

    box-shadow: 0 12px 35px rgba(30,60,80,.12);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.service-card:hover {
    transform: translateY(-7px);

    box-shadow: 0 20px 40px rgba(30,60,80,.18);
}


/* =========================
   INDIVIDUAL CARD COLORS
========================= */
/* Web Development */
.service-web {
    background: linear-gradient(
        145deg,
        #f6b91a 0%,
        #ffd95c 100%
    );
}

/* Mobile App Development */
.service-app {
    background: linear-gradient(
        145deg,
        #20b7b5 0%,
        #42cdb8 100%
    );
}

/* Digital Marketing */
.service-digital {
    background: linear-gradient(
        145deg,
        #f45127 0%,
        #ff794d 100%
    );
}

/* Pay Per Click */
.service-ppc {
    background: linear-gradient(
        145deg,
        #6750c7 0%,
        #8470df 100%
    );
}


/* =========================
   DECORATIVE CIRCLES
========================= */

.service-card::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    border-radius: 50%;

    right: -55px;
    bottom: -65px;

    background: rgba(255,255,255,.18);

    opacity: 1;

    pointer-events: none;
}


/* =========================
   CARD TOP
========================= */

.card-number {
    font-size: 45px;
    line-height: 1;

    font-weight: 800;

    color: rgba(255,255,255,.25);
}

.card-icon {
    width: 55px;
    height: 55px;

    border-radius: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.95);

    font-size: 25px;

    box-shadow: 0 6px 15px rgba(0,0,0,.08);
}


/* =========================
   ICON COLORS
========================= */

.service-web .card-icon {
    color: #d49a00;
}

.service-app .card-icon {
    color: #009c9c;
}

.service-digital .card-icon {
    color: #ed5835;
}

.service-ppc .card-icon {
    color: #6650c4;
}


/* =========================
   CARD TEXT
========================= */

.service-card h3 {
    position: relative;
    z-index: 2;

    font-size: 21px;
    line-height: 1.15;

    color: #fff;

    margin-bottom: 12px;
}

.service-card p {
    position: relative;
    z-index: 2;

    font-size: 13px;
    line-height: 1.55;

    color: rgba(255,255,255,.9);

    margin-bottom: 18px;
}

.service-card a {
    position: relative;
    z-index: 3;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    color: #fff;
}

.service-card a span {
    transition: .25s ease;
}

.service-card a:hover span {
    transform: translateX(5px);
}



/* =========================================
   STATS SECTION
========================================= */

.stats-section {
    width: 100%;
    padding-bottom: 30px;
}


/* =========================================
   MAIN BACKGROUND
========================================= */

.stats-container {
    max-width: 1400px;
    margin: auto;

    position: relative;
    overflow: hidden;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;

    padding: 50px 15px 30px;
}


/* =========================================
   CARDS
========================================= */

.stat-card {
    position: relative;
    z-index: 3;
    border-radius: 24px;

    padding: 50px 25px 30px;

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, .42);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border: 1.5px solid;

    box-shadow:
        0 15px 35px rgba(50, 80, 100, .06);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


/* =========================================
   LIGHT CARD COLORS
========================================= */

/* Blue */
.blue-card {
    background:
        linear-gradient(
            145deg,
            rgba(235, 248, 255, .95),
            rgba(220, 241, 255, .72)
        );

    border-color: rgba(40, 145, 245, .55);

    color: #0874dc;
}


/* Green */
.green-card {
    background:
        linear-gradient(
            145deg,
            rgba(237, 253, 248, .95),
            rgba(216, 248, 238, .72)
        );

    border-color: rgba(25, 190, 150, .50);

    color: #08a983;
}


/* Purple */
.purple-card {
    background:
        linear-gradient(
            145deg,
            rgba(248, 242, 255, .95),
            rgba(238, 225, 255, .72)
        );

    border-color: rgba(130, 75, 225, .50);

    color: #6937ca;
}


/* Orange */
.orange-card {
    background:
        linear-gradient(
            145deg,
            rgba(255, 249, 241, .96),
            rgba(255, 235, 215, .75)
        );

    border-color: rgba(255, 145, 45, .55);

    color: #ef7800;
}


/* =========================================
   CARD HOVER
========================================= */

.stat-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 22px 45px rgba(50, 80, 100, .12);
}


/* =========================================
   ICON CIRCLE
========================================= */

.stat-icon {
    position: absolute;

    width: 90px;
    height: 90px;

    left: 50%;
    top: -58px;

    transform: translateX(-50%);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.96);

    font-size: 36px;

    border: 1px solid rgba(255,255,255,.9);

    box-shadow:
        0 12px 30px rgba(40, 70, 90, .12);

    z-index: 5;
}


/* =========================================
   NUMBER
========================================= */

.stat-number {
    position: relative;
    z-index: 4;

    font-size: clamp(38px, 3vw, 62px);

    line-height: 1;
    margin-bottom: 15px;
    font-family: var(--heading-font);
}


/* =========================================
   TITLE
========================================= */

.stat-title {
    position: relative;
    z-index: 4;

    font-size: 18px;

    font-weight: 600;

    line-height: 1.3;

    color: #333;
}


/* =========================================
   LINE
========================================= */

.stat-line {
    position: relative;
    z-index: 4;

    width: 190px;
    height: 2px;

    margin-top: 25px;

    background: currentColor;

    opacity: .45;
}

.stat-line::before,
.stat-line::after {
    content: "";

    position: absolute;

    top: -3px;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: currentColor;
}

.stat-line::before {
    left: 0;
}

.stat-line::after {
    right: 0;
}

.stat-line span {
    position: absolute;

    width: 60px;
    height: 6px;

    top: -2px;
    left: 50%;

    transform: translateX(-50%);

    border-radius: 10px;

    background: currentColor;

    opacity: 1;
}


/* =========================================
   DOTS
========================================= */

.stat-dots {
    position: relative;
    z-index: 4;

    display: flex;

    gap: 10px;

    margin-top: 22px;
}

.stat-dots i {
    display: block;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: currentColor;

    opacity: .25;
}

.stat-dots i:nth-child(2) {
    opacity: .9;
}


/* =========================================
   DECORATIVE CARD CIRCLES
========================================= */

.stat-card::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -65px;
    bottom: -70px;

    border-radius: 50%;

    border: 1px solid currentColor;

    opacity: .12;

    box-shadow:
        -25px -15px 0 -24px currentColor,
        -50px -30px 0 -49px currentColor;

    pointer-events: none;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .stats-section {
        padding: 30px 15px;
    }

    .stats-container {
        grid-template-columns: 1fr;

        gap: 75px;

        padding: 70px 20px 35px;
    }

    .stat-card {
        min-height: 300px;
    }

    .stat-number {
        font-size: 55px;
    }

}

@media (min-width: 1200px) {
  .container{
    max-width: 1200px;
  }
}


/* =========================================
   SERVICES 2
========================================= */

.services2-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 55px;
}


.services2-tag {
    display: inline-block;

    padding: 8px 15px;

    border-radius: 30px;

    background: #fff8f4;

    color: #FF9933;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}


.services2-header h1 {
    margin: 18px 0 0;
}


.services2-header h1 span {
    display: block;
    color: #FF7722;
    font-weight: 600;
}


.services2-header > p {
    max-width: 450px;

    margin: 0;
    font-size: 16px;

    line-height: 1.7;
}


/* =========================================
   GRID
========================================= */

.services2-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}


/* =========================================
   CARD
========================================= */

.services2-box {
    position: relative;

    min-height: 360px;

    padding: 32px;

    border-radius: 25px;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid rgba(20, 40, 60, .07);

    box-shadow:
        0 12px 35px rgba(30, 60, 90, .07);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}


.services2-box:hover {
    transform: translateY(-8px);

    box-shadow:
        0 25px 50px rgba(30, 60, 90, .13);
}


.services2-box::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -90px;
    bottom: -90px;

    border-radius: 50%;

    background: var(--services2-color);

    opacity: .08;

    transition: .35s ease;
}


.services2-box:hover::after {
    transform: scale(1.4);

    opacity: .13;
}


/* =========================================
   TOP
========================================= */

.services2-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 30px;
}


.services2-number {
    font-size: 14px;

    font-weight: 800;

    color: var(--services2-color);

    letter-spacing: 1px;
}


.services2-icon {
    width: 75px;
    height: 75px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 20px;

    background: var(--services2-icon-bg);

    border: 1px solid var(--services2-icon-border);

    transition: .35s ease;
}


.services2-box:hover .services2-icon {
    transform: rotate(-5deg) scale(1.08);
}


.services2-icon img {
    width: 52px;
    height: 52px;

    object-fit: contain;
}


/* =========================================
   CONTENT
========================================= */

.services2-box h3 {
    position: relative;

    z-index: 2;

    margin: 0 0 15px;

    color: #182234;

    font-size: 23px;

    line-height: 1.2;
}


.services2-box p {
    position: relative;

    z-index: 2;

    margin: 0 0 25px;

    font-size: 15px;

    line-height: 1.6;
}


/* =========================================
   LINK
========================================= */

.services2-link {
    position: relative;

    z-index: 3;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--services2-color);

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;
}


.services2-link span {
    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--services2-icon-bg);

    transition: .3s ease;
}


.services2-link:hover span {
    transform: translateX(5px);
}


/* =========================================
   COLOR THEMES
========================================= */

.services2-blue {
    --services2-color: #087edc;
    --services2-icon-bg: #e8f6ff;
    --services2-icon-border: #ccecff;
}


.services2-yellow {
    --services2-color: #d99a00;
    --services2-icon-bg: #fff8df;
    --services2-icon-border: #ffe9a6;
}


.services2-purple {
    --services2-color: #7650d5;
    --services2-icon-bg: #f2edff;
    --services2-icon-border: #ded2ff;
}


.services2-green {
    --services2-color: #0ca987;
    --services2-icon-bg: #e6faf4;
    --services2-icon-border: #c6f0e3;
}


.services2-orange {
    --services2-color: #ed701d;
    --services2-icon-bg: #fff0e6;
    --services2-icon-border: #ffd8bd;
}


.services2-pink {
    --services2-color: #d54d91;
    --services2-icon-bg: #fff0f7;
    --services2-icon-border: #ffd5e9;
}
.services2-section {
  background: radial-gradient( circle at 10% 20%, #fff8f4, transparent 25% ), radial-gradient( circle at 90% 80%, #fff8f4, transparent 25% ), #f8fafc;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1050px) {

    .services2-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services2-header {
        align-items: flex-start;

        flex-direction: column;
    }

}


@media (max-width: 650px) {

    .services2-section {
        padding: 60px 16px;
    }

    .services2-grid {
        grid-template-columns: 1fr;
    }

    .services2-box {
        min-height: auto;

        padding: 28px;
    }

    .services2-header h2 {
        font-size: 42px;
    }

}



/* =========================================
   HERO 2 SECTION
========================================= */

.hero2-section {
    position: relative;
    overflow: hidden;
}


/* =========================================
   BACKGROUND DECORATION
========================================= */

.hero2-section::before {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    left: -220px;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background: #fff8f4;

    pointer-events: none;
}


.hero2-section::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    right: -120px;
    top: 70px;

    border-radius: 50%;

    border: 45px solid rgba(75, 185, 195, .05);

    pointer-events: none;
}


/* =========================================
   CONTAINER
========================================= */

.hero2-container {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    align-items: center;

    gap: 70px;
}


/* =========================================
   LEFT CONTENT
========================================= */

.hero2-content {
    padding: 20px 0;
}


.hero2-badge {
    display: inline-flex;

    align-items: center;

    padding: 9px 17px;

    border-radius: 30px;

    background: #fff8f4;

    color: #FF9933;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


.hero2-content h1 {
    margin: 20px 0 0;

    max-width: 650px;
    letter-spacing: -1px;
}


.hero2-content h1 span {
    display: block;
  font-weight: 600;
    color: #FF7722;
}


/* =========================================
   TITLE LINE
========================================= */

.hero2-title-line {
    display: flex;

    align-items: center;

    gap: 10px;

    margin: 25px 0;
}


.hero2-title-line span {
    display: block;

    height: 3px;

    border-radius: 5px;

    background: #FF7722;
}


.hero2-title-line span:first-child {
    width: 30px;
}


.hero2-title-line span:last-child {
    width: 100px;

    opacity: .55;
}


/* =========================================
   DESCRIPTION
========================================= */

.hero2-description {
    max-width: 620px;

    margin: 0;

    color: #68717b;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================
   HIGHLIGHTS
========================================= */

.hero2-highlights {
    display: grid;

    grid-template-columns: repeat(2, auto);

    gap: 13px 25px;

    margin-top: 25px;
}


.hero2-highlight {
    display: flex;

    align-items: center;

    gap: 9px;

    color: #4c5661;

    font-size: 13px;

    font-weight: 600;
}


.hero2-check {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    border-radius: 50%;

    background: #fff8f4;

    color: #FF9933;

    font-size: 12px;

    font-weight: 800;
}


/* =========================================
   BUTTONS
========================================= */

.hero2-buttons {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 32px;
}


.hero2-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    min-width: 165px;

    padding: 15px 22px;

    border-radius: 50px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}


.hero2-btn span {
    font-size: 18px;

    transition: transform .3s ease;
}


.hero2-btn:hover {
    transform: translateY(-3px);
}


.hero2-btn:hover span {
    transform: translateX(4px);
}


/* PRIMARY */

.hero2-btn-primary {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #FF9933,
            #FF7722
        );

    box-shadow:
        0 12px 25px rgba(255, 147, 48, 0.38);
}


.hero2-btn-primary:hover {
    box-shadow:
        0 16px 30px rgba(255, 147, 48, 0.48);
}


/* OUTLINE */

.hero2-btn-outline {
    color: #303842;

    background: #ffffff;

    border: 1px solid #dce3e7;
}


.hero2-btn-outline:hover {
    border-color: #42bfc2;

    color: #27a7ae;
}


/* =========================================
   TRUST
========================================= */

.hero2-trust {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 30px;
}


.hero2-avatars {
    display: flex;

    align-items: center;
}


.hero2-avatars span {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    margin-left: -6px;

    border-radius: 50%;

    border: 2px solid #ffffff;

    background: #fff8f4;

    color: #FF7722;

    font-size: 12px;
}


.hero2-avatars span:first-child {
    margin-left: 0;
}


.hero2-trust strong,
.hero2-trust small {
    display: block;
}


.hero2-trust strong {
    color: #39414a;

    font-size: 13px;
}


.hero2-trust small {
    margin-top: 2px;

    color: #8a929a;

    font-size: 11px;
}


/* =========================================
   IMAGE AREA
========================================= */

.hero2-visual {
    position: relative;

    min-height: 540px;

    display: flex;

    align-items: center;
    justify-content: center;
}


.hero2-image-wrapper {
    position: relative;

    width: 100%;

    max-width: 570px;

    z-index: 2;
}


.hero2-image {
    display: block;

    width: 100%;

    height: 530px;

    object-fit: cover;

    border-radius:
        100px 20px 100px 20px;

    border: 8px solid #ffffff;

    box-shadow:
        0 25px 60px rgba(35, 55, 70, .15);
}


/* =========================================
   IMAGE GLOW
========================================= */

.hero2-image-glow {
    position: absolute;

    width: 85%;

    height: 85%;

    right: -30px;
    top: 30px;

    border-radius: 100px 20px 100px 20px;

    background:
        linear-gradient(
            135deg,
            rgba(68, 190, 196, .25),
            rgba(111, 88, 215, .15)
        );

    transform: rotate(4deg);

    z-index: -1;
}


/* =========================================
   FLOATING CARDS
========================================= */

.hero2-floating-card {
    position: absolute;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 18px;

    background: rgba(255,255,255,.95);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255,255,255,.9);

    border-radius: 15px;

    box-shadow:
        0 15px 35px rgba(30,50,70,.13);

    z-index: 5;
}


.hero2-floating-card strong,
.hero2-floating-card small {
    display: block;
}


.hero2-floating-card strong {
    color: #27313a;

    font-size: 17px;
}


.hero2-floating-card small {
    margin-top: 3px;

    color: #7d8790;

    font-size: 10px;
}


/* TOP */

.hero2-floating-top {
    top: 55px;

    left: -35px;
}


.hero2-floating-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 12px;

    background: #fff8f4;

    color: #FF9933;

    font-size: 22px;

    font-weight: 800;
}


/* BOTTOM */

.hero2-floating-bottom {
    right: -25px;

    bottom: 55px;
}


.hero2-progress-circle {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    color: #FF9933;

    font-size: 12px;

    font-weight: 800;

    background:
        conic-gradient(
            #FF9933 92%,
            #eee9ff 0
        );

    position: relative;
}


.hero2-progress-circle::after {
    content: "";

    position: absolute;

    inset: 5px;

    border-radius: 50%;

    background: #ffffff;
}


.hero2-progress-circle {
    isolation: isolate;
}


.hero2-progress-circle::before {
    content: "92%";

    position: absolute;

    z-index: 2;

    color: #FF9933;

    font-size: 10px;
}


/* =========================================
   DOTS
========================================= */

.hero2-dots {
    position: absolute;

    display: grid;

    grid-template-columns: repeat(3, 6px);

    gap: 8px;

    z-index: 1;
}


.hero2-dots i {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #46bbc1;

    opacity: .3;
}


.hero2-dots-top {
    top: 45px;

    right: 0;
}


.hero2-dots-bottom {
    bottom: 40px;

    left: 10px;
}


.hero2-dots-bottom i {
    background: #7655d2;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1050px) {

    .hero2-container {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .hero2-content {
        text-align: center;
    }

    .hero2-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero2-title-line {
        justify-content: center;
    }

    .hero2-highlights {
        justify-content: center;
    }

    .hero2-buttons {
        justify-content: center;
    }

    .hero2-trust {
        justify-content: center;
    }

    .hero2-visual {
        min-height: 500px;
    }

}


@media (max-width: 650px) {

    .hero2-section {
        padding: 55px 18px;
    }

    .hero2-content h1 {
        font-size: 28px;
        letter-spacing: -1.5px;
    }

    .hero2-highlights {
        grid-template-columns: 1fr;

        justify-items: center;
    }

    .hero2-buttons {
        flex-direction: column;

        width: 100%;
    }

    .hero2-btn {
        width: 100%;
    }

    .hero2-visual {
        min-height: 400px;
    }

    .hero2-image {
        height: 390px;

        border-radius:
            65px 15px 65px 15px;
    }

    .hero2-floating-top {
        left: -5px;
        top: 25px;
    }

    .hero2-floating-bottom {
        right: -5px;
        bottom: 25px;
    }

    .hero2-dots {
        display: none;
    }

}



/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  overflow-x: hidden;
  padding: 40px 0;
  /* Responsive adjustments */
}

.clients .clients-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
}

.clients .clients-slider:not(:last-child) {
  margin-bottom: 20px;
}

.clients .clients-track {
  display: flex;
  width: fit-content;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.clients .clients-track.track-1 {
  animation-name: scroll-left;
}

.clients .clients-track.track-2 {
  animation-name: scroll-right;
}

.clients .clients-track:hover {
  animation-play-state: paused;
}

.clients .clients-slide {
  flex: 0 0 auto;
  width: 200px;
  height: 100px;
  margin: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.clients .clients-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--default-color), transparent 96%), transparent);
  transition: 0.5s;
}

.clients .clients-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.clients .clients-slide:hover::before {
  left: 100%;
}

.clients .clients-slide:hover img {
  filter: none;
  opacity: 1;
}

.clients .clients-slide img {
  max-width: 80%;
  max-height: 60%;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-2080px);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-2080px);
  }

  100% {
    transform: translateX(0);
  }
}

@media (max-width: 991px) {
  .clients .clients-slide {
    width: 180px;
    height: 90px;
    margin: 0 20px;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-1760px);
    }
  }

  @keyframes scroll-right {
    0% {
      transform: translateX(-1760px);
    }

    100% {
      transform: translateX(0);
    }
  }
}

@media (max-width: 767px) {
  .clients .clients-slide {
    width: 150px;
    height: 75px;
    margin: 0 15px;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-1440px);
    }
  }

  @keyframes scroll-right {
    0% {
      transform: translateX(-1440px);
    }

    100% {
      transform: translateX(0);
    }
  }
}

a.hero2-btn:hover {
  color: #fff;
}
a.hero2-btn-outline:hover {
  border-color: #FF7722;
  color: #FF7722;
}

/* =========================================
   INDUSTRIES APP SOLUTIONS
========================================= */

.industry-solutions {
    position: relative;
    background:
        radial-gradient(circle at 5% 35%,
            #fff8f4 0,
            transparent 180px),
        radial-gradient(circle at 95% 70%,
            #fff8f4 0,
            transparent 220px),
        #ffffff;

    overflow: hidden;
}


/* Decorative background */

.industry-solutions::before {
    content: "";
    position: absolute;

    width: 330px;
    height: 330px;

    left: -190px;
    top: -100px;

    border-radius: 50%;

    border: 1px solid #fff8f4;
}

.industry-solutions::after {
    content: "";
    position: absolute;

    width: 280px;
    height: 280px;

    right: -150px;
    bottom: -100px;

    border-radius: 50%;

    border: 1px solid #fff8f4;
}


/* =========================================
   WRAPPER
========================================= */

.industry-wrapper {
    position: relative;
    z-index: 2;
}


/* =========================================
   HEADER
========================================= */

.industry-header {
    text-align: center;
    margin-bottom: 35px;
}


/* Small label */

.industry-label {
  display: inline-flex;
  align-items: center;
  padding: 9px 17px;
  border-radius: 30px;
  background: #fff8f4;
  color: #FF9933;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.industry-label span {
    font-size: 20px;
}


/* Main heading */

.industry-header h1 span {
    color: #FF7722;
    font-weight: 600;
}


/* Divider */

.industry-divider {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 10px;

    margin: 16px 0 20px;
}

.industry-divider i {
    display: block;

    width: 75px;
    height: 3px;

    border-radius: 10px;

    background: #FF9933;
}

.industry-divider b {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #FF9933;
}


/* Header description */

.industry-header p {
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
}


/* =========================================
   CARD GRID
========================================= */

.industry-grid {
    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 17px;
}


/* =========================================
   CARD
========================================= */

.industry-card {
    position: relative;

    min-height: 205px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 22px 12px 20px;

    text-decoration: none;

    background: rgba(255, 255, 255, .92);

    border: 1px solid #edf1f5;

    border-radius: 16px;

    box-shadow:
        0 8px 25px rgba(35, 70, 100, .055);

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.industry-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 16px 35px rgba(35, 70, 100, .12);

    border-color: var(--accent);
}


/* =========================================
   ICON CIRCLE
========================================= */

.industry-icon {
    width: 115px;
    height: 115px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--icon-bg);

    margin-bottom: 12px;

    transition: transform .35s ease;
}

.industry-card:hover .industry-icon {
    transform: scale(1.07);
}

.industry-icon img {
    height: 75px;
    object-fit: contain;
}


/* =========================================
   CARD TITLE
========================================= */

.industry-card h3 {
    margin: 0;
    font-size: 16px;
}


/* =========================================
   SMALL ACCENT LINE
========================================= */

.card-line {
    width: 32px;
    height: 3px;

    margin-top: 12px;

    border-radius: 10px;

    background: var(--accent);

    transition: width .3s ease;
}

.industry-card:hover .card-line {
    width: 52px;
}


/* =========================================
   CARD COLORS
========================================= */

.industry-card.blue {
    --accent: #2098e5;
    --icon-bg: #edf8ff;
}

.industry-card.purple {
    --accent: #8656df;
    --icon-bg: #f4efff;
}

.industry-card.pink {
    --accent: #ef55a4;
    --icon-bg: #fff0f8;
}

.industry-card.red {
    --accent: #f04b5d;
    --icon-bg: #fff0f2;
}

.industry-card.sky {
    --accent: #1ca4e8;
    --icon-bg: #eef9ff;
}

.industry-card.yellow {
    --accent: #f3ad21;
    --icon-bg: #fff8e8;
}

.industry-card.green {
    --accent: #28ba83;
    --icon-bg: #effbf6;
}

.industry-card.orange {
    --accent: #f18b32;
    --icon-bg: #fff5eb;
}


/* =========================================
   BOTTOM CTA
========================================= */

.industry-cta {
    max-width: 640px;

    min-height: 60px;

    margin: 30px auto 0;

    padding: 8px 18px;

    display: flex;

    align-items: center;
    justify-content: center;
  gap: 15px;
  border: 1px solid #FFE3C8;
  border-radius: 40px;
  background: rgba(255, 255, 255, .9);
  color: #FF7722;
  box-shadow: 0 5px 20px rgba(255, 153, 51, 0.15);
}


/* CTA icon */

.cta-icon {
    font-size: 24px;

    line-height: 1;
}


/* CTA heading */

.industry-cta strong {
    font-size: 16px;
    font-weight: 600;
}


/* Divider */

.cta-divider {
    width: 1px;
    height: 25px;

    background: #b9dddd;
}


/* CTA text */

.industry-cta > span:last-child {
    color: #27364f;

    font-size: 15px;

    font-weight: 500;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1150px) {

    .industry-grid {
        grid-template-columns:
            repeat(4, 1fr);
    }

}


@media (max-width: 800px) {

    .industry-solutions {
        padding: 60px 20px;
    }

    .industry-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .industry-card {
        min-height: 190px;
    }

}


@media (max-width: 600px) {

    .industry-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 12px;
    }

    .industry-card {
        min-height: 175px;
    }

    .industry-icon {
        width: 90px;
        height: 90px;
    }

    .industry-icon img {
        height: 55px;
    }

    .industry-card h3 {
        font-size: 14px;
    }

    .industry-header h2 {
        font-size: 32px;
    }

    .industry-header p {
        font-size: 14px;
    }

    .industry-cta {
        gap: 10px;
        padding: 10px 15px;
    }

    .industry-cta strong {
        font-size: 13px;
    }

    .industry-cta > span:last-child {
        font-size: 12px;
    }

}


@media (max-width: 380px) {

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   BRAND FOOTER
========================================= */

.brand-footer {
    --saffron: #FF8A00;
    --orange: #FF5A00;
    --light-saffron: #FFF3DD;
    --navy: #181e23;
    --text: #1E293B;
    --muted: #64748B;
    --white: #FFFFFF;

    position: relative;
    background: #FFFCF7;
    overflow: hidden;
}


/* =========================================
   TOP CTA
========================================= */

.footer-cta {
    position: relative;

    max-width: 1400px;
    min-height: 300px;

    margin: 30px auto 0;

    display: flex;
    align-items: stretch;

    background: #FFFFFF;

    border: 1px solid #FFD7A0;

    border-radius: 20px;

    overflow: hidden;

    box-shadow:
        0 15px 40px rgba(16, 42, 76, .08);
}


/* LEFT CTA */

.cta-content {
    position: relative;

    width: 62%;

    padding: 30px 50px;
    z-index: 2;
}

.cta-small-title {
    display: block;

    color: var(--orange);

    font-size: 20px;
    font-weight: 600;

    margin-bottom: 3px;
}

.cta-small-title::after {
    content: "••";

    margin-left: 15px;

    letter-spacing: 6px;
}


.cta-content h1 {
    margin: 0 0 15px;
  font-size: 46px;
}

.cta-content h1 span {
    color: var(--orange);
    font-weight: 600;
}


.cta-content p {
    max-width: 600px;

    margin: 10px 0 20px;

    font-size: 16px;

    line-height: 1.65;
}


/* =========================================
   CTA FEATURES
========================================= */

.cta-features {
    display: flex;

    align-items: center;

    gap: 0;

    max-width: 720px;
}

.cta-feature {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 0 22px;

    border-right: 1px solid #F1DCC1;
}

.cta-feature:first-child {
    padding-left: 0;
}

.cta-feature:last-child {
    border-right: none;
}


.cta-feature-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #FFFFFF;

    font-size: 20px;
    font-weight: 700;

    background:
        linear-gradient(
            135deg,
            var(--saffron),
            var(--orange)
        );

    box-shadow:
        0 5px 15px rgba(255, 138, 0, .25);
}


.cta-feature strong {
    display: block;

    color: var(--navy);

    font-size: 14px;

    margin-bottom: 3px;
}

.cta-feature small {
    display: block;

    color: var(--muted);

    font-size: 12px;
    white-space: nowrap;
}


/* =========================================
   CTA RIGHT ORANGE PANEL
========================================= */

.cta-action {
    position: relative;

    width: 38%;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 30px 70px;

    color: #FFFFFF;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(255,255,255,.14) 0 3px,
            transparent 4px
        ) 0 0 / 22px 22px,

        linear-gradient(
            135deg,
            #FF8A00,
            #FF5A00
        );

    border-radius: 180px 20px 20px 180px;
}


/* Curved white accent */

.cta-action::before {
    content: "";

    position: absolute;

    left: -35px;
    top: 0;

    width: 70px;
    height: 100%;

    border-left: 8px solid #FFFFFF;

    border-radius: 50%;
}


/* Decorative dots */

.cta-dots {
    position: absolute;

    right: 35px;
    top: 30px;

    width: 80px;
    height: 80px;

    opacity: .3;

    background-image:
        radial-gradient(
            #FFFFFF 2px,
            transparent 2px
        );

    background-size: 14px 14px;
}


.cta-action h3 {
    position: relative;

    margin: 0 0 25px;

    font-size: 29px;

    line-height: 1.35;

    font-weight: 600;

    z-index: 2;
}

.cta-action h3 span {
    font-weight: 700;
}


/* =========================================
   QUOTE BUTTON
========================================= */

.quote-btn {
    position: relative;

    width: fit-content;

    display: flex;

    align-items: center;

    gap: 35px;

    padding: 16px 28px;

    color: #FFFFFF;

    background: var(--navy);

    border-radius: 50px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;

    box-shadow:
        0 8px 18px rgba(16, 42, 76, .25);

    transition: .3s ease;
}

.quote-btn span {
    font-size: 24px;

    line-height: 0;
}

.quote-btn:hover {
    transform: translateY(-3px);

    background: #071B33;
}


/* =========================================
   MAIN FOOTER
========================================= */

.footer-main {
    margin-top: 30px;
    background: #181e23;
    color: var(--text);
}


.footer-container {
    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1.1fr
        2fr
        .8fr
        .9fr;

    gap: 38px;
    padding: 30px 30px 0;
}


/* Vertical separators */

.footer-company,
.footer-services,
.footer-links {
    border-right: 1px solid #303b43;

    padding-right: 35px;
}


/* =========================================
   LOGO
========================================= */

.footer-logo {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #fff;

    font-size: 24px;
    font-weight: 500;
}

.footer-logo span {
    color: var(--orange);

    font-weight: 700;
}


.footer-logo-icon {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    color: #FFFFFF;

    background:
        linear-gradient(
            135deg,
            var(--saffron),
            var(--orange)
        );

    font-size: 19px;
    font-weight: 700;
}


.footer-line,
.footer-heading-line {
    width: 45px;
    height: 2px;

    margin: 8px 0 16px;

    background:
        linear-gradient(
            90deg,
            var(--orange),
            var(--saffron)
        );

    border-radius: 10px;
}


/* =========================================
   COMPANY DESCRIPTION
========================================= */

.footer-company p {
    max-width: 390px;

    margin: 0;

    color: #FFFCF7;

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================
   SOCIAL
========================================= */

.social-links {
    display: flex;

    gap: 12px;

    margin-top: 25px;
}

.social-links a {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--navy);

    text-decoration: none;

    font-size: 17px;
    font-weight: 700;

    background: #FFFFFF;

    transition: .3s ease;
}

.social-links a:hover {
    color: #FFFFFF;

    background: var(--orange);

    border-color: var(--orange);

    transform: translateY(-3px);
}


/* =========================================
   FOOTER HEADINGS
========================================= */

.footer-main h3 {
    margin: 0;

    color: #fff;

    font-size: 18px;
  letter-spacing: .5px;
}


/* =========================================
   SERVICE COLUMNS
========================================= */

.service-columns {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}


/* =========================================
   LISTS
========================================= */

.footer-main ul {
    padding: 0;
    margin: 0;

    list-style: none;
}

.footer-main li {
    margin-bottom: 6px;
}

.footer-main li a {
    position: relative;

    color: #FFFCF7;

    text-decoration: none;

    font-size: 13px;

    transition: .25s ease;
}

.footer-main li a::before {
    content: "›";

    color: var(--orange);

    font-size: 20px;

    margin-right: 9px;

    vertical-align: -2px;
}

.footer-main li a:hover {
    color: var(--orange);
    padding-left: 3px;
}


/* =========================================
   NEWSLETTER
========================================= */

.footer-newsletter p {
    color: #FFFCF7;

    font-size: 13px;

    line-height: 1.7;

    margin: 0 0 20px;
}


.newsletter-form {
    position: relative;

    display: flex;
}

.newsletter-form input {
    width: 100%;

    height: 52px;

    padding: 0 55px 0 16px;

    color: var(--text);

    background: #FFFFFF;

    border: 1px solid #D9DCE2;

    border-radius: 8px;

    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--orange);
}


.newsletter-form button {
    position: absolute;

    right: 5px;
    top: 5px;

    width: 42px;
    height: 42px;

    border: none;

    border-radius: 7px;

    color: #FFFFFF;

    background: var(--orange);

    cursor: pointer;

    font-size: 17px;
}


/* =========================================
   CONTACT BAR
========================================= */

.contact-bar {
    max-width: 1400px;

    margin: 30px 30px 0;

    padding: 22px 25px;

    display: grid;

    grid-template-columns:
        1fr 1fr 1fr;

    border: 1px solid #FFDDB1;

    border-radius: 15px;

    background: #FFFFFF;
}


.contact-item {
    display: flex;

    align-items: center;

    gap: 18px;

    padding: 0 28px;

    border-right: 1px solid #F1DCC1;
}

.contact-item:first-child {
    padding-left: 10px;
}

.contact-item:last-child {
    border-right: none;
}


.contact-icon {
    width: 58px;
    height: 58px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #FFFFFF;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            var(--saffron),
            var(--orange)
        );

    font-size: 25px;

    box-shadow:
        0 7px 15px rgba(255, 138, 0, .2);
}


.contact-item span,
.contact-item small {
    display: block;

    color: #697586;

    font-size: 12px;
}

.contact-item strong {
    display: block;

    margin: 3px 0;

    color: var(--navy);

    font-size: 17px;
}


/* =========================================
   BOTTOM BAR
========================================= */

.footer-bottom {
    max-width: 1400px;

    margin: 20px auto 0;

    min-height: 65px;

    /*display: flex;*/

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 23px;

    color: #FFFFFF;

    background:
        linear-gradient(
            135deg,
            #FF8A00,
            #FF5A00
        );

    font-size: 13px;
    text-align: center;
}


.footer-bottom strong {
    color: #FFFFFF;
}


.footer-trust {
    display: flex;

    align-items: center;

    gap: 25px;
}

.footer-trust span {
    padding-left: 20px;

    border-left: 1px solid rgba(255,255,255,.4);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {

    .footer-cta {
        margin-left: 20px;
        margin-right: 20px;
    }

    .cta-content {
        padding: 40px;
    }

    .cta-action {
        padding: 40px;
    }

    .footer-container {
        grid-template-columns:
            1fr 1.5fr 1fr;
    }

    .footer-newsletter {
        grid-column: span 3;
    }

    .footer-company,
    .footer-services,
    .footer-links {
        border-right: none;
    }

}


@media (max-width: 800px) {

    .footer-cta {
        flex-direction: column;
    }

    .cta-content {
        width: 100%;
    }

    .cta-action {
        width: 100%;

        min-height: 260px;

        border-radius: 0;

        padding: 40px;
    }

    .cta-action::before {
        display: none;
    }

    .cta-features {
        flex-wrap: wrap;

        gap: 15px;
    }

    .cta-feature {
        border-right: none;

        padding: 0;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-newsletter {
        grid-column: auto;
    }

    .contact-bar {
        grid-template-columns: 1fr;
    }

    .contact-item {
        padding: 15px 5px;

        border-right: none;
        border-bottom: 1px solid #F1DCC1;
    }

    .contact-item:last-child {
        border-bottom: none;
    }

    .footer-bottom {
        flex-direction: column;

        justify-content: center;

        padding: 20px;

        text-align: center;
    }

    .footer-trust {
        flex-wrap: wrap;

        justify-content: center;
    }

}


@media (max-width: 600px) {

    .footer-cta {
        margin-left: 10px;
        margin-right: 10px;
    }

    .cta-content {
        padding: 30px 25px;
    }

    .cta-content h2 {
        font-size: 38px;

        letter-spacing: -1px;
    }

    .cta-content p {
        font-size: 14px;
    }

    .cta-features {
        display: grid;

        grid-template-columns: 1fr;
    }

    .cta-feature {
        border: none;
    }

    .cta-action {
        padding: 35px 25px;
    }

    .cta-action h3 {
        font-size: 24px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-newsletter {
        grid-column: auto;
    }

    .service-columns {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-company,
    .footer-services,
    .footer-links {
        padding-right: 0;
    }

    .contact-item strong {
        font-size: 15px;
        word-break: break-word;
    }

    .footer-trust {
        gap: 12px;
    }

    .footer-trust span {
        border-left: none;
        padding-left: 0;
    }

}

.featured-icon img, .card-icon img {
  height: 40px;
}

@media (max-width: 600px) {

.stats-container {
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 30px 0 0;
}
.stat-icon {
  width: 75px;
  height: 75px;
  top: -40px;
  font-size: 30px;
}
  .stat-number {
    font-size: 32px;
  }
.stat-title {
  font-size: 15px;
}
.stat-line {
  width: 100px;
}
.stat-card {
  padding: 50px 0px 15px;
  min-height: 200px;
  margin-bottom: 50px;
}
.about.section {
  padding-bottom: 0;
}
.industry-wrapper {
  padding: 0;
}
.cta-content h1 {
  font-size: 28px;
}
.contact-bar {
  padding: 10px 10px;
}

}






/* =========================================================
   IPX SERVICES — 60 / 40 DESIGN
========================================================= */

.ipx-services-new {

    --saffron: #f47b20;

    width: 100%;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(244,123,32,.08),
            transparent 25%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(244,123,32,.06),
            transparent 25%
        ),
        #ffffff;

    overflow: hidden;
}


/* =========================================================
   MAIN GRID
   60% LEFT / 40% RIGHT
========================================================= */

.ipx-services-grid {

    max-width: 1500px;

    margin: auto;

    display: grid;

    grid-template-columns:
        3fr
        2fr;

    gap: 4px;

    min-height: 550px;
}


/* =========================================================
   LEFT PANEL
========================================================= */

.ipx-services-main {

    --service-color: #ff7722;
    --service-light: #eaf8ef;

    position: relative;

    min-height: 550px;

    display: flex;

    align-items: center;

    padding: 0 75px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            var(--service-light),
            #fff 99%
        );

    box-shadow:
        0 25px 70px
        rgba(20,35,55,.09);

    transition:
        .45s ease;
}


/* Decorative circle */

.ipx-services-main::before {

    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    right: -180px;
    top: -180px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.65);
}


.ipx-services-main::after {

    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    left: -150px;
    bottom: -150px;

    border-radius: 50%;

    border:
        55px solid
        rgba(255,255,255,.35);
}


/* Content */

.ipx-services-main-content {

    position: relative;

    z-index: 2;

    width: 100%;
}


/* Tag */

.ipx-services-tag {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding:
        9px 17px;

    margin-bottom: 25px;

    border-radius: 50px;

    color:
        var(--service-color);

    background:
        rgba(255,255,255,.75);

    border:
        1px solid
        rgba(0,0,0,.06);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


.ipx-services-tag span {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background:
        var(--service-color);
}


/* Big Number */

.ipx-services-big-number {

    position: absolute;

    right: 15px;
    top: -55px;

    font-size: 170px;

    line-height: 1;

    font-weight: 800;

    color:
        rgba(0,0,0,.035);

    pointer-events: none;
}


/* Main Icon */

.ipx-services-icon {

    width: 88px;
    height: 88px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 25px;

    background:
        rgba(255,255,255,.9);

    color:
        var(--service-color);

    font-size: 40px;

    box-shadow:
        0 15px 35px
        rgba(0,0,0,.08);
        display: none;
}


/* Heading */

.ipx-services-main h2 {

    max-width: 700px;

    margin:
        0 0 22px;

    color:
        #101827;

    font-size:
        clamp(
            42px,
            4.5vw,
            68px
        );

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -2px;
}


.ipx-services-main h2 span {

    display: block;

    color:
        var(--service-color);
}


/* Description */

.ipx-services-main > 
.ipx-services-main-content p {

    max-width: 680px;

    margin-bottom: 30px;

    color:
        #5d6675;

    font-size: 15px;

    line-height: 1.85;
}


/* =========================================================
   BUTTONS
========================================================= */

.ipx-services-actions {

    display: flex;

    gap: 13px;

    flex-wrap: wrap;
}


.ipx-btn-primary,
.ipx-btn-outline {

    min-height: 52px;

    padding:
        0 23px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 15px;

    border-radius: 50px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    transition: .3s ease;
}


.ipx-btn-primary {

    color: #ffffff;

    background:
        var(--service-color);

    box-shadow:
        0 12px 28px
        color-mix(
            in srgb,
            var(--service-color) 25%,
            transparent
        );
}


.ipx-btn-primary:hover {

    transform:
        translateY(-3px);
}


.ipx-btn-outline {

    color:
        #273043;

    background:
        rgba(255,255,255,.8);

    border:
        1px solid
        rgba(0,0,0,.08);
}


.ipx-btn-outline:hover {

    background:
        #ffffff;

    transform:
        translateY(-3px);
}


/* =========================================================
   FEATURES
========================================================= */

.ipx-main-features {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 18px;

    max-width: 720px;

    margin-top: 42px;
}


.ipx-main-feature {

    display: flex;

    align-items: center;

    gap: 9px;
}


.ipx-feature-check {

    width: 40px;
    height: 40px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color:
        var(--service-color);

    background:
        rgba(255,255,255,.8);

    font-size: 14px;

    font-weight: 700;
}


.ipx-main-feature strong {

    display: block;
    font-size: 14px;
}


.ipx-main-feature small {

    display: block;

    margin-top: 2px;

    color:
        #7d8694;

    font-size: 13px;
}


/* =========================================================
   RIGHT 40%
   2 COLUMNS × 3 ROWS
========================================================= */

.ipx-services-cards {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    grid-template-rows:
        repeat(3, 1fr);

    gap: 2px;

    min-width: 0;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.ipx-service-item {

    --item-color: #f47b20;

    position: relative;

    min-width: 0;

    min-height: 190px;

    padding: 10px;
    padding-left: 25px;
    padding-bottom: 25px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    text-align: left;

    font-family: inherit;

    border: 0;
    color: #ffffff;

    cursor: pointer;

    overflow: hidden;

    box-shadow:
        0 12px 30px
        rgba(20,30,45,.13);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


/* Decorative circle */

.ipx-service-item::before {

    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -65px;
    top: -65px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.13);

    transition: .4s ease;
}


.ipx-service-item::after {

    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    left: -50px;
    bottom: -50px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.09);
}


.ipx-service-item:hover {

    transform:
        translateY(-6px);

    box-shadow:
        0 22px 40px
        rgba(20,30,45,.20);
}


.ipx-service-item:hover::before {

    transform:
        scale(1.3);
}


/* Active */

.ipx-service-item.active {

    transform:
        translateY(-5px);

    border:
        2px solid
        rgba(255,255,255,.8);

    box-shadow:
        0 22px 45px
        rgba(20,30,45,.22);
}


/* =========================================================
   CARD TOP
========================================================= */

.ipx-item-top {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.ipx-item-number {
font-size: 45px;
  line-height: 1;
  font-weight: 800;
  color: rgba(255,255,255,.25);
}


.ipx-item-arrow {

    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease;
}


.ipx-service-item:hover
.ipx-item-arrow {
    transform:
        rotate(5deg);
}


/* =========================================================
   CARD ICON
========================================================= */

.ipx-item-icon {

    position: relative;

    z-index: 2;

    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background:
        rgba(255,255,255,.18);

    border:
        1px solid
        rgba(255,255,255,.2);

    font-size: 23px;

    backdrop-filter:
        blur(5px);
}


/* =========================================================
   CARD TITLE
========================================================= */

.ipx-service-item h3 {

    position: relative;

    z-index: 2;

    margin: 0;

    color:
        #ffffff;

    font-size: 18px;

    line-height: 1.25;
}


.ipx-service-item p {

    position: relative;

    z-index: 2;

    margin: 0 0;

    color:
        rgba(255,255,255,.9);

    font-size: 13px;
}


/* =========================================================
   SIX COLORS
========================================================= */


/* 01 GREEN */

.ipx-service-item[data-service="mobile"] {

    --item-color: #ff7722;

    background:
        linear-gradient( 135deg, #FF7722, #ff7543 )
}


/* 02 SAFFRON */

.ipx-service-item[data-service="web"] {

  --item-color: #159447;
  background: linear-gradient( 135deg, #0f9346, #21b75c );
}


/* 03 ORANGE RED */

.ipx-service-item[data-service="digital"] {

  --item-color: #0799ad;
  background: linear-gradient( 135deg, #058da2, #1bc0d0 );
}


/* 04 CYAN */

.ipx-service-item[data-service="seo"] {

  --item-color: #f28a19;
  background: linear-gradient( 135deg, #e87808, #ffb333 );
}


/* 05 PINK */

.ipx-service-item[data-service="social"] {

    --item-color: #df4265;

    background:
        linear-gradient(
            135deg,
            #d53258,
            #f56887
        );
}


/* 06 PURPLE */

.ipx-service-item[data-service="ppc"] {

    --item-color: #7353ca;

    background:
        linear-gradient(
            135deg,
            #6547b9,
            #9577e7
        );
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .ipx-services-grid {

        grid-template-columns:
            1fr;

    }

    .ipx-services-main {

        min-height:
            600px;
    }

    .ipx-services-cards {

        min-height:
            550px;
    }
}


@media (max-width: 700px) {

    .ipx-services-new {

        padding:
            40px 15px;
    }

    .ipx-services-main {

        padding:
            40px 25px;

        min-height:
            auto;

        border-radius:
            25px;
    }

    .ipx-services-main h2 {

        font-size:
            40px;

        letter-spacing:
            -1px;
    }

    .ipx-services-main > 
    .ipx-services-main-content p {

        font-size:
            13px;
    }

    .ipx-main-features {

        grid-template-columns:
            1fr;

        margin-top:
            30px;
    }

    .ipx-services-cards {

        grid-template-columns:
            repeat(2,1fr);

        grid-template-rows:
            repeat(3,1fr);

        gap: 10px;
    }

    .ipx-service-item {

        min-height:
            155px;

        padding:
            16px;
    }

    .ipx-item-icon {

        width: 43px;
        height: 43px;

        font-size:
            19px;
    }

    .ipx-service-item h3 {

        font-size:
            12px;
    }

}


@media (max-width: 430px) {

    .ipx-services-cards {

        grid-template-columns:
            1fr;
    }

    .ipx-service-item {

        min-height:
            130px;
    }
}

.ipx-item-arrow img {
  height: 50px;
}

.ipx-service-item a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-top: 10px;
}
.ipx-service-item a span {
  transition: .25s ease;
  margin-left: 5px;
}
.ipx-service-item a:hover span {
  transform: translateX(5px);
}





/* ==========================================
   MAIN SERVICE CHANGE ANIMATION
========================================== */

#ipxServicesMain {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        background 0.45s ease;
}

#ipxServicesMain.ipx-service-changing {
    opacity: 0;
    transform: translateY(18px);
}


/* ==========================================
   MAIN ICON ANIMATION
========================================== */

.ipx-services-icon {
    transition:
        transform 0.45s cubic-bezier(.2,.8,.2,1),
        background 0.4s ease,
        color 0.4s ease;
}

.ipx-service-changing .ipx-services-icon {
    transform:
        scale(.65)
        rotate(-12deg);
}


/* ==========================================
   NUMBER ANIMATION
========================================== */

.ipx-services-big-number {
    transition:
        opacity .35s ease,
        transform .45s ease;
}

.ipx-service-changing .ipx-services-big-number {
    opacity: 0;
    transform:
        translateX(35px)
        scale(.9);
}


/* ==========================================
   HEADING ANIMATION
========================================== */

.ipx-services-main h2 {
    transition:
        transform .4s ease,
        opacity .35s ease;
}

.ipx-service-changing h2 {
    opacity: 0;
    transform:
        translateY(20px);
}


/* ==========================================
   DESCRIPTION
========================================== */

.ipx-services-main-content > p {
    transition:
        opacity .4s ease,
        transform .4s ease;
}

.ipx-service-changing
.ipx-services-main-content > p {
    opacity: 0;
    transform:
        translateY(15px);
}


/* ==========================================
   BUTTONS
========================================== */

.ipx-services-actions {
    transition:
        opacity .45s ease,
        transform .45s ease;
}

.ipx-service-changing
.ipx-services-actions {
    opacity: 0;
    transform:
        translateY(15px);
}


/* ==========================================
   FEATURES
========================================== */

.ipx-main-features {
    transition:
        opacity .45s ease,
        transform .45s ease;
}

.ipx-service-changing
.ipx-main-features {
    opacity: 0;
    transform:
        translateY(15px);
}


/* ==========================================
   SERVICE CARDS
========================================== */

.ipx-service-item {
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        filter .35s ease;
}


/* Active card */

.ipx-service-item.active {
    transform:
        translateY(-5px)
        scale(1.02);

    box-shadow:
        0 20px 45px
        rgba(20,30,45,.22);
}


/* Active card shine */

.ipx-service-item.active::before {
    animation:
        ipxCardGlow
        2.5s ease-in-out
        infinite;
}


@keyframes ipxCardGlow {

    0% {
        opacity: .45;
        transform: scale(1);
    }

    50% {
        opacity: .8;
        transform: scale(1.18);
    }

    100% {
        opacity: .45;
        transform: scale(1);
    }

}


/* ==========================================
   CARD HOVER
========================================== */

.ipx-service-item:hover {

    transform:
        translateY(-7px)
        scale(1.015);
}


/* ==========================================
   ICON POP
========================================== */

@keyframes ipxIconPop {

    0% {
        opacity: 0;
        transform:
            scale(.5)
            rotate(-15deg);
    }

    70% {
        transform:
            scale(1.08)
            rotate(3deg);
    }

    100% {
        opacity: 1;
        transform:
            scale(1)
            rotate(0);
    }

}


/* ==========================================
   MAIN CONTENT ENTRANCE
========================================== */

@keyframes ipxContentUp {

    from {
        opacity: 0;
        transform:
            translateY(20px);
    }

    to {
        opacity: 1;
        transform:
            translateY(0);
    }

}

/* ==========================================
   RELATED SERVICE IMAGE
========================================== */

/* .ipx-main-image-wrap {
    width: 100%;
    max-width: 390px;
    height: 245px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
} */

.ipx-main-image-wrap img {
    height: 300px;
    transition: opacity 0.35s ease, transform 0.45s ease;
    position: absolute;
  right: -75px; 
  top: -75px;
}

/* Image animation during service change */

.ipx-services-main.ipx-service-changing
.ipx-main-image-wrap img {
    opacity: 0;
    transform: translateY(20px) scale(0.94);
}
.ipx-services-big-number {
  display: none;
}
.footer-logo img {
  height: 55px;
}