/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Poppins",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Poppins",  sans-serif;
  --nav-font: "Poppins",  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: #000000; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0e2d89; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0e2d89; /* 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: #000000;  /* The default color of the main navmenu links */
  --nav-hover-color: #0e2d89; /* 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: #000000; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0e2d89; /* 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: #ffffff;
  --default-color: #000000;
  --heading-color: #f43936;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0c2e8a;
  --default-color: #ffffff;
  --heading-color: #f44336;
  --surface-color: #103eb9;
  --contrast-color: #ffffff;
}

.my-color-preset {
  --default-color: rgba(255, 255, 255, 0);
  --surface-color: #1a1a1a;
}

.my-color-preset-2 {
  --surface-color: #1a1a1a;
}

.my-color-preset-3 {
}

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

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #cfe2f3;
  --heading-color: #0c2e8a;
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: var(--background-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

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

.header .branding {
  min-height: 60px;
  padding: 10px 0;
}

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

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

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

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #cfe2f3;
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --heading-color: #0c2e8a;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #cfe2f3;
}

/* Download Page Header
------------------------------*/
.download-page .header {
  --heading-color: #0c2e8a;
}

/* Download Page Header on Scroll
------------------------------*/
.download-page.scrolled .header {
  --background-color: #cfe2f3;
}

/* Real Time Data Feed Page Header
------------------------------*/
.real-time-data-feed-page .header {
  --heading-color: #0c2e8a;
}

/* Real Time Data Feed Page Header on Scroll
------------------------------*/
.real-time-data-feed-page.scrolled .header {
  --background-color: #cfe2f3;
}

/* Amibroker Data Page Header
------------------------------*/
.amibroker-data-page .header {
  --heading-color: #0c2e8a;
}

/* Amibroker Data Page Header on Scroll
------------------------------*/
.amibroker-data-page.scrolled .header {
  --background-color: #cfe2f3;
}

/* Amibroker Data Providers Page Header
------------------------------*/
.amibroker-data-providers-page .header {
  --heading-color: #0c2e8a;
}

/* Amibroker Data Providers Page Header on Scroll
------------------------------*/
.amibroker-data-providers-page.scrolled .header {
  --background-color: #cfe2f3;
}

/* Pricing Page Header
------------------------------*/
.pricing-page .header {
  --heading-color: #0c2e8a;
}

/* Pricing Page Header on Scroll
------------------------------*/
.pricing-page.scrolled .header {
  --background-color: #cfe2f3;
}

/* Uninstall Rt Data Page Header
------------------------------*/
.uninstall-rt-data-page .header {
  --heading-color: #0c2e8a;
}

/* Uninstall Rt Data Page Header on Scroll
------------------------------*/
.uninstall-rt-data-page.scrolled .header {
  --background-color: #cfe2f3;
}

/* Terms Of Service Page Header
------------------------------*/
.terms-of-service-page .header {
  --heading-color: #0c2e8a;
}

/* Terms Of Service Page Header on Scroll
------------------------------*/
.terms-of-service-page.scrolled .header {
  --background-color: #cfe2f3;
}

/* Refund Policy Page Header
------------------------------*/
.refund-policy-page .header {
  --heading-color: #0c2e8a;
}

/* Refund Policy Page Header on Scroll
------------------------------*/
.refund-policy-page.scrolled .header {
  --background-color: #cfe2f3;
}

/* Disclaimer Page Header
------------------------------*/
.disclaimer-page .header {
  --heading-color: #0c2e8a;
}

/* Disclaimer Page Header on Scroll
------------------------------*/
.disclaimer-page.scrolled .header {
  --background-color: #cfe2f3;
}

/* Privacy Policy Page Header
------------------------------*/
.privacy-policy-page .header {
  --heading-color: #0c2e8a;
}

/* Privacy Policy Page Header on Scroll
------------------------------*/
.privacy-policy-page.scrolled .header {
  --background-color: #cfe2f3;
}

/* Contact Us Aws Rtdata Page Header
------------------------------*/
.contact-us-aws-rtdata-page .header {
  --heading-color: #0c2e8a;
}

/* Contact Us Aws Rtdata Page Header on Scroll
------------------------------*/
.contact-us-aws-rtdata-page.scrolled .header {
  --background-color: #cfe2f3;
}

/* Support 2 Page Header
------------------------------*/
.support-2-page .header {
  --heading-color: #0c2e8a;
}

/* Support 2 Page Header on Scroll
------------------------------*/
.support-2-page.scrolled .header {
  --background-color: #cfe2f3;
}

/* Install And Uninstall Page Header
------------------------------*/
.install-and-uninstall-page .header {
  --heading-color: #0c2e8a;
}

/* Install And Uninstall Page Header on Scroll
------------------------------*/
.install-and-uninstall-page.scrolled .header {
  --background-color: #cfe2f3;
}

/* Rt Data Details Page Header
------------------------------*/
.rt-data-details-page .header {
  --heading-color: #0c2e8a;
}

/* Rt Data Details Page Header on Scroll
------------------------------*/
.rt-data-details-page.scrolled .header {
  --background-color: #cfe2f3;
}

/* Top Five Amibroker Indicators Page Header
------------------------------*/
.top-five-amibroker-indicators-page .header {
  --heading-color: #0c2e8a;
}

/* Top Five Amibroker Indicators Page Header on Scroll
------------------------------*/
.top-five-amibroker-indicators-page.scrolled .header {
  --background-color: #cfe2f3;
}

/* Forex Data Amibroker Page Header
------------------------------*/
.forex-data-amibroker-page .header {
  --heading-color: #0c2e8a;
}

/* Forex Data Amibroker Page Header on Scroll
------------------------------*/
.forex-data-amibroker-page.scrolled .header {
  --background-color: #cfe2f3;
}

/*--------------------------------------------------------------
# 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-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    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;
  }
}

/* Listing Dropdown - Desktop */
@media (min-width: 1200px) {
  .navmenu .listing-dropdown {
    position: static;
  }

  .navmenu .listing-dropdown ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .listing-dropdown ul li {
    flex: 1;
  }

  .navmenu .listing-dropdown ul li a,
  .navmenu .listing-dropdown ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .listing-dropdown ul li a:hover,
  .navmenu .listing-dropdown ul li .active,
  .navmenu .listing-dropdown ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .listing-dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
}

/* Listing Dropdown - Mobile */
@media (max-width: 1199px) {
  .navmenu .listing-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 .listing-dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .listing-dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  --background-color: #ffffff;
  --default-color: #000000;
  --heading-color: #000000;
  --accent-color: #f45a36;
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}

.footer .social-links {
  margin: 0 0 30px 0;
}

.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}

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

.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}

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

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

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

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

.page-title nav 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: 118px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title div {
  color: var(--heading-color);
  margin: 0;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero 12 Section
--------------------------------------------------------------*/
.hero-12 {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, color-mix(in srgb, var(--accent-color), transparent 90%) 0%, var(--background-color) 50%);
}

.hero-12 .content .subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-color);
  margin-bottom: 15px;
  padding: 5px 15px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 20px;
}

.hero-12 .content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-12 .content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.8;
}

.hero-12 .content .cta-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.hero-12 .content .cta-buttons .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.hero-12 .content .cta-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
}

.hero-12 .content .cta-buttons .btn.btn-primary i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.hero-12 .content .cta-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero-12 .content .cta-buttons .btn.btn-primary:hover i {
  transform: translateX(5px);
}

.hero-12 .content .cta-buttons .btn.btn-outline {
  color: var(--heading-color);
  background: transparent;
  border: 2px solid color-mix(in srgb, var(--heading-color), transparent 80%);
}

.hero-12 .content .cta-buttons .btn.btn-outline:hover {
  background-color: var(--heading-color);
  border-color: var(--heading-color);
  color: var(--contrast-color);
}

.hero-12 .content .stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero-12 .content .stats .stat-item h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.hero-12 .content .stats .stat-item p {
  font-size: 14px;
  margin: 0;
  opacity: 0.7;
}

.hero-12 .image-wrapper {
  position: relative;
  padding: 20px;
}

.hero-12 .image-wrapper .main-image {
  position: relative;
  z-index: 1;
}

.hero-12 .floating-card {
  position: absolute;
  background: var(--surface-color);
  padding: 15px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 2;
}

.hero-12 .floating-card.top {
  top: 0;
  right: 0;
}

.hero-12 .floating-card.bottom {
  bottom: 40px;
  left: 0;
}

.hero-12 .floating-card i {
  font-size: 24px;
  color: var(--accent-color);
}

.hero-12 .floating-card .text h4 {
  font-size: 16px;
  margin: 0 0 2px 0;
}

.hero-12 .floating-card .text p {
  font-size: 13px;
  margin: 0;
  opacity: 0.7;
}

.hero-12 .trusted-by {
  margin-top: 80px;
  text-align: center;
}

.hero-12 .trusted-by p {
  font-size: 14px;
  color: var(--heading-color);
  opacity: 0.7;
  margin-bottom: 20px;
}

.hero-12 .trusted-by .logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.hero-12 .trusted-by .logos img {
  height: 30px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.hero-12 .trusted-by .logos img:hover {
  opacity: 0.9;
}

@media (max-width: 991px) {
  .hero-12 {
    padding: 80px 0;
  }

  .hero-12 .content {
    text-align: center;
    margin-bottom: 50px;
  }

  .hero-12 .content h1 {
    font-size: 40px;
  }

  .hero-12 .content .cta-buttons {
    justify-content: center;
  }

  .hero-12 .content .stats {
    justify-content: center;
  }

  .hero-12 .image-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-12 {
    padding: 60px 0;
  }

  .hero-12 .content h1 {
    font-size: 32px;
  }

  .hero-12 .content p {
    font-size: 16px;
  }

  .hero-12 .content .cta-buttons {
    flex-direction: column;
  }

  .hero-12 .content .cta-buttons .btn {
    width: 100%;
  }

  .hero-12 .content .stats {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .hero-12 .floating-card {
    display: none;
  }

  .hero-12 .trusted-by {
    margin-top: 0;
  }

  .hero-12 .trusted-by .logos {
    gap: 30px;
  }

  .hero-12 .trusted-by .logos img {
    height: 25px;
  }
}

/*--------------------------------------------------------------
# About 3 Section
--------------------------------------------------------------*/
.about-3 {
  --accent-color: #f43936;
}

.about-3 .about-image {
  position: relative;
}

.about-3 .about-image img {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.about-3 .about-content {
  padding-left: 2rem;
}

@media (max-width: 991.98px) {
  .about-3 .about-content {
    padding-left: 0;
    margin-top: 3rem;
  }
}

.about-3 .about-content .subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent-color);
  margin-bottom: 1rem;
  display: block;
}

.about-3 .about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.about-3 .about-content .lead {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.about-3 .personal-info {
  margin-top: 2rem;
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 1rem;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.about-3 .personal-info .info-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about-3 .personal-info .info-item .label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about-3 .personal-info .info-item .value {
  font-weight: 600;
  color: var(--heading-color);
}

.about-3 .signature {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.about-3 .signature .signature-image {
  max-width: 150px;
}

.about-3 .signature .signature-info h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.about-3 .signature .signature-info p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  height: 100%;
}

.services-2 .service-item .icon {
  margin-bottom: 10px;
}

.services-2 .service-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: 0.3s;
}

.services-2 .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.services-2 .service-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

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

.services-2 .service-item:hover {
  transform: translateY(-10px);
}

.services-2 .service-item:hover h4 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Services 3 Section
--------------------------------------------------------------*/
.services-3 .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  position: relative;
  z-index: 1;
}

.services-3 .service-item:before {
  content: "";
  position: absolute;
  background: var(--accent-color);
  inset: 100% 0 0 0;
  transition: all 0.3s;
  z-index: -1;
}

.services-3 .service-item .icon {
  margin-bottom: 10px;
}

.services-3 .service-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: ease-in-out 0.3s;
}

.services-3 .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.services-3 .service-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.services-3 .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  transition: ease-in-out 0.3s;
}

.services-3 .service-item:hover h4 a,
.services-3 .service-item:hover .icon i,
.services-3 .service-item:hover p {
  color: var(--contrast-color);
}

.services-3 .service-item:hover:before {
  background: var(--accent-color);
  inset: 0;
  border-radius: 0px;
}

/*--------------------------------------------------------------
# Tabs 4 Section
--------------------------------------------------------------*/
.tabs-4 .nav-tabs {
  border: 0;
}

.tabs-4 .nav-link {
  background-color: var(--surface-color);
  color: var(--color-secondary);
  border: 0;
  padding: 25px 20px;
  box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0s;
  cursor: pointer;
  height: 100%;
}

.tabs-4 .nav-link i {
  font-size: 32px;
  line-height: 0;
}

.tabs-4 .nav-link h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0 0 0;
}

.tabs-4 .nav-link:hover {
  color: var(--accent-color);
}

.tabs-4 .nav-link:hover,
.tabs-4 .nav-link.active {
  transition: 0.3s;
  background: var(--accent-color);
  color: var(--contrast-color) !important;
  border-color: var(--accent-color);
}

.tabs-4 .nav-link:hover h4,
.tabs-4 .nav-link.active h4 {
  color: var(--contrast-color);
}

.tabs-4 .nav-link:hover i,
.tabs-4 .nav-link.active i {
  color: var(--contrast-color) !important;
}

.tabs-4 .tab-content {
  margin-top: 30px;
}

.tabs-4 .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.tabs-4 .tab-pane h3 {
  font-weight: 600;
  font-size: 28px;
}

.tabs-4 .tab-pane ul {
  list-style: none;
  padding: 0;
}

.tabs-4 .tab-pane ul li {
  padding-bottom: 10px;
}

.tabs-4 .tab-pane ul i {
  font-size: 24px;
  margin-right: 4px;
  color: var(--accent-color);
}

.tabs-4 .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .icon-box {
  display: flex;
}

.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.features .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: var(--accent-color);
  margin-right: 15px;
}

.features .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item .testimonial-content {
  border-left: 3px solid var(--accent-color);
  padding-left: 30px;
}

.testimonials .testimonial-item .testimonial-img {
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

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

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0 0 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;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

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

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

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  --default-color: #ffffff;
  --accent-color: #2986cc;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  color: var(--default-color);
  font-size: 28px;
  font-weight: 700;
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Hero 3 Section
--------------------------------------------------------------*/
.hero-3 {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 180px 0 40px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-3 .hero-bg::before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 15%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-3 .container {
  position: relative;
  z-index: 3;
}

.hero-3 h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero-3 p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

@media (min-width: 768px) {
  .hero-3 .hero-img {
    max-width: 600px;
  }
}

.hero-3 .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero-3 .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero-3 .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero-3 .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero-3 .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero-3 .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 640px) {
  .hero-3 h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero-3 p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero-3 .btn-get-started,
  .hero-3 .btn-watch-video {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# About 4 Section
--------------------------------------------------------------*/
.about-4 .profile-img {
  border: 20px solid var(--accent-color);
  padding: 0;
}

.about-4 .profile-img img {
  margin-top: -60px;
  margin-left: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.about-4 .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about-4 .content .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about-4 .content ul {
  list-style: none;
  padding: 0;
}

.about-4 .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

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

.about-4 .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding-top: 50px;
  padding-bottom: 50px;
}

.about .content-subtitle {
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
  color: var(--default-color);
}

.about .content-title {
  color: var(--heading-color);
  font-size: 22px;
  margin-bottom: 30px;
}

.about p {
  line-height: 1.7;
  color: var(--default-color);
}

.about .btn-get-started {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  padding: 8px 30px;
  border: 2px solid transparent;
  transition: 0.3s all ease-in-out;
  font-size: 14px;
}

.about .btn-get-started:hover {
  border-color: var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
}

.about .lead {
  line-height: 1.6;
  font-size: 18px;
  font-weight: normal;
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Cards Section
--------------------------------------------------------------*/
.cards .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 40px;
  margin: -1px;
  border-radius: 0;
}

.cards .card span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: var(--accent-color);
}

.cards .card h4 {
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
}

.cards .card p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 15px;
  margin: 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Call To Action 7 Section
--------------------------------------------------------------*/
.call-to-action-7 {
  --accent-color: #2986cc;
  padding: 120px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action-7 img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action-7:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action-7 .container {
  position: relative;
  z-index: 3;
}

.call-to-action-7 h3 {
  color: var(--default-color);
  font-size: 28px;
  font-weight: 700;
}

.call-to-action-7 p {
  color: var(--default-color);
}

.call-to-action-7 .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action-7 .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Call To Action 4 Section
--------------------------------------------------------------*/
.call-to-action-4 .container {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 4rem 2rem;
}

.call-to-action-4 .content h2,
.call-to-action-4 .content p {
  color: var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action-4 .btn-cta {
  background-color: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  color: var(--contrast-color);
  padding: 12px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action-4 .btn-cta:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

.call-to-action-4 .shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.call-to-action-4 .shape svg {
  width: 100%;
  height: 100%;
}

.call-to-action-4 .shape svg path {
  fill: color-mix(in srgb, var(--contrast-color) 50%, transparent);
}

.call-to-action-4 .shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  opacity: 0.1;
  transform: rotate(45deg);
  animation: shapes-float 3s ease-in-out infinite;
}

.call-to-action-4 .shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
  opacity: 0.15;
  transform: rotate(-15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action-4 .shape-3 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 15%;
  opacity: 0.08;
  transform: rotate(15deg);
}

.call-to-action-4 .dots {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: var(--contrast-color);
}

.call-to-action-4 .dots svg {
  width: 100%;
  height: 100%;
}

.call-to-action-4 .dots-1 {
  width: 200px;
  height: 200px;
  top: -30px;
  left: 10%;
  opacity: 0.1;
  transform: rotate(15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action-4 .dots-2 {
  width: 150px;
  height: 150px;
  bottom: 20px;
  right: 15%;
  opacity: 0.15;
  transform: rotate(-10deg);
}

@keyframes shapes-float {

  0%,
  100% {
    transform: scale(0.8) rotate(45deg) translateY(0);
  }

  50% {
    transform: scale(0.8) rotate(45deg) translateY(-20px);
  }
}

@media (max-width: 992px) {
  .call-to-action-4 .container {
    padding: 3rem 1.5rem;
  }

  .call-to-action-4 .shape-1 {
    width: 200px;
    height: 200px;
  }

  .call-to-action-4 .shape-2 {
    width: 150px;
    height: 150px;
  }

  .call-to-action-4 .shape-3 {
    width: 100px;
    height: 100px;
  }

  .call-to-action-4 .dots-1 {
    width: 150px;
    height: 150px;
  }

  .call-to-action-4 .dots-2 {
    width: 120px;
    height: 120px;
  }

  .call-to-action-4 .dots-3 {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 575px) {
  .call-to-action-4 .container {
    border-radius: 0;
  }
}

/*--------------------------------------------------------------
# Hero 7 Section
--------------------------------------------------------------*/
.hero-7 {
  position: relative;
  overflow: hidden;
}

.hero-7 .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-7 .hero-desc {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero-7 .btn {
  padding: 0.75rem 2.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 50px;
}

.hero-7 .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero-7 .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero-7 .btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.hero-7 .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero-7 .hero-image {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-7 .hero-image img {
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero-7 .floating-card {
  position: absolute;
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.hero-7 .floating-card i {
  font-size: 1.5rem;
  margin-right: 10px;
  color: var(--accent-color);
}

.hero-7 .floating-card span {
  font-weight: 600;
  color: var(--heading-color);
}

.hero-7 .floating-card.card-1 {
  top: -20px;
  left: 0;
}

.hero-7 .floating-card.card-2 {
  bottom: -20px;
  right: 0;
}

.hero-7 .shape {
  position: absolute;
  opacity: 0.1;
}

.hero-7 .shape-1 {
  width: 300px;
  height: 300px;
  background-color: var(--accent-color);
  border-radius: 50%;
  top: -150px;
  left: -150px;
}

.hero-7 .shape-2 {
  width: 200px;
  height: 200px;
  background-color: var(--heading-color);
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
}

.hero-7 .shape-3 {
  width: 150px;
  height: 150px;
  background-color: var(--accent-color);
  border-radius: 50%;
  top: 20%;
  right: 5%;
  transform: translate(-50%, -50%);
}

@media (max-width: 991.98px) {
  .hero-7 .hero-title {
    font-size: 2.5rem;
  }

  .hero-7 .hero-image {
    max-width: 100%;
  }

  .hero-7 .floating-card {
    padding: 10px 15px;
  }

  .hero-7 .floating-card i {
    font-size: 1.2rem;
  }

  .hero-7 .floating-card span {
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Hero 2 Section
--------------------------------------------------------------*/
.hero-2 {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 180px 0 40px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-2 .hero-bg::before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 15%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-2 .container {
  position: relative;
  z-index: 3;
}

.hero-2 h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero-2 p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

@media (min-width: 768px) {
  .hero-2 .hero-img {
    max-width: 600px;
  }
}

.hero-2 .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero-2 .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero-2 .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero-2 .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero-2 .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero-2 .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 640px) {
  .hero-2 h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero-2 p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero-2 .btn-get-started,
  .hero-2 .btn-watch-video {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Hero 4 Section
--------------------------------------------------------------*/
.hero-4 {
  --background-color: rgba(255, 255, 255, 0);
  --surface-color: #2986cc;
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-4 .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .hero-4 .info {
    padding: 100px 50px 60px 50px;
  }
}

.hero-4 .info h2 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 72px;
  font-weight: 700;
  position: relative;
}

.hero-4 .info h2 span {
  color: var(--accent-color);
  text-decoration: underline;
}

.hero-4 .info h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

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

.hero-4 .info p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
}

.hero-4 .info .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.5s;
  margin: 10px;
}

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

.hero-4 .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.hero-4 .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.4s;
}

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

.hero-4 .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

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

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

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

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

.hero-4 .carousel-control-prev,
.hero-4 .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

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

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

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 .container {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.about-2 .skills-content h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 30px 0 15px 0;
}

.about-2 .progress {
  height: 36px;
  display: block;
  background: none;
  border-radius: 0;
  margin-top: 15px;
}

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

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

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

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

.about-2 .about-me h4 {
  font-size: 28px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-weight: 700;
}

.about-2 .about-me h4:after {
  content: "";
  position: absolute;
  display: block;
  width: 64px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
  margin: auto;
}

.about-2 .about-me p {
  font-size: 18px;
}

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 {
  --default-color: #ffffff;
  --accent-color: #2986cc;
  position: relative;
  clip-path: inset(0);
}

.call-to-action-2 img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action-2 .container {
  position: relative;
  z-index: 3;
}

.call-to-action-2 h3 {
  color: var(--default-color);
  font-size: 28px;
  font-weight: 700;
}

.call-to-action-2 p {
  color: var(--default-color);
}

.call-to-action-2 .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action-2 .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Heroundefined Section
--------------------------------------------------------------*/
.heroundefined {
  --background-color: rgba(255, 255, 255, 0);
  --surface-color: #2986cc;
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.heroundefined .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .heroundefined .info {
    padding: 100px 50px 60px 50px;
  }
}

.heroundefined .info h2 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 72px;
  font-weight: 700;
  position: relative;
}

.heroundefined .info h2 span {
  color: var(--accent-color);
  text-decoration: underline;
}

.heroundefined .info h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .heroundefined .info h2 {
    font-size: 36px;
  }
}

.heroundefined .info p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
}

.heroundefined .info .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.5s;
  margin: 10px;
}

.heroundefined .info .btn-get-started:hover {
  background: var(--surface-color);
  color: var(--accent-color);
}

.heroundefined .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.heroundefined .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.4s;
}

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

.heroundefined .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

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

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

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

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

.heroundefined .carousel-control-prev,
.heroundefined .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

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

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

/*--------------------------------------------------------------
# Aboutundefined Section
--------------------------------------------------------------*/
.aboutundefined .container {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.aboutundefined .skills-content h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 30px 0 15px 0;
}

.aboutundefined .progress {
  height: 36px;
  display: block;
  background: none;
  border-radius: 0;
  margin-top: 15px;
}

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

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

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

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

.aboutundefined .about-me h4 {
  font-size: 28px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-weight: 700;
}

.aboutundefined .about-me h4:after {
  content: "";
  position: absolute;
  display: block;
  width: 64px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
  margin: auto;
}

.aboutundefined .about-me p {
  font-size: 18px;
}

/*--------------------------------------------------------------
# Heroundefinedundefined Section
--------------------------------------------------------------*/
.heroundefinedundefined {
  --background-color: rgba(255, 255, 255, 0);
  --surface-color: #2986cc;
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.heroundefinedundefined .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .heroundefinedundefined .info {
    padding: 100px 50px 60px 50px;
  }
}

.heroundefinedundefined .info h2 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 72px;
  font-weight: 700;
  position: relative;
}

.heroundefinedundefined .info h2 span {
  color: var(--accent-color);
  text-decoration: underline;
}

.heroundefinedundefined .info h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .heroundefinedundefined .info h2 {
    font-size: 36px;
  }
}

.heroundefinedundefined .info p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
}

.heroundefinedundefined .info .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.5s;
  margin: 10px;
}

.heroundefinedundefined .info .btn-get-started:hover {
  background: var(--surface-color);
  color: var(--accent-color);
}

.heroundefinedundefined .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.heroundefinedundefined .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.4s;
}

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

.heroundefinedundefined .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

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

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

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

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

.heroundefinedundefined .carousel-control-prev,
.heroundefinedundefined .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

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

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

/*--------------------------------------------------------------
# Aboutundefinedundefined Section
--------------------------------------------------------------*/
.aboutundefinedundefined .container {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.aboutundefinedundefined .skills-content h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 30px 0 15px 0;
}

.aboutundefinedundefined .progress {
  height: 36px;
  display: block;
  background: none;
  border-radius: 0;
  margin-top: 15px;
}

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

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

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

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

.aboutundefinedundefined .about-me h4 {
  font-size: 28px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-weight: 700;
}

.aboutundefinedundefined .about-me h4:after {
  content: "";
  position: absolute;
  display: block;
  width: 64px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
  margin: auto;
}

.aboutundefinedundefined .about-me p {
  font-size: 18px;
}

/*--------------------------------------------------------------
# Call To Actionundefined 2 Section
--------------------------------------------------------------*/
.call-to-actionundefined-2 {
  --default-color: #ffffff;
  --accent-color: #2986cc;
  position: relative;
  clip-path: inset(0);
}

.call-to-actionundefined-2 img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-actionundefined-2 .container {
  position: relative;
  z-index: 3;
}

.call-to-actionundefined-2 h3 {
  color: var(--default-color);
  font-size: 28px;
  font-weight: 700;
}

.call-to-actionundefined-2 p {
  color: var(--default-color);
}

.call-to-actionundefined-2 .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-actionundefined-2 .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Call To Action 5 Section
--------------------------------------------------------------*/
.call-to-action-5 {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action-5 img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action-5:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action-5 .container {
  position: relative;
  z-index: 3;
}

.call-to-action-5 h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action-5 p {
  color: var(--default-color);
}

.call-to-action-5 .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action-5 .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  --basic-plan-color: #45B7D1;
  --standard-plan-color: #ee8d1e;
  --pro-plan-color: #b4194a;
  --enterprise-plan-color: #7367F0;
}

.pricing .pricing-cards {
  perspective: 1000px;
}

.pricing .pricing-card {
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: all 0.5s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.pricing .pricing-card:hover {
  transform: translateZ(20px) rotateX(5deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-card.basic {
  border-top: 5px solid var(--basic-plan-color);
}

.pricing .pricing-card.basic .icon-wrapper {
  background-color: var(--basic-plan-color);
}

.pricing .pricing-card.standard {
  border-top: 5px solid var(--standard-plan-color);
}

.pricing .pricing-card.standard .icon-wrapper {
  background-color: var(--standard-plan-color);
}

.pricing .pricing-card.pro {
  border-top: 5px solid var(--pro-plan-color);
}

.pricing .pricing-card.pro .icon-wrapper {
  background-color: var(--pro-plan-color);
}

.pricing .pricing-card.enterprise {
  border-top: 5px solid var(--enterprise-plan-color);
}

.pricing .pricing-card.enterprise .icon-wrapper {
  background-color: var(--enterprise-plan-color);
}

.pricing .pricing-card .pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.pricing .pricing-card .pricing-header .icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto 20px;
}

.pricing .pricing-card .pricing-header .icon-wrapper i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.pricing .pricing-card .pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.pricing .pricing-card .pricing-header .price {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--heading-color);
}

.pricing .pricing-card .pricing-header .price .currency {
  font-size: 1.5rem;
  vertical-align: super;
}

.pricing .pricing-card .pricing-header .price .period {
  font-size: 1rem;
  color: var(--default-color);
  opacity: 0.7;
  font-weight: 400;
  margin-left: -4px;
}

.pricing .pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing .pricing-card .features-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  font-size: 1rem;
}

.pricing .pricing-card .features-list li i {
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.pricing .pricing-card .features-list li i.bi-check-lg {
  color: #4CAF50;
}

.pricing .pricing-card .features-list li i.bi-x-lg {
  color: #F44336;
}

.pricing .pricing-card .btn-custom {
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  border: none;
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.pricing .pricing-card .btn-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  z-index: -1;
}

.pricing .pricing-card .btn-custom:hover::before {
  width: 100%;
}

.pricing .pricing-card.basic .btn-custom {
  background-color: var(--basic-plan-color);
}

.pricing .pricing-card.standard .btn-custom {
  background-color: var(--standard-plan-color);
}

.pricing .pricing-card.pro .btn-custom {
  background-color: var(--pro-plan-color);
}

.pricing .pricing-card.enterprise .btn-custom {
  background-color: var(--enterprise-plan-color);
}

@media (max-width: 991.98px) {
  .pricing .pricing-card {
    margin-bottom: 3rem;
  }
}

/*--------------------------------------------------------------
# Pricing 3 Section
--------------------------------------------------------------*/
.pricing-3 .pricing-tem {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  text-align: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
}

@media (min-width: 1200px) {
  .pricing-3 .pricing-tem:hover {
    transform: scale(1.1);
  }
}

.pricing-3 h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}

.pricing-3 .price {
  font-size: 36px;
  color: var(--heading-color);
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing-3 .price sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing-3 .price span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  font-weight: 300;
}

.pricing-3 .icon {
  padding: 20px 0;
}

.pricing-3 .icon i {
  font-size: 48px;
}

.pricing-3 ul {
  padding: 0;
  list-style: none;
  color: var(--default-color);
  text-align: center;
  line-height: 26px;
  font-size: 16px;
  margin-bottom: 25px;
}

.pricing-3 ul li {
  padding-bottom: 10px;
}

.pricing-3 ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
  text-decoration: line-through;
}

.pricing-3 .btn-buy {
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  color: var(--accent-color);
  transition: none;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid var(--accent-color);
}

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

.pricing-3 .featured {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Aboutundefinedundefined 2 Section
--------------------------------------------------------------*/
.aboutundefinedundefined-2 {
  --accent-color: #f43936;
}

.aboutundefinedundefined-2 .container {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.aboutundefinedundefined-2 .skills-content h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 30px 0 15px 0;
}

.aboutundefinedundefined-2 .progress {
  height: 36px;
  display: block;
  background: none;
  border-radius: 0;
  margin-top: 15px;
}

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

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

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

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

.aboutundefinedundefined-2 .about-me h4 {
  font-size: 28px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-weight: 700;
}

.aboutundefinedundefined-2 .about-me h4:after {
  content: "";
  position: absolute;
  display: block;
  width: 64px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
  margin: auto;
}

.aboutundefinedundefined-2 .about-me p {
  font-size: 18px;
}

/*--------------------------------------------------------------
# Heroundefinedundefined 2 Section
--------------------------------------------------------------*/
.heroundefinedundefined-2 {
  --background-color: rgba(255, 255, 255, 0);
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.heroundefinedundefined-2 .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .heroundefinedundefined-2 .info {
    padding: 100px 50px 60px 50px;
  }
}

.heroundefinedundefined-2 .info h2 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 72px;
  font-weight: 700;
  position: relative;
}

.heroundefinedundefined-2 .info h2 span {
  color: var(--accent-color);
  text-decoration: underline;
}

.heroundefinedundefined-2 .info h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .heroundefinedundefined-2 .info h2 {
    font-size: 36px;
  }
}

.heroundefinedundefined-2 .info p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
}

.heroundefinedundefined-2 .info .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.5s;
  margin: 10px;
}

.heroundefinedundefined-2 .info .btn-get-started:hover {
  background: var(--surface-color);
  color: var(--accent-color);
}

.heroundefinedundefined-2 .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.heroundefinedundefined-2 .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.4s;
}

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

.heroundefinedundefined-2 .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

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

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

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

.heroundefinedundefined-2 .carousel-control-next-icon,
.heroundefinedundefined-2 .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--surface-color), transparent 20%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heroundefinedundefined-2 .carousel-control-prev,
.heroundefinedundefined-2 .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

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

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

/*--------------------------------------------------------------
# Aboutundefinedundefined 3 Section
--------------------------------------------------------------*/
.aboutundefinedundefined-3 .container {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.aboutundefinedundefined-3 .skills-content h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 30px 0 15px 0;
}

.aboutundefinedundefined-3 .progress {
  height: 36px;
  display: block;
  background: none;
  border-radius: 0;
  margin-top: 15px;
}

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

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

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

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

.aboutundefinedundefined-3 .about-me h4 {
  font-size: 28px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-weight: 700;
}

.aboutundefinedundefined-3 .about-me h4:after {
  content: "";
  position: absolute;
  display: block;
  width: 64px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
  margin: auto;
}

.aboutundefinedundefined-3 .about-me p {
  font-size: 18px;
}

/*--------------------------------------------------------------
# Aboutundefinedundefined 4 Section
--------------------------------------------------------------*/
.aboutundefinedundefined-4 .container {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.aboutundefinedundefined-4 .skills-content h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 30px 0 15px 0;
}

.aboutundefinedundefined-4 .progress {
  height: 36px;
  display: block;
  background: none;
  border-radius: 0;
  margin-top: 15px;
}

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

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

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

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

.aboutundefinedundefined-4 .about-me h4 {
  font-size: 28px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-weight: 700;
}

.aboutundefinedundefined-4 .about-me h4:after {
  content: "";
  position: absolute;
  display: block;
  width: 64px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
  margin: auto;
}

.aboutundefinedundefined-4 .about-me p {
  font-size: 18px;
}

/*--------------------------------------------------------------
# Aboutundefinedundefinedundefined Section
--------------------------------------------------------------*/
.aboutundefinedundefinedundefined .container {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.aboutundefinedundefinedundefined .skills-content h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 30px 0 15px 0;
}

.aboutundefinedundefinedundefined .progress {
  height: 36px;
  display: block;
  background: none;
  border-radius: 0;
  margin-top: 15px;
}

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

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

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

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

.aboutundefinedundefinedundefined .about-me h4 {
  font-size: 28px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-weight: 700;
}

.aboutundefinedundefinedundefined .about-me h4:after {
  content: "";
  position: absolute;
  display: block;
  width: 64px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
  margin: auto;
}

.aboutundefinedundefinedundefined .about-me p {
  font-size: 18px;
}

/*--------------------------------------------------------------
# Aboutundefinedundefinedundefined 2 Section
--------------------------------------------------------------*/
.aboutundefinedundefinedundefined-2 .container {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.aboutundefinedundefinedundefined-2 .skills-content h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 30px 0 15px 0;
}

.aboutundefinedundefinedundefined-2 .progress {
  height: 36px;
  display: block;
  background: none;
  border-radius: 0;
  margin-top: 15px;
}

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

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

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

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

.aboutundefinedundefinedundefined-2 .about-me h4 {
  font-size: 28px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-weight: 700;
}

.aboutundefinedundefinedundefined-2 .about-me h4:after {
  content: "";
  position: absolute;
  display: block;
  width: 64px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
  margin: auto;
}

.aboutundefinedundefinedundefined-2 .about-me p {
  font-size: 18px;
}

/*--------------------------------------------------------------
# Aboutundefinedundefinedundefined 3 Section
--------------------------------------------------------------*/
.aboutundefinedundefinedundefined-3 .container {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.aboutundefinedundefinedundefined-3 .skills-content h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 30px 0 15px 0;
}

.aboutundefinedundefinedundefined-3 .progress {
  height: 36px;
  display: block;
  background: none;
  border-radius: 0;
  margin-top: 15px;
}

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

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

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

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

.aboutundefinedundefinedundefined-3 .about-me h4 {
  font-size: 28px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-weight: 700;
}

.aboutundefinedundefinedundefined-3 .about-me h4:after {
  content: "";
  position: absolute;
  display: block;
  width: 64px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
  margin: auto;
}

.aboutundefinedundefinedundefined-3 .about-me p {
  font-size: 18px;
}

/*--------------------------------------------------------------
# Call To Action 3 Section
--------------------------------------------------------------*/
.call-to-action-3 .container {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 4rem 2rem;
}

.call-to-action-3 .content h2,
.call-to-action-3 .content p {
  color: var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action-3 .btn-cta {
  background-color: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  color: var(--contrast-color);
  padding: 12px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action-3 .btn-cta:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

.call-to-action-3 .shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.call-to-action-3 .shape svg {
  width: 100%;
  height: 100%;
}

.call-to-action-3 .shape svg path {
  fill: color-mix(in srgb, var(--contrast-color) 50%, transparent);
}

.call-to-action-3 .shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  opacity: 0.1;
  transform: rotate(45deg);
  animation: shapes-float 3s ease-in-out infinite;
}

.call-to-action-3 .shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
  opacity: 0.15;
  transform: rotate(-15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action-3 .shape-3 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 15%;
  opacity: 0.08;
  transform: rotate(15deg);
}

.call-to-action-3 .dots {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: var(--contrast-color);
}

.call-to-action-3 .dots svg {
  width: 100%;
  height: 100%;
}

.call-to-action-3 .dots-1 {
  width: 200px;
  height: 200px;
  top: -30px;
  left: 10%;
  opacity: 0.1;
  transform: rotate(15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action-3 .dots-2 {
  width: 150px;
  height: 150px;
  bottom: 20px;
  right: 15%;
  opacity: 0.15;
  transform: rotate(-10deg);
}

@keyframes shapes-float {

  0%,
  100% {
    transform: scale(0.8) rotate(45deg) translateY(0);
  }

  50% {
    transform: scale(0.8) rotate(45deg) translateY(-20px);
  }
}

@media (max-width: 992px) {
  .call-to-action-3 .container {
    padding: 3rem 1.5rem;
  }

  .call-to-action-3 .shape-1 {
    width: 200px;
    height: 200px;
  }

  .call-to-action-3 .shape-2 {
    width: 150px;
    height: 150px;
  }

  .call-to-action-3 .shape-3 {
    width: 100px;
    height: 100px;
  }

  .call-to-action-3 .dots-1 {
    width: 150px;
    height: 150px;
  }

  .call-to-action-3 .dots-2 {
    width: 120px;
    height: 120px;
  }

  .call-to-action-3 .dots-3 {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 575px) {
  .call-to-action-3 .container {
    border-radius: 0;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.contact .info-box h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .contact .info-box h3 {
    font-size: 1.75rem;
  }
}

.contact .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact .info-box a {
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .contact .info-box {
    padding: 1.5rem;
  }
}

.contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

.contact .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.contact .info-item:hover .icon-box {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.contact .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact .info-item .content p:last-child {
  margin-bottom: 0;
}

.contact .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .contact .contact-form {
    padding: 1.5rem;
  }
}

.contact .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .contact .contact-form h3 {
    font-size: 1.75rem;
  }
}

.contact .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0.5rem;
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
  color: var(--default-color);
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

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

.contact .contact-form .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.contact .contact-form .btn i {
  font-size: 1.25rem;
}

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

/*--------------------------------------------------------------
# Heroundefinedundefinedundefined Section
--------------------------------------------------------------*/
.heroundefinedundefinedundefined {
  --background-color: rgba(255, 255, 255, 0);
  --surface-color: #2986cc;
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.heroundefinedundefinedundefined .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .heroundefinedundefinedundefined .info {
    padding: 100px 50px 60px 50px;
  }
}

.heroundefinedundefinedundefined .info h2 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 72px;
  font-weight: 700;
  position: relative;
}

.heroundefinedundefinedundefined .info h2 span {
  color: var(--accent-color);
  text-decoration: underline;
}

.heroundefinedundefinedundefined .info h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .heroundefinedundefinedundefined .info h2 {
    font-size: 36px;
  }
}

.heroundefinedundefinedundefined .info p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
}

.heroundefinedundefinedundefined .info .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.5s;
  margin: 10px;
}

.heroundefinedundefinedundefined .info .btn-get-started:hover {
  background: var(--surface-color);
  color: var(--accent-color);
}

.heroundefinedundefinedundefined .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.heroundefinedundefinedundefined .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.4s;
}

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

.heroundefinedundefinedundefined .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

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

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

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

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

.heroundefinedundefinedundefined .carousel-control-prev,
.heroundefinedundefinedundefined .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

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

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

/*--------------------------------------------------------------
# Aboutundefinedundefinedundefined 4 Section
--------------------------------------------------------------*/
.aboutundefinedundefinedundefined-4 .container {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.aboutundefinedundefinedundefined-4 .skills-content h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 30px 0 15px 0;
}

.aboutundefinedundefinedundefined-4 .progress {
  height: 36px;
  display: block;
  background: none;
  border-radius: 0;
  margin-top: 15px;
}

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

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

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

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

.aboutundefinedundefinedundefined-4 .about-me h4 {
  font-size: 28px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-weight: 700;
}

.aboutundefinedundefinedundefined-4 .about-me h4:after {
  content: "";
  position: absolute;
  display: block;
  width: 64px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
  margin: auto;
}

.aboutundefinedundefinedundefined-4 .about-me p {
  font-size: 18px;
}

/*--------------------------------------------------------------
# Heroundefinedundefinedundefined 2 Section
--------------------------------------------------------------*/
.heroundefinedundefinedundefined-2 {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #f43936;
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.heroundefinedundefinedundefined-2 .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .heroundefinedundefinedundefined-2 .info {
    padding: 100px 50px 60px 50px;
  }
}

.heroundefinedundefinedundefined-2 .info h2 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 72px;
  font-weight: 700;
  position: relative;
}

.heroundefinedundefinedundefined-2 .info h2 span {
  color: var(--accent-color);
  text-decoration: underline;
}

.heroundefinedundefinedundefined-2 .info h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .heroundefinedundefinedundefined-2 .info h2 {
    font-size: 36px;
  }
}

.heroundefinedundefinedundefined-2 .info p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
}

.heroundefinedundefinedundefined-2 .info .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.5s;
  margin: 10px;
}

.heroundefinedundefinedundefined-2 .info .btn-get-started:hover {
  background: var(--surface-color);
  color: var(--accent-color);
}

.heroundefinedundefinedundefined-2 .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.heroundefinedundefinedundefined-2 .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.4s;
}

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

.heroundefinedundefinedundefined-2 .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

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

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

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

.heroundefinedundefinedundefined-2 .carousel-control-next-icon,
.heroundefinedundefinedundefined-2 .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--surface-color), transparent 20%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heroundefinedundefinedundefined-2 .carousel-control-prev,
.heroundefinedundefinedundefined-2 .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

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

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

/*--------------------------------------------------------------
# Aboutundefinedundefinedundefined 5 Section
--------------------------------------------------------------*/
.aboutundefinedundefinedundefined-5 .container {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.aboutundefinedundefinedundefined-5 .skills-content h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 30px 0 15px 0;
}

.aboutundefinedundefinedundefined-5 .progress {
  height: 36px;
  display: block;
  background: none;
  border-radius: 0;
  margin-top: 15px;
}

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

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

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

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

.aboutundefinedundefinedundefined-5 .about-me h4 {
  font-size: 28px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-weight: 700;
}

.aboutundefinedundefinedundefined-5 .about-me h4:after {
  content: "";
  position: absolute;
  display: block;
  width: 64px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
  margin: auto;
}

.aboutundefinedundefinedundefined-5 .about-me p {
  font-size: 18px;
}

/*--------------------------------------------------------------
# Aboutundefinedundefinedundefined 6 Section
--------------------------------------------------------------*/
.aboutundefinedundefinedundefined-6 {
  --accent-color: #f45a36;
}

.aboutundefinedundefinedundefined-6 .container {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.aboutundefinedundefinedundefined-6 .skills-content h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 30px 0 15px 0;
}

.aboutundefinedundefinedundefined-6 .progress {
  height: 36px;
  display: block;
  background: none;
  border-radius: 0;
  margin-top: 15px;
}

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

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

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

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

.aboutundefinedundefinedundefined-6 .about-me h4 {
  font-size: 28px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-weight: 700;
}

.aboutundefinedundefinedundefined-6 .about-me h4:after {
  content: "";
  position: absolute;
  display: block;
  width: 64px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
  margin: auto;
}

.aboutundefinedundefinedundefined-6 .about-me p {
  font-size: 18px;
}

/*--------------------------------------------------------------
# Call To Action 6 Section
--------------------------------------------------------------*/
.call-to-action-6 {
  --accent-color: #2986cc;
  padding: 120px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action-6 img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action-6:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action-6 .container {
  position: relative;
  z-index: 3;
}

.call-to-action-6 h3 {
  color: var(--default-color);
  font-size: 28px;
  font-weight: 700;
}

.call-to-action-6 p {
  color: var(--default-color);
}

.call-to-action-6 .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action-6 .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Pricing 2 Section
--------------------------------------------------------------*/
.pricing-2 {
  --background-color: #f3f6f4;
  --default-color: #000000;
  --heading-color: #000000;
}

.pricing-2 .pricing-item {
  border-bottom: 1px dashed color-mix(in srgb, var(--default-color), transparent 60%);
  width: 100%;
  height: 100%;
  padding: 0 0 15px 0;
}

.pricing-2 .pricing-item h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.pricing-2 .pricing-item h4 {
  margin: 0;
  font-size: 18px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Aboutundefinedundefinedundefinedundefined Section
--------------------------------------------------------------*/
.aboutundefinedundefinedundefinedundefined .container {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.aboutundefinedundefinedundefinedundefined .skills-content h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 30px 0 15px 0;
}

.aboutundefinedundefinedundefinedundefined .progress {
  height: 36px;
  display: block;
  background: none;
  border-radius: 0;
  margin-top: 15px;
}

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

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

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

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

.aboutundefinedundefinedundefinedundefined .about-me h4 {
  font-size: 28px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-weight: 700;
}

.aboutundefinedundefinedundefinedundefined .about-me h4:after {
  content: "";
  position: absolute;
  display: block;
  width: 64px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
  margin: auto;
}

.aboutundefinedundefinedundefinedundefined .about-me p {
  font-size: 18px;
}

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

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

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

.portfolio-details-2 .swiper-button-prev:after,
.portfolio-details-2 .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-2 .swiper-button-prev:hover:after,
.portfolio-details-2 .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

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

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

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

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

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

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

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

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

.portfolio-details-2 .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-2 .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

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

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

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

.portfolio-details-2 .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-2 .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-2 .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

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

.portfolio-details-2 .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details-2 .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-2 .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

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

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

/*--------------------------------------------------------------
# Pricing 4 Section
--------------------------------------------------------------*/
.pricing-4 {
  --basic-plan-color: #45B7D1;
  --standard-plan-color: #ee8d1e;
  --pro-plan-color: #b4194a;
  --enterprise-plan-color: #7367F0;
}

.pricing-4 .pricing-cards {
  perspective: 1000px;
}

.pricing-4 .pricing-card {
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: all 0.5s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.pricing-4 .pricing-card:hover {
  transform: translateZ(20px) rotateX(5deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-4 .pricing-card.basic {
  border-top: 5px solid var(--basic-plan-color);
}

.pricing-4 .pricing-card.basic .icon-wrapper {
  background-color: var(--basic-plan-color);
}

.pricing-4 .pricing-card.standard {
  border-top: 5px solid var(--standard-plan-color);
}

.pricing-4 .pricing-card.standard .icon-wrapper {
  background-color: var(--standard-plan-color);
}

.pricing-4 .pricing-card.pro {
  border-top: 5px solid var(--pro-plan-color);
}

.pricing-4 .pricing-card.pro .icon-wrapper {
  background-color: var(--pro-plan-color);
}

.pricing-4 .pricing-card.enterprise {
  border-top: 5px solid var(--enterprise-plan-color);
}

.pricing-4 .pricing-card.enterprise .icon-wrapper {
  background-color: var(--enterprise-plan-color);
}

.pricing-4 .pricing-card .pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.pricing-4 .pricing-card .pricing-header .icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto 20px;
}

.pricing-4 .pricing-card .pricing-header .icon-wrapper i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.pricing-4 .pricing-card .pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.pricing-4 .pricing-card .pricing-header .price {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--heading-color);
}

.pricing-4 .pricing-card .pricing-header .price .currency {
  font-size: 1.5rem;
  vertical-align: super;
}

.pricing-4 .pricing-card .pricing-header .price .period {
  font-size: 1rem;
  color: var(--default-color);
  opacity: 0.7;
  font-weight: 400;
  margin-left: -4px;
}

.pricing-4 .pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-4 .pricing-card .features-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  font-size: 1rem;
}

.pricing-4 .pricing-card .features-list li i {
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.pricing-4 .pricing-card .features-list li i.bi-check-lg {
  color: #4CAF50;
}

.pricing-4 .pricing-card .features-list li i.bi-x-lg {
  color: #F44336;
}

.pricing-4 .pricing-card .btn-custom {
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  border: none;
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.pricing-4 .pricing-card .btn-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  z-index: -1;
}

.pricing-4 .pricing-card .btn-custom:hover::before {
  width: 100%;
}

.pricing-4 .pricing-card.basic .btn-custom {
  background-color: var(--basic-plan-color);
}

.pricing-4 .pricing-card.standard .btn-custom {
  background-color: var(--standard-plan-color);
}

.pricing-4 .pricing-card.pro .btn-custom {
  background-color: var(--pro-plan-color);
}

.pricing-4 .pricing-card.enterprise .btn-custom {
  background-color: var(--enterprise-plan-color);
}

@media (max-width: 991.98px) {
  .pricing-4 .pricing-card {
    margin-bottom: 3rem;
  }
}

/*--------------------------------------------------------------
# About 5 Section
--------------------------------------------------------------*/
.about-5 .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color) 10%, transparent);
  margin-bottom: 1rem;
}

.about-5 .section-badge i {
  font-size: 1rem;
}

.about-5 .about-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.about-5 .about-description,
.about-5 .section-text {
  color: color-mix(in srgb, var(--default-color) 80%, transparent);
  line-height: 1.6;
}

.about-5 .features-boxes .feature-box {
  height: 100%;
  position: relative;
}

.about-5 .features-boxes .feature-box .icon-box {
  width: 60px;
  height: 60px;
  margin: 0 0 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--accent-color) 15%, transparent);
  color: var(--accent-color);
  font-size: 1.75rem;
  transition: all 0.3s ease;
}

.about-5 .features-boxes .feature-box h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.about-5 .features-boxes .feature-box h3 a {
  color: var(--heading-color);
}

.about-5 .features-boxes .feature-box p {
  color: color-mix(in srgb, var(--default-color) 80%, transparent);
  margin-bottom: 0;
  line-height: 1.6;
}

.about-5 .features-boxes .feature-box:hover .icon-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about-5 .features-boxes .feature-box:hover h3 a {
  color: var(--accent-color);
}

.about-5 .video-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about-5 .video-box img {
  width: 100%;
  border-radius: 20px;
}

.about-5 .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters-container {
  margin-bottom: 40px;
}

.portfolio .portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.portfolio .portfolio-filters li {
  font-size: 15px;
  font-weight: 500;
  padding: 8px 20px;
  cursor: pointer;
  border-radius: 30px;
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
  color: var(--default-color);
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  transform: translateY(-2px);
}

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

.portfolio .portfolio-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.1);
}

.portfolio .portfolio-card:hover .portfolio-overlay {
  opacity: 1;
  visibility: visible;
}

.portfolio .portfolio-card:hover .portfolio-overlay .portfolio-actions {
  transform: translateY(0);
}

.portfolio .portfolio-card .portfolio-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.portfolio .portfolio-card .portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-in-out;
}

.portfolio .portfolio-card .portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.portfolio .portfolio-card .portfolio-overlay .portfolio-actions {
  transform: translateY(20px);
  transition: all 0.4s ease-in-out;
  display: flex;
  gap: 15px;
}

.portfolio .portfolio-card .portfolio-overlay .portfolio-actions a {
  width: 45px;
  height: 45px;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 20px;
  transition: all 0.3s ease;
}

.portfolio .portfolio-card .portfolio-overlay .portfolio-actions a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.portfolio .portfolio-card .portfolio-content {
  padding: 25px;
}

.portfolio .portfolio-card .portfolio-content .category {
  font-size: 14px;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}

.portfolio .portfolio-card .portfolio-content h3 {
  font-size: 20px;
  margin: 0 0 15px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.portfolio .portfolio-card .portfolio-content h3:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-card .portfolio-content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    padding: 6px 15px;
  }

  .portfolio .portfolio-card .portfolio-content {
    padding: 20px;
  }

  .portfolio .portfolio-card .portfolio-content h3 {
    font-size: 18px;
  }

  .portfolio .portfolio-card .portfolio-content p {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Testimonialsundefined Section
--------------------------------------------------------------*/
.testimonialsundefined .section-header {
  margin-bottom: 40px;
}

.testimonialsundefined .testimonials-carousel,
.testimonialsundefined .testimonials-slider {
  overflow: hidden;
}

.testimonialsundefined .testimonial-item {
  text-align: center;
}

.testimonialsundefined .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

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

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

.testimonialsundefined .testimonial-item .stars {
  margin-bottom: 15px;
}

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

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

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

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

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

.testimonialsundefined .swiper-wrapper {
  height: auto;
}

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

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

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

@media (min-width: 992px) {
  .testimonialsundefined .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Heroundefinedundefined 4 Section
--------------------------------------------------------------*/
.heroundefinedundefined-4 {
  --background-color: rgba(255, 255, 255, 0);
  --surface-color: #2986cc;
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.heroundefinedundefined-4 .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .heroundefinedundefined-4 .info {
    padding: 100px 50px 60px 50px;
  }
}

.heroundefinedundefined-4 .info h2 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 72px;
  font-weight: 700;
  position: relative;
}

.heroundefinedundefined-4 .info h2 span {
  color: var(--accent-color);
  text-decoration: underline;
}

.heroundefinedundefined-4 .info h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .heroundefinedundefined-4 .info h2 {
    font-size: 36px;
  }
}

.heroundefinedundefined-4 .info p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
}

.heroundefinedundefined-4 .info .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.5s;
  margin: 10px;
}

.heroundefinedundefined-4 .info .btn-get-started:hover {
  background: var(--surface-color);
  color: var(--accent-color);
}

.heroundefinedundefined-4 .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.heroundefinedundefined-4 .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.4s;
}

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

.heroundefinedundefined-4 .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

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

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

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

.heroundefinedundefined-4 .carousel-control-next-icon,
.heroundefinedundefined-4 .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--surface-color), transparent 20%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heroundefinedundefined-4 .carousel-control-prev,
.heroundefinedundefined-4 .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

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

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

/*--------------------------------------------------------------
# Aboutundefinedundefined 5 Section
--------------------------------------------------------------*/
.aboutundefinedundefined-5 .container {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.aboutundefinedundefined-5 .skills-content h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 30px 0 15px 0;
}

.aboutundefinedundefined-5 .progress {
  height: 36px;
  display: block;
  background: none;
  border-radius: 0;
  margin-top: 15px;
}

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

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

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

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

.aboutundefinedundefined-5 .about-me h4 {
  font-size: 28px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-weight: 700;
}

.aboutundefinedundefined-5 .about-me h4:after {
  content: "";
  position: absolute;
  display: block;
  width: 64px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
  margin: auto;
}

.aboutundefinedundefined-5 .about-me p {
  font-size: 18px;
}

/*--------------------------------------------------------------
# Call To Actionundefined 3 Section
--------------------------------------------------------------*/
.call-to-actionundefined-3 {
  --default-color: #ffffff;
  --accent-color: #2986cc;
  position: relative;
  clip-path: inset(0);
}

.call-to-actionundefined-3 img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-actionundefined-3 .container {
  position: relative;
  z-index: 3;
}

.call-to-actionundefined-3 h3 {
  color: var(--default-color);
  font-size: 28px;
  font-weight: 700;
}

.call-to-actionundefined-3 p {
  color: var(--default-color);
}

.call-to-actionundefined-3 .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-actionundefined-3 .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}