/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  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: "Raleway",  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: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #36343a; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #009970; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #444444;  /* The default color of the main navmenu links */
  --nav-hover-color: #009970; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #009970; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

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

.accent-background {
  --background-color: #009970;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #00cc95;
}

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

/* 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: #ffffff;
  color: var(--default-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background-color: var(--background-color);
  transition: all 0.5s;
  position: relative;
  padding-top: 5px;
  padding-bottom: 5px;
}

.header .logo {
  background: var(--accent-color);
  position: absolute;
  inset: 0 auto 0 0;
  padding: 0 20px;
}

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

.header .logo h1 {
  font-size: 26px;
  margin: 0;
  font-weight: 500;
  color: var(--contrast-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 5px 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

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

@media (max-width: 1200px) {
  .header {
    padding: 0;
  }

  .header .header-container {
    padding: 10px 0;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@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>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

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

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

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

/* Mobile Navigation */
@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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .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);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

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

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

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

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

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

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

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

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

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

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

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

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

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

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

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

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

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

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

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

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

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

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

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

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

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

@media (max-width: 1199px) {

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

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

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

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding-top: 80px;
  width: 100%;
  min-height: 75vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 80px;
}

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

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

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

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero p {
  margin: 10px 0 0 0;
  font-size: 24px;
  color: var(--heading-color);
}

.hero .btn-get-started {
  color: var(--default-color);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 40px;
  margin: 30px 0 0 0;
  border-radius: 50px;
  transition: 0.5s;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 50%);
}

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

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

  .hero p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 20px 0;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

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

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

/*--------------------------------------------------------------
# Abstract Section
--------------------------------------------------------------*/
.abstract .content ul {
  list-style: none;
  padding: 0;
}

.abstract .content ul p {
  font-size: 1.25rem;
}

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

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-image {
  position: relative;
}

.features .features-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.features .features-item i {
  font-size: 48px;
  color: var(--accent-color);
  margin-right: 20px;
  line-height: 0;
}

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

/*--------------------------------------------------------------
# Video Section
--------------------------------------------------------------*/
.video .content-title {
  color: var(--accent-color);
  margin-bottom: 30px;
}

.video .btn-cta {
  text-transform: uppercase;
  font-size: 14px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 30px;
  padding-right: 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 6px;
}

.video .list-check {
  margin-bottom: 50px;
}

.video .list-check li {
  display: block;
  padding-left: 30px;
  position: relative;
}

.video .list-check li:before {
  content: "\f26e";
  display: inline-block;
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  top: 0.1rem;
  font-size: 20px;
  left: 0;
  color: var(--accent-color);
}

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

/*--------------------------------------------------------------
# Project Timeline Section
--------------------------------------------------------------*/
.project_timeline {
  padding-top: 80px;
  padding-bottom: 80px;
}

.project_timeline .content {
  padding-right: 30px;
}

.project_timeline .subtitle {
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.project_timeline .title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.project_timeline .description {
  margin-bottom: 30px;
  color: var(--default-color);
}

.project_timeline .image-grid {
  display: flex;
  gap: 15px;
  height: 450px;
}

.project_timeline .main-image {
  flex: 0 0 65%;
  height: 100%;
}

.project_timeline .main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project_timeline .side-images {
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.project_timeline .side-images img {
  width: 100%;
  height: calc(50% - 7.5px);
  object-fit: cover;
}

.project_timeline .stats {
  margin-top: 30px;
}

.project_timeline .stat-item {
  margin-bottom: 20px;
}

.project_timeline .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
  line-height: 1;
}

.project_timeline .stat-text {
  color: var(--heading-color);
  font-size: 1rem;
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .project_timeline .content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .project_timeline .image-grid {
    height: auto;
    flex-direction: column;
  }

  .project_timeline .main-image,
  .project_timeline .side-images {
    flex: 0 0 100%;
  }

  .project_timeline .side-images {
    flex-direction: row;
  }

  .project_timeline .side-images img {
    height: 200px;
    width: calc(50% - 7.5px);
  }
}

/*--------------------------------------------------------------
# Development Team Section
--------------------------------------------------------------*/
.development_team .member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-radius: 15px;
  padding: 15px;
  overflow: hidden;
}

.development_team .member img {
  border-radius: 15px;
  overflow: hidden;
}

.development_team .member .member-content {
  padding: 0 20px 30px 20px;
}

.development_team .member h4 {
  font-weight: 700;
  margin-top: 16px;
  margin-bottom: 2px;
  font-size: 20px;
}

.development_team .member span {
  font-style: italic;
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.development_team .member .social {
  margin-top: 15px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.development_team .member .social a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  transition: 0.3s;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
}

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

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

/*--------------------------------------------------------------
# Project Background Section
--------------------------------------------------------------*/
.project_background .card {
  background-color: var(--background-color);
  color: var(--default-color);
  border: none;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  min-height: 500px;
}

.project_background .card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 25%, rgba(0, 0, 0, 0.9) 75%);
  z-index: 2;
}

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

.project_background .card .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 30px;
}

.project_background .card .card-body h3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 0px;
  padding-left: 10px;
  border-left: 3px solid var(--accent-color);
}

.project_background .card .card-body h3 a {
  color: var(--contrast-color);
}

.project_background .card .card-body .card-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.5s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.project_background .card .card-body .card-content p {
  font-size: 15px;
  padding-top: 10px;
  margin-bottom: 0;
  overflow: hidden;
  color: var(--contrast-color);
}

.project_background .card:hover .card-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content .who-we-are {
  text-transform: uppercase;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

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

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

.about .content ul li {
  padding-bottom: 10px;
}

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

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

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .about-images img {
  border-radius: 10px;
}

/*--------------------------------------------------------------
# Project Goals Section
--------------------------------------------------------------*/
.project_goals .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  padding: 30px;
  box-shadow: 0px 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: 0.3s;
  height: 100%;
  border: 0;
}

.project_goals .card img {
  padding: 30px 50px;
  transition: 0.5s;
  transform: scale(1.1);
}

.project_goals .card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}

.project_goals .card:hover {
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.project_goals .card:hover img {
  transform: scale(1);
}

/*--------------------------------------------------------------
# Requirements Gathering Section
--------------------------------------------------------------*/
.requirements_gathering .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  padding: 30px;
  box-shadow: 0px 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: 0.3s;
  height: 100%;
  border: 0;
}

.requirements_gathering .card img {
  padding: 30px 50px;
  transition: 0.5s;
  transform: scale(1.1);
}

.requirements_gathering .card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}

.requirements_gathering .card:hover {
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.requirements_gathering .card:hover img {
  transform: scale(1);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq {
  padding-top: 60px;
  padding-bottom: 60px;
}

.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.faq .faq-description {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.faq .faq-arrow {
  color: var(--accent-color);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

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

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Faq 2 Section
--------------------------------------------------------------*/
.faq-2 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.faq-2 .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.faq-2 .faq-description {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.faq-2 .faq-arrow {
  color: var(--accent-color);
}

.faq-2 .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.faq-2 .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq-2 .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq-2 .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq-2 .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq-2 .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq-2 .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq-2 .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq-2 .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq-2 .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq-2 .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq-2 .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Personas Section
--------------------------------------------------------------*/
.personas .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  padding: 30px;
  box-shadow: 0px 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: 0.3s;
  height: 100%;
  border: 0;
}

.personas .card img {
  padding: 30px 50px;
  transition: 0.5s;
  transform: scale(1.1);
}

.personas .card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}

.personas .card:hover {
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.personas .card:hover img {
  transform: scale(1);
}

/*--------------------------------------------------------------
# Use Cases Section
--------------------------------------------------------------*/
.use_cases .card-item {
  background-color: color-mix(in srgb, var(--accent-color), var(--background-color) 95%);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.use_cases .card-item.active,
.use_cases .card-item:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.use_cases .card-item.active h3,
.use_cases .card-item.active .icon,
.use_cases .card-item.active .read-more,
.use_cases .card-item:hover h3,
.use_cases .card-item:hover .icon,
.use_cases .card-item:hover .read-more {
  color: var(--contrast-color);
}

.use_cases .card-item.active .read-more:hover,
.use_cases .card-item:hover .read-more:hover {
  color: var(--contrast-color);
}

.use_cases .card-item:hover {
  transform: translateY(-5px);
}

.use_cases .card-item .icon {
  font-size: 48px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.use_cases .card-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.use_cases .card-item .img-wrapper {
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 50%;
  margin-bottom: 20px;
}

.use_cases .card-item .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.use_cases .card-item .read-more {
  color: var(--accent-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.use_cases .card-item .read-more:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.use_cases .card-item .read-more i {
  margin-left: 5px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Moscow Section
--------------------------------------------------------------*/
.moscow .card-item {
  background-color: color-mix(in srgb, var(--accent-color), var(--background-color) 95%);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.moscow .card-item.active,
.moscow .card-item:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.moscow .card-item.active h3,
.moscow .card-item.active .icon,
.moscow .card-item.active .read-more,
.moscow .card-item:hover h3,
.moscow .card-item:hover .icon,
.moscow .card-item:hover .read-more {
  color: var(--contrast-color);
}

.moscow .card-item.active .read-more:hover,
.moscow .card-item:hover .read-more:hover {
  color: var(--contrast-color);
}

.moscow .card-item:hover {
  transform: translateY(-5px);
}

.moscow .card-item .icon {
  font-size: 48px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.moscow .card-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.moscow .card-item .img-wrapper {
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 50%;
  margin-bottom: 20px;
}

.moscow .card-item .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.moscow .card-item .read-more {
  color: var(--accent-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.moscow .card-item .read-more:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.moscow .card-item .read-more i {
  margin-left: 5px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# About 3 Section
--------------------------------------------------------------*/
.about-3 .inner-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin: 30px 0;
}

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

.about-3 .our-story {
  padding: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
}

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

.about-3 .our-story h4 {
  text-transform: uppercase;
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Related Projects Review Section
--------------------------------------------------------------*/
.related_projects_review .card-item {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 30px;
  transition: all ease-in-out 0.3s;
  height: 100%;
  position: relative;
}

.related_projects_review .card-item span {
  color: var(--accent-color);
  display: block;
  font-size: 28px;
  font-weight: 700;
}

.related_projects_review .card-item h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
}

.related_projects_review .card-item h4 a {
  color: var(--heading-color);
}

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

.related_projects_review .card-item:hover {
  background: var(--accent-color);
  padding: 30px 30px 70px 30px;
}

.related_projects_review .card-item:hover span,
.related_projects_review .card-item:hover h4 a,
.related_projects_review .card-item:hover p {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Technology Review Section
--------------------------------------------------------------*/
.technology_review .steps-wrapper {
  position: relative;
  padding: 20px 0;
}

.technology_review .steps-wrapper::before {
  content: "";
  position: absolute;
  width: 2px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.technology_review .step-item {
  margin-bottom: 50px;
  width: 100%;
  position: relative;
}

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

.technology_review .step-item:nth-child(even) .step-content {
  flex-direction: row-reverse;
}

.technology_review .step-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.technology_review .step-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  transition: all 0.3s ease-in-out;
}

.technology_review .step-icon i {
  font-size: 32px;
  color: var(--accent-color);
  transition: transform 0.3s ease-in-out;
}

.technology_review .step-info {
  flex: 1;
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-in-out;
}

.technology_review .step-info:hover {
  transform: translateY(-5px);
}

.technology_review .step-number {
  display: inline-block;
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.technology_review h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--heading-color);
}

.technology_review p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .technology_review .steps-wrapper::before {
    left: 25px;
  }

  .technology_review .step-item .step-content {
    flex-direction: row !important;
  }

  .technology_review .step-icon {
    width: 60px;
    height: 60px;
  }

  .technology_review .step-icon i {
    font-size: 24px;
  }

  .technology_review .step-info {
    padding: 20px;
  }

  .technology_review h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  .technology_review .step-content {
    gap: 20px;
  }

  .technology_review .step-icon {
    width: 50px;
    height: 50px;
  }

  .technology_review .step-icon i {
    font-size: 20px;
  }

  .technology_review .step-info {
    padding: 15px;
  }

  .technology_review h3 {
    font-size: 1.2rem;
  }

  .technology_review p {
    font-size: 0.95rem;
  }
}

/*--------------------------------------------------------------
# References Section
--------------------------------------------------------------*/
.references ul {
  list-style: none;
  padding: 0;
}

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

.references ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.references .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.references .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.references .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.references .read-more:hover i {
  transform: translate(5px, 0);
}

/*--------------------------------------------------------------
# Design Principles Section
--------------------------------------------------------------*/
.design_principles .faq-container {
  margin-top: 15px;
}

.design_principles .faq-container .faq-item {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: 0.3s;
}

.design_principles .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.design_principles .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

.design_principles .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
}

.design_principles .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.design_principles .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.design_principles .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.design_principles .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.design_principles .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.design_principles .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.design_principles .faq-container .faq-active {
  background-color: var(--accent-color);
  transition: 0.3s;
}

.design_principles .faq-container .faq-active h3,
.design_principles .faq-container .faq-active h3:hover,
.design_principles .faq-container .faq-active .faq-toggle,
.design_principles .faq-container .faq-active .faq-icon,
.design_principles .faq-container .faq-active .faq-content {
  color: var(--contrast-color);
}

.design_principles .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.design_principles .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
}

/*--------------------------------------------------------------
# Sketches Section
--------------------------------------------------------------*/
.sketches .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

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

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

.sketches .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

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

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

/*--------------------------------------------------------------
# Prototype Section
--------------------------------------------------------------*/
.prototype .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;
}

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

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

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

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

.prototype .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;
}

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# System Architecture Section
--------------------------------------------------------------*/
.design_patterns-2 .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;
}

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

.design_patterns-2 h1 {
  color: var(--heading-color);
  font-size: 30px;
}

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

.design_patterns-2 .swiper-pagination {
  position: absolute;
  bottom: 30px;
}

.design_patterns-2 .swiper-pagination .swiper-pagination-bullet {
  margin: 0 5px;
  background: #ffffff;
  opacity: 0.3;
}

.design_patterns-2 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
  opacity: 1;
}

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

/*--------------------------------------------------------------
# Design Patterns Section
--------------------------------------------------------------*/
.design_patterns .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;
}

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

.design_patterns h1 {
  color: var(--heading-color);
  font-size: 30px;
}

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

.design_patterns .swiper-pagination {
  position: absolute;
  bottom: 30px;
}

.design_patterns .swiper-pagination .swiper-pagination-bullet {
  margin: 0 5px;
  background: #ffffff;
  opacity: 0.3;
}

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

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

/*--------------------------------------------------------------
# Site Map Section
--------------------------------------------------------------*/
.site_map .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.site_map .content p {
  margin: 30px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

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

.site_map .content ul li {
  padding: 0 0 15px 0;
  font-weight: 600;
  display: flex;
}

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

/*--------------------------------------------------------------
# Data Storage Section
--------------------------------------------------------------*/
.data_storage .card-item {
  padding: 1.5rem;
  border-radius: 0.5rem;
  background-color: var(--surface-color);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  transition: all 0.3s ease-in-out;
  height: 100%;
}

.data_storage .card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.data_storage .card-item .card-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.data_storage .card-item h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.data_storage .card-item p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.9rem;
  line-height: 1.6;
}

.data_storage .image-wrapper img {
  border-radius: 1rem;
}

/*--------------------------------------------------------------
# Packages Frameworks Section
--------------------------------------------------------------*/
.packages_frameworks .card-item {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  height: 100%;
}

.packages_frameworks .card-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.packages_frameworks .card-item:hover .card-img img {
  transform: scale(1.1);
}

.packages_frameworks .card-item:hover .card-img .card-overlay {
  opacity: 1;
  visibility: visible;
}

.packages_frameworks .card-item:hover .card-img .card-overlay .card-overlay-content {
  transform: translateY(0);
}

.packages_frameworks .card-item .card-img {
  position: relative;
  overflow: hidden;
}

.packages_frameworks .card-item .card-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.packages_frameworks .card-item .card-img .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), color-mix(in srgb, var(--accent-color), transparent 30%));
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.packages_frameworks .card-item .card-img .card-overlay .card-overlay-content {
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.3s ease-in-out;
}

.packages_frameworks .card-item .card-img .card-overlay .card-overlay-content h4 {
  color: var(--contrast-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.packages_frameworks .card-item .card-img .card-overlay .card-overlay-content p {
  color: var(--contrast-color);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.packages_frameworks .card-item .card-img .card-overlay .card-overlay-content .btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.packages_frameworks .card-item .card-img .card-overlay .card-overlay-content .btn-link:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: rotate(45deg);
}

.packages_frameworks .card-item .card-img .card-overlay .card-overlay-content .btn-link i {
  font-size: 1.2rem;
}

.packages_frameworks .card-item .card-content {
  padding: 2rem;
}

.packages_frameworks .card-item .card-content .card-category {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.packages_frameworks .card-item .card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
  font-weight: 600;
  line-height: 1.3;
}

.packages_frameworks .card-item .card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Testing Strategy Section
--------------------------------------------------------------*/
.testing_strategy .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

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

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

.testing_strategy .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

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

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

/*--------------------------------------------------------------
# Unit Testing Section
--------------------------------------------------------------*/
.unit_testing .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

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

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

.unit_testing .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

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

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

/*--------------------------------------------------------------
# Integration Testing Section
--------------------------------------------------------------*/
.integration_testing .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

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

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

.integration_testing .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

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

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

/*--------------------------------------------------------------
# User Testing Section
--------------------------------------------------------------*/
.user_testing .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

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

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

.user_testing .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

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

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

/*--------------------------------------------------------------
# Achievements Section
--------------------------------------------------------------*/
.achievements {
  padding-top: 60px;
  margin: 30px 0;
  padding-bottom: 60px;
}

.achievements .table-responsive {
  border-radius: 12px;
  background-color: var(--surface-color);
}

.achievements .table {
  margin-bottom: 0;
}

.achievements .table th,
.achievements .table td {
  padding: 20px;
  text-align: center;
  vertical-align: middle;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  background-color: var(--surface-color);
  color: var(--default-color);
}

.achievements .table th:first-child,
.achievements .table td:first-child {
  text-align: left;
}

.achievements .table th {
  border-top: none;
  background-color: var(--surface-color);
}

.achievements .table .features-column {
  min-width: 200px;
}

.achievements .table .features-column h5 {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 4rem;
  margin: 0;
}

.achievements .table .plan-column {
  min-width: 220px;
  position: relative;
}

.achievements .table .plan-column.popular {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.achievements .table .plan-column.popular .popular-badge {
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  padding: 4px 15px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-block;
  margin: 0 auto 15px auto;
}

.achievements .table .plan-column h4 {
  margin: 0 0 20px;
  font-size: 1.25rem;
}

.achievements .table .plan-column .btn {
  padding: 8px 24px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.achievements .table .plan-column .btn.btn-outline {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
}

.achievements .table .plan-column .btn.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.achievements .table .plan-column .btn.btn-solid {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.achievements .table .plan-column .btn.btn-solid:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.achievements .table tbody tr:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.achievements .table tbody tr td {
  font-size: 0.9375rem;
}

.achievements .table tbody tr td.feature-name {
  font-weight: 500;
}

.achievements .table tbody tr td .bi-check-lg {
  color: #28a745;
  font-size: 1.25rem;
}

.achievements .table tbody tr td .bi-x-lg {
  color: #dc3545;
  font-size: 1.25rem;
}

@media (max-width: 991.98px) {
  .achievements .table .plan-column {
    min-width: 180px;
  }
}

@media (max-width: 767.98px) {
  .achievements .table-responsive {
    border-radius: 8px;
  }

  .achievements .table th,
  .achievements .table td {
    padding: 15px 10px;
  }

  .achievements .table .features-column {
    min-width: 140px;
  }

  .achievements .table .plan-column {
    min-width: 140px;
  }

  .achievements .table .plan-column h4 {
    font-size: 1.125rem;
  }

  .achievements .table .plan-column .btn {
    padding: 6px 16px;
    font-size: 0.875rem;
  }

  .achievements .table tbody tr td {
    font-size: 0.875rem;
  }
}

/*--------------------------------------------------------------
# Comparison Table 2 Section
--------------------------------------------------------------*/
.comparison-table-2 {
  margin: 30px 0;
}

.comparison-table-2 .table-responsive {
  border-radius: 12px;
  background-color: var(--surface-color);
}

.comparison-table-2 .table {
  margin-bottom: 0;
}

.comparison-table-2 .table th,
.comparison-table-2 .table td {
  padding: 20px;
  text-align: center;
  vertical-align: middle;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  background-color: var(--surface-color);
  color: var(--default-color);
}

.comparison-table-2 .table th:first-child,
.comparison-table-2 .table td:first-child {
  text-align: left;
}

.comparison-table-2 .table th {
  border-top: none;
  background-color: var(--surface-color);
}

.comparison-table-2 .table .features-column {
  min-width: 200px;
}

.comparison-table-2 .table .features-column h5 {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 1rem;
  margin: 0;
}

.comparison-table-2 .table .plan-column {
  min-width: 220px;
  position: relative;
}

.comparison-table-2 .table .plan-column.popular {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.comparison-table-2 .table .plan-column.popular .popular-badge {
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  padding: 4px 15px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-block;
  margin: 0 auto 15px auto;
}

.comparison-table-2 .table .plan-column h4 {
  margin: 0 0 20px;
  font-size: 1.25rem;
}

.comparison-table-2 .table .plan-column .btn {
  padding: 8px 24px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.comparison-table-2 .table .plan-column .btn.btn-outline {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
}

.comparison-table-2 .table .plan-column .btn.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comparison-table-2 .table .plan-column .btn.btn-solid {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.comparison-table-2 .table .plan-column .btn.btn-solid:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.comparison-table-2 .table tbody tr:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.comparison-table-2 .table tbody tr td {
  font-size: 0.9375rem;
}

.comparison-table-2 .table tbody tr td.feature-name {
  font-weight: 500;
}

.comparison-table-2 .table tbody tr td .bi-check-lg {
  color: #28a745;
  font-size: 1.25rem;
}

.comparison-table-2 .table tbody tr td .bi-x-lg {
  color: #dc3545;
  font-size: 1.25rem;
}

@media (max-width: 991.98px) {
  .comparison-table-2 .table .plan-column {
    min-width: 180px;
  }
}

@media (max-width: 767.98px) {
  .comparison-table-2 .table-responsive {
    border-radius: 8px;
  }

  .comparison-table-2 .table th,
  .comparison-table-2 .table td {
    padding: 15px 10px;
  }

  .comparison-table-2 .table .features-column {
    min-width: 140px;
  }

  .comparison-table-2 .table .plan-column {
    min-width: 140px;
  }

  .comparison-table-2 .table .plan-column h4 {
    font-size: 1.125rem;
  }

  .comparison-table-2 .table .plan-column .btn {
    padding: 6px 16px;
    font-size: 0.875rem;
  }

  .comparison-table-2 .table tbody tr td {
    font-size: 0.875rem;
  }
}

/*--------------------------------------------------------------
# Comparison Table 3 Section
--------------------------------------------------------------*/
.comparison-table-3 {
  margin: 30px 0;
}

.comparison-table-3 .table-responsive {
  border-radius: 12px;
  background-color: var(--surface-color);
}

.comparison-table-3 .table {
  margin-bottom: 0;
}

.comparison-table-3 .table th,
.comparison-table-3 .table td {
  padding: 20px;
  text-align: center;
  vertical-align: middle;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  background-color: var(--surface-color);
  color: var(--default-color);
}

.comparison-table-3 .table th:first-child,
.comparison-table-3 .table td:first-child {
  text-align: left;
}

.comparison-table-3 .table th {
  border-top: none;
  background-color: var(--surface-color);
}

.comparison-table-3 .table .features-column {
  min-width: 200px;
}

.comparison-table-3 .table .features-column h5 {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 1rem;
  margin: 0;
}

.comparison-table-3 .table .plan-column {
  min-width: 220px;
  position: relative;
}

.comparison-table-3 .table .plan-column.popular {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.comparison-table-3 .table .plan-column.popular .popular-badge {
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  padding: 4px 15px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-block;
  margin: 0 auto 15px auto;
}

.comparison-table-3 .table .plan-column h4 {
  margin: 0 0 20px;
  font-size: 1.25rem;
}

.comparison-table-3 .table .plan-column .btn {
  padding: 8px 24px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.comparison-table-3 .table .plan-column .btn.btn-outline {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
}

.comparison-table-3 .table .plan-column .btn.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comparison-table-3 .table .plan-column .btn.btn-solid {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.comparison-table-3 .table .plan-column .btn.btn-solid:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.comparison-table-3 .table tbody tr:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.comparison-table-3 .table tbody tr td {
  font-size: 0.9375rem;
}

.comparison-table-3 .table tbody tr td.feature-name {
  font-weight: 500;
}

.comparison-table-3 .table tbody tr td .bi-check-lg {
  color: #28a745;
  font-size: 1.25rem;
}

.comparison-table-3 .table tbody tr td .bi-x-lg {
  color: #dc3545;
  font-size: 1.25rem;
}

@media (max-width: 991.98px) {
  .comparison-table-3 .table .plan-column {
    min-width: 180px;
  }
}

@media (max-width: 767.98px) {
  .comparison-table-3 .table-responsive {
    border-radius: 8px;
  }

  .comparison-table-3 .table th,
  .comparison-table-3 .table td {
    padding: 15px 10px;
  }

  .comparison-table-3 .table .features-column {
    min-width: 140px;
  }

  .comparison-table-3 .table .plan-column {
    min-width: 140px;
  }

  .comparison-table-3 .table .plan-column h4 {
    font-size: 1.125rem;
  }

  .comparison-table-3 .table .plan-column .btn {
    padding: 6px 16px;
    font-size: 0.875rem;
  }

  .comparison-table-3 .table tbody tr td {
    font-size: 0.875rem;
  }
}

/*--------------------------------------------------------------
# Comparison Table 4 Section
--------------------------------------------------------------*/
.comparison-table-4 {
  margin: 30px 0;
}

.comparison-table-4 .table-responsive {
  border-radius: 12px;
  background-color: var(--surface-color);
}

.comparison-table-4 .table {
  margin-bottom: 0;
}

.comparison-table-4 .table th,
.comparison-table-4 .table td {
  padding: 20px;
  text-align: center;
  vertical-align: middle;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  background-color: var(--surface-color);
  color: var(--default-color);
}

.comparison-table-4 .table th:first-child,
.comparison-table-4 .table td:first-child {
  text-align: left;
}

.comparison-table-4 .table th {
  border-top: none;
  background-color: var(--surface-color);
}

.comparison-table-4 .table .features-column {
  min-width: 200px;
}

.comparison-table-4 .table .features-column h5 {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 1rem;
  margin: 0;
}

.comparison-table-4 .table .plan-column {
  min-width: 220px;
  position: relative;
}

.comparison-table-4 .table .plan-column.popular {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.comparison-table-4 .table .plan-column.popular .popular-badge {
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  padding: 4px 15px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-block;
  margin: 0 auto 15px auto;
}

.comparison-table-4 .table .plan-column h4 {
  margin: 0 0 20px;
  font-size: 1.25rem;
}

.comparison-table-4 .table .plan-column .btn {
  padding: 8px 24px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.comparison-table-4 .table .plan-column .btn.btn-outline {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
}

.comparison-table-4 .table .plan-column .btn.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comparison-table-4 .table .plan-column .btn.btn-solid {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.comparison-table-4 .table .plan-column .btn.btn-solid:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.comparison-table-4 .table tbody tr:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.comparison-table-4 .table tbody tr td {
  font-size: 0.9375rem;
}

.comparison-table-4 .table tbody tr td.feature-name {
  font-weight: 500;
}

.comparison-table-4 .table tbody tr td .bi-check-lg {
  color: #28a745;
  font-size: 1.25rem;
}

.comparison-table-4 .table tbody tr td .bi-x-lg {
  color: #dc3545;
  font-size: 1.25rem;
}

@media (max-width: 991.98px) {
  .comparison-table-4 .table .plan-column {
    min-width: 180px;
  }
}

@media (max-width: 767.98px) {
  .comparison-table-4 .table-responsive {
    border-radius: 8px;
  }

  .comparison-table-4 .table th,
  .comparison-table-4 .table td {
    padding: 15px 10px;
  }

  .comparison-table-4 .table .features-column {
    min-width: 140px;
  }

  .comparison-table-4 .table .plan-column {
    min-width: 140px;
  }

  .comparison-table-4 .table .plan-column h4 {
    font-size: 1.125rem;
  }

  .comparison-table-4 .table .plan-column .btn {
    padding: 6px 16px;
    font-size: 0.875rem;
  }

  .comparison-table-4 .table tbody tr td {
    font-size: 0.875rem;
  }
}

/*--------------------------------------------------------------
# Critical Evaluation Section
--------------------------------------------------------------*/
.critical_evaluation .nav-tabs {
  border: none;
  background: color-mix(in srgb, var(--surface-color), transparent 50%);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}

.critical_evaluation .nav-tabs .nav-item {
  margin-bottom: 15px;
}

.critical_evaluation .nav-tabs .nav-item:last-child {
  margin-bottom: 0;
}

.critical_evaluation .nav-tabs .nav-link {
  padding: 20px;
  border: none;
  border-radius: 12px;
  background: var(--surface-color);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.critical_evaluation .nav-tabs .nav-link .d-flex {
  position: relative;
  z-index: 1;
}

.critical_evaluation .nav-tabs .nav-link .icon-box {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  transition: all 0.4s ease;
}

.critical_evaluation .nav-tabs .nav-link .icon-box i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.4s ease;
}

.critical_evaluation .nav-tabs .nav-link h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: var(--heading-color);
  transition: all 0.4s ease;
}

.critical_evaluation .nav-tabs .nav-link p {
  font-size: 14px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.4s ease;
}

.critical_evaluation .nav-tabs .nav-link:hover {
  transform: translateY(-2px);
}

.critical_evaluation .nav-tabs .nav-link:hover::before {
  opacity: 1;
}

.critical_evaluation .nav-tabs .nav-link:hover .icon-box {
  background: var(--accent-color);
}

.critical_evaluation .nav-tabs .nav-link:hover .icon-box i {
  color: var(--contrast-color);
}

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

.critical_evaluation .nav-tabs .nav-link:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.critical_evaluation .nav-tabs .nav-link.active {
  background: var(--accent-color);
}

.critical_evaluation .nav-tabs .nav-link.active::before {
  opacity: 0;
}

.critical_evaluation .nav-tabs .nav-link.active .icon-box {
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
}

.critical_evaluation .nav-tabs .nav-link.active .icon-box i {
  color: var(--contrast-color);
}

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

.critical_evaluation .nav-tabs .nav-link.active p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.critical_evaluation .tab-content .content-box {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.critical_evaluation .tab-content .content-box h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.critical_evaluation .tab-content .content-box h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 3px;
}

.critical_evaluation .tab-content .content-box p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
}

.critical_evaluation .tab-content .content-box p.highlight {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 92%), color-mix(in srgb, var(--accent-color), transparent 95%));
  padding: 20px;
  border-radius: 12px;
  position: relative;
}

.critical_evaluation .tab-content .content-box .features-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0 0;
}

.critical_evaluation .tab-content .content-box .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-left: 8px;
  transition: all 0.3s ease;
}

.critical_evaluation .tab-content .content-box .features-list li:last-child {
  margin-bottom: 0;
}

.critical_evaluation .tab-content .content-box .features-list li i {
  font-size: 20px;
  color: var(--accent-color);
  margin-right: 12px;
}

.critical_evaluation .tab-content .content-box .features-list li span {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.critical_evaluation .tab-content .content-box .features-list li:hover {
  transform: translateX(5px);
}

.critical_evaluation .tab-content .content-box .features-list li:hover span {
  color: var(--default-color);
}

.critical_evaluation .tab-content .content-box .image-box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.critical_evaluation .tab-content .content-box .image-box img {
  transition: all 0.6s ease;
}

.critical_evaluation .tab-content .content-box .image-box:hover img {
  transform: scale(1.05);
}

.critical_evaluation .tab-content .content-box .image-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
  pointer-events: none;
}

.critical_evaluation .tab-pane {
  transition: all 0.4s ease;
}

.critical_evaluation .tab-pane.fade {
  transform: translateY(10px);
  opacity: 0;
}

.critical_evaluation .tab-pane.show {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 991px) {
  .critical_evaluation .nav-tabs {
    margin-bottom: 30px;
  }

  .critical_evaluation .nav-tabs .nav-link {
    padding: 15px;
  }

  .critical_evaluation .nav-tabs .nav-link .icon-box {
    width: 40px;
    height: 40px;
  }

  .critical_evaluation .nav-tabs .nav-link .icon-box i {
    font-size: 20px;
  }

  .critical_evaluation .tab-content .content-box {
    padding: 30px;
  }

  .critical_evaluation .tab-content .content-box h3 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .critical_evaluation .nav-tabs .nav-item {
    margin-bottom: 10px;
  }

  .critical_evaluation .nav-tabs .nav-link h4 {
    font-size: 15px;
  }

  .critical_evaluation .nav-tabs .nav-link p {
    font-size: 13px;
  }

  .critical_evaluation .tab-content .content-box {
    padding: 25px;
  }

  .critical_evaluation .tab-content .content-box h3 {
    font-size: 22px;
  }

  .critical_evaluation .tab-content .content-box p {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Future Work Section
--------------------------------------------------------------*/
.future_work .steps-wrapper {
  position: relative;
  padding: 20px 0;
}

.future_work .steps-wrapper::before {
  content: "";
  position: absolute;
  width: 2px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.future_work .step-item {
  margin-bottom: 50px;
  width: 100%;
  position: relative;
}

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

.future_work .step-item:nth-child(even) .step-content {
  flex-direction: row-reverse;
}

.future_work .step-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.future_work .step-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  transition: all 0.3s ease-in-out;
}

.future_work .step-icon i {
  font-size: 32px;
  color: var(--accent-color);
  transition: transform 0.3s ease-in-out;
}

.future_work .step-info {
  flex: 1;
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-in-out;
}

.future_work .step-info:hover {
  transform: translateY(-5px);
}

.future_work .step-number {
  display: inline-block;
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.future_work h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--heading-color);
}

.future_work p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .future_work .steps-wrapper::before {
    left: 25px;
  }

  .future_work .step-item .step-content {
    flex-direction: row !important;
  }

  .future_work .step-icon {
    width: 60px;
    height: 60px;
  }

  .future_work .step-icon i {
    font-size: 24px;
  }

  .future_work .step-info {
    padding: 20px;
  }

  .future_work h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  .future_work .step-content {
    gap: 20px;
  }

  .future_work .step-icon {
    width: 50px;
    height: 50px;
  }

  .future_work .step-icon i {
    font-size: 20px;
  }

  .future_work .step-info {
    padding: 15px;
  }

  .future_work h3 {
    font-size: 1.2rem;
  }

  .future_work p {
    font-size: 0.95rem;
  }
}

/*--------------------------------------------------------------
# User Manual Section
--------------------------------------------------------------*/
.user_manual .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

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

.user_manual .content ul li {
  padding-bottom: 10px;
}

.user_manual .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

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

.user_manual .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.user_manual .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.user_manual .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), black 20%);
  padding-right: 19px;
}

.user_manual .content .read-more:hover i {
  margin-left: 10px;
}

/*--------------------------------------------------------------
# Deployment Manual Section
--------------------------------------------------------------*/
.deployment_manual .process-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.deployment_manual .process-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-bottom: 2.5rem;
}

.deployment_manual .process-item:last-child {
  padding-bottom: 0;
}

.deployment_manual .process-item .content {
  width: 100%;
  position: relative;
  background: linear-gradient(145deg, color-mix(in srgb, var(--accent-color), transparent 95%), var(--surface-color));
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.deployment_manual .process-item .content:hover {
  transform: translateX(10px);
  box-shadow: -8px 8px 25px rgba(0, 0, 0, 0.1);
}

.deployment_manual .process-item .content:hover .step-icon {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 15%), var(--accent-color));
  transform: rotate(10deg);
}

.deployment_manual .process-item .content:hover .step-number {
  transform: translateX(-5px);
  opacity: 1;
}

.deployment_manual .process-item .step-number {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent-color);
  font-family: var(--heading-font);
  line-height: 1;
  opacity: 0.2;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.deployment_manual .process-item .card-body {
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.deployment_manual .process-item .step-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.deployment_manual .process-item .step-icon i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.deployment_manual .process-item .step-content h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.deployment_manual .process-item .step-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.deployment_manual .process-item .arrow {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  margin: 1rem 0;
  width: 100px;
  height: 100px;
  opacity: 0.7;
}

@media (max-width: 767.98px) {
  .deployment_manual .process-container {
    padding: 1rem 0;
  }

  .deployment_manual .process-item {
    padding-bottom: 2rem;
  }

  .deployment_manual .process-item .content {
    border-width: 1px;
  }

  .deployment_manual .process-item .content:hover {
    transform: translateY(-5px);
  }

  .deployment_manual .process-item .step-number {
    font-size: 3rem;
    left: 50%;
    top: -1.5rem;
    transform: translateX(-50%);
  }

  .deployment_manual .process-item .step-number:hover {
    transform: translateX(-50%);
  }

  .deployment_manual .process-item .card-body {
    padding: 2rem 1.5rem 1.5rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .deployment_manual .process-item .step-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
  }

  .deployment_manual .process-item .step-icon i {
    font-size: 1.75rem;
  }

  .deployment_manual .process-item .step-content h3 {
    font-size: 1.25rem;
  }

  .deployment_manual .process-item .arrow {
    height: 60px;
    margin: 0.5rem 0;
  }
}

/*--------------------------------------------------------------
# Legal Statements Section
--------------------------------------------------------------*/
.legal_statements {
  padding-top: 60px;
  padding-bottom: 60px;
}

.legal_statements .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

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

.legal_statements .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
}

.legal_statements .content ul i {
  flex-shrink: 0;
  font-size: 48px;
  color: var(--accent-color);
  margin-right: 20px;
  line-height: 0;
}

.legal_statements .content ul h5 {
  font-size: 18px;
  font-weight: 700;
}

.legal_statements .content ul p {
  font-size: 15px;
}

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

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

/*--------------------------------------------------------------
# Dev Blog Section
--------------------------------------------------------------*/
.call-to-action {
  --background-color: var(--contrast-color);
}

.call-to-action .cta-box {
  position: relative;
  padding: 80px 30px;
  border-radius: 20px;
  overflow: hidden;
}

.call-to-action .cta-box .background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.call-to-action .cta-box .background-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, color-mix(in srgb, var(--surface-color), transparent 5%), color-mix(in srgb, var(--surface-color), transparent 10%));
  opacity: 0.95;
}

.call-to-action .cta-box .background-overlay .background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.6s ease-in-out;
}

.call-to-action .cta-box:hover .background-image {
  transform: scale(1.1);
}

.call-to-action .cta-box .content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.call-to-action .cta-box .content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.call-to-action .cta-box .content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.call-to-action .cta-box .content .cta-buttons .btn-cta {
  display: inline-flex;
  align-items: center;
  padding: 15px 35px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.call-to-action .cta-box .content .cta-buttons .btn-cta i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.call-to-action .cta-box .content .cta-buttons .btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.call-to-action .cta-box .content .cta-buttons .btn-cta:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .call-to-action .cta-box {
    padding: 60px 20px;
  }

  .call-to-action .cta-box .content h2 {
    font-size: 2rem;
  }

  .call-to-action .cta-box .content p {
    font-size: 1rem;
  }

  .call-to-action .cta-box .content .btn-cta {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Monthly Videos Section
--------------------------------------------------------------*/
.monthly_videos .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;
}

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

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

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

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

.monthly_videos .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;
}

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

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

.portfolio-details .portfolio-details-slider .swiper-slide img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  position: absolute;
  bottom: 20px;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--contrast-color);
  opacity: 0.7;
  transition: all 0.3s;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 5px;
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-button-next,
.portfolio-details .portfolio-details-slider .swiper-button-prev {
  width: 44px;
  height: 44px;
  background-color: var(--contrast-color);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s;
}

.portfolio-details .portfolio-details-slider .swiper-button-next::after,
.portfolio-details .portfolio-details-slider .swiper-button-prev::after {
  font-size: 20px;
  color: var(--accent-color);
}

.portfolio-details .portfolio-details-slider .swiper-button-next:hover,
.portfolio-details .portfolio-details-slider .swiper-button-prev:hover {
  opacity: 1;
}

.portfolio-details .portfolio-details-slider:hover .swiper-button-next,
.portfolio-details .portfolio-details-slider:hover .swiper-button-prev {
  opacity: 0.8;
}

.portfolio-details .project-content .project-header {
  margin-bottom: 40px;
}

.portfolio-details .project-content .project-header .category {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 15px;
}

.portfolio-details .project-content .project-header h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.portfolio-details .project-content .project-header .meta {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.portfolio-details .project-content .project-header .meta .meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.portfolio-details .project-content .project-header .meta .meta-item i {
  color: var(--accent-color);
  font-size: 18px;
}

.portfolio-details .project-content .project-header .meta .meta-item a {
  color: inherit;
}

.portfolio-details .project-content .project-header .meta .meta-item a:hover {
  color: var(--accent-color);
}

.portfolio-details .project-content .content .lead {
  font-size: 18px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 30px;
}

.portfolio-details .project-content .content .project-section {
  margin-bottom: 30px;
}

.portfolio-details .project-content .content .project-section h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  margin-bottom: 15px;
}

.portfolio-details .project-content .content .project-section h3 i {
  color: var(--accent-color);
}

.portfolio-details .project-content .content .project-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.8;
}

.portfolio-details .project-content .content .project-section:last-child {
  margin-bottom: 0;
}

.portfolio-details .project-sidebar .info-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.portfolio-details .project-sidebar .info-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.portfolio-details .project-sidebar .info-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.portfolio-details .project-sidebar .info-card .features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.portfolio-details .project-sidebar .info-card .features-list li i {
  color: var(--accent-color);
  font-size: 18px;
}

.portfolio-details .project-sidebar .info-card .tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.portfolio-details .project-sidebar .info-card .tech-stack span {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.portfolio-details .project-sidebar .gallery-grid {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.portfolio-details .project-sidebar .gallery-grid h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.portfolio-details .project-sidebar .gallery-grid img {
  border-radius: 8px;
  transition: transform 0.3s;
  cursor: pointer;
}

.portfolio-details .project-sidebar .gallery-grid img:hover {
  transform: scale(1.02);
}

@media (max-width: 991px) {
  .portfolio-details .project-content {
    margin-bottom: 40px;
  }
}


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

.hero-2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 10px);
  z-index: 1;
}

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

.hero-2 .content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 3rem;
}

@media (max-width: 991px) {
  .hero-2 .content-col {
    padding-right: 15px;
    margin-bottom: 3rem;
  }
}

.hero-2 .agency-name {
  margin-bottom: 1.5rem;
}

.hero-2 .agency-name h5 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--contrast-color);
  margin: 0;
}

.hero-2 .main-heading {
  margin-bottom: 2rem;
}

.hero-2 .main-heading h1 {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0;
}

@media (max-width: 1200px) {
  .hero-2 .main-heading h1 {
    font-size: 4rem;
  }
}

@media (max-width: 767px) {
  .hero-2 .main-heading h1 {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .hero-2 .main-heading h1 {
    font-size: 2.5rem;
  }
}

.hero-2 .divider {
  width: 60%;
  height: 1px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .hero-2 .divider {
    width: 100%;
  }
}

.hero-2 .description {
  margin-bottom: 2.5rem;
}

.hero-2 .description p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.hero-2 .cta-button .btn {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 40%);
  color: var(--default-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.hero-2 .cta-button .btn span {
  margin-right: 0.5rem;
}

.hero-2 .cta-button .btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

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

.hero-2 .cta-button .btn:hover i {
  transform: translateX(5px);
}

.hero-2 .visual-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .hero-2 .visual-content {
    flex-direction: column;
  }
}

.hero-2 .fluid-shape {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.hero-2 .fluid-shape .fluid-img {
  width: 100%;
  height: auto;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

.hero-2 .stats-card {
  position: absolute;
  bottom: 10%;
  right: 0;
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 10px;
  padding: 1.5rem;
  width: 200px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .hero-2 .stats-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 2rem;
    width: 90%;
  }
}

.hero-2 .stats-card .stats-number h2 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

.hero-2 .stats-card .stats-label {
  margin-top: 0.5rem;
}

.hero-2 .stats-card .stats-label p {
  font-size: 0.9rem;
  margin: 0;
}

.hero-2 .stats-card .stats-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.hero-2 .stats-card .stats-arrow a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.hero-2 .stats-card .stats-arrow a:hover {
  transform: translateY(-3px);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}
