/**
* Template Name: Passion
* Template URL: https://bootstrapmade.com/passion-bootstrap-template/
* Updated: Jul 21 2025 with Bootstrap v5.3.7
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# 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: "Barlow", sans-serif;
  --nav-font: "Inter", sans-serif;
}

/* Global Colors - Enterprise Green & White Design System */
:root {
  --background-color: #ffffff;
  --default-color: #334155;
  --heading-color: #064e3b;
  --accent-color: #059669;
  --accent-hover: #047857;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;

  /* Modern Emerald Green Palette */
  --primary-color: #059669;
  --primary-light: #10b981;
  --primary-lighter: #a7f3d0;
  --primary-lightest: #ecfdf5;
  --primary-dark: #047857;
  --primary-darker: #064e3b;
  --primary-gradient: linear-gradient(135deg, #059669 0%, #10b981 100%);
  --primary-glow: rgba(16, 185, 129, 0.28);

  --secondary-color: #0f172a;
  --light-bg: #f0fdf4;
  --dark-text: #0f172a;
  --light-text: #f8fafc;
  --white: #ffffff;

  --border-light: #e2e8f0;
  --border-green: #a7f3d0;

  --shadow-sm: 0 2px 8px rgba(6, 78, 59, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(6, 78, 59, 0.08), 0 8px 10px -6px rgba(6, 78, 59, 0.04);
  --shadow-lg: 0 20px 35px -10px rgba(5, 150, 105, 0.16), 0 10px 15px -5px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 22px 42px -8px rgba(5, 150, 105, 0.22);
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Nav Menu Colors */
:root {
  --nav-color: #ffffff;
  --nav-hover-color: #10b981;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #1e293b;
  --nav-dropdown-hover-color: #059669;
}

/* Color Presets */
.light-background {
  --background-color: #f0fdf4;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #061a14;
  --default-color: #e2e8f0;
  --heading-color: #ffffff;
  --surface-color: #0b261e;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}


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

p {
  text-align: justify !important;
}

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

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

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

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

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

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

/* body {
  overflow-x: hidden;
}

.section {
  padding: 80px 0;
}

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

img {
  max-width: 100%;
  height: auto;
} */

/* Section Titles */
/* .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h5 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-color);
}

.section-title h2 {
  font-size: 40px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 30px;
  }
} */

/* --------------------
   HERO SECTION
-------------------- */
/* #hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

#hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
}

#hero h5 {
  font-size: 18px;
  margin-bottom: 15px;
}

#hero p {
  font-size: 17px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 15px;
}

.hero-actions a {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
}

.hero-visual {
  text-align: right;
} */

/* Hero Responsive */
/* @media (max-width: 991px) {
  #hero {
    text-align: center;
    min-height: auto;
    padding-top: 120px;
  }

  #hero h1 {
    font-size: 38px;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-visual {
    margin-top: 40px;
    text-align: center;
  }
} */

/* --------------------
   ABOUT SECTION
-------------------- */
/* #about .content h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

#about .content p {
  font-size: 16px;
}

.stats-container {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-size: 36px;
  color: var(--accent-color);
}

.stat-item p {
  font-size: 14px;
} */

/* About Responsive */
/* @media (max-width: 768px) {
  #about .content {
    text-align: center;
  }

  .stats-container {
    flex-direction: column;
    gap: 20px;
  }
} */

/* --------------------
   FEATURED SERVICES
-------------------- */
/* .featured-services {
  background: var(--light-bg);
}

.service-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.service-card h4 {
  font-size: 22px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
} */

/* --------------------
   HOW WE WORK
-------------------- */
/* .steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.step-box {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.step-box h4 {
  margin-top: 15px;
  font-size: 20px;
} */

/* Steps Responsive */
/* @media (max-width: 991px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
} */

/* --------------------
   FEATURES (TABS)
-------------------- */
/* #features .nav-tabs {
  border: none;
  gap: 15px;
}

#features .nav-tabs .nav-link {
  border: none;
  background: var(--light-bg);
  padding: 18px;
  border-radius: 12px;
  font-weight: 600;
}

#features .nav-tabs .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
} */

/* Tabs Responsive */
/* @media (max-width: 991px) {
  #features .nav-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  #features .nav-tabs .nav-link {
    min-width: 240px;
  }
} */

/* --------------------
   SERVICES GRID
-------------------- */
/* .services-grid .service-card {
  margin-bottom: 25px;
} */

/* --------------------
   PORTFOLIO
-------------------- */
/* .portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.portfolio-info {
  padding: 20px;
}

.portfolio-info h4 {
  font-size: 20px;
} */

/* --------------------
   TEAM SECTION
-------------------- */
/* .team-card {
  background: var(--surface-color);
  border-radius: 16px;
  text-align: center;
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.team-card h4 {
  font-size: 20px;
  margin-top: 15px;
}

.team-card span {
  font-size: 14px;
  color: var(--accent-color);
} */

/* --------------------
   CONTACT SECTION
-------------------- */
/* .contact-main-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info {
  background: transparent;
  padding: 0;
  box-shadow: none;
}


.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 16px;
} */

/* Contact Responsive */
/* @media (max-width: 991px) {
  .contact-main-wrapper {
    grid-template-columns: 1fr;
  }

  .map-wrapper iframe {
    min-height: 300px;
  }
} */

/* --------------------
   MOBILE TEXT FIX
-------------------- */
/* @media (max-width: 576px) {
  p {
    text-align: left !important;
  }
} */

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  --heading-color: #ffffff;
  --surface-color: rgba(255, 255, 255, 0.085);
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

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

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

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

@media (max-width: 575px) {

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

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

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

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

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

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

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

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

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

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

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

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(7, 12, 16, 0.8);
}

/*--------------------------------------------------------------
# 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: 14px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    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;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-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: color-mix(in srgb, var(--nav-color) 90%, white 15%);
  }

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

/* Cleaned legacy mobile nav block */

/* Megamenu 2 - Desktop */
@media (min-width: 1200px) {

  .navmenu .megamenu-2 {
    position: static;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .navmenu .megamenu-2 .tab-content .product-section {
    /* position: absolute; */
    top: 0;
    left: 320px;
    width: calc(100% - 320px);
    /* display: none; */
  }

  .navmenu .megamenu-2 .tab-content .product-section:first-child {
    display: block;
  }

  .navmenu .megamenu-2 .tab-content .product-section.active {
    display: block;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category .resource-link i {
    margin: 0;
  }

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

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

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

/* Megamenu 2 - Mobile */
@media (max-width: 1199px) {


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

  .navmenu .megamenu-2 .mobile-megamenu {
    position: static;
    display: none;
    z-index: 99;
    padding: 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
    border-radius: 6px;
    overflow: hidden;
  }

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# 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;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

.footer .footer-about .logo img {
  max-height: 49px;
  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;
}


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 26px;
  bottom: 20px;
  left: auto;
  z-index: 9980;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none;
  cursor: pointer;
  transform: translateY(10px) scale(0.92);
}

.scroll-top i {
  font-size: 26px;
  color: #ffffff;
  line-height: 0;
  transition: transform 0.25s ease;
}

.scroll-top:hover {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  color: #ffffff;
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.45);
}

.scroll-top:hover i {
  transform: translateY(-2px);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 15%);
  position: absolute;
  inset: 0;
}

.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 50%);
}

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

@media (max-width: 1199px) {

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

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

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

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 60px 0;
  isolation: isolate;
  --hero-cyan: #36c8f5;
  --hero-amber: #f5b84b;
  --hero-ink: #061713;
  background:
    linear-gradient(115deg, rgba(6, 23, 19, 0.98) 0%, rgba(8, 44, 37, 0.92) 46%, rgba(14, 32, 48, 0.96) 100%),
    linear-gradient(90deg, rgba(54, 200, 245, 0.16), rgba(245, 184, 75, 0.10));
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
  transform: translate3d(0, 0, 0);
}

.hero::before {
  background-image:
    linear-gradient(115deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(25deg, rgba(54, 200, 245, 0.08) 1px, transparent 1px);
  background-size: 92px 92px;
  animation: heroFloatA 14s ease-in-out infinite;
}

.hero::after {
  background:
    linear-gradient(125deg, transparent 0 30%, rgba(18, 161, 107, 0.24) 30% 31%, transparent 31% 100%),
    linear-gradient(35deg, transparent 0 52%, rgba(245, 184, 75, 0.14) 52% 53%, transparent 53% 100%);
  animation: heroFloatB 18s ease-in-out infinite;
}

.hero .hero-content {
  transform: translateZ(0);
}

.hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero .hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.42;
  filter: saturate(1.08) contrast(1.04);
}

.hero .hero-background .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(135deg,
      rgba(2, 12, 10, 0.9) 0%,
      rgba(3, 24, 21, 0.78) 50%,
      rgba(6, 16, 27, 0.9) 100%);
}

.hero .particles-bg {
  z-index: 3;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 4;
  padding: 40px 15px;
}

.hero .hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 60%);
  position: relative;
  overflow: hidden;
}

.hero .hero-badge::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.35) 18%, transparent 36%);
  transform: translateX(-120%);
  animation: heroShimmer 4.2s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(2.25rem, 4vw + 0.75rem, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero p,
.hero h5 {
  font-size: clamp(1.05rem, 1vw + 0.9rem, 1.25rem);
  line-height: 1.6;
  margin-bottom: 34px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 42ch;
  text-align: left !important;
}

.hero h5 {
  font-weight: 500;
}

.hero .hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.hero .hero-actions .btn-primary {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), white 8%) 0%, var(--accent-color) 55%, color-mix(in srgb, var(--accent-color), black 10%) 100%);
  color: var(--contrast-color);
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
  transform-style: preserve-3d;
}

.hero .hero-actions .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 40%);
  color: var(--contrast-color);
}

.hero .hero-actions .btn-primary:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent-color), white 25%);
  outline-offset: 3px;
}

.hero .hero-actions .btn-secondary {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: color-mix(in srgb, var(--default-color), transparent 12%);
  transform-style: preserve-3d;
}

.hero .hero-actions .btn-secondary i {
  font-size: 24px;
  color: var(--accent-color);
}

.hero .hero-actions .btn-secondary:hover {
  color: var(--accent-color);
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.hero .hero-actions .btn-secondary:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent-color), white 25%);
  outline-offset: 3px;
}

.hero .hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero .hero-stats .stat-item {
  text-align: left;
}

.hero .hero-stats .stat-item .stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 4px;
}

.hero .hero-stats .stat-item .stat-label {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .hero-visual {
  position: relative;
  min-height: 580px;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.hero .hero-visual-stage {
  position: relative;
  min-height: 580px;
  transform-style: preserve-3d;
}

.hero .hero-orbit {
  position: absolute;
  inset: 48px 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transform: rotateX(64deg) rotateZ(-18deg);
  opacity: 0.72;
}

.hero .hero-orbit-two {
  inset: 92px 74px;
  border-color: rgba(54, 200, 245, 0.26);
  transform: rotateX(66deg) rotateZ(28deg);
}

.hero .hero-device {
  position: absolute;
  inset: 92px 64px 92px 64px;
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(7, 25, 24, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: rotateX(8deg) rotateY(-14deg) rotateZ(2deg) translateZ(36px);
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero .device-toolbar {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.hero .device-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.hero .device-toolbar span:nth-child(1) {
  background: var(--hero-amber);
}

.hero .device-toolbar span:nth-child(2) {
  background: var(--accent-color);
}

.hero .device-toolbar span:nth-child(3) {
  background: var(--hero-cyan);
}

.hero .device-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 14px;
}

.hero .device-panel {
  min-height: 118px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  transform: translateZ(28px);
}

.hero .device-panel i {
  color: var(--hero-cyan);
  font-size: 30px;
}

.hero .device-panel span,
.hero .device-panel small {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.hero .panel-large {
  min-height: 190px;
  background: linear-gradient(145deg, rgba(18, 161, 107, 0.34), rgba(54, 200, 245, 0.14));
}

.hero .panel-kicker {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  text-transform: uppercase;
}

.hero .panel-large strong {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.95;
  color: #ffffff;
}

.hero .panel-wide {
  grid-column: 1 / -1;
  min-height: 124px;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.hero .mini-chart {
  display: inline-flex;
  align-items: end;
  gap: 6px;
  min-width: 78px;
  height: 58px;
}

.hero .mini-chart i {
  display: block;
  width: 12px;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, var(--hero-amber), var(--accent-color));
}

.hero .mini-chart i:nth-child(1) {
  height: 28px;
}

.hero .mini-chart i:nth-child(2) {
  height: 44px;
}

.hero .mini-chart i:nth-child(3) {
  height: 34px;
}

.hero .mini-chart i:nth-child(4) {
  height: 54px;
}

.hero .hero-glass-note {
  position: absolute;
  right: 20px;
  bottom: 38px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  color: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translateZ(84px);
}

.hero .hero-glass-note i {
  color: var(--hero-amber);
}

.hero .feature-card {
  position: absolute;
  z-index: 4;
  width: min(156px, 36vw);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  margin-bottom: 0;
  min-height: 124px;
  transform-style: preserve-3d;
}

.hero .feature-card-1 {
  top: 28px;
  left: 38px;
  transform: rotateY(-12deg) translateZ(82px);
}

.hero .feature-card-2 {
  top: 112px;
  right: 8px;
  transform: rotateY(12deg) translateZ(70px);
}

.hero .feature-card-3 {
  left: 8px;
  bottom: 118px;
  transform: rotateY(-10deg) translateZ(86px);
}

.hero .feature-card-4 {
  right: 34px;
  bottom: 54px;
  transform: rotateY(14deg) translateZ(80px);
}

.hero .feature-card:hover {
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.26);
  border-color: color-mix(in srgb, var(--accent-color), transparent 55%);
}

.hero .feature-card i {
  font-size: 40px;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.hero .feature-card span {
  font-size: 14px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

@media (max-width: 992px) {
  .hero .hero-visual {
    margin-top: 60px;
    min-height: 520px;
  }

  .hero .hero-visual-stage {
    min-height: 520px;
  }

  .hero .feature-card {
    padding: 20px;
  }
}

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

  .hero h1 {
    letter-spacing: 0;
  }

  .hero p {
    max-width: 52ch;
  }

  .hero .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .hero .hero-actions .btn-primary,
  .hero .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero .hero-stats {
    gap: 24px;
  }

  .hero .feature-card {
    padding: 16px;
    width: min(148px, 42vw);
  }

  .hero .feature-card i {
    font-size: 22px;
  }

  .hero .feature-card span {
    font-size: 12px;
  }

  .hero .hero-device {
    inset: 88px 24px 92px 24px;
  }

  .hero .device-grid {
    gap: 10px;
  }

  .hero .device-panel {
    padding: 14px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 96px 0 44px 0;
  }

  .hero h1 {
    margin-bottom: 14px;
  }

  .hero .hero-visual {
    margin-top: 40px;
    min-height: 500px;
  }

  .hero .hero-visual-stage {
    min-height: 500px;
  }

  .hero .feature-card {
    padding: 12px;
    min-height: 96px;
    width: min(128px, 40vw);
  }

  .hero .feature-card i {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .hero .feature-card span {
    font-size: 11px;
  }

  .hero .hero-device {
    inset: 104px 8px 108px 8px;
    padding: 14px;
    border-radius: 18px;
  }

  .hero .device-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero .device-panel {
    min-height: 96px;
  }

  .hero .panel-large {
    min-height: 150px;
  }

  .hero .panel-wide {
    min-height: 112px;
  }

  .hero .feature-card-1 {
    top: 28px;
    left: 0;
  }

  .hero .feature-card-2 {
    top: 38px;
    right: 0;
  }

  .hero .feature-card-3 {
    bottom: 66px;
  }

  .hero .feature-card-4 {
    right: 4px;
    bottom: 72px;
  }

  .hero .hero-glass-note {
    right: 50%;
    bottom: 18px;
    transform: translateX(50%) translateZ(84px);
    white-space: nowrap;
  }
}

@keyframes heroFloatA {

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

  50% {
    transform: translate3d(2.5%, -2%, 0) scale(1.03);
  }
}

@keyframes heroFloatB {

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

  50% {
    transform: translate3d(-2.5%, 1.5%, 0) scale(1.02);
  }
}

@keyframes heroShimmer {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }

  12% {
    opacity: 1;
  }

  42% {
    transform: translateX(120%);
    opacity: 0;
  }

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

@media (prefers-reduced-motion: reduce) {

  .hero::before,
  .hero::after,
  .hero .hero-badge::after {
    animation: none !important;
  }

  .hero .feature-card,
  .hero .hero-actions .btn-primary,
  .hero .hero-actions .btn-secondary {
    transition: none !important;
    transform: none !important;
  }
}

.hero {
  min-height: auto;
  padding: 132px 0 76px;
  background:
    radial-gradient(circle at 18% 18%, rgba(18, 161, 107, 0.24), transparent 34%),
    radial-gradient(circle at 86% 22%, rgba(54, 200, 245, 0.14), transparent 30%),
    linear-gradient(135deg, #061410 0%, #0b211c 46%, #07121f 100%);
}

.hero::before {
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero::after {
  opacity: 0.55;
  background: linear-gradient(115deg, transparent 0 48%, rgba(18, 161, 107, 0.20) 48% 49%, transparent 49% 100%);
}

.hero .hero-background img {
  opacity: 0.28;
  filter: saturate(0.9) contrast(1.08);
}

.hero .hero-background .overlay {
  background:
    linear-gradient(90deg, rgba(2, 10, 8, 0.94) 0%, rgba(4, 22, 18, 0.78) 48%, rgba(5, 13, 23, 0.88) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.42));
}

.hero .particles-bg {
  opacity: 0.42;
}

.hero .container {
  padding-top: 20px;
  padding-bottom: 20px;
}

.hero .hero-badge {
  background: rgba(18, 161, 107, 0.16);
  border: 1px solid rgba(57, 217, 152, 0.38);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  color: #d9fff0;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(2.45rem, 5.2vw, 5.25rem);
  font-weight: 800;
}

.hero h5 {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 0.6vw + 0.92rem, 1.18rem);
}

.hero .hero-actions {
  gap: 14px;
  margin-bottom: 36px;
}

.hero .hero-actions .btn-primary,
.hero .hero-actions .btn-secondary {
  min-height: 52px;
  border-radius: 8px;
}

.hero .hero-actions .btn-primary {
  box-shadow: 0 18px 42px rgba(18, 161, 107, 0.24);
}

.hero .hero-actions .btn-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.hero .hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 560px;
}

.hero .hero-stats .stat-item {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
}

.hero .hero-stats .stat-item .stat-number {
  font-size: clamp(1.65rem, 2vw, 2.15rem);
}

.hero .hero-stats .stat-item .stat-label {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.hero .hero-visual {
  min-height: auto;
  perspective: 1400px;
}

.hero .hero-console {
  position: relative;
  width: min(100%, 590px);
  margin-left: auto;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.055)),
    rgba(7, 24, 23, 0.88);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: rotateY(-7deg) rotateX(3deg) translateZ(0);
  transform-style: preserve-3d;
}

.hero .hero-console::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  border: 1px solid rgba(54, 200, 245, 0.16);
  border-radius: 12px;
  background: rgba(54, 200, 245, 0.035);
}

.hero .console-header,
.hero .console-body,
.hero .plugin-stack-title,
.hero .plugin-item {
  display: flex;
  align-items: center;
}

.hero .console-header {
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero .console-kicker,
.hero .plugin-stack-title span,
.hero .console-metric span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero .console-header h2 {
  margin: 5px 0 0;
  color: #ffffff;
  font-size: clamp(1.28rem, 2vw, 1.8rem);
  line-height: 1.18;
}

.hero .console-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(18, 161, 107, 0.14);
  color: #d9fff0;
  font-weight: 700;
}

.hero .console-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d487;
  box-shadow: 0 0 0 6px rgba(37, 212, 135, 0.16);
}

.hero .console-body {
  gap: 18px;
  padding: 24px 0;
}

.hero .console-metric,
.hero .console-preview {
  flex: 1 1 0;
  min-width: 0;
}

.hero .console-metric {
  padding: 22px;
  border: 1px solid rgba(18, 161, 107, 0.24);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(18, 161, 107, 0.22), rgba(54, 200, 245, 0.08));
}

.hero .console-metric strong {
  display: block;
  margin: 10px 0 8px;
  color: #ffffff;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.95;
}

.hero .console-metric small,
.hero .plugin-item span {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.45;
}

.hero .preview-window {
  min-height: 230px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  transform: translateZ(36px);
}

.hero .preview-topbar {
  display: flex;
  gap: 7px;
  margin-bottom: 18px;
}

.hero .preview-topbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f5b84b;
}

.hero .preview-topbar span:nth-child(2) {
  background: #25d487;
}

.hero .preview-topbar span:nth-child(3) {
  background: #36c8f5;
}

.hero .preview-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 12px;
}

.hero .preview-grid i {
  display: block;
  min-height: 72px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.hero .preview-grid i:nth-child(1) {
  min-height: 156px;
  grid-row: span 2;
  background: linear-gradient(160deg, rgba(18, 161, 107, 0.34), rgba(54, 200, 245, 0.12));
}

.hero .preview-grid i:nth-child(4) {
  grid-column: 1 / -1;
  min-height: 48px;
}

.hero .hero-plugin-stack {
  padding-top: 4px;
}

.hero .plugin-stack-title {
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.hero .plugin-stack-title i {
  color: var(--hero-cyan);
}

.hero .plugin-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-height: 232px;
  overflow: auto;
  padding-right: 4px;
}

.hero .plugin-item {
  gap: 10px;
  min-width: 0;
  min-height: 54px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.hero .plugin-item i {
  flex: 0 0 auto;
  color: var(--hero-cyan);
  font-size: 20px;
}

.hero .plugin-item span {
  min-width: 0;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 1199px) {
  .hero h1 {
    max-width: 12ch;
  }

  .hero .hero-console {
    transform: rotateY(-4deg) rotateX(2deg);
  }
}

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

  .hero h1 {
    max-width: 100%;
  }

  .hero .hero-visual {
    margin-top: 40px;
  }

  .hero .hero-console {
    width: 100%;
    margin: 0;
    transform: none;
  }
}

@media (max-width: 767px) {
  .hero {
    padding: 104px 0 52px;
  }

  .hero .hero-actions {
    align-items: stretch;
  }

  .hero .hero-stats,
  .hero .plugin-list {
    grid-template-columns: 1fr;
  }

  .hero .console-header,
  .hero .console-body {
    align-items: stretch;
    flex-direction: column;
  }

  .hero .console-status {
    align-self: flex-start;
  }
}

@media (max-width: 575px) {
  .hero .hero-console {
    padding: 16px;
  }

  .hero .hero-console::before {
    display: none;
  }

  .hero .preview-window {
    min-height: 190px;
  }

  .hero .plugin-list {
    max-height: none;
    overflow: visible;
  }
}

.hero {
  min-height: 100vh;
  padding: 120px 0 60px;
}

.hero h1 {
  max-width: none;
  font-size: clamp(2.25rem, 4vw + 0.75rem, 3.75rem);
}

.hero h5 {
  max-width: 42ch;
}

.hero .hero-stats {
  display: flex;
  gap: 40px;
  max-width: none;
}

.hero .hero-stats .stat-item {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.hero .hero-stats .stat-item .stat-label {
  font-size: 14px;
}

.hero .hero-visual {
  min-height: auto;
  perspective: 900px;
}

.hero .hero-visual .col-6 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero .feature-card {
  position: static;
  width: auto;
  min-height: 140px;
  padding: 24px;
}

@media (max-width: 992px) {
  .hero .hero-visual {
    margin-top: 60px;
  }
}

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

  .hero .hero-stats {
    gap: 24px;
  }

  .hero .feature-card {
    min-height: 120px;
    padding: 16px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 96px 0 44px;
  }

  .hero .hero-visual {
    margin-top: 40px;
  }

  .hero .feature-card {
    min-height: 112px;
    padding: 12px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top: 60px;
  padding-bottom: 60px;
}

.about .content {
  padding-right: 20px;
}

.about .content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .about .content h2 {
    font-size: 2rem;
  }
}

.about .content .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-align: justify;
}

.about .content p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  text-align: justify;
}

@media (max-width: 992px) {
  .about .content {
    padding-right: 0;
    margin-bottom: 3rem;
  }
}

.about .stats-container {
  margin: 3rem 0;
  padding: 2rem 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .stat-item {
  text-align: center;
  margin-bottom: 1.5rem;
}

.about .stat-item .number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
}

.about .stat-item .label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .about .stat-item {
    margin-bottom: 2rem;
  }

  .about .stat-item .number {
    font-size: 2rem;
  }
}

.about .cta-wrapper {
  display: flex;
  gap: 1rem;
  align-items: center;
}

@media (max-width: 576px) {
  .about .cta-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
}

.about .btn {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

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

.about .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

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

.about .btn.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.about .image-wrapper {
  position: relative;
  padding-left: 20px;
}

@media (max-width: 992px) {
  .about .image-wrapper {
    padding-left: 0;
    margin-top: 2rem;
  }
}

.about .image-wrapper .main-image {
  border-radius: 20px;
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .image-wrapper .floating-card {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 15px 30px color-mix(in srgb, var(--default-color), transparent 80%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 992px) {
  .about .image-wrapper .floating-card {
    left: 20px;
    bottom: 20px;
    padding: 1rem;
  }
}

@media (max-width: 576px) {
  .about .image-wrapper .floating-card {
    position: static;
    margin-top: 2rem;
  }
}

.about .image-wrapper .floating-card .card-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about .image-wrapper .floating-card .card-content i {
  font-size: 2rem;
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .image-wrapper .floating-card .card-content .text h5 {
  margin: 0 0 0.25rem 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.about .image-wrapper .floating-card .card-content .text span {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: var(--surface-color);
}

.clients .clients-slider {
  overflow: hidden;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.clients .swiper-wrapper {
  height: auto !important;
  align-items: stretch;
  transition-timing-function: linear;
}

.clients .swiper-slide {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.clients .swiper-slide:last-child {
  border-right: none;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 15px 25px;
  transition: all 0.3s ease;
}

.clients .client-logo img {
  max-width: 180px;
  max-height: 75px;
  object-fit: contain;
  transition: all 0.4s ease;
  opacity: 0.4;
  filter: grayscale(100%);
}

.clients .client-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

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

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services {
  position: relative;
}

.featured-services .services-content .subtitle {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.featured-services .services-content h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .featured-services .services-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .featured-services .services-content h2 {
    font-size: 28px;
  }
}

.featured-services .services-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
  text-align: justify;
}

.featured-services .services-content .btn-consultation {
  display: inline-flex;
  align-items: center;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.featured-services .services-content .btn-consultation span {
  margin-right: 8px;
}

.featured-services .services-content .btn-consultation i {
  transition: transform 0.3s ease;
}

.featured-services .services-content .btn-consultation:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.featured-services .services-content .btn-consultation:hover i {
  transform: translateX(5px);
}

.featured-services .services-image {
  position: relative;
  height: 380px;
  display: flex;
  justify-content: flex-end;
}

.featured-services .services-image img {
  position: relative;
  z-index: 2;
  max-height: 100%;
  object-fit: cover;
}

.featured-services .services-image .shape-circle {
  position: absolute;
  right: -30px;
  top: -30px;
  height: 180px;
  width: 180px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  z-index: 1;
}

.featured-services .services-image .shape-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100px;
  width: 100px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  z-index: 1;
  animation: float 5s infinite ease-in-out;
}

@media (max-width: 992px) {
  .featured-services .services-image {
    margin-top: 30px;
    height: 300px;
    justify-content: center;
  }
}

.featured-services .services-slider {
  position: relative;
  margin-top: 30px;
  padding-top: 30px;
}

.featured-services .services-slider .swiper-wrapper {
  height: auto !important;
}

.featured-services .service-card {
  background-color: var(--surface-color);
  padding: 32px;
  border-radius: 16px;
  position: relative;
  transition: all 0.4s;
  overflow: hidden !important;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.featured-services .service-card .icon-box {
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  border-radius: 50%;
  margin-bottom: 20px;
  transition: all 0.4s;
}

.featured-services .service-card .icon-box i {
  font-size: 38px;
  color: var(--contrast-color);
  transition: all 0.4s;
}

.featured-services .service-card .arrow-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  color: var(--accent-color);
  background-color: var(--surface-color);
  border-radius: 50%;
  transform: rotate(-45deg);
  position: absolute;
  right: -60px;
  top: -60px;
  transition: all 0.4s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.featured-services .service-card .content h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.featured-services .service-card .content h4 a {
  color: var(--heading-color);
  transition: all 0.4s;
}

.featured-services .service-card .content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  transition: all 0.4s;
  text-align: justify;
}

.featured-services .service-card .content .service-number {
  position: relative;
  padding-left: 76px;
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 500;
  transition: all 0.4s;
}

.featured-services .service-card .content .service-number::after {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  height: 1px;
  width: 70px;
  background-color: var(--accent-color);
  transition: all 0.4s;
}

.featured-services .service-card:hover {
  background: var(--accent-color) !important;
  transform: translateY(-5px);
}

.featured-services .service-card:hover .icon-box {
  background-color: var(--contrast-color);
}

.featured-services .service-card:hover .icon-box i {
  color: var(--accent-color);
}

.featured-services .service-card:hover .arrow-link {
  top: 16px;
  right: 16px;
  background-color: var(--contrast-color);
}

.featured-services .service-card:hover .content h4 a {
  color: var(--contrast-color);
}

.featured-services .service-card:hover .content p {
  color: var(--contrast-color);
}

.featured-services .service-card:hover .content .service-number {
  color: var(--contrast-color);
  padding-left: 0;
}

.featured-services .service-card:hover .content .service-number::after {
  background-color: var(--contrast-color);
  left: 30px;
}

.featured-services .swiper-navigation {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.featured-services .swiper-navigation button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  height: 56px;
  width: 56px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 20px;
  transition: all 0.4s;
  margin-right: 10px;
}

.featured-services .swiper-navigation button:last-child {
  margin-right: 0;
}

.featured-services .swiper-navigation button:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

@keyframes float {

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

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

/*--------------------------------------------------------------
# How We Work Section
--------------------------------------------------------------*/
.how-we-work .steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  margin-bottom: 3rem;
}

@media (min-width: 992px) {
  .how-we-work .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .how-we-work .steps-grid {
    gap: 1.5rem;
  }
}

.how-we-work .step-card {
  background: var(--surface-color);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.how-we-work .step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.how-we-work .step-card:hover .step-icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.how-we-work .step-card:hover .step-arrow {
  transform: translateX(5px);
}

.how-we-work .step-card .step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 80%) 0%, color-mix(in srgb, var(--accent-color), transparent 90%) 100%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.how-we-work .step-card .step-number {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000 20%) 100%);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 1rem;
}

.how-we-work .step-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

@media (max-width: 576px) {
  .how-we-work .step-card h3 {
    font-size: 1.2rem;
  }
}

.how-we-work .step-card p {
  font-size: 0.95rem;
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  text-align: justify;
}

.how-we-work .step-card .step-arrow {
  position: absolute;
  top: 50%;
  right: -15px;
  width: 30px;
  height: 30px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  z-index: 2;
}

@media (max-width: 991px) {
  .how-we-work .step-card .step-arrow {
    display: none;
  }
}

.how-we-work .step-card:last-child .step-arrow {
  display: none;
}

@media (max-width: 991px) {
  .how-we-work .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .how-we-work .steps-grid {
    grid-template-columns: 1fr;
  }

  .how-we-work .step-card {
    padding: 2rem 1.5rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/

.services {
  background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/adstract-bg-3.webp") center/cover;
  opacity: 0.03;
  z-index: 1;
}

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

.services .service-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  box-shadow: 0 10px 40px color-mix(in srgb, var(--heading-color), transparent 90%);
}

.services .service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.services .service-card:hover .service-bg {
  opacity: 1;
  transform: scale(1.2) rotate(15deg);
}

.services .service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 30%));
}

.services .service-card:hover .btn-cta {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 30%));
  transform: translateX(5px);
}

.services .service-card.featured {
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 95%));
  border: 2px solid var(--accent-color);
  transform: scale(1.02);
}

.services .service-card.featured .service-icon {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 20%));
  width: 80px;
  height: 80px;
}

.services .service-card.featured .service-icon i {
  font-size: 40px;
}

.services .service-card.featured .service-content h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.services .service-card.featured .service-meta {
  margin: 25px 0;
}

.services .service-card.compact {
  padding: 30px 25px;
}

.services .service-card.compact .service-icon {
  width: 60px;
  height: 60px;
}

.services .service-card.compact .service-icon i {
  font-size: 28px;
}

.services .service-card .service-bg {
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 95%));
  border-radius: 50%;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 1;
}

.services .service-card .service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 10%), var(--accent-color));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .service-card .service-icon i {
  font-size: 32px;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.services .service-card .service-content {
  position: relative;
  z-index: 2;
}

.services .service-card .service-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.services .service-card .service-content h3 a {
  color: var(--heading-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.services .service-card .service-content h3 a:hover {
  color: var(--accent-color);
}

.services .service-card .service-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 15px;
}

.services .service-card .service-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0 25px;
  flex-wrap: wrap;
}

.services .service-card .service-meta .badge {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: var(--contrast-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.services .service-card .service-meta .badge.popular {
  background: linear-gradient(135deg, #28a745, #20c997);
}

.services .service-card .service-meta .price {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 16px;
}

.services .service-card .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 10%), var(--accent-color));
  color: var(--contrast-color);
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .service-card .btn-cta:hover {
  color: var(--contrast-color);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.services .service-card .btn-cta i {
  transition: all 0.3s ease;
}

.services .stats-highlight {
  background: var(--accent-color);
  border-radius: 25px;
  padding: 50px 30px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.services .stats-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, color-mix(in srgb, var(--accent-color), transparent 90%));
  z-index: 1;
}

.services .stats-highlight .row {
  position: relative;
  z-index: 2;
}

.services .stats-highlight .stat-item {
  text-align: center;
  color: var(--contrast-color);
}

.services .stats-highlight .stat-item .stat-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--contrast-color);
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--contrast-color), color-mix(in srgb, var(--accent-color), var(--contrast-color) 70%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
  .services .stats-highlight .stat-item .stat-number {
    font-size: 36px;
  }
}

.services .stats-highlight .stat-item .stat-label {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .services .stats-highlight .stat-item .stat-label {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .services .service-card {
    padding: 30px 25px;
    margin-bottom: 30px;
  }

  .services .service-card.featured {
    transform: none;
    margin-bottom: 30px;
  }

  .services .service-card.featured .service-content h3 {
    font-size: 24px;
  }

  .services .service-card .service-icon {
    width: 60px;
    height: 60px;
  }

  .services .service-card .service-icon i {
    font-size: 28px;
  }

  .services .service-card .service-content h3 {
    font-size: 20px;
  }

  .services .stats-highlight {
    padding: 40px 20px;
    margin-top: 40px;
  }

  /* FIX swiper clipping */
  .featured-services.section {
    overflow: visible;
  }

  .featured-services .swiper {
    overflow: visible;
  }

  .featured-services .swiper-wrapper {
    overflow: visible;
  }

}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  padding: 40px;
  background-color: var(--surface-color);
  border-radius: 16px;
  text-align: center;
  position: relative;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

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

.pricing .pricing-item .pricing-icon {
  width: 56px;
  height: 56px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.pricing .pricing-item .pricing-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.pricing .pricing-item h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.pricing .pricing-item .price {
  font-size: 48px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 16px;
}

.pricing .pricing-item .price .currency {
  font-size: 24px;
  font-weight: 500;
  vertical-align: super;
}

.pricing .pricing-item .price .period {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 400;
}

.pricing .pricing-item .description {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 32px;
}

.pricing .pricing-item .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.pricing .pricing-item .features-list li {
  padding: 12px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.pricing .pricing-item .features-list li i {
  color: var(--accent-color);
  font-size: 18px;
}

.pricing .pricing-item .btn-pricing {
  display: inline-block;
  padding: 12px 32px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.pricing .pricing-item.featured {
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  background: linear-gradient(to bottom right, color-mix(in srgb, var(--accent-color), transparent 97%), var(--surface-color));
}

.pricing .pricing-item.featured .pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
}

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

.pricing .pricing-item.featured .btn-pricing:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (max-width: 768px) {
  .pricing .pricing-item {
    padding: 30px 20px;
  }

  .pricing .pricing-item .price {
    font-size: 40px;
  }

  .pricing .pricing-item .price .currency {
    font-size: 20px;
  }

  .pricing .pricing-item .price .period {
    font-size: 14px;
  }

  .pricing .pricing-item .features-list li {
    font-size: 14px;
  }

  .pricing .pricing-item .btn-pricing {
    padding: 10px 24px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.faq .section-header .lead {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
}

.faq .faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq .faq-item {
  border-left: 4px solid transparent;
  border-radius: 10px;
  background: var(--surface-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

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

.faq .faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-left-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.faq .faq-item.faq-active {
  border-left-color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-header .faq-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-item.faq-active .faq-header h4 {
  color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-header .faq-toggle {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-plus {
  display: none;
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-dash {
  display: block;
}

.faq .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-plus {
  display: block;
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-dash {
  display: none;
}

.faq .faq-item .faq-header {
  display: flex;
  align-items: center;
  padding: 25px;
  cursor: pointer;
  gap: 20px;
}

.faq .faq-item .faq-header .faq-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 20px;
  transition: all 0.3s ease;
}

.faq .faq-item .faq-header h4 {
  flex: 1;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  transition: color 0.3s ease;
  line-height: 1.4;
}

.faq .faq-item .faq-header .faq-toggle {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.faq .faq-item .faq-header .faq-toggle i {
  position: absolute;
  transition: all 0.3s ease;
}

.faq .faq-item .faq-header .faq-toggle:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

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

.faq .faq-item .faq-content .content-inner {
  padding: 0 25px 25px 25px;
  overflow: hidden;
}

.faq .faq-item .faq-content .content-inner p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  font-size: 0.95rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  .faq .faq-item .faq-header {
    padding: 20px;
    gap: 15px;
  }

  .faq .faq-item .faq-header .faq-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .faq .faq-item .faq-header h4 {
    font-size: 1rem;
  }

  .faq .faq-item .faq-header .faq-toggle {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .faq .faq-item .faq-content .content-inner {
    padding: 0 20px;
  }

  .faq .faq-item.faq-active .faq-content .content-inner {
    padding-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(170deg, var(--background-color) 0%, color-mix(in srgb, var(--background-color), var(--accent-color) 5%) 100%);
}

.call-to-action .cta-wrapper {
  position: relative;
  border-radius: 20px;
  background-color: var(--surface-color);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--accent-color), transparent 92%);
  overflow: hidden;
}

.call-to-action .cta-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.call-to-action .cta-shapes .shape {
  position: absolute;
  border-radius: 50%;
}

.call-to-action .cta-shapes .shape.shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  top: -150px;
  right: -100px;
}

.call-to-action .cta-shapes .shape.shape-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(225deg, color-mix(in srgb, var(--heading-color), transparent 85%) 0%, color-mix(in srgb, var(--heading-color), transparent 95%) 100%);
  bottom: -100px;
  left: 20%;
}

.call-to-action .cta-shapes .shape.shape-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 92%) 0%, color-mix(in srgb, var(--heading-color), transparent 92%) 100%);
  top: 30%;
  left: -75px;
}

.call-to-action .cta-content {
  position: relative;
  z-index: 2;
}

.call-to-action .cta-content .badge-custom {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.call-to-action .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.2;
}

.call-to-action .cta-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1.05rem;
  line-height: 1.6;
}

.call-to-action .benefits-row {
  margin-top: 2rem;
}

.call-to-action .benefits-row .benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.call-to-action .benefits-row .benefit-item .icon-box {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), transparent 20%) 100%);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-right: 1rem;
  font-size: 1.25rem;
}

.call-to-action .benefits-row .benefit-item .benefit-content h5 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--heading-color);
}

.call-to-action .benefits-row .benefit-item .benefit-content p {
  margin: 0;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.5;
}

.call-to-action .action-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.call-to-action .action-buttons .btn {
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 1rem;
  box-shadow: none;
}

.call-to-action .action-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.call-to-action .action-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.call-to-action .action-buttons .btn.btn-outline {
  background-color: transparent;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  color: var(--accent-color);
}

.call-to-action .action-buttons .btn.btn-outline:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-3px);
}

.call-to-action .action-buttons .guarantee-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
  color: var(--heading-color);
  font-size: 0.9rem;
  font-weight: 500;
}

.call-to-action .action-buttons .guarantee-badge i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.call-to-action .cta-image-container {
  position: relative;
  height: 100%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  z-index: 2;
}

.call-to-action .cta-image-container .main-image {
  position: relative;
  z-index: 2;
  max-height: 400px;
  object-fit: contain;
}

.call-to-action .cta-image-container .floating-element {
  position: absolute;
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  z-index: 3;
}

.call-to-action .cta-image-container .floating-element i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.call-to-action .cta-image-container .floating-element span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--heading-color);
}

.call-to-action .cta-image-container .floating-element.element-1 {
  top: 20%;
  left: 0;
  animation: float1 4s ease-in-out infinite;
}

.call-to-action .cta-image-container .floating-element.element-2 {
  bottom: 25%;
  right: 0;
  animation: float2 5s ease-in-out infinite;
}

.call-to-action .cta-image-container .pattern-dots {
  position: absolute;
  width: 170px;
  height: 170px;
  background-image: radial-gradient(color-mix(in srgb, var(--accent-color), transparent 40%) 2px, transparent 2px);
  background-size: 15px 15px;
  bottom: 10%;
  left: 10%;
  z-index: 1;
  border-radius: 20px;
  opacity: 0.6;
}

@keyframes float1 {

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

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

@keyframes float2 {

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

  50% {
    transform: translateY(10px);
  }
}

@media (max-width: 991.98px) {
  .call-to-action {
    padding: 70px 0;
  }

  .call-to-action .row {
    flex-direction: column-reverse;
  }

  .call-to-action .cta-image-container {
    padding: 2rem;
    min-height: 350px;
  }

  .call-to-action .cta-image-container .floating-element.element-1 {
    top: 15%;
    left: 10%;
  }

  .call-to-action .cta-image-container .floating-element.element-2 {
    bottom: 15%;
    right: 10%;
  }

  .call-to-action .cta-content {
    padding: 2rem !important;
  }

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

  .call-to-action .action-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .call-to-action .action-buttons .btn {
    width: 100%;
  }

  .call-to-action .action-buttons .guarantee-badge {
    margin-left: 0;
    margin-top: 1rem;
  }
}

@media (max-width: 576px) {
  .call-to-action {
    padding: 50px 0;
  }

  .call-to-action .cta-content {
    padding: 1.5rem !important;
  }

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

  .call-to-action .benefits-row .col-md-6 {
    margin-bottom: 1rem;
  }

  .call-to-action .cta-image-container {
    min-height: 300px;
  }

  .call-to-action .cta-image-container .floating-element {
    padding: 0.5rem 0.75rem;
  }

  .call-to-action .cta-image-container .floating-element span {
    font-size: 0.8rem;
  }

  .call-to-action .shape {
    transform: scale(0.7);
  }
}

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

.testimonials .testimonial-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto;
}

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

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

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

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

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

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 15px 15px;
  padding: 20px;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  position: relative;
  margin-bottom: 35px;
  border-radius: 6px;
}

.testimonials .testimonial-item p::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid color-mix(in srgb, var(--default-color), transparent 97%);
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}

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

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

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

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-container {
  position: relative;
}

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

.portfolio .portfolio-filters li {
  cursor: pointer;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: var(--heading-color);
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
  background: color-mix(in srgb, var(--surface-color), var(--heading-color) 5%);
}

.portfolio .portfolio-filters li:hover {
  color: var(--accent-color);
}

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

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: 0.3s;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  display: block;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: var(--contrast-color);
  font-weight: 600;
  margin-bottom: 5px;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: var(--contrast-color);
  font-size: 14px;
  margin: 0 0 15px 0;
}

.portfolio .portfolio-wrap .portfolio-info .portfolio-links {
  display: flex;
  gap: 15px;
}

.portfolio .portfolio-wrap .portfolio-info .portfolio-links a {
  color: var(--contrast-color);
  font-size: 20px;
  transition: 0.3s;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  line-height: 0;
}

.portfolio .portfolio-wrap .portfolio-info .portfolio-links a:hover {
  background: var(--accent-color);
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.1);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/* Show More Button */
.btn-portfolio-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(18, 161, 107, 0.2);
  border: 2px solid transparent;
}

.btn-portfolio-more:hover {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(18, 161, 107, 0.3);
}

.btn-portfolio-more i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.btn-portfolio-more:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .swiper-wrapper {
  height: auto !important;
}

.team .team-slider {
  position: relative;
  padding: 20px 0 60px;
}

.team .team-slider .swiper-pagination {
  bottom: 0;
}

.team .team-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  opacity: 1;
  margin: 0 5px;
  transition: 0.3s;
}

.team .team-slider .swiper-pagination .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 5px;
  background-color: var(--accent-color);
}

.team .team-slider .swiper-button-prev,
.team .team-slider .swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-radius: 50%;
  color: var(--contrast-color);
  transition: 0.3s;
}

.team .team-slider .swiper-button-prev:after,
.team .team-slider .swiper-button-next:after {
  font-size: 16px;
}

.team .team-slider .swiper-button-prev:hover,
.team .team-slider .swiper-button-next:hover {
  background-color: var(--accent-color);
}

.team .team-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  background-color: var(--surface-color);
  height: 100%;
}

.team .team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.team .team-card:hover .team-image img {
  transform: scale(1.08);
}

.team .team-image {
  position: relative;
  overflow: hidden;
}

.team .team-image img {
  transition: transform 0.6s ease;
  height: 300px;
  object-fit: cover;
  width: 100%;
}

.team .team-image .team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.team .team-image .social-links {
  display: flex;
  gap: 15px;
}

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

.team .team-image .social-links a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-5px);
}

.team .team-content {
  padding: 20px;
  text-align: center;
}

.team .team-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.team .team-content span {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.team .team-content p {
  font-size: 14px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  text-align: justify;
}

@media (max-width: 991px) {
  .team .team-card {
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-main-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 992px) {
  .contact .contact-main-wrapper {
    grid-template-columns: 45% 55%;
    min-height: 600px;
  }
}

.contact .map-wrapper {
  height: 300px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.contact .map-fallback {
  align-items: center;
  background: linear-gradient(135deg, rgba(18, 161, 107, 0.12), rgba(16, 185, 129, 0.04));
  border: 1px solid rgba(18, 161, 107, 0.24);
  display: flex;
  height: 100%;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.contact .map-fallback a {
  background: #12a16b;
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  font-weight: 700;
  padding: 12px 20px;
}

.contact .map-fallback a:hover {
  background: #0e8156;
  color: #ffffff;
}

@media (min-width: 992px) {
  .contact .map-wrapper {
    height: 100%;
    position: sticky;
    top: 100px;
  }
}

.contact .contact-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .contact-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

@media (min-width: 576px) {
  .contact .contact-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .contact-card {
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact .contact-card .icon-box {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .contact-card .icon-box i {
  font-size: 22px;
  color: var(--accent-color);
}

.contact .contact-card .contact-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact .contact-card .contact-text p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .contact-form-container {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact .contact-form-container h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  padding-left: 15px;
}

.contact .contact-form-container h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.contact .contact-form-container>p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--default-color);
}

.contact .contact-form-container .php-email-form .form-control {
  height: auto;
  padding: 14px 20px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .form-control:focus {
  background-color: var(--surface-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.contact .contact-form-container .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact .contact-form-container .php-email-form textarea.form-control {
  min-height: 140px;
}

.contact .contact-form-container .php-email-form .form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

@media (max-width: 576px) {
  .contact .contact-form-container .php-email-form .form-submit {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact .contact-form-container .php-email-form button {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form button:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact .contact-form-container .php-email-form .social-links {
  display: flex;
  gap: 12px;
}

.contact .contact-form-container .php-email-form .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 20%);
  color: var(--heading-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .contact .contact-form-container {
    padding: 25px 20px;
  }

  .contact .contact-form-container h3 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details {
  --card-border-radius: 12px;
  --content-spacing: 4rem;
}

.portfolio-details .project-header {
  margin-bottom: 2.5rem;
  position: relative;
}

.portfolio-details .project-header .project-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}

.portfolio-details .project-header .project-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.portfolio-details .project-header .project-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

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

.portfolio-details .project-header .project-meta .meta-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-right: 8px;
}

.portfolio-details .project-header .project-meta .meta-item a {
  color: inherit;
  transition: all 0.3s;
}

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

.portfolio-details .project-header .project-tags {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.portfolio-details .project-header .project-tags .tag {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s;
}

.portfolio-details .project-header .project-tags .tag:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 75%);
  transform: translateY(-3px);
}

.portfolio-details .project-header .technologies .tech-title {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
  text-align: right;
}

.portfolio-details .project-header .technologies .tech-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.portfolio-details .project-header .technologies .tech-badges span {
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  color: var(--heading-color);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s;
}

.portfolio-details .project-header .technologies .tech-badges span:hover {
  background-color: color-mix(in srgb, var(--heading-color), transparent 80%);
  transform: scale(1.05);
}

.portfolio-details .media-showcase {
  margin-bottom: var(--content-spacing);
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

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

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

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

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

.portfolio-details .media-showcase .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 30px;
  border-radius: 5px;
  background-color: var(--accent-color);
}

.portfolio-details .project-content .description-box {
  margin-bottom: 2rem;
}

.portfolio-details .project-content .description-box h3 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.portfolio-details .project-content .description-box h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.portfolio-details .project-content .description-box .lead {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-weight: 500;
}

.portfolio-details .project-content .description-box p {
  margin-bottom: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
}

.portfolio-details .project-content .project-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.portfolio-details .project-content .project-stats .stat-item {
  background-color: var(--surface-color);
  padding: 1.5rem;
  border-radius: var(--card-border-radius);
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s;
}

.portfolio-details .project-content .project-stats .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.portfolio-details .project-content .project-stats .stat-item .stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.portfolio-details .project-content .project-stats .stat-item .stat-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.portfolio-details .project-content .info-card {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: var(--card-border-radius);
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s;
}

.portfolio-details .project-content .info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.portfolio-details .project-content .info-card:hover .card-icon {
  background-color: var(--accent-color);
}

.portfolio-details .project-content .info-card:hover .card-icon i {
  color: var(--contrast-color);
}

.portfolio-details .project-content .info-card .card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.portfolio-details .project-content .info-card .card-icon i {
  font-size: 1.8rem;
  color: var(--accent-color);
  transition: all 0.3s;
}

.portfolio-details .project-content .info-card h4 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.portfolio-details .project-content .info-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 0;
}

.portfolio-details .project-content .project-gallery {
  margin: 3rem 0;
}

.portfolio-details .project-content .project-gallery h3 {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.portfolio-details .project-content .project-gallery h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.portfolio-details .project-content .project-gallery .gallery-item {
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.portfolio-details .project-content .project-gallery .gallery-item img {
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: all 0.5s ease;
}

.portfolio-details .project-content .project-gallery .gallery-item:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .project-content .project-gallery .gallery-item:hover img {
  transform: scale(1.05);
}

.portfolio-details .project-content .key-features {
  margin-bottom: 3rem;
}

.portfolio-details .project-content .key-features h3 {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.portfolio-details .project-content .key-features h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.portfolio-details .project-content .key-features .feature-item {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: var(--card-border-radius);
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s;
}

.portfolio-details .project-content .key-features .feature-item:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.portfolio-details .project-content .key-features .feature-item:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.portfolio-details .project-content .key-features .feature-item i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  transition: all 0.3s;
}

.portfolio-details .project-content .key-features .feature-item h5 {
  margin-bottom: 1rem;
  font-weight: 600;
}

.portfolio-details .project-content .key-features .feature-item p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.portfolio-details .project-content .project-navigation {
  display: flex;
  justify-content: space-between;
  padding-top: 2.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.portfolio-details .project-content .project-navigation a {
  display: flex;
  align-items: center;
  color: var(--heading-color);
  font-weight: 600;
  transition: all 0.3s;
}

.portfolio-details .project-content .project-navigation a i {
  font-size: 1.2rem;
  transition: all 0.3s;
}

.portfolio-details .project-content .project-navigation a.prev-project i {
  margin-right: 8px;
}

.portfolio-details .project-content .project-navigation a.prev-project:hover {
  color: var(--accent-color);
}

.portfolio-details .project-content .project-navigation a.prev-project:hover i {
  transform: translateX(-5px);
}

.portfolio-details .project-content .project-navigation a.all-projects {
  border: 2px solid color-mix(in srgb, var(--heading-color), transparent 80%);
  padding: 8px 16px;
  border-radius: 30px;
}

.portfolio-details .project-content .project-navigation a.all-projects i {
  margin-right: 8px;
}

.portfolio-details .project-content .project-navigation a.all-projects:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.portfolio-details .project-content .project-navigation a.all-projects:hover i {
  transform: scale(1.1);
}

.portfolio-details .project-content .project-navigation a.next-project i {
  margin-left: 8px;
}

.portfolio-details .project-content .project-navigation a.next-project:hover {
  color: var(--accent-color);
}

.portfolio-details .project-content .project-navigation a.next-project:hover i {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .portfolio-details .project-header .technologies {
    margin-top: 2rem;
  }

  .portfolio-details .project-header .technologies .tech-title,
  .portfolio-details .project-header .technologies .tech-badges {
    text-align: left;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .portfolio-details .project-header .project-title {
    font-size: 2.2rem;
  }

  .portfolio-details .project-navigation {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .portfolio-details .project-navigation a.all-projects {
    order: -1;
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .portfolio-details .project-stats {
    grid-template-columns: 1fr !important;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-hero {
  position: relative;
  margin-bottom: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  border-radius: 28px;
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  overflow: hidden;

}

.service-details .service-hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-details .service-hero .service-badge {
  position: absolute;
  top: 14px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
}

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

.service-details .service-content .service-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.service-details .service-content .service-header .service-intro {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details .service-content h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--heading-color);
}

.service-details .service-features {
  margin-bottom: 50px;
}

.service-details .service-features .feature-item {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.service-details .service-features .feature-item:hover {
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 90%);
  transform: translateY(-2px);
}

.service-details .service-features .feature-item .feature-icon {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.service-details .service-features .feature-item .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.service-details .service-features .feature-item .feature-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.service-details .service-features .feature-item .feature-content p {
  font-size: 14px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-process {
  margin-bottom: 50px;
}

.service-details .service-process .process-steps .process-step {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.service-details .service-process .process-steps .process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 60px;
  width: 2px;
  height: 40px;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.service-details .service-process .process-steps .process-step .step-number {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 25px;
  flex-shrink: 0;
  font-size: 16px;
}

.service-details .service-process .process-steps .process-step .step-content h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.service-details .service-process .process-steps .process-step .step-content p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details .service-gallery {
  margin-bottom: 30px;
}

.service-details .service-gallery img {
  transition: transform 0.3s ease;
}

.service-details .service-gallery img:hover {
  transform: scale(1.05);
}

.service-details .service-sidebar .service-menu {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .service-menu h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.service-details .service-sidebar .service-menu .menu-list .menu-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item:last-child {
  border-bottom: none;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item:hover,
.service-details .service-sidebar .service-menu .menu-list .menu-item.active {
  color: var(--accent-color);
  padding-left: 10px;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item:hover i,
.service-details .service-sidebar .service-menu .menu-list .menu-item.active i {
  color: var(--accent-color);
}

.service-details .service-sidebar .service-menu .menu-list .menu-item i {
  margin-right: 12px;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: color 0.3s ease;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item span {
  font-weight: 500;
}

.service-details .service-sidebar .service-info {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .service-info h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.service-details .service-sidebar .service-info .info-list .info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .service-info .info-list .info-item:last-child {
  border-bottom: none;
}

.service-details .service-sidebar .service-info .info-list .info-item .info-label {
  font-weight: 500;
  color: var(--default-color);
}

.service-details .service-sidebar .service-info .info-list .info-item .info-value {
  font-weight: 600;
  color: var(--accent-color);
}

.service-details .service-sidebar .contact-card {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  padding: 30px;
  border-radius: 10px;
  color: var(--contrast-color);
}

.service-details .service-sidebar .contact-card .contact-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.service-details .service-sidebar .contact-card .contact-content p {
  margin-bottom: 20px;
  opacity: 0.9;
  font-size: 14px;
  line-height: 1.6;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info {
  margin-bottom: 25px;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info .contact-item i {
  margin-right: 10px;
  opacity: 0.8;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info .contact-item span {
  font-size: 14px;
}

.service-details .service-sidebar .contact-card .contact-content .btn {
  background: var(--contrast-color);
  color: var(--accent-color);
  border: none;
  padding: 12px 25px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.service-details .service-sidebar .contact-card .contact-content .btn:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .service-details .service-hero img {
    height: 250px;
  }

  .service-details .service-hero .service-badge {
    top: 1px;
    right: 15px;
    padding: 6px 15px;
    font-size: 12px;
  }

  .service-details .service-content .service-header h2 {
    font-size: 24px;
  }

  .service-details .feature-item {
    padding: 15px !important;
  }

  .service-details .feature-item .feature-icon {
    width: 50px !important;
    height: 50px !important;
    margin-right: 15px !important;
  }

  .service-details .feature-item .feature-icon i {
    font-size: 20px !important;
  }

  .service-details .service-sidebar {
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

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

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 80px 0;
  margin: 0 auto;
}

.error-404 .error-icon {
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}

.error-404 .error-title {
  font-size: 2rem;
  color: var(--heading-color);
  font-weight: 600;
}

.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.error-404 .search-box {
  max-width: 500px;
  margin: 0 auto;
}

.error-404 .search-box .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.error-404 .search-box .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

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

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .error-404 .error-title {
    font-size: 1.5rem;
  }

  .error-404 .error-text {
    font-size: 1rem;
    padding: 0 20px;
  }

  .error-404 .search-box {
    margin: 0 20px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Custom style css
--------------------------------------------------------------*/


.index-logo-icon {
  width: 52px;
  height: 400px;
  border-radius: 50%;
  background-color: #f0f0f0;
  /* background-color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center; */
}



:root {
  --primary: #16a34a;
  --secondary: #15803d;
  --accent: #22c55e;
  --dark: #14532d;
  --light: #f0fdf4;
  --gradient: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  --values-color: #15803d;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  perspective: 1000px;
}

.mission-card,
.vision-card,
.values-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.mission-card:hover,
.vision-card:hover,
.values-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.mission-card::before,
.vision-card::before,
.values-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  transition: all 0.3s ease;
}

.mission-card {
  border-top: 5px solid var(--accent);
}

.mission-card::before {
  background: var(--secondary);
}

.vision-card {
  border-top: 5px solid var(--primary);
}

.vision-card::before {
  background: var(--secondary);
}

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

.values-card::before {
  background: var(--primary);
}

.mission-card:hover::before,
.vision-card:hover::before,
.values-card:hover::before {
  height: 10px;
}

.mission-card h3,
.vision-card h3,
.values-card h3 {
  font-size: 1.5rem;
  margin: 20px 0 15px;
  color: var(--dark);
  position: relative;
  display: inline-block;
}

.mission-card h3::after,
.vision-card h3::after,
.values-card h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  border-radius: 3px;
  transition: width 0.3s ease;
}

.mission-card h3::after {
  background: var(--accent);
}

.vision-card h3::after {
  background: var(--secondary);
}

.values-card h3::after {
  background: var(--values-color);
}

.mission-card:hover h3::after,
.vision-card:hover h3::after,
.values-card:hover h3::after {
  width: 100%;
}

.mission-card p,
.vision-card p,
.values-card p,
.values-list {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  transition: transform 0.3s ease;
}

.mission-card:hover p,
.vision-card:hover p,
.values-card:hover .values-list {
  transform: translateY(-5px);
}

.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mission-card .icon-box {
  background: rgba(22, 163, 74, 0.1);
  color: var(--accent);
}

.vision-card .icon-box {
  background: rgba(21, 128, 61, 0.1);
  color: var(--secondary);
}

.values-card .icon-box {
  background: rgba(79, 70, 229, 0.1);
  color: var(--values-color);
}

.mission-card:hover .icon-box,
.vision-card:hover .icon-box,
.values-card:hover .icon-box {
  transform: rotate(10deg) scale(1.1);
}

.icon-box svg {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.mission-card:hover .icon-box svg,
.vision-card:hover .icon-box svg,
.values-card:hover .icon-box svg {
  transform: scale(1.2);
}

.values-list {
  list-style: none;
  padding-left: 0;
}

.values-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
  transition: all 0.3s ease;
}

.values-list li:hover {
  color: var(--dark);
  transform: translateX(5px);
}

.value-bullet {
  position: absolute;
  left: 0;
  color: var(--values-color);
  font-weight: bold;
}

@media (max-width: 768px) {
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .mission-card,
  .vision-card,
  .values-card {
    padding: 30px;
  }
}

.lead {
  font-size: 1.15rem;
  font-weight: 400;
}

/* Starter Section */
.starter-section {
  background-color: var(--white);
  margin-bottom: -150px;
}

.starter-section img {
  transition: var(--transition);
  border: 8px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.starter-section img:hover {
  transform: translateY(-5px);
}

/* Mission, Vision, Values */
.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.mission-card,
.vision-card,
.values-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 4px solid var(--primary-color);
}

.mission-card:hover,
.vision-card:hover,
.values-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.icon-box {
  width: 60px;
  height: 60px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-box svg {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
}

.values-list {
  list-style: none;
  padding-left: 0;
}

.values-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.value-bullet {
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: var(--primary-light);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  border-radius: 10px;
}

.timeline-container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-container::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -12px;
  background-color: var(--white);
  border: 4px solid var(--primary-color);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.left {
  left: 0;
}

.right {
  left: 50%;
}

.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid var(--white);
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent var(--white);
}

.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid var(--white);
  border-width: 10px 10px 10px 0;
  border-color: transparent var(--white) transparent transparent;
}

.right::after {
  left: -12px;
}

.timeline-content {
  padding: 20px 30px;
  background-color: var(--white);
  position: relative;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.timeline-content:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* Team Section */
.team-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

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

.team-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: var(--transition);
}

.team-card:hover .team-img img {
  transform: scale(1.05);
}

/* .social-links {
            position: absolute;
            bottom: -60px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            background: rgba(76, 175, 80, 0.9);
            padding: 15px 0;
            transition: var(--transition);
        } */

.team-card:hover .social-links {
  bottom: 0;
}

.social-links a {
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--white);
  color: var(--primary-color);
}

.team-info {
  padding: 20px;
  text-align: center;
}

.team-info h4 {
  margin-bottom: 5px;
}

.team-info p {
  color: var(--secondary-color);
  font-size: 0.9rem;
}

/* Why Choose Us */
.dark-background {
  background-color: var(--dark-text);
  color: var(--light-text);
  position: relative;
  overflow: hidden;
}

.dark-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 0;
}

.dark-background .container {
  position: relative;
  z-index: 1;
}

/* Testimonials */
.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.quote-icon {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 20px;
}

.client-info {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.client-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid var(--primary-light);
}

.about-testimonials-slider {
  position: relative;
  overflow: hidden;
  padding: 8px 8px 58px;
}

.about-testimonials-slider .swiper-wrapper {
  align-items: stretch;
}

.about-testimonials-slider .swiper-slide {
  height: auto;
}

.about-testimonials-slider .testimonial-card {
  min-height: 165px;
}

.about-testimonials-pagination {
  bottom: 10px !important;
}

.about-testimonials-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(18, 161, 107, 0.35);
  opacity: 1;
}

.about-testimonials-pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 999px;
  background: var(--accent-color);
}

@media (max-width: 767px) {
  .about-testimonials-slider {
    padding-left: 0;
    padding-right: 0;
  }
}

/* CTA Section */
.bg-primary {
  background-color: var(--primary-color) !important;
}

.btn-light {
  background-color: var(--white);
  color: var(--primary-color);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-light:hover {
  background-color: var(--light-bg);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

/* Stats Section */
.counter-box {
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(5px);
  transition: var(--transition);
}

.counter-box:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.counter {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.counter-box p {
  font-size: 1.1rem;
  color: var(--primary-light);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .timeline::after {
    left: 31px;
  }

  .timeline-container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline-container::before {
    left: 60px;
    border: medium solid var(--white);
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--white) transparent transparent;
  }

  .left::after,
  .right::after {
    left: 18px;
  }

  .right {
    left: 0%;
  }
}

.particles-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Glassmorphism Card */
.glass-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Door Animation Effect */
.door-effect {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  transform-origin: left;
  transform: rotateY(-90deg);
  transition: transform 0.6s ease;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
}

.glass-card:hover .door-effect {
  transform: rotateY(0deg);
  opacity: 1;
}

/* =========================
   GLASSMORPHISM CARD
========================= */
.glass-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-8px);
}

.glass-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   DOUBLE DOOR EFFECT
========================= */
.door-effect {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease 0.3s;
}

/* Doors */
.door-effect::before,
.door-effect::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(8px);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: -1;
}

/* Left door */
.door-effect::before {
  left: 0;
  transform: translateX(-100%);
}

/* Right door */
.door-effect::after {
  right: 0;
  transform: translateX(100%);
}

/* Hover: doors CLOSE to center */
.portfolio-wrap:hover .door-effect::before {
  transform: translateX(0);
}

.portfolio-wrap:hover .door-effect::after {
  transform: translateX(0);
}

/* Show content AFTER doors close */
.portfolio-wrap:hover .door-effect {
  opacity: 1;
}

/* =========================
   CONTENT ANIMATION
========================= */
.door-effect h4 {
  font-size: 22px;
  margin-bottom: 10px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease 0.5s;
}

.door-effect h6 {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 15px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease 0.6s;
}

.door-effect .portfolio-links {
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.4s ease 0.7s;
}

.portfolio-wrap:hover .door-effect h4,
.portfolio-wrap:hover .door-effect h6 {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-wrap:hover .door-effect .portfolio-links {
  transform: scale(1);
  opacity: 1;
}

/* Cleaned legacy mobile nav block 2 */

/*--------------------------------------------------------------
# 7S-IQ Premium Design System Overlay
--------------------------------------------------------------*/
:root {
  --default-font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --heading-font: "Barlow", "Inter", system-ui, sans-serif;
  --nav-font: "Inter", system-ui, sans-serif;
  --background-color: #f7fbff;
  --default-color: #182333;
  --heading-color: #06101d;
  --accent-color: #10b981;
  --accent-2: #0ea5e9;
  --accent-3: #f43f5e;
  --surface-color: rgba(255, 255, 255, 0.84);
  --contrast-color: #ffffff;
  --nav-color: rgba(255, 255, 255, 0.9);
  --nav-hover-color: #7dd3fc;
  --nav-mobile-background-color: rgba(248, 252, 255, 0.94);
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #142033;
  --nav-dropdown-hover-color: #0f9f78;
  --iq-border: rgba(15, 23, 42, 0.1);
  --iq-muted: #64748b;
  --iq-shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.08);
  --iq-shadow-md: 0 18px 50px rgba(15, 23, 42, 0.12);
  --iq-shadow-lg: 0 30px 90px rgba(15, 23, 42, 0.18);
  --iq-radius: 18px;
  --iq-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-padding-top: 96px;
}

body.iq-app-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 8%, rgba(14, 165, 233, 0.16), transparent 28rem),
    radial-gradient(circle at 90% 4%, rgba(16, 185, 129, 0.14), transparent 24rem),
    linear-gradient(180deg, #f8fbff 0%, #eef7f5 48%, #ffffff 100%);
  color: var(--default-color);
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  text-rendering: optimizeLegibility;
}

main {
  position: relative;
  z-index: 1;
}

p {
  color: color-mix(in srgb, var(--default-color), transparent 13%);
  letter-spacing: 0;
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0;
  text-wrap: balance;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 10000;
  transform: translateY(-160%);
  border-radius: 999px;
  background: #06101d;
  color: #ffffff;
  padding: 10px 16px;
  box-shadow: var(--iq-shadow-md);
}

.skip-link:focus {
  transform: translateY(0);
  color: #ffffff;
}


.header {
  padding: 12px 0 0;
  background: transparent;
}

.header .branding {
  min-height: 68px;
}

.header .container {
  width: min(100% - 32px, 1220px);
}

.header .branding>.container {
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(6, 16, 29, 0.66);
  box-shadow: 0 18px 60px rgba(2, 8, 23, 0.28);
  backdrop-filter: blur(18px) saturate(140%);
}

.scrolled .header {
  background: transparent;
  box-shadow: none;
}

.scrolled .header .branding>.container {
  background: rgba(6, 16, 29, 0.88);
  border-color: rgba(125, 211, 252, 0.18);
  transform: translateY(-2px);
}

.header .logo {
  gap: 10px;
  min-width: 0;
}

.header .logo img {
  max-height: 48px;
  margin-right: 0;
  filter: drop-shadow(0 10px 20px rgba(16, 185, 129, 0.22));
}

.header .logo h1,
.header .logo .sitename {
  color: #ffffff;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  letter-spacing: 0;
}

@media (min-width: 1200px) {
  .navmenu>ul>li {
    padding: 8px 4px;
  }

  .navmenu a,
  .navmenu a:focus {
    min-height: 42px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
  }

  .navmenu>ul>li>a:before {
    display: none;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.11);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  }

  .navmenu .dropdown ul {
    min-width: 250px;
    padding: 10px;
    left: 0;
    top: calc(100% + 18px);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #ffffff !important;
    box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.2), 0 0 0 1px rgba(15, 23, 42, 0.06);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    z-index: 1050;
  }

  .navmenu .dropdown:hover>ul {
    top: calc(100% + 10px);
  }

  .navmenu .dropdown ul a {
    padding: 11px 14px;
    border-radius: 10px;
    font-size: 14px;
    color: #1e293b;
    font-weight: 500;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    background: rgba(16, 185, 129, 0.08);
    color: #059669;
    transform: translateX(4px);
  }

  .navmenu .megamenu-2 .desktop-megamenu {
    top: calc(100% + 18px);
    left: 50%;
    right: auto;
    width: min(1140px, calc(100vw - 32px));
    transform: translateX(-50%) translateY(8px) scale(0.99);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    background: #ffffff !important;
    box-shadow: 0 25px 60px -12px rgba(15, 23, 42, 0.22), 0 0 0 1px rgba(15, 23, 42, 0.08) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    z-index: 1050 !important;
    overflow: hidden;
  }

  .navmenu .megamenu-2:hover>.desktop-megamenu {
    top: calc(100% + 10px);
    transform: translateX(-50%) translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
  }

  .navmenu .megamenu-2 .tab-navigation {
    width: 250px;
    background: #f8fafc !important;
    border-right: 1px solid #e2e8f0 !important;
    padding: 20px 10px;
    flex-shrink: 0;
  }

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

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link {
    border: none;
    border-left: 3px solid transparent;
    border-radius: 10px;
    margin-bottom: 6px;
    padding: 12px 16px;
    color: #334155;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link:hover {
    background: #e2e8f0;
    color: #0f172a;
    padding-left: 18px;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link.active {
    background: #ecfdf5 !important;
    color: #059669 !important;
    border-left-color: #10b981;
    box-shadow: inset 0 0 0 1px #a7f3d0;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link.active i,
  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link.active span {
    color: #059669 !important;
  }

  .navmenu .megamenu-2 .tab-content {
    background: #ffffff !important;
    padding: 28px 32px;
    flex: 1;
    overflow-y: auto;
  }

  .navmenu .megamenu-2 .tab-content .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 24px;
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section h4 {
    color: #0f172a;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid #10b981;
    letter-spacing: -0.01em;
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link,
  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category {
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #ffffff !important;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    padding: 12px 14px;
    transition: all 0.2s ease;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #1e293b;
    text-decoration: none;
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link:hover,
  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category:hover {
    background: #f8fafc !important;
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px -4px rgba(15, 23, 42, 0.08);
  }

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

  .navmenu .megamenu-2 .tab-content .featured-banner {
    border-radius: 14px;
    border: 1px solid #bbf7d0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfeff 100%) !important;
    box-shadow: 0 4px 16px -4px rgba(16, 185, 129, 0.12);
    padding: 20px 24px;
  }
}

/* =========================================================
   7S IQ — Professional Responsive Side Menu Bar Drawer & Design System
========================================================= */

/* Header Hamburger Toggle */
.mobile-nav-toggle {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  width: 44px !important;
  height: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
  font-size: 24px !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  flex-shrink: 0 !important;
  padding: 0 !important;
}

.mobile-nav-toggle:hover {
  background: rgba(16, 185, 129, 0.3) !important;
  border-color: rgba(16, 185, 129, 0.5) !important;
  color: #ffffff !important;
  transform: scale(1.04);
}

.mobile-nav-toggle i {
  line-height: 1;
  pointer-events: none;
}

/* Desktop: hide mobile elements completely */
@media (min-width: 1200px) {
  .mobile-nav-header,
  .mobile-nav-toggle,
  .mobile-nav-backdrop {
    display: none !important;
  }
}

/* Mobile & Tablet Styles (< 1200px) */
@media (max-width: 1199px) {
  /* Prevent scroll when drawer is open */
  body.mobile-nav-active {
    overflow: hidden !important;
  }

  .mobile-nav-active #header,
  .mobile-nav-active .header .branding,
  .mobile-nav-active .header .branding > .container {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transform: none !important;
  }

  /* Fullscreen dark backdrop with blur */
  .mobile-nav-backdrop {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: rgba(6, 26, 20, 0.72) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    z-index: 999998 !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }

  body.mobile-nav-active .mobile-nav-backdrop {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  /* Side Menu Drawer - CLOSED (Completely hidden & takes NO layout space in header) */
  #navmenu.navmenu {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: min(340px, 86vw) !important;
    height: 100vh !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    background: #ffffff !important;
    box-shadow: -14px 0 45px rgba(6, 78, 59, 0.22) !important;
    z-index: 999999 !important;
    display: none !important;
    flex-direction: column !important;
    transform: translateX(110%) !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, visibility 0.35s !important;
    overflow: hidden !important;
    border-left: 1px solid #d1fae5 !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Closed state guarantee: zero dimension so flex header never renders it */
  body:not(.mobile-nav-active) #navmenu.navmenu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateX(110%) !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
  }

  /* Side Menu Drawer - OPEN */
  body.mobile-nav-active #navmenu.navmenu,
  #navmenu.navmenu.mobile-nav-open {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateX(0) !important;
    width: min(340px, 86vw) !important;
    height: 100dvh !important;
  }

  /* Drawer Top Branding Header */
  .mobile-nav-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 16px 20px !important;
    border-bottom: 1px solid #f0fdf4 !important;
    background: #ffffff !important;
    flex-shrink: 0 !important;
    width: 100% !important;
  }

  .mobile-nav-close-btn {
    background: rgba(16, 185, 129, 0.1) !important;
    border: 1px solid rgba(16, 185, 129, 0.2) !important;
    color: #064e3b !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 10px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    padding: 0 !important;
  }

  .mobile-nav-close-btn:hover {
    background: #fee2e2 !important;
    border-color: #fca5a5 !important;
    color: #dc2626 !important;
    transform: rotate(90deg);
  }

  /* Drawer Navigation List */
  #navmenu > ul {
    flex: 1 1 auto !important;
    display: block !important;
    position: static !important;
    padding: 16px 14px 40px !important;
    margin: 0 !important;
    list-style: none !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    background: #ffffff !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    height: auto !important;
    max-height: none !important;
    inset: auto !important;
  }

  #navmenu ul li {
    display: block !important;
    margin: 0 0 6px 0 !important;
    width: 100% !important;
  }

  #navmenu ul a,
  #navmenu ul a:focus {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 12px 16px !important;
    border-radius: 12px !important;
    background: #f8fafc !important;
    color: #1e293b !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    line-height: 1.3 !important;
    border: 1px solid transparent !important;
  }

  #navmenu ul a:hover,
  #navmenu ul a:active {
    background: #ecfdf5 !important;
    color: #059669 !important;
    border-color: #a7f3d0 !important;
  }

  #navmenu .active,
  #navmenu .active:focus {
    color: #059669 !important;
    background: #ecfdf5 !important;
    border-color: #a7f3d0 !important;
  }

  #navmenu a i {
    width: 28px !important;
    height: 28px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 8px !important;
    background: rgba(16, 185, 129, 0.12) !important;
    color: #059669 !important;
    font-size: 13px !important;
    transition: transform 0.25s ease !important;
    flex-shrink: 0 !important;
  }

  #navmenu a.active i,
  #navmenu li.active > a i {
    transform: rotate(180deg) !important;
  }

  /* Submenus inside Drawer */
  #navmenu .dropdown ul,
  #navmenu .megamenu-2 .mobile-megamenu {
    display: none;
    position: static !important;
    margin: 6px 0 10px 10px !important;
    padding: 6px 8px !important;
    border-radius: 12px !important;
    border: 1px solid #d1fae5 !important;
    background: #f0fdf4 !important;
    list-style: none !important;
    box-shadow: none !important;
  }

  #navmenu .dropdown ul.dropdown-active,
  #navmenu .megamenu-2 .mobile-megamenu.dropdown-active,
  #navmenu li.active > ul {
    display: block !important;
  }

  #navmenu .dropdown ul a,
  #navmenu .megamenu-2 .mobile-megamenu a {
    background: transparent !important;
    padding: 9px 12px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #334155 !important;
  }

  #navmenu .dropdown ul a:hover,
  #navmenu .megamenu-2 .mobile-megamenu a:hover {
    color: #059669 !important;
    background: #ffffff !important;
  }
}

/* =========================================================
   Universal Green & White UI/UX Enhancements & Animations
========================================================= */

/* Primary CTA Buttons */
.btn-getstarted,
.btn-primary,
.btn-success,
a.btn-getstarted {
  background: var(--primary-gradient) !important;
  color: #ffffff !important;
  border: none !important;
  padding: 10px 26px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  letter-spacing: 0.2px !important;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  text-decoration: none !important;
}

.btn-getstarted:hover,
.btn-primary:hover,
.btn-success:hover,
a.btn-getstarted:hover {
  background: linear-gradient(135deg, #047857 0%, #059669 100%) !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.45) !important;
}

.btn-outline-success,
.btn-outline-primary {
  border: 1.5px solid var(--primary-color) !important;
  color: var(--primary-color) !important;
  background: transparent !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
}

.btn-outline-success:hover,
.btn-outline-primary:hover {
  background: var(--primary-color) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 18px rgba(5, 150, 105, 0.3) !important;
  transform: translateY(-2px) !important;
}

/* Polished Card Hover Elevate */
.service-card,
.card,
.portfolio-item,
.team-card,
.feature-box,
.icon-box {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease !important;
}

.service-card:hover,
.team-card:hover,
.feature-box:hover,
.icon-box:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 35px -8px rgba(5, 150, 105, 0.16), 0 1px 3px rgba(0,0,0,0.05) !important;
  border-color: rgba(16, 185, 129, 0.35) !important;
}

/* Modern Input Styling with Emerald Focus Ring */
.form-control,
.form-select,
textarea.form-control {
  border-radius: 10px !important;
  border: 1.5px solid #cbd5e1 !important;
  padding: 10px 16px !important;
  font-size: 15px !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease !important;
}

.form-control:focus,
.form-select:focus,
textarea.form-control:focus {
  border-color: #10b981 !important;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.22) !important;
  outline: none !important;
}

/* Parallax and Micro-interactions */
@keyframes iqFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes iqPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.iq-float {
  animation: iqFloat 4s ease-in-out infinite;
}

.iq-pulse {
  animation: iqPulse 2s infinite;
}

/* Scroll-triggered reveal */
.iq-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.iq-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

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

.section-title h2,
.section-title .title,
.service-content h2,
.project-title {
  line-height: 1.04;
}

.btn,
button,
input[type="submit"],
.readmore,
.cta-btn,
.btn-cta,
.form-submit button {
  transition: transform 0.25s var(--iq-ease), box-shadow 0.25s var(--iq-ease), background 0.25s var(--iq-ease), border-color 0.25s var(--iq-ease);
}

.btn:hover,
button:hover,
input[type="submit"]:hover,
.readmore:hover,
.cta-btn:hover,
.btn-cta:hover,
.form-submit button:hover {
  transform: translateY(-2px);
}

.btn:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(14, 165, 233, 0.35);
  outline-offset: 3px;
}

.card,
.service-card,
.feature-item,
.step-card,
.contact-card,
.info-card,
.team-card,
.testimonial-card,
.glass-card,
.portfolio-details .project-content .project-stats .stat-item,
.portfolio-details .project-content .key-features .feature-item,
.contact .contact-form-container,
.service-details .service-sidebar .service-menu,
.service-details .service-sidebar .service-info {
  border: 1px solid rgba(15, 23, 42, 0.09) !important;
  border-radius: var(--iq-radius) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.72)) !important;
  box-shadow: var(--iq-shadow-sm) !important;
  backdrop-filter: blur(16px) saturate(140%);
  transform-style: preserve-3d;
}

.card:hover,
.service-card:hover,
.feature-item:hover,
.step-card:hover,
.contact-card:hover,
.info-card:hover,
.team-card:hover,
.testimonial-card:hover,
.glass-card:hover {
  border-color: rgba(14, 165, 233, 0.2) !important;
  box-shadow: var(--iq-shadow-md) !important;
  transform: translateY(-6px) perspective(900px) rotateX(1.2deg);
}

.service-card i,
.feature-item i,
.contact-card i,
.info-card i,
.kpi-icon,
.icon-box {
  filter: drop-shadow(0 10px 18px rgba(16, 185, 129, 0.16));
}

.form-control,
.form-select,
input[type="text"],
input[type="email"],
input[type="number"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea,
select {
  border-radius: 13px !important;
  border: 1px solid rgba(15, 23, 42, 0.12) !important;
  background: rgba(255, 255, 255, 0.82) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 8px 22px rgba(15, 23, 42, 0.04) !important;
  color: #101827 !important;
}

.form-control:focus,
.form-select:focus,
input:focus,
textarea:focus,
select:focus {
  border-color: rgba(14, 165, 233, 0.48) !important;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12), 0 12px 28px rgba(15, 23, 42, 0.08) !important;
}

.php-email-form .loading,
.php-email-form .error-message,
.php-email-form .sent-message {
  border-radius: 14px;
  box-shadow: var(--iq-shadow-sm);
}

button.is-loading,
.btn.is-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}

button.is-loading::after,
.btn.is-loading::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #ffffff;
  animation: iq-spin 0.7s linear infinite;
}

.premium-table-wrap {
  border: 1px solid var(--iq-border);
  border-radius: var(--iq-radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--iq-shadow-sm);
  overflow: auto;
}

table {
  vertical-align: middle;
}

table thead th {
  background: rgba(6, 16, 29, 0.04) !important;
  color: #475569 !important;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

table tbody tr {
  transition: background 0.2s var(--iq-ease), transform 0.2s var(--iq-ease);
}

table tbody tr:hover {
  background: rgba(14, 165, 233, 0.06) !important;
}

.modal-content {
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--iq-shadow-lg);
  backdrop-filter: blur(20px) saturate(160%);
}

.skeleton,
[data-skeleton] {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.07);
  color: transparent !important;
}

.skeleton::after,
[data-skeleton]::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.74), transparent);
  animation: iq-shimmer 1.35s infinite;
}

@keyframes iq-shimmer {
  100% {
    transform: translateX(100%);
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--iq-ease), transform 0.65s var(--iq-ease);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-details .service-sidebar {
  position: sticky;
  top: 112px;
}

.service-details .service-sidebar .service-menu .menu-list {
  display: grid;
  gap: 8px;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item {
  border: 0;
  border-radius: 12px;
  padding: 12px 14px;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item:hover,
.service-details .service-sidebar .service-menu .menu-list .menu-item.active {
  padding-left: 18px;
  background: rgba(16, 185, 129, 0.1);
}

.footer {
  overflow: hidden;
  background: linear-gradient(135deg, rgba(6, 16, 29, 0.96), rgba(9, 37, 48, 0.96) 58%, rgba(10, 55, 39, 0.96)) !important;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 82%, transparent);
  pointer-events: none;
}

.footer .footer-top,
.footer .copyright {
  position: relative;
  z-index: 1;
}

.footer a:hover {
  color: #7dd3fc;
}

.scroll-top {
  position: fixed;
  right: 26px;
  left: auto;
  bottom: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.35);
  z-index: 9980;
}

@media (max-width: 576px) {
  .scroll-top {
    right: 21px;
    left: auto;
    bottom: 16px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 991px) {
  .service-details .service-sidebar {
    position: static;
  }

  .card:hover,
  .service-card:hover,
  .feature-item:hover,
  .step-card:hover,
  .contact-card:hover,
  .info-card:hover,
  .team-card:hover,
  .testimonial-card:hover,
  .glass-card:hover {
    transform: translateY(-3px);
  }
}

@media (max-width: 576px) {
  .header .container {
    width: min(100% - 20px, 1220px);
  }

  .header .branding>.container {
    border-radius: 16px;
  }

  .header .logo h1,
  .header .logo .sitename {
    font-size: 1.18rem;
  }

  .section-title h2,
  .project-title {
    font-size: clamp(1.8rem, 9vw, 2.35rem) !important;
  }

  .contact .contact-form-container,
  .service-details .service-sidebar .service-menu,
  .service-details .service-sidebar .service-info {
    padding: 20px !important;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* =========================
   GLASSMORPHISM CARD
========================= */
.glass-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.35);
}

.glass-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   DOUBLE DOOR EFFECT
========================= */
.door-effect {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.6s ease 0.180s;
}

/* Glass Doors */
.door-effect::before,
.door-effect::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;

  /* Default (before hover) – slightly darker */
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.14),
      rgba(0, 0, 0, 0.22));

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

  transition:
    transform 0.65s cubic-bezier(0.77, 0, 0.175, 1),
    background 0.5s ease;

  z-index: -1;
}


/* Left door */
.door-effect::before {
  left: 0;
  transform: translateX(0);
}

/* Right door */
.door-effect::after {
  right: 0;
  transform: translateX(100%);
}

/* 🔥 WHEN HOVER → doors become VERY LIGHT (image visible) */
.portfolio-wrap:hover .door-effect::before,
.portfolio-wrap:hover .door-effect::after {
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02));
}

/* Show content AFTER doors close */
.portfolio-wrap:hover .door-effect {
  opacity: 1;
}

/* =========================
   CONTENT ANIMATION
========================= */
.door-effect h4 {
  font-size: 22px;
  margin-bottom: 10px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.45s ease 0.55s;
}

.door-effect h6 {
  font-size: 14px;
  margin-bottom: 15px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.45s ease 0.65s;
}

.door-effect .portfolio-links {
  transform: scale(0.85);
  opacity: 0;
  transition: all 0.45s ease 0.75s;
}

.portfolio-wrap:hover .door-effect h4,
.portfolio-wrap:hover .door-effect h6 {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-wrap:hover .door-effect .portfolio-links {
  transform: scale(1);
  opacity: 1;
}



/* ==========================================================================
   PREMIUM MULTI-SERVICE CHATBOT — Enhanced UI
   ========================================================================== */

/* ---- CSS Variables (Green & White Theme) ---- */
:root {
  --cb-primary: #10b981;
  --cb-primary-dark: #059669;
  --cb-accent: #34d399;
  --cb-bg: rgba(255, 255, 255, 0.96);
  --cb-glass: blur(20px) saturate(200%);
  --cb-shadow: 0 24px 60px rgba(16, 185, 129, 0.15), 0 6px 18px rgba(0, 0, 0, 0.08);
  --cb-header-grad: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --cb-radius: 22px;
  --cb-toggle-size: 60px;
}


/* ---- Widget wrapper (fixed to viewport, anchors the whole chatbot) ---- */
.chatbot-widget {
  position: fixed;
  bottom: 74px;
  right: 20px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  font-family: 'Inter', system-ui, sans-serif;
}

/* ---- Floating toggle button ---- */
.chatbot-toggle {
  width: var(--cb-toggle-size);
  height: var(--cb-toggle-size);
  border-radius: 50%;
  background: var(--cb-header-grad);
  border: none;
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(16, 185, 129, 0.45);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
  position: relative;
  flex-shrink: 0;
  z-index: 9991;
  right: 0;
  bottom: 0;
}

.chatbot-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 38px rgba(16, 185, 129, 0.55);
}

.chatbot-toggle:active {
  transform: scale(0.96);
}

/* ---- Attention Bubble (Prompt) ---- */
.chatbot-attention-bubble {
  position: absolute;
  bottom: calc(var(--cb-toggle-size) + 14px);
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 16px 10px 10px;
  border-radius: 30px 30px 4px 30px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(16, 185, 129, 0.15);
  white-space: nowrap;
  z-index: 9992;
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: cb-bubble-float 3.5s ease-in-out infinite;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.chatbot-attention-bubble::after {
  content: none;
}

.chatbot-attention-bubble:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(16, 185, 129, 0.2);
}

.chatbot-attention-bubble .bubble-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cb-header-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
  flex-shrink: 0;
}

.chatbot-attention-bubble .bubble-text {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  letter-spacing: 0.1px;
  display: inline-block;
  min-width: 10px;
}

.chatbot-attention-bubble .bubble-cursor {
  font-weight: 700;
  color: var(--cb-primary);
  animation: cb-cursor-blink 1s step-end infinite;
  margin-left: 2px;
}

@keyframes cb-cursor-blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.chatbot-attention-bubble .close-bubble {
  background: transparent;
  border: none;
  color: #94a3b8;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-left: -6px;
}

.chatbot-attention-bubble .close-bubble:hover {
  background: #f1f5f9;
  color: #ef4444;
  transform: rotate(90deg);
}

@keyframes cb-bubble-float {

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

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

/* Pulse ring animation on toggle */
.chatbot-toggle .pulse-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 3px solid rgba(16, 185, 129, 0.5);
  animation: cb-pulse 2.4s ease-out infinite;
  pointer-events: none;
}

@keyframes cb-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  70% {
    transform: scale(1.5);
    opacity: 0;
  }

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

/* ---- Chat panel ---- */
.chatbot-panel {
  position: absolute;
  bottom: calc(var(--cb-toggle-size) + 16px);
  right: 0;
  width: 390px;
  max-width: calc(100vw - 48px);
  height: 600px;
  max-height: calc(100vh - 140px);
  background: var(--cb-bg);
  backdrop-filter: var(--cb-glass);
  -webkit-backdrop-filter: var(--cb-glass);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--cb-radius);
  box-shadow: var(--cb-shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform-origin: bottom right;
  animation: cb-panel-in 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes cb-panel-in {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(12px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ---- Header ---- */
.chatbot-header {
  padding: 16px 20px;
  background: var(--cb-header-grad);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

/* Subtle shimmer stripe in header */
.chatbot-header::after {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: rgba(255, 255, 255, 0.08);
  transform: rotate(25deg);
  pointer-events: none;
}

.chatbot-header .header-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.chatbot-header .header-info h5 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.2px;
  margin: 0 0 2px;
  line-height: 1.2;
}

.chatbot-header .header-info span {
  font-size: 12px;
  opacity: 0.82;
  display: flex;
  align-items: center;
  gap: 6px;
}

.chatbot-header .header-info span::before {
  content: '';
  width: 7px;
  height: 7px;
  background: #2ecc71;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 6px #2ecc71;
  animation: cb-blink 2.5s ease-in-out infinite;
}

@keyframes cb-blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.chatbot-header .btn-close {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  opacity: 1;
  filter: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}

.chatbot-header .btn-close:hover {
  background: rgba(255, 255, 255, 0.32);
}

/* Bot avatar */
.bot-avatar {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  position: relative;
  flex-shrink: 0;
}

.status-indicator {
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 11px;
  height: 11px;
  background: #2ecc71;
  border: 2.5px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(46, 204, 113, 0.7);
}

/* ---- Message area ---- */
.chatbot-messages {
  flex: 1 1 0;
  padding: 20px 18px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
  background: #f4f6fb;
}

.chatbot-messages::-webkit-scrollbar {
  width: 5px;
}

.chatbot-messages::-webkit-scrollbar-track {
  background: transparent;
}

.chatbot-messages::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 10px;
}

/* Message bubbles */
.message-wrapper {
  display: flex;
  width: 100%;
  align-items: flex-end;
  gap: 8px;
}

.message-bot {
  justify-content: flex-start;
}

.message-user {
  justify-content: flex-end;
}

.message-content {
  max-width: 82%;
  padding: 12px 16px;
  font-size: 13.5px;
  line-height: 1.55;
  border-radius: 18px;
  position: relative;
}

.message-bot .message-content {
  background: #ffffff;
  color: #1e293b;
  border-bottom-left-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.message-user .message-content {
  background: var(--cb-header-grad);
  color: #fff;
  border-bottom-right-radius: 5px;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.30);
}

/* ---- Service selection grid ---- */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 10px;
}

.service-option {
  background: #fff;
  border: 1.5px solid #e8ecf4;
  padding: 13px 10px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  transition: all 0.22s ease;
  color: #374151;
  text-align: center;
  font-size: 0;
  /* prevent extra whitespace */
}

.service-option i {
  font-size: 22px;
  color: var(--cb-primary);
  transition: transform 0.2s;
}

.service-option span {
  font-size: 11.5px;
  font-weight: 600;
  color: #374151;
  line-height: 1.3;
}

.service-option:hover {
  border-color: var(--cb-primary);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(5, 150, 105, 0.05));
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.14);
}

.service-option:hover i {
  transform: scale(1.15);
}

/* ---- Feature list ---- */
.feature-list {
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 6px;
}

.feature-item {
  display: flex;
  align-items: center;
}

.feature-item input[type="checkbox"] {
  display: none;
}

.feature-item label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 9px 13px;
  background: #fff;
  border: 1.5px solid #e8ecf4;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  transition: all 0.18s ease;
  gap: 8px;
}

.feature-item label:hover {
  border-color: var(--cb-primary);
  background: rgba(16, 185, 129, 0.04);
}

.feature-item input[type="checkbox"]:checked+label {
  background: linear-gradient(135deg, var(--cb-primary), #0ea5e9);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.28);
}

.feat-name {
  flex: 1;
}

.feat-price {
  font-size: 11px;
  opacity: 0.75;
  white-space: nowrap;
  font-weight: 600;
}

/* ---- Estimate summary card ---- */
.estimate-card {
  background: #fff;
  border: 2px solid rgba(16, 185, 129, 0.2);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.08);
  margin-top: 4px;
}

.estimate-card h6 {
  color: var(--cb-primary);
  font-weight: 700;
  font-size: 14px;
  border-bottom: 1px solid #e8ecf4;
  padding-bottom: 10px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.estimate-breakdown {
  font-size: 12.5px;
  color: #64748b;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.estimate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.estimate-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 15px;
  color: #1e293b;
  border-top: 1.5px dashed #cbd5e1;
  padding-top: 10px;
  margin-top: 6px;
}

.estimate-total span:last-child {
  color: var(--cb-primary);
  font-size: 16px;
}

/* ---- Footer / input ---- */
.chatbot-footer {
  padding: 14px 16px 16px;
  background: #fff;
  border-top: 1px solid #e8ecf4;
  flex-shrink: 0;
}

.input-container {
  display: flex;
  align-items: center;
  background: #f1f4fb;
  border: 1.5px solid #e2e8f4;
  border-radius: 50px;
  padding: 6px 6px 6px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.input-container:focus-within {
  border-color: var(--cb-primary);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

.input-container input {
  flex: 1;
  border: none !important;
  background: none !important;
  outline: none !important;
  font-size: 13.5px;
  color: #1e293b;
  padding: 6px 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.input-container input::placeholder {
  color: #94a3b8;
}

.input-container button {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  background: var(--cb-header-grad) !important;
  color: #fff !important;
  border: none !important;
  cursor: pointer;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 15px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.30);
  transition: transform 0.2s, box-shadow 0.2s;
}

.input-container button:hover {
  transform: scale(1.08) !important;
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.45) !important;
}

.footer-note {
  text-align: center;
  font-size: 10px;
  color: #94a3b8;
  margin-top: 8px;
  letter-spacing: 0.4px;
}

/* ---- Typing indicator ---- */
.typing-dots {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 14px 18px !important;
}

.typing-dots span {
  width: 7px;
  height: 7px;
  background: #94a3b8;
  border-radius: 50%;
  animation: cb-bounce 1.3s infinite ease-in-out both;
}

.typing-dots span:nth-child(1) {
  animation-delay: -0.30s;
}

.typing-dots span:nth-child(2) {
  animation-delay: -0.15s;
}

.typing-dots span:nth-child(3) {
  animation-delay: 0s;
}

@keyframes cb-bounce {

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

  40% {
    transform: scale(1.0);
    opacity: 1;
  }
}

/* ---- Action buttons ---- */
.btn-primary-chatbot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--cb-header-grad);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.28);
  white-space: nowrap;
}

.btn-primary-chatbot:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(16, 185, 129, 0.38);
}

.btn-restart-chatbot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #f1f5f9;
  color: #475569;
  border: 1.5px solid #e2e8f0;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-restart-chatbot:hover {
  background: #e2e8f0;
  transform: translateY(-2px);
}

/* ---- Mobile fullscreen ---- */
@media (max-width: 576px) {
  .chatbot-attention-bubble {
    transform: scale(0.9);
    transform-origin: bottom right;
    right: 0;
    bottom: 64px;
  }

  .chatbot-attention-bubble:hover {
    transform: scale(0.93) translateY(-4px);
  }

  .chatbot-widget {
    bottom: 66px;
    right: 16px;
  }

  .chatbot-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100dvh;
    max-width: 100vw;
    max-height: 100dvh;
    border-radius: 0;
    border: none;
  }

  .chatbot-toggle {
    width: 50px;
    height: 50px;
    font-size: 22px;
    right: 0;
    bottom: 0;
  }
}

/* ========================================================= */
/* Premium Software Documentation & Mega Solutions Layouts */
/* ========================================================= */

/* Right Side Hero Image */
.fixed-right-img {
  max-height: 450px;
  object-fit: contain;
  border-radius: 16px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
  animation: floatingImg 6s ease-in-out infinite;
}

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

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

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

/* Full Width Image Container */
.full-width-img {
  text-align: center;
  padding: 30px;
  background: linear-gradient(145deg, #ffffff, #f8fcfb);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(18, 161, 107, 0.05), 0 4px 12px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(18, 161, 107, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.full-width-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--accent-color, #12a16b), #36c8f5);
}

.full-width-img:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(18, 161, 107, 0.08), 0 8px 24px rgba(0, 0, 0, 0.04);
}

.full-width-img img {
  max-height: 500px;
  object-fit: contain;
  border-radius: 16px;
  position: relative;
  z-index: 2;
}

/* Premium Testimonial Section */
.testimonial-wrapper {
  background: #ffffff;
  border-radius: 24px;
  padding: 45px 50px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.04), 0 5px 15px rgba(0, 0, 0, 0.02);
  flex: 1;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.testimonial-wrapper::before {
  content: '"';
  position: absolute;
  top: -20px;
  right: 30px;
  font-size: 250px;
  color: rgba(18, 161, 107, 0.03);
  font-family: serif;
  line-height: 1;
  pointer-events: none;
}

.testimonial-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(18, 161, 107, 0.06), 0 8px 20px rgba(0, 0, 0, 0.03);
}

.avatar-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.avatar-background {
  position: absolute;
  inset: -8px;
  background: linear-gradient(135deg, var(--accent-color, #12a16b), #36c8f5);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.15;
  animation: pulseAvatar 3s infinite alternate;
}

@keyframes pulseAvatar {
  0% {
    transform: scale(1);
    opacity: 0.15;
  }

  100% {
    transform: scale(1.08);
    opacity: 0.25;
  }
}

.avatar-img {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  z-index: 1;
}

.quote-icon {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-color, #12a16b), #0d8255);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 2;
  box-shadow: 0 6px 16px rgba(18, 161, 107, 0.35);
  border: 3px solid #ffffff;
}

.testimonial-content {
  flex: 1;
  z-index: 2;
  position: relative;
}

.testimonial-badge {
  display: inline-block;
  padding: 6px 18px;
  background: linear-gradient(135deg, rgba(18, 161, 107, 0.1), rgba(18, 161, 107, 0.05));
  color: var(--accent-color, #12a16b);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: 1px solid rgba(18, 161, 107, 0.15);
}

.feedback-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--default-color, #333);
  font-weight: 400;
  margin-bottom: 24px;
}

.name-text {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--heading-color, #111);
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.role-text {
  font-size: 1rem;
  color: var(--accent-color, #12a16b);
  font-weight: 600;
  opacity: 0.9;
}

.testimonial-arrow {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--accent-color, #12a16b);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  align-self: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.testimonial-arrow i {
  transition: transform 0.3s ease;
}

.testimonial-arrow:hover {
  background: var(--accent-color, #12a16b);
  color: #ffffff;
  box-shadow: 0 15px 35px rgba(18, 161, 107, 0.25);
  transform: scale(1.05);
}

.testimonial-arrow:hover i {
  transform: translateX(3px);
}

/* Premium FAQs styling */
.faq-list {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
  transition: all 0.3s ease;
}

.faq-item:last-child {
  border-bottom: none !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.faq-question {
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 10px 0;
}

.faq-question h4 {
  font-size: 1.15rem;
  color: var(--heading-color, #222);
  transition: color 0.3s ease;
}

.faq-question:hover h4 {
  color: var(--accent-color, #12a16b);
}

.faq-arrow {
  background: rgba(18, 161, 107, 0.08);
  color: var(--accent-color, #12a16b);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  font-size: 14px;
}

.faq-question:hover .faq-arrow {
  background: rgba(18, 161, 107, 0.15);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  background: var(--accent-color, #12a16b);
  color: #fff;
  box-shadow: 0 4px 12px rgba(18, 161, 107, 0.25);
}

.faq-answer {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555 !important;
  padding-right: 40px;
}

/* Client Marquee Premium */
.marquee-container img {
  opacity: 0.5;
  filter: grayscale(100%) opacity(0.7);
  transition: all 0.4s ease;
  transform: scale(0.95);
}

.marquee-container img:hover {
  opacity: 1;
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* Professional Responsiveness */
@media (max-width: 991px) {
  .fixed-right-img {
    max-height: 350px;
    margin-top: 30px;
  }

  .testimonial-wrapper {
    padding: 35px 30px;
  }
}

@media (max-width: 768px) {
  .testimonial-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 30px !important;
    padding: 35px 25px;
  }

  .avatar-wrapper {
    margin: 0 auto;
    width: 100px;
    height: 100px;
  }

  .avatar-img {
    width: 100px;
    height: 100px;
  }

  .testimonial-arrow {
    display: none;
  }

  .feedback-text {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .full-width-img {
    padding: 15px;
    border-radius: 20px;
  }

  .full-width-img img {
    max-height: 300px;
  }

  .faq-list {
    padding: 25px 20px;
  }

  .faq-answer {
    padding-right: 0;
  }
}