/**
* Template Name: Strategy
* Template URL: https://bootstrapmade.com/strategy-bootstrap-agency-template/
* Updated: May 09 2025 with Bootstrap v5.3.6
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --heading-font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --nav-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

/* ============================================
   Professional App Color System
   ============================================ */

/* Base Colors */
:root { 
  /* Primary Background */
  --background-color: #0a0e14;
  --background-secondary: #0f1419;
  --background-elevated: #151a20;
  
  /* Surface Colors */
  --surface-color: #1a1f26;
  --surface-elevated: #1f252c;
  --surface-hover: #252b33;
  
  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.85);
  --text-tertiary: rgba(255, 255, 255, 0.65);
  --text-disabled: rgba(255, 255, 255, 0.4);
  
  /* Heading Colors */
  --heading-color: #ffffff;
  --heading-secondary: rgba(255, 255, 255, 0.9);
  
  /* Brand/Accent Colors */
  --accent-color: #ffb020;
  --accent-hover: #ffc040;
  --accent-active: #e39d1c;
  --accent-light: rgba(255, 176, 32, 0.1);
  --accent-medium: rgba(255, 176, 32, 0.2);
  
  /* Contrast Colors */
  --contrast-color: #ffffff;
  --contrast-inverse: #0a0e14;
  
  /* Semantic Colors */
  --success-color: #10b981;
  --success-light: rgba(16, 185, 129, 0.1);
  --error-color: #ef4444;
  --error-light: rgba(239, 68, 68, 0.1);
  --warning-color: #f59e0b;
  --warning-light: rgba(245, 158, 11, 0.1);
  --info-color: #3b82f6;
  --info-light: rgba(59, 130, 246, 0.1);
  
  /* Border Colors */
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.12);
  --border-active: rgba(255, 176, 32, 0.3);
  
  /* Shadow Colors */
  --shadow-sm: rgba(0, 0, 0, 0.1);
  --shadow-md: rgba(0, 0, 0, 0.15);
  --shadow-lg: rgba(0, 0, 0, 0.25);
  --shadow-accent: rgba(255, 176, 32, 0.2);
  
  /* Legacy Support */
  --default-color: var(--text-secondary);
}

/* Navigation Colors */
:root {
  --nav-color: var(--text-secondary);
  --nav-hover-color: var(--accent-color);
  --nav-active-color: var(--accent-color);
  --nav-mobile-background-color: var(--surface-elevated);
  --nav-dropdown-background-color: var(--surface-elevated);
  --nav-dropdown-color: var(--text-secondary);
  --nav-dropdown-hover-color: var(--accent-color);
}

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

.light-background {
  --background-color: #0d1d26;
  --surface-color: #16262f;
}

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

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--text-primary);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: -0.01em;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.3s ease, color 0.3s ease;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, var(--accent-light) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 176, 32, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
}

a:hover {
  color: var(--accent-hover);
  text-decoration: none;
}

a:active {
  color: var(--accent-active);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 1rem 0;
  transition: color 0.3s ease;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

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

h4 {
  font-size: 1.5rem;
  font-weight: 600;
}

h5 {
  font-size: 1.25rem;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  margin: 0 0 1.5rem 0;
  line-height: 1.8;
  letter-spacing: -0.01em;
  color: var(--text-secondary);
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 997;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  animation: slideDown 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: none;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(3, 17, 25, 0.8) 0%, rgba(27, 38, 44, 0.9) 100%);
  backdrop-filter: blur(20px);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.header.scrolled::before {
  opacity: 1;
}

.header.scrolled {
  box-shadow: none;
}

.header .header-container {
  background: rgba(26, 31, 38, 0.8);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: 50px;
  padding: 8px 30px 8px 35px;
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: none;
}

.header .header-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(227, 161, 39, 0.1), transparent);
  transition: left 0.6s ease;
}

.header .header-container:hover::before {
  left: 100%;
}

.header.scrolled .header-container {
  background: rgba(31, 37, 44, 0.95);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid var(--border-hover);
  padding: 6px 28px 6px 32px;
  border-radius: 40px;
  box-shadow: none;
}

.header .logo {
  line-height: 1;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 1;
}

.header .logo:hover {
  transform: translateX(3px);
}

.header .logo img {
  max-height: 40px;
  margin-right: 12px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.header .logo:hover img {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 4px 8px rgba(227, 161, 39, 0.3));
}

.header .logo h1 {
  font-size: 22px;
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--heading-color) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
  position: relative;
}

.header .logo:hover h1 {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), white 20%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-inverse);
  background: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 12px 28px;
  margin: 0 0 0 30px;
  font-family: var(--default-font);
  border: none;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px var(--shadow-accent);
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 50%),
              0 0 0 1px color-mix(in srgb, var(--accent-color), transparent 30%);
  border: none;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.header .btn-getstarted::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.header .btn-getstarted:hover::before {
  width: 300px;
  height: 300px;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), white 8%) 0%, var(--accent-color) 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 40%),
              0 0 0 1px color-mix(in srgb, var(--accent-color), transparent 20%),
              0 0 20px color-mix(in srgb, var(--accent-color), transparent 30%);
}

.header .btn-getstarted:active {
  transform: translateY(-1px) scale(1.02);
}

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

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 8px 15px 8px 20px;
    border-radius: 40px;
  }

  .header.scrolled .header-container {
    border-radius: 35px;
    padding: 6px 12px 6px 18px;
  }

  .header .logo {
    order: 1;
  }

  .header .logo img {
    max-height: 35px;
    margin-right: 10px;
  }

  .header .logo h1 {
    font-size: 18px;
    letter-spacing: 1.5px;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 8px 18px;
    font-size: 13px;
  }

  .header .navmenu {
    order: 3;
  }
}

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 18px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    text-decoration: none;
    border-radius: 25px;
  }

  .navmenu a::before {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .navmenu a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
  }

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

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

  .navmenu a:hover {
    color: var(--nav-hover-color);
    transform: translateY(-2px);
  }

  .navmenu a:hover::before {
    transform: translateX(-50%) scaleX(1);
  }

  .navmenu a:hover::after {
    opacity: 1;
  }

  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
    /* background: color-mix(in srgb, var(--accent-color), transparent 90%); */
    box-shadow: none;
  }

  .navmenu .active::before {
    transform: translateX(-50%) scaleX(1);
  }

  /* .navmenu .active::after {
    /* opacity: 1; */
  } */

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

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

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

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

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

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
/* } */

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 8px;
    border-radius: 8px;
    background: color-mix(in srgb, var(--surface-color), transparent 50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-nav-toggle:hover {
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    transform: rotate(90deg) scale(1.1);
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 20px 0;
    margin: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--nav-mobile-background-color) 0%, color-mix(in srgb, var(--nav-mobile-background-color), black 5%) 100%);
    overflow-y: auto;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 9998;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.3),
                0 0 0 1px color-mix(in srgb, var(--accent-color), transparent 30%);
    backdrop-filter: blur(20px);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 15px 25px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 12px;
    margin: 5px 15px;
    position: relative;
    overflow: hidden;
  }

  .navmenu a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-color) 0%, transparent 100%);
    transform: scaleY(0);
    transition: transform 0.4s ease;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    transform: translateX(5px);
    padding-left: 30px;
    box-shadow: none;
  }

  .navmenu a:hover::before,
  .navmenu .active::before {
    transform: scaleY(1);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

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

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

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

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

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

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: linear-gradient(135deg, rgba(3, 17, 25, 0.95) 0%, rgba(27, 38, 44, 0.98) 100%);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--text-primary);
  background: var(--background-secondary);
  font-size: 15px;
  position: relative;
  border-top: 1px solid var(--border-color);
  margin-top: 80px;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  opacity: 0.4;
}

.footer .footer-top {
  padding: 80px 0 60px 0;
  position: relative;
}

.footer .footer-top .container {
  max-width: 1200px;
}

.footer .footer-top .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.footer .footer-top .row > [class*="col-"] {
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
}

/* Mobile: Stack all columns */
@media (max-width: 575px) {
  .footer .footer-top .row > [class*="col-"] {
    margin-bottom: 35px;
  }
  
  .footer .footer-top .row > [class*="col-"]:last-child {
    margin-bottom: 0;
  }
}

/* Tablet: 2 columns layout */
@media (min-width: 576px) and (max-width: 991px) {
  .footer .footer-top .row > .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  .footer .footer-top .row > .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  
  .footer .footer-top .row > .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 20px;
  }
  
  .footer .footer-top .row > [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
  }
}

/* Desktop: Full 4 column layout */
@media (min-width: 992px) {
  .footer .footer-top .row > .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  
  .footer .footer-top .row > .col-lg-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  
  .footer .footer-top .row > .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  
  .footer .footer-top .row > [class*="col-"] {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 0;
  }
  
  .footer .footer-top .row > [class*="col-"]:first-child {
    padding-left: 15px;
  }
  
  .footer .footer-top .row > [class*="col-"]:last-child {
    padding-right: 15px;
  }
}

.footer .footer-about,
.footer .footer-links,
.footer .footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
}

.footer .footer-logo {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 28px;
  line-height: 1;
}

.footer .footer-logo .sitename {
  color: var(--heading-color);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-family: var(--heading-font);
  transition: color 0.3s ease;
}

.footer .footer-logo:hover .sitename {
  color: var(--accent-color);
}

.footer .footer-about p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-tertiary);
  margin: 0 0 32px 0;
  max-width: 100%;
  font-weight: 400;
  letter-spacing: -0.01em;
  padding: 0;
}

.footer .social-links {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  font-size: 17px;
  color: var(--text-tertiary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--surface-elevated);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.footer .social-links a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent-color);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 30%);
}

.footer .social-links a:hover::before {
  opacity: 1;
}

.footer .social-links a i {
  position: relative;
  z-index: 1;
}

.footer h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 28px 0;
  padding: 0 0 14px 0;
  font-family: var(--heading-font);
  letter-spacing: -0.01em;
  position: relative;
  line-height: 1.2;
  width: 100%;
}

.footer h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
  border-radius: 2px;
}

.footer .footer-links {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

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

.footer .footer-links ul li:last-child {
  margin-bottom: 0;
}

.footer .footer-links ul a {
  color: var(--text-tertiary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  line-height: 1.6;
  position: relative;
  width: 100%;
}

.footer .footer-links ul a::before {
  content: "";
  position: absolute;
  left: -12px;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
  border-radius: 2px;
}

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

.footer .footer-links ul a:hover::before {
  width: 6px;
}

.footer .footer-contact {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.footer .contact-info {
  margin-top: 0;
  display: flex;
  flex-direction: column;
}

.footer .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0;
  margin: 0 0 12px 0;
  transition: all 0.3s ease;
}

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

.footer .contact-item i {
  color: var(--accent-color);
  font-size: 18px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.footer .contact-item a {
  color: var(--text-tertiary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  transition: all 0.3s ease;
  line-height: 1.6;
}

.footer .contact-item a:hover {
  color: var(--accent-color);
  transform: translateX(4px);
}

.footer .footer-bottom {
  padding: 35px 0;
  border-top: 1px solid var(--border-color);
  background: var(--background-elevated);
  position: relative;
}

.footer .footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  opacity: 0.3;
}

.footer .footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-disabled);
  font-weight: 400;
  line-height: 1.6;
}

.footer .footer-bottom strong {
  color: var(--heading-color);
  font-weight: 600;
}

.footer .footer-credits {
  color: var(--text-disabled);
}

.footer .footer-bottom .bi-heart-fill {
  color: var(--accent-color);
  font-size: 0.85rem;
  margin: 0 4px;
  animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@media (max-width: 991px) {
  .footer .footer-top {
    padding: 60px 0 40px 0;
  }
}

@media (max-width: 991px) {
  .footer .footer-top .row > [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 768px) {
  .footer {
    margin-top: 60px;
  }

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

  .footer .footer-top .row > [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 45px;
  }

  .footer .footer-top .row > [class*="col-"]:last-child {
    margin-bottom: 0;
  }

  .footer .footer-logo {
    margin-bottom: 24px;
  }

  .footer .footer-logo .sitename {
    font-size: 1.5rem;
  }

  .footer .footer-about p {
    max-width: 100%;
    font-size: 0.9rem;
    margin-bottom: 28px;
  }

  .footer h4 {
    font-size: 1rem;
    margin: 0 0 24px 0;
    padding: 0 0 12px 0;
  }

  .footer h4::after {
    width: 30px;
  }

  .footer .footer-links ul li {
    margin-bottom: 10px;
  }

  .footer .contact-item {
    margin-bottom: 10px;
  }

  .footer .social-links {
    margin-top: 24px;
    gap: 8px;
  }

  .footer .social-links a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .footer .footer-bottom {
    padding: 30px 0;
    text-align: center;
  }

  .footer .footer-bottom .row {
    align-items: center;
  }

  .footer .footer-bottom .row > div {
    margin-bottom: 15px;
    text-align: center !important;
  }

  .footer .footer-bottom .row > div:last-child {
    margin-bottom: 0;
  }
}

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

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

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: -15px;
  z-index: 99999;
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), black 10%) 100%);
  width: 50px;
  height: 50px;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 50%);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 30%);
}

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

.scroll-top:hover {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), white 5%) 0%, var(--accent-color) 100%);
  color: var(--contrast-color);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 40%);
}

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

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

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

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

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

.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: 80px 0;
  scroll-margin-top: 90px;
  overflow: clip;
  position: relative;
  z-index: 1;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 13px;
  font-weight: 600;
  padding: 0;
  line-height: 1;
  margin: 0 0 12px 0;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  position: relative;
  font-family: var(--default-font);
}

.section-title h2::after {
  content: "";
  width: 140px;
  height: 2px;
  display: inline-block;
  background: linear-gradient(90deg, var(--accent-color) 0%, transparent 100%);
  margin: 4px 12px;
  border-radius: 2px;
  box-shadow: 0 0 10px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.section-title div {
  color: var(--heading-color);
  margin: 0;
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--heading-font);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.section-title div .description-title {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), white 20%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 150px 0;
  background: radial-gradient(ellipse at top, rgba(227, 161, 39, 0.08) 0%, transparent 50%),
              radial-gradient(ellipse at bottom right, rgba(227, 161, 39, 0.05) 0%, transparent 50%);
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(227, 161, 39, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: pulse 8s ease-in-out infinite;
  z-index: 0;
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

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

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

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

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

.hero .agency-name h5 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent-color);
  margin: 0;
  display: inline-block;
  padding: 8px 20px;
  background: var(--accent-light);
  border-radius: 50px;
  border: 1px solid var(--border-active);
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--shadow-accent);
}

.hero .agency-name h5:hover {
  background: var(--accent-color);
  color: var(--contrast-inverse);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-accent);
}

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

.hero .main-heading h1 {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 0;
  background: linear-gradient(135deg, var(--heading-color) 0%, var(--accent-color) 50%, var(--heading-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradient-shift 8s ease infinite;
  font-family: var(--heading-font);
}

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

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

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

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

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

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

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

.hero .description p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.hero .cta-button .btn {
  display: inline-flex;
  align-items: center;
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: var(--contrast-inverse);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--default-font);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px var(--shadow-accent);
  position: relative;
  overflow: hidden;
}

.hero .cta-button .btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.hero .cta-button .btn:hover::before {
  width: 300px;
  height: 300px;
}

.hero .cta-button .btn span {
  margin-right: 0.75rem;
  position: relative;
  z-index: 1;
}

.hero .cta-button .btn i {
  font-size: 1.3rem;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 1;
}

.hero .cta-button .btn:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px var(--shadow-accent);
}

.hero .cta-button .btn:active {
  background: var(--accent-active);
  border-color: var(--accent-active);
  transform: translateY(-1px);
}

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

.hero .cta-button .btn:active {
  transform: translateY(-1px);
}

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

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

.hero-image-wrapper {
  position: relative;
  width: 100%;
  padding: 20px;
}

.hero-image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, var(--accent-medium) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: pulse 6s ease-in-out infinite;
  z-index: 0;
}

.hero-image {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 60px var(--shadow-lg));
  animation: float 8s ease-in-out infinite;
  max-width: 100%;
  height: auto;
}

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

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

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

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

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

.hero .stats-card {
  position: absolute;
  bottom: 10%;
  right: 0;
  background-color: rgba(31, 37, 44, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  width: 200px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 30px var(--shadow-md);
}

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

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

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

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

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

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

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

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

.about .about-image {
  border-radius: 8px;
  overflow: hidden;
}

.about .about-image .experience-badge {
  position: absolute;
  bottom: 30px;
  right: -30px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-width: 140px;
}

.about .about-image .experience-badge .years {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  display: block;
  margin-bottom: 5px;
}

.about .about-image .experience-badge .text {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .about .about-image .experience-badge {
    right: 0;
    bottom: 20px;
    padding: 1rem;
    min-width: 120px;
  }

  .about .about-image .experience-badge .years {
    font-size: 2rem;
  }
}

.about .about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

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

.about .about-content .lead {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
}

.about .about-content p {
  margin-bottom: 1rem;
}

.about .about-content .feature-item {
  padding: 1.25rem;
  background-color: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.about .about-content .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about .about-content .feature-item i {
  font-size: 1.75rem;
  color: var(--accent-color);
  margin-bottom: 0.75rem;
  display: block;
}

.about .about-content .feature-item h5 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.about .about-content .feature-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.about .about-content .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  color: var(--contrast-color);
}

.about .about-content .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.about .testimonial-section {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.about .testimonial-section .testimonial-intro h3 {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.about .testimonial-section .testimonial-intro p {
  margin-bottom: 1.5rem;
}

.about .testimonial-section .testimonial-intro .swiper-nav-buttons {
  display: flex;
  gap: 10px;
}

.about .testimonial-section .testimonial-intro .swiper-nav-buttons button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about .testimonial-section .testimonial-intro .swiper-nav-buttons button:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .testimonial-section .testimonial-intro .swiper-nav-buttons button i {
  font-size: 1.25rem;
}

.about .testimonial-section .testimonial-slider {
  overflow: hidden;
}

.about .testimonial-section .testimonial-slider .swiper-wrapper {
  height: auto !important;
}

.about .testimonial-section .testimonial-item {
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.about .testimonial-section .testimonial-item .rating {
  color: #ffc107;
  font-size: 1rem;
}

.about .testimonial-section .testimonial-item p {
  font-style: italic;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.about .testimonial-section .testimonial-item .client-info .client-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.about .testimonial-section .testimonial-item .client-info h6 {
  font-weight: 600;
}

.about .testimonial-section .testimonial-item .client-info span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding: 100px 0;
}

.services .service-header {
  margin-bottom: 80px;
  text-align: center;
}

.services .service-header .service-intro .service-heading {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading-color);
  position: relative;
  display: inline-block;
}

.services .service-header .service-intro .service-heading::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background: var(--accent-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.services .service-header .service-intro .service-heading span {
  color: var(--accent-color);
}

.services .service-header .service-summary {
  max-width: 700px;
  margin: 0 auto;
}

.services .service-header .service-summary p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 30px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.services .service-header .service-summary .service-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .service-header .service-summary .service-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.services .service-header .service-summary .service-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.services .service-header .service-summary .service-btn:hover i {
  transform: translateX(5px);
}

.services .service-card {
  height: 100%;
  padding: 45px 40px;
  border-radius: 20px;
  background: var(--surface-elevated);
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow-md);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
}

.services .service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(227, 161, 39, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.services .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.services .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--shadow-lg),
              0 0 0 1px var(--border-active);
  border-color: var(--border-active);
  background: var(--surface-hover);
}

.services .service-card:hover::after {
  opacity: 1;
}

.services .service-card:hover::before {
  transform: scaleX(1);
}

.services .service-card .service-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-light);
  border: 1px solid var(--border-active);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 4px 15px var(--shadow-accent);
}

.services .service-card .service-icon::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.services .service-card .service-icon i {
  font-size: 36px;
  color: var(--accent-color);
  transition: all 0.4s ease;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.services .service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), black 10%) 100%);
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.services .service-card:hover .service-icon::before {
  opacity: 1;
}

.services .service-card:hover .service-icon i {
  color: var(--contrast-color);
  transform: scale(1.15) rotate(-5deg);
}

.services .service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--heading-color);
  transition: all 0.4s ease;
  letter-spacing: -0.02em;
  line-height: 1.3;
  font-family: var(--heading-font);
}

.services .service-card h3 a {
  color: inherit;
  text-decoration: none;
}

.services .service-card p {
  color: var(--text-tertiary);
  line-height: 1.8;
  margin-bottom: 25px;
  flex-grow: 1;
  transition: color 0.3s ease;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.services .service-card:hover p {
  color: var(--text-secondary);
}

.services .service-card:hover h3 {
  color: var(--accent-color);
  transform: translateX(3px);
}

.services .service-card:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.services .service-card .card-action {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  margin-top: auto;
}

.services .service-card .card-action i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.services .service-card:hover .card-action {
  color: var(--accent-color);
}

.services .service-card:hover .card-action i {
  transform: translateX(5px);
}

.services .service-card .service-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
}

.services .service-card .service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.services .service-card .service-features li i {
  color: var(--accent-color);
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.services .service-card:hover .service-features li {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  transform: translateX(5px);
}

.services .service-card:hover .service-features li i {
  transform: scale(1.2);
}

@media (max-width: 992px) {
  .services {
    padding: 80px 0;
  }
  
  .services .service-header .service-intro .service-heading {
    font-size: 36px;
  }
}
/* Mobile Vertical Gap Controller */
@media (max-width: 768px) {
  .services .row {
    --mobile-gap: 20px; /* Adjust this value as needed */
    
    /* Solution 1: Using flex gap (modern approach) */
    gap: var(--mobile-gap) 0;
    
    /* Solution 2: Alternative using margins (backward compatible) */
    margin-bottom: calc(-1 * var(--mobile-gap));
  }
  
  .services .row > [class*="col-"] {
    margin-bottom: var(--mobile-gap);
  }
  
  /* Ensures last item doesn't have extra margin */
  .services .row > [class*="col-"]:last-child {
    margin-bottom: 0;
  }
  
  /* Additional adjustment for service cards */
  .services .service-card {
    margin-bottom: 0; /* Reset if previously set */
  }
}
@media (max-width: 768px) {
  .services {
    padding: 60px 0;
  }
  
  .services .service-header {
    margin-bottom: 50px;
  }
  
  .services .service-header .service-intro .service-heading {
    font-size: 30px;
  }
  
  .services .service-card {
   padding-top: 15px;
    padding-bottom: 15px;
  }
  
  .services .service-card .service-icon {
    width: 60px;
    height: 60px;
  }
  
  .services .service-card h3 {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .services .service-header .service-intro .service-heading {
    font-size: 26px;
  }
  
  .services .service-card {
    padding: 25px;
  }
}
/*--------------------------------------------------------------
# Project Section
--------------------------------------------------------------*/
.projects-container {
  padding: 100px 0;
}

.project-card {
  height: 100%;
  background: var(--surface-color);
  border: 1px solid rgba(var(--default-color-rgb), 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  border-color: rgba(var(--accent-color-rgb), 0.2);
}

.project-img-wrapper {
  height: 220px;
  overflow: hidden;
  position: relative;
  border-radius: 16px 16px 0 0;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.project-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(var(--accent-color-rgb), 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.project-img-wrapper:hover .project-img-overlay {
  opacity: 1;
}

.image-preview-btn {
  color: white;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.image-preview-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-2px);
}

.project-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(var(--accent-color-rgb), 0.9);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 3;
}

.project-info {
  padding: 25px;
}

.project-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--heading-color);
  line-height: 1.3;
}

.project-rating {
  background: rgba(var(--accent-color-rgb), 0.1);
  color: var(--accent-color);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.project-description {
  color: rgba(var(--default-color-rgb), 0.7);
  margin-bottom: 18px;
  line-height: 1.6;
  font-size: 0.95rem;
  min-height: 60px;
}

.project-buttons {
  display: flex;
  gap: 10px;
}

.btn-download {
  flex: 1;
  padding: 10px 15px;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.btn-outline-secondary {
  border-radius: 10px;
  padding: 10px 15px;
}

/* Image Preview Modal */
#imagePreviewModal .modal-content {
  background: transparent;
  border: none;
}

#imagePreviewModal .modal-header {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  border: none;
}

#imagePreviewModal .btn-close {
  filter: invert(1);
  opacity: 0.8;
}

#imagePreviewModal .btn-close:hover {
  opacity: 1;
}

#previewedImage {
  max-width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 5px solid white;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .project-card {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .projects-container {
    padding: 60px 0;
  }
  
  .project-img-wrapper {
    height: 180px;
  }
  
  .project-buttons {
    flex-direction: column;
  }
  
  .project-info h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .project-img-overlay {
    padding: 15px;
  }
  
  .image-preview-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
}
/*--------------------------------------------------------------
# Steps Section
--------------------------------------------------------------*/
.steps .steps-wrapper {
  position: relative;
  padding: 20px 0;
}

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

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

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

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

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

.steps .step-icon {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  background: var(--surface-elevated);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 25px var(--shadow-md),
              0 0 0 3px var(--accent-light);
  border: 2px solid var(--border-active);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.steps .step-item:hover .step-icon {
  transform: scale(1.1) rotate(3deg);
  box-shadow: 0 12px 35px var(--shadow-accent),
              0 0 0 3px var(--accent-color);
  background: var(--accent-light);
  border-color: var(--accent-color);
}

.steps .step-icon i {
  font-size: 36px;
  color: var(--accent-color);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.steps .step-item:hover .step-icon i {
  transform: scale(1.2) rotate(-5deg);
  color: var(--accent-color);
}

.steps .step-info {
  flex: 1;
  background: var(--surface-elevated);
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 4px 20px var(--shadow-md),
              0 0 0 1px var(--border-color);
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.steps .step-item:hover .step-info {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--shadow-lg),
              0 0 0 1px var(--border-active);
  border-color: var(--border-active);
  background: var(--surface-hover);
}

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

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

.steps p {
  color: var(--text-tertiary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.steps .step-item:hover p {
  color: var(--text-secondary);
}

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Statistics Section
--------------------------------------------------------------*/
.stats {
  padding: 80px 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--surface-color), transparent 50%) 0%, var(--background-color) 100%);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(227, 161, 39, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.stats .stat-item {
  background: var(--surface-elevated);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px var(--shadow-md);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.stats .stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color) 0%, transparent 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.stats .stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--shadow-lg),
              0 0 0 1px var(--border-active);
  border-color: var(--border-active);
  background: var(--surface-hover);
}

.stats .stat-item:hover::before {
  transform: scaleX(1);
}

.stats .stat-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: var(--accent-light);
  border: 1px solid var(--border-active);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px var(--shadow-accent);
}

.stats .stat-item:hover .stat-icon {
  background: var(--accent-color);
  transform: scale(1.05) rotate(3deg);
  box-shadow: 0 8px 25px var(--shadow-accent);
  border-color: var(--accent-color);
}

.stats .stat-icon i {
  font-size: 36px;
  color: var(--accent-color);
  transition: all 0.4s ease;
}

.stats .stat-item:hover .stat-icon i {
  color: var(--contrast-inverse);
  transform: scale(1.05);
}

.stats .stat-content {
  position: relative;
}

.stats .stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1;
  display: inline-block;
  background: linear-gradient(135deg, var(--heading-color) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats .stat-plus {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-left: 5px;
}

.stats .stat-label {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-top: 15px;
  margin-bottom: 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .stats .stat-item {
    padding: 30px 20px;
    margin-bottom: 20px;
  }

  .stats .stat-number {
    font-size: 2.5rem;
  }

  .stats .stat-icon {
    width: 70px;
    height: 70px;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  padding: 100px 0;
}

.features .feature-item {
  background: var(--surface-elevated);
  border-radius: 20px;
  padding: 40px 35px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px var(--shadow-md);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.features .feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-light);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.features .feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--shadow-lg),
              0 0 0 1px var(--border-active);
  border-color: var(--border-active);
  background: var(--surface-hover);
}

.features .feature-item:hover::before {
  opacity: 1;
}

.features .feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 25px;
  background: var(--accent-light);
  border: 1px solid var(--border-active);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px var(--shadow-accent);
}

.features .feature-item:hover .feature-icon {
  background: var(--accent-color);
  transform: scale(1.05) rotate(3deg);
  box-shadow: 0 8px 25px var(--shadow-accent);
  border-color: var(--accent-color);
}

.features .feature-icon i {
  font-size: 32px;
  color: var(--accent-color);
  transition: all 0.4s ease;
}

.features .feature-item:hover .feature-icon i {
  color: var(--contrast-inverse);
  transform: scale(1.05);
}

.features .feature-item h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  transition: color 0.3s ease;
  font-family: var(--heading-font);
  letter-spacing: -0.02em;
}

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

.features .feature-item p {
  color: var(--text-tertiary);
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.features .feature-item:hover p {
  color: var(--text-secondary);
}

/*--------------------------------------------------------------
# Technologies Section
--------------------------------------------------------------*/
.technologies {
  padding: 100px 0;
  background: var(--background-secondary);
}

.tech-domains-wrapper {
  margin-top: 60px;
}

.tech-domains-wrapper .row {
  background: var(--surface-elevated);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 40px var(--shadow-lg);
}

/* Left Sidebar: Technology Domains */
.tech-domains-sidebar {
  background: var(--surface-color);
  border-right: 1px solid var(--border-color);
  padding: 0;
}

.domains-header {
  padding: 30px 25px;
  border-bottom: 1px solid var(--border-color);
  background: var(--background-elevated);
}

.domains-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  font-family: var(--heading-font);
  letter-spacing: -0.01em;
}

.domains-list {
  padding: 20px 0;
  max-height: 600px;
  overflow-y: auto;
}

.domains-list::-webkit-scrollbar {
  width: 6px;
}

.domains-list::-webkit-scrollbar-track {
  background: var(--surface-color);
}

.domains-list::-webkit-scrollbar-thumb {
  background: var(--border-hover);
  border-radius: 3px;
}

.domains-list::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

.domain-item {
  display: flex;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 3px solid transparent;
  position: relative;
}

.domain-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.domain-item:hover {
  background: var(--surface-hover);
  border-left-color: var(--accent-color);
}

.domain-item.active {
  background: var(--accent-light);
  border-left-color: var(--accent-color);
}

.domain-item.active::before {
  width: 3px;
}

.domain-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  border-radius: 10px;
  background: var(--surface-elevated);
  transition: all 0.3s ease;
}

.domain-item.active .domain-icon {
  background: var(--accent-color);
}

.domain-icon i {
  font-size: 20px;
  color: var(--text-tertiary);
  transition: all 0.3s ease;
}

.domain-item.active .domain-icon i,
.domain-item:hover .domain-icon i {
  color: var(--accent-color);
}

.domain-item.active .domain-icon i {
  color: var(--contrast-inverse);
}

.domain-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.domain-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.domain-item.active .domain-name {
  color: var(--heading-color);
  font-weight: 700;
}

.domain-arrow {
  font-size: 18px;
  color: var(--text-disabled);
  transition: all 0.3s ease;
}

.domain-item.active .domain-arrow {
  color: var(--accent-color);
  transform: translateX(5px);
}

/* Right Panel: Technologies Grid */
.tech-grid-panel {
  background: var(--surface-elevated);
  padding: 40px;
  min-height: 600px;
  max-height: 600px;
  overflow-y: auto;
}

.tech-grid-panel::-webkit-scrollbar {
  width: 8px;
}

.tech-grid-panel::-webkit-scrollbar-track {
  background: var(--surface-color);
}

.tech-grid-panel::-webkit-scrollbar-thumb {
  background: var(--border-hover);
  border-radius: 4px;
}

.tech-grid-panel::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

.tech-panel-content {
  position: relative;
}

.tech-domain-content {
  display: none;
  animation: fadeInUp 0.5s ease;
}

.tech-domain-content.active {
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.domain-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 2px solid var(--border-color);
}

.domain-header-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: 14px;
  flex-shrink: 0;
  border: 1px solid var(--border-active);
}

.domain-header-icon i {
  font-size: 28px;
  color: var(--accent-color);
}

.domain-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 8px 0;
  font-family: var(--heading-font);
  letter-spacing: -0.02em;
}

.domain-header p {
  font-size: 1rem;
  color: var(--text-tertiary);
  margin: 0;
  line-height: 1.6;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.tech-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.tech-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--accent-light);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tech-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-active);
  box-shadow: 0 8px 25px var(--shadow-lg);
}

.tech-card:hover::before {
  opacity: 1;
}

.tech-card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: 14px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  border: 1px solid var(--border-active);
}

.tech-card:hover .tech-card-icon {
  background: var(--accent-color);
  transform: scale(1.1) rotate(5deg);
  border-color: var(--accent-color);
}

.tech-card-icon i {
  font-size: 28px;
  color: var(--accent-color);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.tech-card:hover .tech-card-icon i {
  color: var(--contrast-inverse);
  transform: scale(1.1);
}

.tech-card-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--heading-color);
  display: block;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.tech-card:hover .tech-card-name {
  color: var(--heading-color);
}

@media (max-width: 991px) {
  .tech-domains-wrapper .row {
    flex-direction: column;
  }

  .tech-domains-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }

  .domains-list {
    display: flex;
    overflow-x: auto;
    padding: 15px;
    max-height: none;
  }

  .domains-list::-webkit-scrollbar {
    height: 4px;
  }

  .domain-item {
    min-width: 200px;
    flex-shrink: 0;
    border-left: none;
    border-bottom: 3px solid transparent;
    padding: 15px 20px;
  }

  .domain-item::before {
    display: none;
  }

  .domain-item.active {
    border-bottom-color: var(--accent-color);
  }

  .tech-grid-panel {
    padding: 30px 25px;
    min-height: auto;
    max-height: none;
  }

  .tech-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
  }
}

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

  .tech-domains-wrapper {
    margin-top: 40px;
  }

  .domains-header {
    padding: 20px;
  }

  .domains-header h3 {
    font-size: 1.1rem;
  }

  .domain-item {
    min-width: 180px;
    padding: 12px 15px;
  }

  .domain-icon {
    width: 35px;
    height: 35px;
    margin-right: 12px;
  }

  .domain-icon i {
    font-size: 18px;
  }

  .domain-name {
    font-size: 0.9rem;
  }

  .tech-grid-panel {
    padding: 25px 20px;
  }

  .domain-header {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
  }

  .domain-header-icon {
    width: 50px;
    height: 50px;
  }

  .domain-header-icon i {
    font-size: 24px;
  }

  .domain-header h3 {
    font-size: 1.5rem;
  }

  .domain-header p {
    font-size: 0.9rem;
  }

  .tech-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
  }

  .tech-card {
    padding: 20px 15px;
  }

  .tech-card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }

  .tech-card-icon i {
    font-size: 24px;
  }

  .tech-card-name {
    font-size: 0.85rem;
  }
}

/*--------------------------------------------------------------
# Technology Modal
--------------------------------------------------------------*/
.tech-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.tech-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.tech-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  transition: opacity 0.3s ease;
}

.tech-modal.active .tech-modal-overlay {
  opacity: 1;
}

.tech-modal-container {
  position: relative;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), white 5%) 100%);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.8) translateY(50px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 30%);
}

.tech-modal.active .tech-modal-container {
  transform: scale(1) translateY(0);
}

.tech-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--surface-color), white 10%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  font-size: 18px;
}

.tech-modal-close:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: rotate(90deg);
  border-color: var(--accent-color);
}

.tech-modal-content {
  padding: 50px 40px;
  overflow-y: auto;
  max-height: 90vh;
}

.tech-modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.tech-modal-icon-wrapper {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.tech-modal-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 40%);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  transition: all 0.3s ease;
}

.tech-modal-icon i {
  font-size: 48px;
  color: var(--accent-color);
}

.tech-modal-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  background: linear-gradient(135deg, var(--heading-color) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tech-modal-body {
  color: var(--default-color);
}

.tech-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 30px;
  text-align: center;
}

.tech-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.tech-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--surface-color), white 3%) 0%, var(--surface-color) 100%);
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.tech-detail-item:hover {
  transform: translateX(5px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 40%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tech-detail-item i {
  font-size: 20px;
  color: var(--accent-color);
  margin-top: 2px;
  flex-shrink: 0;
}

.tech-detail-item span {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

@media (max-width: 768px) {
  .tech-modal-container {
    width: 95%;
    max-height: 85vh;
    border-radius: 20px;
  }

  .tech-modal-content {
    padding: 40px 25px;
  }

  .tech-modal-icon {
    width: 80px;
    height: 80px;
  }

  .tech-modal-icon i {
    font-size: 40px;
  }

  .tech-modal-header h2 {
    font-size: 1.5rem;
  }

  .tech-description {
    font-size: 1rem;
  }

  .tech-detail-item {
    padding: 15px;
  }

  .tech-modal-close {
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

.features .feature-item:hover p {
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .features .feature-item {
    padding: 30px 25px;
    margin-bottom: 20px;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  .section-title div {
    font-size: 2rem;
  }

  body {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 100px 0;
  background: var(--background-secondary);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-medium) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  z-index: 0;
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

.testimonial-item {
  background: var(--surface-elevated);
  border-radius: 24px;
  padding: 40px 35px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 30px var(--shadow-md);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.testimonial-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-light) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.testimonial-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px var(--shadow-lg),
              0 0 0 1px var(--border-active);
  border-color: var(--border-active);
}

.testimonial-item:hover::before {
  opacity: 1;
}

.testimonial-quote {
  position: absolute;
  top: 20px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: all 0.4s ease;
}

.testimonial-quote i {
  font-size: 28px;
  color: var(--accent-color);
  opacity: 0.6;
  transition: all 0.4s ease;
}

.testimonial-item:hover .testimonial-quote {
  background: var(--accent-color);
  transform: scale(1.1) rotate(5deg);
}

.testimonial-item:hover .testimonial-quote i {
  color: var(--contrast-inverse);
  opacity: 1;
}

.testimonial-item .stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-item .stars i {
  font-size: 1.1rem;
  color: #ffc107;
  transition: all 0.3s ease;
}

.testimonial-item:hover .stars i {
  transform: scale(1.1);
  color: #ffd700;
}

.testimonial-item p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 25px;
  flex-grow: 1;
  position: relative;
  z-index: 1;
  font-style: italic;
  transition: color 0.3s ease;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.testimonial-item:hover p {
  color: var(--text-primary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 1;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
  border: 2px solid var(--border-color);
}

.author-avatar i {
  font-size: 28px;
  color: var(--accent-color);
  transition: all 0.4s ease;
}

.testimonial-item:hover .author-avatar {
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: scale(1.1);
}

.testimonial-item:hover .author-avatar i {
  color: var(--contrast-inverse);
}

.author-info {
  flex: 1;
}

.author-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 5px 0;
  transition: color 0.3s ease;
  font-family: var(--heading-font);
  letter-spacing: -0.01em;
}

.testimonial-item:hover .author-info h4 {
  color: var(--accent-color);
}

.author-info span {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  transition: color 0.3s ease;
  display: block;
}

.testimonial-item:hover .author-info span {
  color: var(--text-secondary);
}

.testimonials .testimonial-card {
  background: var(--surface-elevated);
  border-radius: 20px;
  padding: 40px 35px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px var(--shadow-md);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.testimonials .testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 120px;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  font-family: Georgia, serif;
  opacity: 0.3;
}

.testimonials .testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--shadow-lg),
              0 0 0 1px var(--border-active);
  border-color: var(--border-active);
  background: var(--surface-hover);
}

.testimonials .testimonial-rating {
  margin-bottom: 20px;
  display: flex;
  gap: 5px;
}

.testimonials .testimonial-rating i {
  color: #FFD700;
  font-size: 18px;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.testimonials .testimonial-text {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.testimonials .testimonial-card:hover .testimonial-text {
  color: var(--text-primary);
}

.testimonials .testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  transition: border-color 0.3s ease;
}

.testimonials .testimonial-card:hover .testimonial-author {
  border-top-color: var(--border-hover);
}

.testimonials .author-info h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.testimonials .author-info span {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  font-weight: 500;
  transition: color 0.3s ease;
}

.testimonials .testimonial-card:hover .author-info span {
  color: var(--text-secondary);
}

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

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.cta {
  padding: 80px 0;
  background: var(--accent-light);
  border: 1px solid var(--border-active);
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  margin: 60px 0;
  backdrop-filter: blur(10px);
}

.cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-medium) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: pulse 8s ease-in-out infinite;
  opacity: 0.5;
}

.cta .container {
  position: relative;
  z-index: 1;
}

.cta h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
  line-height: 1.2;
}

.cta p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

.cta .cta-btn {
  display: inline-flex;
  align-items: center;
  background: var(--accent-color);
  color: var(--contrast-inverse);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px var(--shadow-accent);
  border: 2px solid var(--accent-color);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.cta .cta-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta .cta-btn:hover::before {
  width: 300px;
  height: 300px;
}

.cta .cta-btn span {
  margin-right: 0.75rem;
  position: relative;
  z-index: 1;
}

.cta .cta-btn i {
  font-size: 1.3rem;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 1;
}

.cta .cta-btn:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px var(--shadow-accent);
}

.cta .cta-btn:active {
  background: var(--accent-active);
  border-color: var(--accent-active);
  transform: translateY(-1px);
}

.cta .cta-btn:hover i {
  transform: translateX(8px);
}

@media (max-width: 768px) {
  .cta {
    padding: 60px 30px;
    margin: 40px 0;
    border-radius: 20px;
  }

  .cta h3 {
    font-size: 2rem;
    text-align: center;
  }

  .cta p {
    text-align: center;
    font-size: 1rem;
  }

  .cta .cta-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
  }
}

.call-to-action {
  padding-top: 80px;
  position: relative;
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-radius: 1rem;
  overflow: hidden;
  padding-bottom: 80px;
}

.call-to-action .badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 2rem;
}

.call-to-action h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.call-to-action p {
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.9;
}

.call-to-action .features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.call-to-action .features .feature-item:hover {
  transform: translateY(-2px);
}

.call-to-action .features .feature-item i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.call-to-action .features .feature-item span {
  font-weight: 500;
}

.call-to-action .cta-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

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

.call-to-action .cta-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

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

.call-to-action .cta-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.call-to-action .content-right {
  flex-shrink: 0;
  max-width: 100%;
  width: 450px;
}

.call-to-action .content-right img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.call-to-action .content-right .floating-card {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background: var(--surface-color);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 3s ease-in-out infinite;
}

.call-to-action .content-right .floating-card .card-icon {
  width: 3rem;
  height: 3rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-to-action .content-right .floating-card .card-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.call-to-action .content-right .floating-card .card-content {
  display: flex;
  flex-direction: column;
}

.call-to-action .content-right .floating-card .card-content .stats-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
}

.call-to-action .content-right .floating-card .card-content .stats-text {
  font-size: 0.875rem;
  opacity: 0.8;
}

.call-to-action .decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.call-to-action .decoration .circle-1,
.call-to-action .decoration .circle-2 {
  position: absolute;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.call-to-action .decoration .circle-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  opacity: 0.5;
}

.call-to-action .decoration .circle-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  opacity: 0.3;
}

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

  .call-to-action .content-right {
    width: 100%;
    margin-top: 2rem;
  }

  .call-to-action .content-right .floating-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -3rem;
    margin-right: 1rem;
    z-index: 1;
  }
}

@keyframes float {

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

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

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-slider {
  width: 100%;
  position: relative;
  padding-bottom: 60px;
}

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

.testimonials .testimonial-item {
  background-color: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
}

@media (max-width: 575px) {
  .testimonials .testimonial-item {
    padding: 20px;
  }
}

.testimonials .testimonial-item h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.testimonials .testimonial-item p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonials .testimonial-item .profile {
  gap: 15px;
}

.testimonials .testimonial-item .profile .profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials .testimonial-item .profile .profile-info h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}

.testimonials .testimonial-item .profile .profile-info span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
}

.testimonials .testimonial-item .featured-img-wrapper {
  min-height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.testimonials .testimonial-item .featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.testimonials .swiper-navigation {
  position: absolute;
  bottom: 0;
  gap: 10px;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  margin: 0;
  width: 44px;
  height: 44px;
  background-color: var(--surface-color);
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  transition: 0.3s;
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 20px;
  color: var(--default-color);
}

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

.testimonials .swiper-button-prev:hover::after,
.testimonials .swiper-button-next:hover::after {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
  margin: 0 0 40px;
  list-style: none;
}

.portfolio .portfolio-filters li {
  font-size: 15px;
  font-weight: 500;
  padding: 12px 25px;
  cursor: pointer;
  background: var(--surface-color);
  color: var(--default-color);
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.portfolio .portfolio-filters li i {
  font-size: 1.1em;
  transition: transform 0.3s ease;
}

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

.portfolio .portfolio-filters li:hover i {
  transform: scale(1.1);
}

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

@media (max-width: 768px) {
  .portfolio .portfolio-filters {
    gap: 10px;
  }

  .portfolio .portfolio-filters li {
    padding: 8px 20px;
    font-size: 14px;
  }
}

.portfolio .portfolio-entry {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface-color);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.portfolio .portfolio-entry .entry-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.portfolio .portfolio-entry .entry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio .portfolio-entry .entry-image .entry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio .portfolio-entry .entry-image .entry-overlay .overlay-content {
  width: 100%;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-meta {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-title {
  color: var(--contrast-color);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 20px;
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-links {
  display: flex;
  gap: 15px;
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-links a {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-color);
  color: var(--accent-color);
  border-radius: 12px;
  font-size: 20px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-links a:nth-child(1) {
  transition-delay: 0.1s;
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-links a:nth-child(2) {
  transition-delay: 0.2s;
}

.portfolio .portfolio-entry:hover .entry-image img {
  transform: scale(1.05);
}

.portfolio .portfolio-entry:hover .entry-image .entry-overlay {
  opacity: 1;
  transform: translateY(0);
}

.portfolio .portfolio-entry:hover .entry-image .entry-overlay .overlay-content {
  transform: translateY(0);
}

.portfolio .portfolio-entry:hover .entry-image .entry-overlay .entry-links a {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .portfolio .portfolio-entry .entry-image .entry-overlay {
    padding: 20px;
  }

  .portfolio .portfolio-entry .entry-image .entry-overlay .entry-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .portfolio .portfolio-entry .entry-image .entry-overlay .entry-links a {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

.portfolio .portfolio-item .entry-image {
  aspect-ratio: 4/3;
}

@media (min-width: 1200px) {
  .portfolio .portfolio-item .entry-title {
    font-size: 20px;
  }
}

@media (min-width: 768px) {
  .portfolio .row {
    margin-left: -10px;
    margin-right: -10px;
  }

  .portfolio .row .portfolio-item {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 992px) {
  .portfolio .row {
    margin-left: -12px;
    margin-right: -12px;
  }

  .portfolio .row .portfolio-item {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (min-width: 1200px) {
  .portfolio .row {
    margin-left: -15px;
    margin-right: -15px;
  }

  .portfolio .row .portfolio-item {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (min-width: 1200px) {
  .portfolio .entry-overlay {
    padding: 25px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .portfolio .entry-overlay {
    padding: 20px;
  }
}

@media (max-width: 991px) {
  .portfolio .entry-overlay {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  position: relative;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  transition: 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center content horizontally */
  text-align: center; /* Center text content */
  padding: 20px;
}

.team .team-member:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team .team-member .member-img {
  width: 180px; /* Fixed width for circular image */
  height: 180px; /* Fixed height for circular image */
  overflow: hidden;
  border-radius: 50%; /* Makes the image circular */
  margin: 0 auto 20px; /* Centers the image and adds bottom margin */
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  position: relative;
}

.team .team-member .member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 0; /* Remove border-radius since container is circular */
}

.team .team-member:hover .member-img img {
  transform: scale(1.1);
}

.team .team-member .member-info {
  padding: 0;
  width: 100%;
}

.team .team-member .member-info h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.team .team-member .member-info span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--accent-color);
  display: block;
  margin-bottom: 15px;
}

.team .team-member .member-info p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .team-member .member-info .social {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.team .team-member .member-info .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  color: var(--heading-color);
  transition: 0.3s;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  background: color-mix(in srgb, var(--surface-color), white 20%);
}

.team .team-member .member-info .social a:hover {
  color: white;
  border-color: var(--accent-color);
  background: var(--accent-color);
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .team .team-member .member-img {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 767px) {
  .team .team-member .member-img {
    width: 120px;
    height: 120px;
    border-width: 3px;
  }
  
  .team .team-member .member-info h4 {
    font-size: 1.2rem;
  }
  
  .team .team-member .member-info p {
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  --card-border-radius: 20px;
}

.pricing .row {
  justify-content: center;
}

.pricing .pricing-card {
  height: 100%;
  background: var(--surface-color);
  border-radius: var(--card-border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
  transition: all 0.4s;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.pricing .pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-card.popular {
  border: 2px solid var(--accent-color);
}

.pricing .pricing-card.popular .plan-cta .btn-plan {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .plan-cta .btn-plan:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .pricing-card .popular-tag {
  position: absolute;
  top: 20px;
  right: -35px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 40px;
  transform: rotate(45deg);
}

.pricing .plan-header {
  padding: 30px 30px 20px;
  text-align: center;
}

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

.pricing .plan-header .plan-icon i {
  font-size: 28px;
  color: var(--accent-color);
}

.pricing .plan-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing .plan-header p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.pricing .plan-pricing {
  text-align: center;
  padding: 10px 30px 20px;
  position: relative;
}

.pricing .plan-pricing .currency {
  font-size: 24px;
  vertical-align: top;
  line-height: 1;
  color: var(--heading-color);
  font-weight: 600;
}

.pricing .plan-pricing .amount {
  font-size: 60px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

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

.pricing .plan-features {
  padding: 20px 30px;
  flex: 1;
}

.pricing .plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing .plan-features ul li {
  padding: 12px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

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

.pricing .plan-features ul li i {
  font-size: 18px;
}

.pricing .plan-features ul li i.bi-check-circle-fill {
  color: var(--accent-color);
}

.pricing .plan-features ul li i.bi-x-circle-fill {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing .plan-cta {
  padding: 10px 30px 30px;
  text-align: center;
}

.pricing .plan-cta .btn-plan {
  display: inline-block;
  width: 100%;
  padding: 14px 32px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  color: var(--default-color);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
}

.pricing .plan-cta .btn-plan:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

@media (max-width: 992px) {
  .pricing .pricing-card {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .pricing .plan-pricing .amount {
    font-size: 48px;
  }

  .pricing .plan-header {
    padding: 25px 20px 15px;
  }

  .pricing .plan-features,
  .pricing .plan-pricing,
  .pricing .plan-cta {
    padding-left: 20px;
    padding-right: 20px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info-box {
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 25px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact .contact-info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

.contact .contact-info-box .icon-box i {
  font-size: 24px;
}

.contact .contact-info-box .info-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact .contact-info-box .info-content p {
  margin-bottom: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.5;
}

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

.contact .map-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.contact .map-section iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact .form-container-overlap {
  position: relative;
  margin-top: -150px;
  margin-bottom: 60px;
  z-index: 10;
}

.contact .contact-form-wrapper {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.contact .contact-form-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.contact .contact-form-wrapper h2:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

.contact .contact-form-wrapper .form-group {
  margin-bottom: 20px;
}

.contact .contact-form-wrapper .form-group .input-with-icon {
  position: relative;
}

.contact .contact-form-wrapper .form-group .input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 18px;
  z-index: 10;
}

.contact .contact-form-wrapper .form-group .input-with-icon i.message-icon {
  top: 28px;
}

.contact .contact-form-wrapper .form-group .input-with-icon textarea+i {
  top: 25px;
  transform: none;
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control {
  border-radius: 8px;
  padding: 12px 15px 12px 45px;
  height: 3.5rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .contact-form-wrapper .form-group .input-with-icon textarea.form-control {
  height: 180px;
  resize: none;
  padding-top: 15px;
}

.contact .contact-form-wrapper .btn-submit {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.contact .contact-form-wrapper .btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .loading,
.contact .contact-form-wrapper .error-message,
.contact .contact-form-wrapper .sent-message {
  margin-top: 10px;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .contact .form-container-overlap {
    margin-top: -120px;
  }

  .contact .contact-form-wrapper {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .contact .contact-info-box {
    margin-bottom: 20px;
  }

  .contact .form-container-overlap {
    margin-top: -100px;
  }

  .contact .contact-form-wrapper {
    padding: 25px;
  }

  .contact .contact-form-wrapper h2 {
    font-size: 24px;
  }

  .contact .map-section {
    height: 450px;
  }
}

@media (max-width: 576px) {
  .contact .form-container-overlap {
    margin-top: -80px;
  }

  .contact .contact-form-wrapper {
    padding: 20px;
  }

  .contact .btn-submit {
    width: 100%;
  }

  .contact .map-section {
    height: 400px;
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details {
  --section-spacing: 2.5rem;
}

.portfolio-details .portfolio-details-media {
  position: relative;
}

.portfolio-details .portfolio-details-media .main-image {
  margin-bottom: 1rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider {
  position: relative;
}

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

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-slide img {
  aspect-ratio: 3/2;
  object-fit: cover;
  width: 100%;
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-next,
.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-prev {
  background-color: var(--contrast-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-next:after,
.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-prev:after {
  font-size: 16px;
  color: var(--accent-color);
  font-weight: bold;
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-next:hover,
.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-prev:hover {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-next:hover:after,
.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-prev:hover:after {
  color: var(--contrast-color);
}

.portfolio-details .portfolio-details-media .thumbnail-grid img {
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.portfolio-details .portfolio-details-media .thumbnail-grid img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-details-media .tech-stack-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.5rem;
}

.portfolio-details .portfolio-details-media .tech-stack-badges span {
  display: inline-block;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 20px;
  background-color: color-mix(in srgb, var(--heading-color), transparent 85%);
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.portfolio-details .portfolio-details-media .tech-stack-badges span:hover {
  background-color: color-mix(in srgb, var(--heading-color), transparent 70%);
  transform: translateY(-2px);
}

.portfolio-details .portfolio-details-content {
  padding: 0 0 0 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.portfolio-details .portfolio-details-content .project-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.portfolio-details .portfolio-details-content .project-meta .badge-wrapper .project-badge {
  display: inline-block;
  padding: 8px 16px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
}

.portfolio-details .portfolio-details-content .project-meta .date-client {
  display: flex;
  gap: 1.5rem;
}

.portfolio-details .portfolio-details-content .project-meta .date-client .meta-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.portfolio-details .portfolio-details-content .project-meta .date-client .meta-item i {
  margin-right: 6px;
  color: var(--accent-color);
}

.portfolio-details .portfolio-details-content .project-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading-color);
}

.portfolio-details .portfolio-details-content .project-website {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.portfolio-details .portfolio-details-content .project-website i {
  font-size: 22px;
  color: var(--accent-color);
  margin-right: 8px;
}

.portfolio-details .portfolio-details-content .project-website a {
  font-weight: 500;
  transition: all 0.3s;
}

.portfolio-details .portfolio-details-content .project-website a:hover {
  letter-spacing: 0.5px;
}

.portfolio-details .portfolio-details-content .project-overview {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .portfolio-details-content .project-overview .lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 1.5rem;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item {
  border: none;
  background: none;
  margin-bottom: 10px;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-header .accordion-button {
  padding: 1rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--heading-color);
  background-color: color-mix(in srgb, var(--surface-color), transparent 70%);
  border-radius: 8px !important;
  box-shadow: none;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: var(--surface-color);
  color: var(--accent-color);
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) i {
  color: var(--accent-color);
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-header .accordion-button::after {
  background-size: 14px;
  width: 14px;
  height: 14px;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-header .accordion-button i {
  font-size: 1.1rem;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-body {
  padding: 1rem;
  background-color: var(--surface-color);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-body p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
}

.portfolio-details .portfolio-details-content .project-features {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .portfolio-details-content .project-features h3 {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  margin-bottom: 1.2rem;
}

.portfolio-details .portfolio-details-content .project-features h3 i {
  margin-right: 10px;
  color: var(--accent-color);
  font-size: 1.1em;
}

.portfolio-details .portfolio-details-content .project-features .feature-list {
  list-style: none;
  padding-left: 0;
}

.portfolio-details .portfolio-details-content .project-features .feature-list li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.portfolio-details .portfolio-details-content .project-features .feature-list li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 1.1em;
}

.portfolio-details .portfolio-details-content .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: auto;
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-view-project {
  padding: 12px 28px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-view-project:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-next-project {
  padding: 12px 28px;
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  color: var(--heading-color);
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-next-project i {
  transition: transform 0.3s ease;
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-next-project:hover {
  background-color: color-mix(in srgb, var(--heading-color), transparent 80%);
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-next-project:hover i {
  transform: translateX(3px);
}

@media (max-width: 1199.98px) {
  .portfolio-details .portfolio-details-content {
    padding-left: 1rem;
  }
}

@media (max-width: 991.98px) {
  .portfolio-details .portfolio-details-content {
    padding: 2rem 0 0 0;
  }

  .portfolio-details .portfolio-details-content .cta-buttons {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .portfolio-details .project-meta {
    flex-direction: column;
    gap: 1rem;
  }

  .portfolio-details .project-meta .date-client {
    flex-direction: column;
    gap: 0.5rem;
  }

  .portfolio-details .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .portfolio-details .cta-buttons a {
    width: 100%;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .swiper-wrapper {
  height: auto !important;
}

.service-details .service-header {
  margin-bottom: 40px;
}

.service-details .service-header h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.service-details .service-header h1:after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
}

.service-details .service-header .service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  margin-top: 25px;
}

.service-details .service-header .service-meta span {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-header .service-meta span i {
  color: var(--accent-color);
  margin-right: 8px;
  font-size: 16px;
}

.service-details .service-header .lead {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details .service-tabs {
  margin-bottom: 50px;
}

.service-details .service-tabs .nav-tabs {
  border-bottom: 2px solid color-mix(in srgb, var(--heading-color), transparent 90%);
  margin-bottom: 30px;
}

.service-details .service-tabs .nav-tabs .nav-item {
  margin-right: 5px;
}

.service-details .service-tabs .nav-tabs .nav-link {
  border: none;
  border-radius: 0;
  padding: 12px 20px;
  font-weight: 600;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
  position: relative;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.service-details .service-tabs .nav-tabs .nav-link i {
  margin-right: 8px;
  font-size: 18px;
}

.service-details .service-tabs .nav-tabs .nav-link:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--accent-color);
  transition: all 0.3s ease;
}

.service-details .service-tabs .nav-tabs .nav-link:hover {
  color: var(--heading-color);
  background-color: transparent;
}

.service-details .service-tabs .nav-tabs .nav-link:hover:after {
  width: 30%;
}

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

.service-details .service-tabs .nav-tabs .nav-link.active:after {
  width: 100%;
}

.service-details .service-tabs .tab-content .content-block h3 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
}

.service-details .service-tabs .tab-content .content-block p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 15px;
  line-height: 1.7;
}

.service-details .service-tabs .tab-content img {
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-details .service-tabs .tab-content .process-timeline {
  position: relative;
  padding-left: 30px;
}

.service-details .service-tabs .tab-content .process-timeline:before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 15px;
  width: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item {
  position: relative;
  padding-bottom: 35px;
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item:last-child {
  padding-bottom: 0;
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item .timeline-marker {
  position: absolute;
  left: -30px;
  top: -5px;
  width: 32px;
  height: 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  z-index: 2;
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item .timeline-content {
  padding-left: 10px;
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item .timeline-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item .timeline-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.service-details .service-tabs .tab-content .benefit-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.service-details .service-tabs .tab-content .benefit-card:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}

.service-details .service-tabs .tab-content .benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.service-details .service-tabs .tab-content .benefit-card:hover:before {
  transform: scaleX(1);
  transform-origin: left;
}

.service-details .service-tabs .tab-content .benefit-card:hover .benefit-icon {
  transform: rotateY(180deg);
  background-color: var(--accent-color);
}

.service-details .service-tabs .tab-content .benefit-card:hover .benefit-icon i {
  color: var(--contrast-color);
}

.service-details .service-tabs .tab-content .benefit-card .benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.5s ease;
}

.service-details .service-tabs .tab-content .benefit-card .benefit-icon i {
  font-size: 28px;
  color: var(--accent-color);
  transition: all 0.5s ease;
}

.service-details .service-tabs .tab-content .benefit-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-details .service-tabs .tab-content .benefit-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.service-details .service-gallery h3 {
  font-size: 26px;
  margin-bottom: 25px;
  font-weight: 700;
}

.service-details .service-gallery .service-details-slider {
  margin-bottom: 40px;
  padding-bottom: 40px;
}

.service-details .service-gallery .service-details-slider .portfolio-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.service-details .service-gallery .service-details-slider .portfolio-item:hover .portfolio-info {
  opacity: 1;
  transform: translateY(0);
}

.service-details .service-gallery .service-details-slider .portfolio-item img {
  border-radius: 12px;
  transition: all 0.4s ease;
}

.service-details .service-gallery .service-details-slider .portfolio-item .portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  padding: 30px 20px 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.service-details .service-gallery .service-details-slider .portfolio-item .portfolio-info h5 {
  color: var(--contrast-color);
  font-weight: 700;
  margin-bottom: 5px;
}

.service-details .service-gallery .service-details-slider .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin: 0;
  font-size: 14px;
}

.service-details .service-gallery .service-details-slider .swiper-pagination {
  padding-top: 5px;
  bottom: 0;
}

.service-details .service-gallery .service-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  opacity: 1;
}

.service-details .service-gallery .service-details-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 25px;
  border-radius: 5px;
  background-color: var(--accent-color);
}

.service-details .service-sidebar {
  position: sticky;
  top: 100px;
}

.service-details .service-sidebar .action-card {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), black 20%) 100%);
  border-radius: 15px;
  padding: 35px 30px;
  color: var(--contrast-color);
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.service-details .service-sidebar .action-card:before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.service-details .service-sidebar .action-card:after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  z-index: 1;
}

.service-details .service-sidebar .action-card h3 {
  color: var(--contrast-color);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-details .service-sidebar .action-card p {
  margin-bottom: 25px;
  opacity: 0.9;
}

.service-details .service-sidebar .action-card .btn-primary {
  background-color: var(--contrast-color);
  color: var(--accent-color);
  border: none;
  border-radius: 8px;
  padding: 12px 25px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.service-details .service-sidebar .action-card .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-details .service-sidebar .action-card .guarantee {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.8;
}

.service-details .service-sidebar .action-card .guarantee i {
  margin-right: 5px;
}

.service-details .service-sidebar .service-features-list {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .service-features-list h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid color-mix(in srgb, var(--heading-color), transparent 90%);
}

.service-details .service-sidebar .service-features-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-details .service-sidebar .service-features-list ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.service-details .service-sidebar .service-features-list ul li:last-child {
  margin-bottom: 0;
}

.service-details .service-sidebar .service-features-list ul li i {
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 15px;
}

.service-details .service-sidebar .service-features-list ul li div {
  flex: 1;
}

.service-details .service-sidebar .service-features-list ul li div h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.service-details .service-sidebar .service-features-list ul li div p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
  font-size: 14px;
}

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

.service-details .service-sidebar .testimonial-card .testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.service-details .service-sidebar .testimonial-card .testimonial-header i {
  font-size: 36px;
  color: var(--accent-color);
  opacity: 0.3;
}

.service-details .service-sidebar .testimonial-card .testimonial-header .rating {
  display: flex;
}

.service-details .service-sidebar .testimonial-card .testimonial-header .rating i {
  color: #FFD700;
  font-size: 16px;
  opacity: 1;
  margin-left: 2px;
}

.service-details .service-sidebar .testimonial-card .testimonial-text {
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details .service-sidebar .testimonial-card .client-info {
  display: flex;
  align-items: center;
}

.service-details .service-sidebar .testimonial-card .client-info .client-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.service-details .service-sidebar .testimonial-card .client-info .client-details h5 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 5px;
}

.service-details .service-sidebar .testimonial-card .client-info .client-details span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-sidebar .contact-info {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .contact-info h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
}

.service-details .service-sidebar .contact-info .contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.service-details .service-sidebar .contact-info .contact-method:last-child {
  margin-bottom: 0;
}

.service-details .service-sidebar .contact-info .contact-method i {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-right: 15px;
}

.service-details .service-sidebar .contact-info .contact-method div {
  flex: 1;
}

.service-details .service-sidebar .contact-info .contact-method div span {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 5px;
}

.service-details .service-sidebar .contact-info .contact-method div p {
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

@media (max-width: 991px) {
  .service-details .service-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }

  .service-details .service-header h1 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .service-details .service-tabs .nav-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .service-details .service-tabs .nav-tabs .nav-link {
    white-space: nowrap;
    padding: 10px 15px;
    font-size: 14px;
  }

  .service-details .service-tabs .nav-tabs .nav-link i {
    font-size: 16px;
  }

  .service-details .service-header h1 {
    font-size: 26px;
  }

  .service-details .service-header .service-meta {
    gap: 15px;
  }

  .service-details .service-header .service-meta span {
    font-size: 14px;
  }

  .service-details .service-header .lead {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Privacy Policy Page
--------------------------------------------------------------*/
.privacy-policy-section {
  padding: 140px 0 80px 0;
  min-height: 100vh;
  background: var(--background-color);
  position: relative;
}

.privacy-policy-content {
  background: var(--surface-elevated);
  border-radius: 24px;
  padding: 60px 50px;
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 40px var(--shadow-lg);
  backdrop-filter: blur(10px);
}

.privacy-header {
  padding-bottom: 30px;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 40px;
}

.privacy-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 15px;
  font-family: var(--heading-font);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--heading-color) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.privacy-subtitle {
  font-size: 1rem;
  color: var(--text-tertiary);
  margin: 0;
  font-weight: 500;
}

.privacy-intro {
  background: var(--accent-light);
  border-left: 4px solid var(--accent-color);
  padding: 25px 30px;
  border-radius: 12px;
  margin-bottom: 40px;
}

.privacy-intro p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

.privacy-intro p:last-child {
  margin-bottom: 0;
}

.privacy-intro strong {
  color: var(--heading-color);
  font-weight: 600;
}

.privacy-sections {
  margin-top: 40px;
}

.privacy-section {
  padding: 30px 0;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.privacy-section:last-child {
  border-bottom: none;
}

.privacy-section:hover {
  padding-left: 10px;
}

.privacy-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-family: var(--heading-font);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  line-height: 1.3;
}

.privacy-section h2 i {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-right: 12px;
}

.privacy-section p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  letter-spacing: -0.01em;
}

.privacy-section p:last-child {
  margin-bottom: 0;
}

.privacy-section ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.privacy-section ul li {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  letter-spacing: -0.01em;
}

.privacy-section ul li:last-child {
  margin-bottom: 0;
}

.privacy-section ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1.1rem;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: 4px;
}

.privacy-section ul li strong {
  color: var(--heading-color);
  font-weight: 600;
}

.privacy-section a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.privacy-section a:hover {
  color: var(--accent-hover);
  border-bottom-color: var(--accent-hover);
}

.contact-details {
  background: var(--surface-color);
  padding: 25px 30px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.contact-details p {
  margin-bottom: 12px;
  color: var(--text-secondary);
  font-size: 1rem;
}

.contact-details p:last-child {
  margin-bottom: 0;
}

.contact-details strong {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 1.1rem;
}

.contact-details i {
  color: var(--accent-color);
  margin-right: 8px;
}

.contact-details a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-details a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.privacy-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
}

.btn-back-home {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 12px 24px;
  border-radius: 50px;
  border: 2px solid var(--accent-color);
  background: transparent;
}

.btn-back-home:hover {
  color: var(--contrast-inverse);
  background: var(--accent-color);
  transform: translateX(-5px);
  box-shadow: 0 4px 15px var(--shadow-accent);
}

.btn-back-home i {
  transition: transform 0.3s ease;
}

.btn-back-home:hover i {
  transform: translateX(-3px);
}

@media (max-width: 991px) {
  .privacy-policy-section {
    padding: 120px 0 60px 0;
  }

  .privacy-policy-content {
    padding: 40px 35px;
    border-radius: 20px;
  }

  .privacy-title {
    font-size: 2.5rem;
  }

  .privacy-section h2 {
    font-size: 1.5rem;
  }

  .privacy-section h2 i {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .privacy-policy-section {
    padding: 110px 0 50px 0;
  }

  .privacy-policy-content {
    padding: 30px 25px;
    border-radius: 16px;
  }

  .privacy-title {
    font-size: 2rem;
  }

  .privacy-subtitle {
    font-size: 0.9rem;
  }

  .privacy-intro {
    padding: 20px 25px;
  }

  .privacy-intro p {
    font-size: 1rem;
  }

  .privacy-section {
    padding: 25px 0;
  }

  .privacy-section h2 {
    font-size: 1.3rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .privacy-section h2 i {
    margin-bottom: 8px;
    margin-right: 0;
  }

  .privacy-section p {
    font-size: 0.95rem;
  }

  .privacy-section ul li {
    font-size: 0.95rem;
    padding-left: 25px;
  }

  .contact-details {
    padding: 20px 25px;
  }

  .btn-back-home {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
}

@media (max-width: 576px) {
  .privacy-policy-content {
    padding: 25px 20px;
  }

  .privacy-title {
    font-size: 1.75rem;
  }

  .privacy-header {
    padding-bottom: 20px;
    margin-bottom: 30px;
  }

  .privacy-intro {
    padding: 18px 20px;
  }
}

/*--------------------------------------------------------------
# App Product Pages (App Blocker, Eye Shield, Internet Blocker)
--------------------------------------------------------------*/
.app-hero-section {
  padding: 140px 0 80px 0;
  min-height: 70vh;
  background: var(--background-color);
  position: relative;
  display: flex;
  align-items: center;
}

.app-hero-content {
  position: relative;
  z-index: 1;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: var(--accent-light);
  border: 1px solid var(--border-active);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color);
  letter-spacing: 0.02em;
}

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

.app-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-family: var(--heading-font);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.app-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 30px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.app-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-features-list .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 1rem;
}

.app-features-list .feature-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.app-cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.app-cta-buttons .btn-primary,
.app-cta-buttons .btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.app-cta-buttons .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-inverse);
  border-color: var(--accent-color);
  box-shadow: 0 4px 15px var(--shadow-accent);
}

.app-cta-buttons .btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--shadow-accent);
}

.app-cta-buttons .btn-secondary {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.app-cta-buttons .btn-secondary:hover {
  background: var(--accent-color);
  color: var(--contrast-inverse);
  transform: translateY(-2px);
}

.app-icon-display {
  position: relative;
  z-index: 1;
}

.app-icon-large {
  max-width: 300px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px var(--shadow-lg));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.app-content-section {
  padding: 80px 0;
  background: var(--background-secondary);
}

.app-content-wrapper {
  background: var(--surface-elevated);
  border-radius: 24px;
  padding: 60px 50px;
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 40px var(--shadow-lg);
  backdrop-filter: blur(10px);
}

.content-header {
  padding-bottom: 30px;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 40px;
}

.content-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 15px;
  font-family: var(--heading-font);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--heading-color) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.content-subtitle {
  font-size: 1rem;
  color: var(--text-tertiary);
  margin: 0;
  font-weight: 500;
}

.content-intro {
  background: var(--accent-light);
  border-left: 4px solid var(--accent-color);
  padding: 25px 30px;
  border-radius: 12px;
  margin-bottom: 40px;
}

.content-intro p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
}

.content-intro strong {
  color: var(--heading-color);
  font-weight: 600;
}

.content-sections {
  margin-top: 40px;
}

.content-section {
  padding: 30px 0;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.content-section:last-child {
  border-bottom: none;
}

.content-section:hover {
  padding-left: 10px;
}

.content-section h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-family: var(--heading-font);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  line-height: 1.3;
}

.content-section h3 i {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-right: 12px;
}

.content-section h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--heading-secondary);
  margin: 25px 0 15px 0;
  font-family: var(--heading-font);
}

.content-section p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  letter-spacing: -0.01em;
}

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

.content-section ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.content-section ul li {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  letter-spacing: -0.01em;
}

.content-section ul li:last-child {
  margin-bottom: 0;
}

.content-section ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1.1rem;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: 4px;
}

.content-section ul li strong {
  color: var(--heading-color);
  font-weight: 600;
}

.content-section code {
  background: var(--surface-color);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
  color: var(--accent-color);
  border: 1px solid var(--border-color);
}

.content-section a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.content-section a:hover {
  color: var(--accent-hover);
  border-bottom-color: var(--accent-hover);
}

.highlight-box {
  background: var(--info-light);
  border-left: 4px solid var(--info-color);
  padding: 20px 25px;
  border-radius: 12px;
  margin: 20px 0;
}

.highlight-box p {
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--heading-color);
}

.highlight-box ul {
  margin-top: 10px;
}

.contact-details {
  background: var(--surface-color);
  padding: 25px 30px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.contact-details p {
  margin-bottom: 12px;
  color: var(--text-secondary);
  font-size: 1rem;
}

.contact-details p:last-child {
  margin-bottom: 0;
}

.contact-details strong {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 1.1rem;
}

.contact-details a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-details a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.content-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
}

@media (max-width: 991px) {
  .app-hero-section {
    padding: 120px 0 60px 0;
    min-height: auto;
  }

  .app-title {
    font-size: 2.5rem;
  }

  .app-subtitle {
    font-size: 1.1rem;
  }

  .app-content-wrapper {
    padding: 40px 35px;
    border-radius: 20px;
  }

  .content-title {
    font-size: 2.5rem;
  }

  .content-section h3 {
    font-size: 1.5rem;
  }
}

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

  .app-title {
    font-size: 2rem;
  }

  .app-subtitle {
    font-size: 1rem;
  }

  .app-icon-large {
    max-width: 200px;
    margin-top: 30px;
  }

  .app-cta-buttons {
    flex-direction: column;
  }

  .app-cta-buttons .btn-primary,
  .app-cta-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .app-content-section {
    padding: 60px 0;
  }

  .app-content-wrapper {
    padding: 30px 25px;
    border-radius: 16px;
  }

  .content-title {
    font-size: 2rem;
  }

  .content-subtitle {
    font-size: 0.9rem;
  }

  .content-intro {
    padding: 20px 25px;
  }

  .content-intro p {
    font-size: 1rem;
  }

  .content-section {
    padding: 25px 0;
  }

  .content-section h3 {
    font-size: 1.3rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .content-section h3 i {
    margin-bottom: 8px;
    margin-right: 0;
  }

  .content-section h4 {
    font-size: 1.1rem;
  }

  .content-section p {
    font-size: 0.95rem;
  }

  .content-section ul li {
    font-size: 0.95rem;
    padding-left: 25px;
  }

  .contact-details {
    padding: 20px 25px;
  }
}

@media (max-width: 576px) {
  .app-content-wrapper {
    padding: 25px 20px;
  }

  .content-title {
    font-size: 1.75rem;
  }

  .content-header {
    padding-bottom: 20px;
    margin-bottom: 30px;
  }

  .content-intro {
    padding: 18px 20px;
  }
}
