/**
* Template Name: Company
* Template URL: https://bootstrapmade.com/company-free-html-bootstrap-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Nunito",  sans-serif;
}

/* Global Colors - Updated to match AEG logo purple and gold theme */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2d1847; /* Deep purple for headings, matching AEG logo */
  --accent-color: #5a0063; /* Primary purple from AEG logo */
  --secondary-color: #FFD700; /* Gold accent from AEG logo */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds */
  --gradient-primary: linear-gradient(135deg, #5a0063 0%, #8A4FFF 100%); /* Purple gradient */
  --gradient-secondary: linear-gradient(135deg, #FFD700 0%, #FFA500 100%); /* Gold gradient */
  --shadow-light: 0 4px 20px rgba(90, 0, 99, 0.1); /* Light purple shadow */
  --shadow-medium: 0 8px 30px rgba(90, 0, 99, 0.15); /* Medium purple shadow */
  --shadow-heavy: 0 12px 40px rgba(90, 0, 99, 0.2); /* Heavy purple shadow */
}

/* Nav Menu Colors - Updated to match AEG theme */
:root {
  --nav-color: #444444;  /* The default color of the main navmenu links */
  --nav-hover-color: #5a0063; /* AEG purple for hover states */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items */
  --nav-dropdown-hover-color: #5a0063; /* AEG purple for dropdown hovers */
}

/* Color Presets - Updated with AEG theme */
.light-background {
  --background-color: #f8f6fb;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #2d1847;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #3d2557;
  --contrast-color: #ffffff;
}

/* Override for hero section to ensure text visibility */
.hero.dark-background .container {
  color: var(--heading-color) !important;
}

.hero.dark-background h2 {
  color: var(--heading-color) !important;
}

.hero.dark-background p {
  color: var(--default-color) !important;
}

/* Ensure all carousel items have proper text visibility */
.hero .carousel-item .container {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 246, 251, 0.95)) !important;
  backdrop-filter: blur(10px) !important;
  color: var(--heading-color) !important;
}

.hero .carousel-item h2 {
  color: var(--heading-color) !important;
}

.hero .carousel-item p {
  color: var(--default-color) !important;
}

.hero .carousel-item .btn-get-started {
  color: white !important;
  background: var(--gradient-primary) !important;
  border: 2px solid transparent !important;
}

.accent-background {
  --background-color: #5a0063;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #FFD700;
  --surface-color: #7a47b3;
  --contrast-color: #ffffff;
}

/* Professional Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-40px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(40px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 0 5px rgba(90, 0, 99, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(90, 0, 99, 0.8), 0 0 30px rgba(255, 215, 0, 0.3);
  }
  100% {
    box-shadow: 0 0 5px rgba(90, 0, 99, 0.5);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

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

html {
  scroll-padding-top: 80px; /* Account for fixed header */
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  overflow-x: auto !important;
  overflow-y: auto !important;
  overscroll-behavior: auto !important;
}

/* Enhanced link animations */
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

a:hover {
  color: var(--secondary-color);
  text-decoration: none;
  transform: translateY(-1px);
}

/* Animated underline for links */
a:not(.btn):not(.logo):hover::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: var(--gradient-secondary);
  animation: shimmer 2s infinite;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #5c0357;
  font-family: var(--heading-font);
  position: relative;
}

/* Animated heading hover effect */
h1:hover, h2:hover, h3:hover {
  transform: translateX(5px);
  transition: transform 0.3s ease;
}

/* Enhanced Button Styles for AEG Global Consulting */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 50px; /* Fully rounded corners */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  gap: 8px; /* Space between text and icon */
}

/* Primary Button (Filled) */
.btn-primary {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(90, 0, 99, 0.2);
  border: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: var(--gradient-primary);
  color: white !important;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: all 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 8px rgba(90, 0, 99, 0.3);
}

.btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 2px 4px rgba(90, 0, 99, 0.1);
}

.btn-outline-primary {
  border-width: 2px;
  border-color: var(--accent-color);
  color: var(--accent-color) !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: white !important;
  transform: translateY(-3px);
  box-shadow: 0 4px 6px rgba(90, 0, 99, 0.2);
}

.btn-outline-primary:active {
  transform: translateY(1px);
  box-shadow: none;
}

/* Responsive Button Sizing */
@media (max-width: 768px) {
  .btn-lg {
    padding: 0.75rem 1.5rem !important;
    font-size: 0.9rem !important;
  }
}

/* Outline Button */
.btn-outline {
  background: transparent;
  color: #FFD700 !important; /* Golden text for outline button */
  border: 2px solid #FFD700;
  box-shadow: none;
}

.btn-outline:hover {
  background: #5a0063;
  color: #FFFFFF !important; /* White text on hover */
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(90, 0, 99, 0.2);
}

/* Button Icons */
.btn i {
  font-size: 1.2em;
  margin-left: 5px;
  transition: transform 0.2s ease;
}

.btn:hover i {
  transform: translateX(3px);
}

/* Enhanced card animations */
.card {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-heavy);
}

/* PHP Email Form Messages with enhanced styling */
.php-email-form .error-message {
  display: none;
  background: linear-gradient(135deg, #df1529, #ff4757);
  color: #ffffff;
  text-align: left;
  padding: 15px 20px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 10px;
  border-left: 4px solid #c0392b;
  animation: fadeInUp 0.5s ease;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: var(--gradient-primary);
  text-align: center;
  padding: 15px 20px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 10px;
  border-left: 4px solid var(--secondary-color);
  animation: fadeInUp 0.5s ease;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px 20px;
  margin-bottom: 24px;
  border-radius: 10px;
  animation: fadeInUp 0.5s ease;
}

.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(--secondary-color);
  animation: php-email-form-loading 1s linear infinite;
}

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

/*--------------------------------------------------------------
# Global Header with Enhanced Animations
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 997;
  box-shadow: var(--shadow-light);
  animation: slideInDown 0.8s ease;
}

.header.sticky-top {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  box-shadow: var(--shadow-medium);
}

.header .logo {
  line-height: 1;
  transition: all 0.3s ease;
}

.header .logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(90, 0, 99, 0.3));
}

.header .logo img {
  max-height: 69px;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.header .logo h1 {
  font-size: 26px;
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--heading-color);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header .logo span {
  color: var(--secondary-color);
  font-size: 26px;
  font-weight: 700;
  animation: pulse 2s infinite;
}

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

.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 10px;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-size: 16px;
  position: relative;
}

.header .header-social-links a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  transition: transform 0.3s ease;
  z-index: -1;
}

.header .header-social-links a:hover {
  color: white;
  transform: translateY(-3px) scale(1.1);
}

.header .header-social-links a:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

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

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

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

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

  .header .navmenu {
    order: 3;
  }
}

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 13px;
    font-family: var(--nav-font);
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border-radius: 25px;
    overflow: hidden;
  }
  
  .navmenu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
    z-index: -1;
    border-radius: 25px;
  }

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

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

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
  }
  
  .navmenu li:hover>a::before,
  .navmenu .active::before {
    left: 0;
  }

  .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: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 15px;
    z-index: 99;
    box-shadow: var(--shadow-heavy);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(90, 0, 99, 0.1);
  }

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

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

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

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

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

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

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

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--contrast-color) !important;
  background: linear-gradient(135deg, var(--heading-color) 0%, #3d2557 100%);
  font-size: 14px;
  position: relative;
  overflow: hidden;
  padding: 40px 0 20px 0;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-secondary);
}

.footer * {
  color: var(--contrast-color) !important;
}

.footer a {
  color: var(--contrast-color) !important;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--secondary-color) !important;
}

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

.footer .footer-top * {
  color: var(--contrast-color) !important;
}

.footer .footer-top h4 {
  color: var(--contrast-color) !important;
}

.footer .footer-top p {
  color: var(--contrast-color) !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

.footer .footer-links ul a {
  color: var(--contrast-color) !important;
  display: inline-block;
  line-height: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1199px) {

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

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

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

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 2px;
  animation: shimmer 3s infinite;
}

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

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(90, 0, 99, 0.1), rgba(255, 215, 0, 0.05));
  z-index: 1;
}

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

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

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

.hero .carousel-item {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero .carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(45, 24, 71, 0.3), rgba(90, 0, 99, 0.2));
  z-index: 1;
}

.hero .container {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 246, 251, 0.95)) !important;
  backdrop-filter: blur(15px) !important;
  border-radius: 20px !important;
  padding: 50px 40px !important;
  box-shadow: 0 25px 50px rgba(90, 0, 99, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero .carousel-item h2 {
  font-size: 3.5rem !important;
  font-weight: 800 !important;
  background: var(--gradient-primary) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  margin-bottom: 25px !important;
  line-height: 1.2 !important;
  text-align: center !important;
}

.hero .carousel-item p {
  font-size: 1.2rem !important;
  line-height: 1.8 !important;
  color: #555 !important;
  margin-bottom: 35px !important;
  text-align: center !important;
}

.hero .carousel-item .btn-get-started {
  padding: 15px 40px !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  border-radius: 50px !important;
  background: var(--gradient-primary) !important;
  color: white !important;
  border: none !important;
  box-shadow: 0 10px 30px rgba(90, 0, 99, 0.3) !important;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  display: block !important;
  margin: 0 auto !important;
  width: fit-content !important;
}

.hero .carousel-item .btn-get-started:hover {
  transform: translateY(-5px) scale(1.05) !important;
  box-shadow: 0 20px 40px rgba(90, 0, 99, 0.4) !important;
  background: var(--gradient-secondary) !important;
}

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Enhanced About Section
--------------------------------------------------------------*/
.about {
  padding: 70px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(90, 0, 99, 0.03) 0%, transparent 50%), 
              radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
  z-index: 0;
}

/* Professional Enhanced Section Header */
.about .section-header {
  margin-bottom: 50px;
  text-align: center;
  position: relative;
  padding: 35px 30px;
  background: linear-gradient(135deg, rgba(90, 0, 99, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
  border-radius: 25px;
  border: 1px solid rgba(90, 0, 99, 0.1);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.about .section-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="%23663399" opacity="0.1"/><circle cx="75" cy="75" r="0.5" fill="%23FFD700" opacity="0.1"/><circle cx="50" cy="10" r="0.3" fill="%23663399" opacity="0.05"/><circle cx="90" cy="40" r="0.3" fill="%23FFD700" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.about .section-header .header-content {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about .section-header .title-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.about .section-header .section-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  box-shadow: 0 6px 20px rgba(90, 0, 99, 0.3);
  animation: pulse 3s infinite;
  position: relative;
  overflow: hidden;
}

.about .section-header .section-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 3s infinite;
}

.about .section-header .main-title {
  font-size: 3.5rem !important;
  font-weight: 900 !important;
  background: var(--gradient-primary) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  margin: 15px 0 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.02em;
  position: relative;
  text-shadow: 0 0 30px rgba(90, 0, 99, 0.1);
}

.about .section-header .title-underline {
  width: 120px;
  height: 4px;
  background: var(--gradient-secondary);
  margin: 15px auto;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.about .section-header .title-underline::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: shimmer 2.5s infinite;
}

.about .section-header .subtitle {
  font-size: 1.2rem !important;
  color: #666 !important;
  font-weight: 400 !important;
  max-width: 650px;
  margin: 0 auto 30px auto !important;
  line-height: 1.5;
}

.about .section-header .header-stats {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.about .section-header .stat-highlight {
  text-align: center;
  padding: 20px 15px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(90, 0, 99, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(90, 0, 99, 0.1);
  min-width: 140px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.about .section-header .stat-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.about .section-header .stat-highlight:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(90, 0, 99, 0.15);
}

.about .section-header .stat-highlight:hover::before {
  transform: scaleX(1);
}

.about .section-header .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.about .section-header .stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about .header-badges {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.about .header-badges .founded-badge,
.about .header-badges .mbe-badge {
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about .header-badges .founded-badge {
  background: linear-gradient(135deg, #5a0063 0%, #8e44ad 100%);
  color: white;
}

.about .header-badges .mbe-badge {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #333;
}

/* Main Content Grid */
.about .about-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 40px;
  position: relative;
  z-index: 1;
}

/* Enhanced Company Overview Card */
.about .company-overview-card {
  background: white;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(90, 0, 99, 0.08);
  overflow: hidden;
  transition: all 0.4s ease;
  margin-bottom: 40px;
}

.about .company-overview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(90, 0, 99, 0.12);
}

.about .company-overview-card .card-header {
  background: linear-gradient(135deg, rgba(90, 0, 99, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
  padding: 25px 30px 20px 30px;
  border-bottom: 1px solid rgba(90, 0, 99, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.about .company-overview-card .header-icon {
  background: var(--gradient-primary);
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(90, 0, 99, 0.3);
}

.about .company-overview-card .header-icon i {
  color: white;
  font-size: 1.8rem;
}

.about .company-overview-card .header-text {
  flex: 1;
  margin-left: 20px;
}

.about .company-overview-card .header-text h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 5px 0;
}

.about .company-overview-card .mission-tagline {
  font-size: 0.95rem;
  color: var(--secondary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about .company-overview-card .badge-container {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about .company-overview-card .founded-badge,
.about .company-overview-card .mbe-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.about .company-overview-card .founded-badge {
  background: linear-gradient(135deg, #5a0063 0%, #8e44ad 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(90, 0, 99, 0.3);
}

.about .company-overview-card .mbe-badge {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #333;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.about .company-overview-card .founded-badge:hover,
.about .company-overview-card .mbe-badge:hover {
  transform: translateY(-2px) scale(1.05);
}

.about .company-overview-card .card-content {
  padding: 30px;
}

.about .company-overview-card .mission-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 25px;
}

.about .company-overview-card .mission-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.about .company-overview-card .highlight-point {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  transition: all 0.3s ease;
}

.about .company-overview-card .highlight-point:hover {
  transform: translateX(5px);
}

.about .company-overview-card .highlight-point i {
  color: var(--secondary-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

  .about .company-overview-card .highlight-point span {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
  }

/* Enhanced Differentiators Section */
.about .differentiators-section {
  margin-bottom: 30px;
}

.about .section-mini-header {
  text-align: center;
  margin-bottom: 25px;
}

.about .section-mini-header h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.about .section-mini-header p {
  font-size: 1rem;
  color: #666;
  max-width: 500px;
  margin: 0 auto;
}

.about .differentiators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.about .differentiator-item {
  background: white;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(90, 0, 99, 0.08);
  border: 1px solid rgba(90, 0, 99, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.about .differentiator-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.about .differentiator-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(90, 0, 99, 0.15);
}

.about .differentiator-item:hover::before {
  transform: scaleX(1);
}

.about .differentiator-item .icon-wrapper {
  background: var(--gradient-primary);
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  box-shadow: 0 6px 20px rgba(90, 0, 99, 0.3);
}

.about .differentiator-item .icon-wrapper i {
  color: white;
  font-size: 1.5rem;
}

.about .differentiator-item .content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.about .differentiator-item .content p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}

.about .differentiator-item .feature-badge {
  display: inline-block;
  background: var(--gradient-secondary);
  color: #333;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Enhanced Value Proposition */
.about .value-proposition {
  background: linear-gradient(135deg, rgba(90, 0, 99, 0.03) 0%, rgba(255, 215, 0, 0.03) 100%);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(90, 0, 99, 0.1);
  margin-top: 20px;
  grid-column: 1 / -1;
}

.about .value-proposition .value-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.about .value-proposition .value-icon {
  background: var(--gradient-secondary);
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.about .value-proposition .value-icon i {
  color: #333;
  font-size: 1.8rem;
}

.about .value-proposition .value-text h4 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 5px 0;
}

.about .value-proposition .value-tagline {
  font-size: 0.95rem;
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about .value-proposition .value-content p {
  font-size: 1rem;
  line-height: 1.5;
  color: #555;
  margin-bottom: 20px;
}

.about .value-proposition .value-points {
  margin-bottom: 25px;
}

.about .value-proposition .value-point {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.about .value-proposition .value-point:hover {
  transform: translateX(5px);
}

.about .value-proposition .value-point i {
  color: var(--secondary-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.about .value-proposition .value-point span {
  font-size: 0.95rem;
  color: #333;
  font-weight: 500;
}

.about .value-proposition .cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.about .value-proposition .cta-buttons .btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.about .value-proposition .cta-buttons .btn i {
  font-size: 1rem;
}

/* Enhanced Floating Stats */
.about .about-image-container .floating-stats {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.about .about-image-container .stat-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 15px;
  border-radius: 15px;
  text-align: center;
  flex: 1;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.about .about-image-container .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(90, 0, 99, 0.15);
}

.about .about-image-container .stat-icon {
  background: var(--gradient-primary);
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px auto;
}

.about .about-image-container .stat-icon i {
  color: white;
  font-size: 1.2rem;
}

.about .about-image-container .stat-content .stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 5px;
}

.about .about-image-container .stat-content .stat-label {
  font-size: 0.8rem;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about .icon-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.about .main-icon {
  background: var(--gradient-primary);
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .main-icon i {
  color: white;
  font-size: 1.8rem;
}

.about .icon-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
}

.about .company-overview p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}

.about .mission-highlights {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.about .highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about .highlight-item i {
  color: #5a0063;
  font-size: 1.1rem;
}

.about .highlight-item span {
  font-weight: 600;
  color: #333;
}

/* Key Metrics */
.about .key-metrics {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.about .key-metrics h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 30px;
  text-align: center;
}

.about .metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about .metric-item {
  background: white;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  border: 1px solid rgba(90, 0, 99, 0.05);
  transition: all 0.3s ease;
}

.about .metric-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(90, 0, 99, 0.15);
}

.about .metric-number {
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.about .metric-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 600;
  margin-bottom: 15px;
}

.about .metric-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  color: rgba(90, 0, 99, 0.2);
  font-size: 1.2rem;
}

/* Core Competencies */
.about .core-competencies {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
}

.about .core-competencies h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 30px;
  text-align: center;
}

.about .competencies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.about .competency-item {
  background: white;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(90, 0, 99, 0.05);
  position: relative;
  overflow: hidden;
}

.about .competency-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.about .competency-item:hover::before {
  transform: scaleX(1);
}

.about .competency-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(90, 0, 99, 0.12);
}

.about .competency-item .icon-wrapper {
  background: var(--gradient-primary);
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.about .competency-item .icon-wrapper i {
  color: white;
  font-size: 1.5rem;
}

.about .competency-item .content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.about .competency-item .content p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Image Showcase */
.about .image-showcase {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
}

.about .main-image-container {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  margin-bottom: 25px;
}

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

.about .main-image-container:hover .main-image {
  transform: scale(1.05);
}

.about .image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 30px;
  color: white;
}

.about .overlay-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.about .overlay-content p {
  font-size: 0.95rem;
  margin: 0;
  opacity: 0.9;
}

.about .supporting-images {
  display: flex;
  gap: 15px;
}

.about .support-image {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  border: 1px solid rgba(90, 0, 99, 0.05);
}

.about .support-icon {
  background: var(--gradient-primary);
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .support-icon i {
  color: white;
  font-size: 1.1rem;
}

.about .support-image span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
}

/* Value Proposition */
.about .value-proposition {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
}

.about .value-header {
  margin-bottom: 30px;
}

.about .value-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.about .value-header p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.about .value-points {
  margin-bottom: 35px;
}

.about .value-point {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.about .point-icon {
  background: var(--gradient-primary);
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about .point-icon i {
  color: white;
  font-size: 1.2rem;
}

.about .point-content h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.about .point-content p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.about .cta-section {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.about .btn {
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-size: 0.95rem;
}

.about .btn-primary {
  background: var(--gradient-primary);
  color: #fff !important;
}

.about .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(90, 0, 99, 0.3);
}

.about .btn-outline {
  background: transparent;
  color: #5a0063;
  border-color: #5a0063;
}

.about .btn-outline:hover {
  background: #5a0063;
  color: white;
  transform: translateY(-2px);
}

/* Responsive Design for About Section */
@media (max-width: 1200px) {
  .about .about-main-grid {
    gap: 30px;
  }
  
  .about .competencies-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .about .section-header .main-title {
    font-size: 3rem !important;
  }
}

@media (max-width: 992px) {
  .about .about-main-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto;
    gap: 40px;
  }
  
  .about .company-overview {
    grid-column: 1;
    grid-row: 1;
  }
  
  .about .key-metrics {
    grid-column: 1;
    grid-row: 2;
  }
  
  .about .core-competencies {
    grid-column: 1;
    grid-row: 3;
  }
  
  .about .image-showcase {
    grid-column: 1;
    grid-row: 4;
  }
  
  .about .value-proposition {
    grid-column: 1;
    grid-row: 5;
  }
  
  .about .section-header .row {
    text-align: center;
  }
  
  .about .header-badges {
    justify-content: center;
    margin-top: 20px;
  }
  
  .about .differentiators-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about {
    padding: 50px 0;
  }
  
  .about .section-header {
    padding: 40px 25px;
    margin-bottom: 60px;
  }
  
  .about .section-header .main-title {
    font-size: 2.8rem !important;
  }
  
  .about .section-header .subtitle {
    font-size: 1.2rem !important;
  }
  
  .about .section-header .header-stats {
    gap: 20px;
  }
  
  .about .section-header .stat-highlight {
    min-width: 140px;
    padding: 20px 15px;
  }
  
  .about .section-header .stat-number {
    font-size: 2rem;
  }
  
  .about .company-overview-card .card-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .about .company-overview-card .header-text {
    margin-left: 0;
  }
  
  .about .company-overview-card .badge-container {
    justify-content: center;
  }
  
  .about .differentiators-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .about .company-overview-card .mission-highlights {
    grid-template-columns: 1fr;
  }
  
  .about .value-proposition {
    padding: 25px 20px;
  }
  
  .about .value-proposition .value-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .about .about-image-container .floating-stats {
    position: static;
    margin-top: 20px;
    flex-direction: column;
    gap: 12px;
  }
  
  .about .about-image-container .stat-item {
    padding: 15px 10px;
  }
  
  .about .competencies-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .about .metrics-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .about .company-overview .overview-content {
    padding: 30px;
  }
  
  .about .cta-section {
    flex-direction: column;
  }
  
  .about .btn {
    text-align: center;
  }
  
  .about .supporting-images {
    flex-direction: column;
    gap: 15px;
  }
  
  .about .main-image {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .about .section-header .main-title {
    font-size: 2.2rem !important;
  }
  
  .about .header-badges {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .about .company-overview .overview-content {
    padding: 25px;
  }
  
  .about .competency-item,
  .about .metric-item {
    padding: 25px 20px;
  }
  
  .about .main-image {
    height: 200px;
  }
}

/* Enhanced Services Section */
.services {
  padding: 70px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(90, 0, 99, 0.03) 0%, transparent 50%), 
              radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
  z-index: 0;
}

/* Services Section Header - Same as About */
.services .section-header {
  margin-bottom: 50px;
  text-align: center;
  position: relative;
  padding: 35px 30px;
  background: linear-gradient(135deg, rgba(90, 0, 99, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
  border-radius: 25px;
  border: 1px solid rgba(90, 0, 99, 0.1);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.services .section-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="%23663399" opacity="0.1"/><circle cx="75" cy="75" r="0.5" fill="%23FFD700" opacity="0.1"/><circle cx="50" cy="10" r="0.3" fill="%23663399" opacity="0.05"/><circle cx="90" cy="40" r="0.3" fill="%23FFD700" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.services .section-header .header-content {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.services .section-header .title-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.services .section-header .section-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  box-shadow: 0 6px 20px rgba(90, 0, 99, 0.3);
  animation: pulse 3s infinite;
  position: relative;
  overflow: hidden;
}

.services .section-header .section-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 3s infinite;
}

.services .section-header .main-title {
  font-size: 3.5rem !important;
  font-weight: 900 !important;
  background: var(--gradient-primary) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  margin: 15px 0 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.02em;
  position: relative;
  text-shadow: 0 0 30px rgba(90, 0, 99, 0.1);
}

.services .section-header .title-underline {
  width: 120px;
  height: 4px;
  background: var(--gradient-secondary);
  margin: 15px auto;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.services .section-header .title-underline::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: shimmer 2.5s infinite;
}

.services .section-header .subtitle {
  font-size: 1.2rem !important;
  color: #666 !important;
  font-weight: 400 !important;
  max-width: 650px;
  margin: 0 auto 30px auto !important;
  line-height: 1.5;
}

.services .section-header .header-stats {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.services .section-header .stat-highlight {
  text-align: center;
  padding: 20px 15px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(90, 0, 99, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(90, 0, 99, 0.1);
  min-width: 140px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.services .section-header .stat-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.services .section-header .stat-highlight:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(90, 0, 99, 0.15);
}

.services .section-header .stat-highlight:hover::before {
  transform: scaleX(1);
}

.services .section-header .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.services .section-header .stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.services .service-item {
  background: white;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(90, 0, 99, 0.1);
  z-index: 1;
}

.services .service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.services .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(90, 0, 99, 0.15);
}

.services .service-item .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px auto;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.services .service-item .icon i {
  font-size: 2.5rem;
  color: white;
  z-index: 2;
}

.services .service-item h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.3;
}

.services .service-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  text-align: center;
  margin-bottom: 0;
}

/* Enhanced Stats Section */
.stats-section {
  background: var(--gradient-primary);
  padding: 70px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

/* Stats Section Header - Same as About */
.stats-section .section-header {
  margin-bottom: 50px;
  text-align: center;
  position: relative;
  padding: 35px 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.stats-section .section-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="%23FFFFFF" opacity="0.1"/><circle cx="75" cy="75" r="0.5" fill="%23FFD700" opacity="0.2"/><circle cx="50" cy="10" r="0.3" fill="%23FFFFFF" opacity="0.05"/><circle cx="90" cy="40" r="0.3" fill="%23FFD700" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.stats-section .section-header .header-content {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.stats-section .section-header .title-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.stats-section .section-header .section-badge {
  display: inline-block;
  background: var(--gradient-secondary);
  color: #333;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  animation: pulse 3s infinite;
  position: relative;
  overflow: hidden;
}

.stats-section .section-header .section-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 3s infinite;
}

.stats-section .section-header .main-title {
  font-size: 3.5rem !important;
  font-weight: 900 !important;
  color: white !important;
  margin: 15px 0 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.02em;
  position: relative;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.stats-section .section-header .title-underline {
  width: 120px;
  height: 4px;
  background: var(--gradient-secondary);
  margin: 15px auto;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.stats-section .section-header .title-underline::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: shimmer 2.5s infinite;
}

.stats-section .section-header .subtitle {
  font-size: 1.2rem !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 400 !important;
  max-width: 650px;
  margin: 0 auto 30px auto !important;
  line-height: 1.5;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.stats-item {
  text-align: center;
  padding: 30px 20px;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  margin-bottom: 20px;
}

.stats-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stats-item .icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.stats-item .number {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: white;
}

.stats-item .label {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Enhanced CTA Section */
.cta-section {
  background: linear-gradient(135deg, #2d1847 0%, #5a0063 100%);
  padding: 80px 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

.cta-section .btn {
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  background: var(--secondary-color);
  color: var(--heading-color);
  border: none;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

.cta-section .btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4);
  background: #ffd700;
}

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

/* Responsive Enhancements */
@media (max-width: 768px) {
  .hero .carousel-item h2 {
    font-size: 2.5rem !important;
  }
  
  .hero .carousel-item .container {
    padding: 30px 20px !important;
    margin: 20px !important;
  }
  
  .about .inner-title {
    font-size: 2.2rem !important;
  }
  
  .about .our-story {
    padding: 30px 20px;
  }
  
  .services .section-header {
    padding: 25px 20px;
    margin-bottom: 40px;
  }
  
  .services .section-header .main-title {
    font-size: 2.8rem !important;
  }
  
  .services .section-header .header-stats {
    gap: 20px;
  }
  
  .services .section-header .stat-highlight {
    min-width: 120px;
    padding: 15px 10px;
  }
  
  .services .service-item {
    margin-bottom: 30px;
  }
  
  .stats-section .section-header {
    padding: 25px 20px;
    margin-bottom: 40px;
  }
  
  .stats-section .section-header .main-title {
    font-size: 2.8rem !important;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Department of Defense Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.clients .section-title h2 {
  font-size: 3rem !important;
  font-weight: 800 !important;
  background: var(--gradient-primary) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  margin-bottom: 20px !important;
  text-align: center !important;
}

.clients .section-title p {
  font-size: 1.2rem !important;
  color: #666 !important;
  text-align: center !important;
  max-width: 700px !important;
  margin: 0 auto 60px auto !important;
}

.clients .clients-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.clients .client-logo {
  text-align: center;
  margin-bottom: 30px;
}

.clients .client-item {
  background: white;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(90, 0, 99, 0.1);
  height: 100%;
}

.clients .client-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.clients .client-item:hover::before {
  transform: scaleX(1);
}

.clients .client-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(90, 0, 99, 0.15);
}

.clients .client-item img {
  max-height: 80px;
  width: auto;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
  filter: grayscale(100%);
}

.clients .client-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.clients .client-item h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
  text-align: center;
}

.clients .client-item p {
  font-size: 0.9rem;
  color: #666;
  text-align: center;
  margin-bottom: 0;
  line-height: 1.4;
}

.clients .dod-certification {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(90, 0, 99, 0.1);
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.clients .dod-certification::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
}

.clients .dod-certification h4 {
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  text-align: center;
}

.clients .dod-certification p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666;
  text-align: center;
  margin-bottom: 0;
}

/* Responsive Design for Clients */
@media (max-width: 768px) {
  .clients .client-item {
    padding: 20px 15px;
  }
  
  .clients .client-item img {
    max-height: 60px;
  }
  
  .clients .dod-certification {
    padding: 30px 20px;
  }
  
  .clients .dod-certification h4 {
    font-size: 1.5rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 575px) {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pricing .featured {
  position: relative;
}

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

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

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

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

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

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

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

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

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

.blog-posts .post-title {
  font-size: 20px;
  color: var(--heading-color);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# AEG Custom Animations & Enhancements
--------------------------------------------------------------*/

/* Page Loading Animation */
body:not(.page-loaded) {
  overflow: hidden;
}

.page-loaded .hero .container {
  animation: slideInUp 1s ease 0.5s both;
}

.page-loaded .section-title {
  animation: fadeInUp 0.8s ease both;
}

/* Staggered animation delays for service items */
.page-loaded .service-item:nth-child(1) { animation-delay: 0.1s; }
.page-loaded .service-item:nth-child(2) { animation-delay: 0.2s; }
.page-loaded .service-item:nth-child(3) { animation-delay: 0.3s; }
.page-loaded .service-item:nth-child(4) { animation-delay: 0.4s; }
.page-loaded .service-item:nth-child(5) { animation-delay: 0.5s; }
.page-loaded .service-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Enhanced hover effects for navigation */
.navmenu a:hover {
  color: white !important;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Floating animation for icons */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.services .service-item .icon {
  animation: float 3s ease-in-out infinite;
}

.services .service-item:nth-child(even) .icon {
  animation-delay: 1.5s;
}

/* Enhanced button hover effects */
.btn:hover {
  transform: translateY(-3px) scale(1.05);
  letter-spacing: 1.5px;
}

/* Gradient text animation */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.section-title h2 {
  background: var(--gradient-primary);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

/* Enhanced footer styling */
.footer h4 {
  color: var(--secondary-color);
  position: relative;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient-secondary);
}

/* Enhanced preloader */
#preloader {
  background: var(--gradient-primary);
}

#preloader:before {
  border: 4px solid var(--secondary-color);
  border-top: 4px solid transparent;
}

/* Responsive enhancements */
@media (max-width: 768px) {
  .services .service-item {
    margin-bottom: 20px;
  }
  
  .services .service-item .icon {
    width: 80px;
    height: 80px;
  }
  
  .services .service-item .icon i {
    font-size: 28px;
  }
  
  .section-title h2 {
    font-size: 28px;
  }
}

/* Enhanced Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.testimonials .section-title h2 {
  font-size: 3rem !important;
  font-weight: 800 !important;
  background: var(--gradient-primary) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  margin-bottom: 20px !important;
  text-align: center !important;
}

.testimonials .section-title p {
  font-size: 1.2rem !important;
  color: #666 !important;
  text-align: center !important;
  max-width: 600px !important;
  margin: 0 auto 60px auto !important;
}

.testimonials .testimonial-item {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(90, 0, 99, 0.1);
  display: flex;
  flex-direction: column;
}

.testimonials .testimonial-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.testimonials .testimonial-item:hover::before {
  transform: scaleX(1);
}

.testimonials .testimonial-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(90, 0, 99, 0.15);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 20px;
  color: var(--secondary-color);
  font-size: 1.1rem;
}

.testimonials .testimonial-item p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 30px;
  flex-grow: 1;
  font-style: italic;
}

.testimonials .testimonial-item .profile {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.testimonials .testimonial-item .testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 20px;
  object-fit: cover;
  border: 3px solid var(--gradient-primary);
}

.testimonials .testimonial-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.testimonials .testimonial-item h4 {
  font-size: 0.95rem;
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 0;
}

/* Enhanced CTA Button Styles */
.btn-cta {
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  background: var(--secondary-color);
  color: var(--heading-color);
  border: none;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4);
  background: #ffd700;
  color: var(--heading-color);
  text-decoration: none;
}

.btn-outline-light {
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  background: transparent;
  color: white;
  border: 2px solid white;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-light:hover {
  background: white;
  color: var(--heading-color);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.3);
  text-decoration: none;
}

.cta-buttons {
  margin-top: 30px;
}

.cta-buttons .btn {
  margin: 10px;
}

/* Enhanced Primary Button */
.btn-primary {
  background: var(--gradient-primary);
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(90, 0, 99, 0.3);
}

.btn-primary:hover {
  background: var(--gradient-secondary);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(90, 0, 99, 0.4);
}

/* Enhanced Industries Section */
.industries {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

.industries .section-title h2 {
  font-size: 3rem !important;
  font-weight: 800 !important;
  background: var(--gradient-primary) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  margin-bottom: 20px !important;
  text-align: center !important;
}

.industries .section-title p {
  font-size: 1.2rem !important;
  color: #666 !important;
  text-align: center !important;
  max-width: 600px !important;
  margin: 0 auto 60px auto !important;
}

.industries .industry-item {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(90, 0, 99, 0.1);
  text-align: center;
}

.industries .industry-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.industries .industry-item:hover::before {
  transform: scaleX(1);
}

.industries .industry-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(90, 0, 99, 0.15);
}

.industries .industry-item .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px auto;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.industries .industry-item .icon i {
  font-size: 2.5rem;
  color: white;
  z-index: 2;
}

.industries .industry-item h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.3;
}

.industries .industry-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  text-align: center;
  margin-bottom: 0;
}

/* Professional About Section Styles */
.about-content-professional {
  padding: 0;
}

/* Compact Mission Section */
.mission-section-compact {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
  border-left: 4px solid var(--accent-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.mission-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.mission-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.mission-title h3 {
  margin: 0;
  font-size: 20px;
  color: var(--heading-color);
  font-weight: 600;
}

.mission-badges {
  display: flex;
  gap: 8px;
  margin-top: 5px;
}

.founded-badge, .mbe-badge {
  background: var(--accent-color);
  color: white;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
}

.mbe-badge {
  background: #28a745;
}

.mission-content p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.mission-highlights-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: var(--default-color);
}

.highlight-item i {
  color: var(--accent-color);
  font-size: 12px;
}

/* Compact Why Choose Section */
.why-choose-compact {
  margin-bottom: 25px;
}

.section-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
}

.section-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background: var(--accent-color);
}

.advantages-grid-compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.advantage-item {
  background: white;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.advantage-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

.advantage-icon {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, var(--accent-color), #0056b3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  margin-bottom: 10px;
}

.advantage-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.advantage-content p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  color: #6c757d;
}

/* Compact AEG Advantage Section */
.aeg-advantage-compact {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 12px;
  padding: 25px;
  border: 1px solid #e9ecef;
}

.advantage-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.advantage-main-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #ffc107, #fd7e14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}

.advantage-main-content h3 {
  margin: 0;
  font-size: 20px;
  color: var(--heading-color);
  font-weight: 600;
}

.advantage-tagline {
  margin: 0;
  font-size: 14px;
  color: #6c757d;
  font-style: italic;
}

.advantage-details p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.metrics-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 15px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.metric-item {
  text-align: center;
  flex: 1;
}

.metric-number {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.metric-label {
  font-size: 12px;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-buttons-compact {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-primary-compact, .btn-outline-compact {
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-primary-compact {
  background: var(--accent-color);
  color: white;
  border: 2px solid var(--accent-color);
}

.btn-primary-compact:hover {
  background: #0056b3;
  transform: translateY(-1px);
}

.btn-outline-compact {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.btn-outline-compact:hover {
  background: var(--accent-color);
  color: white;
}

/* Professional Image Section */
.about-image-professional {
  position: relative;
  height: 100%;
}

.image-wrapper-compact {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.main-image {
  width: 100%;
  height: auto;
  min-height: 400px;
  object-fit: cover;
}

.floating-stats-compact {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  flex: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-card .stat-icon {
  width: 30px;
  height: 30px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4c1d6;
  font-size: 14px;
  margin: 0 auto 8px;
}

.stat-card .stat-number {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.stat-card .stat-label {
  font-size: 11px;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .advantages-grid-compact {
    grid-template-columns: 1fr;
  }
  
  .mission-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .mission-highlights-inline {
    flex-direction: column;
    gap: 8px;
  }
  
  .metrics-row {
    flex-direction: column;
    gap: 15px;
  }
  
  .floating-stats-compact {
    position: static;
    margin-top: 20px;
    background: white;
    padding: 15px;
    border-radius: 8px;
  }
  
  .cta-buttons-compact {
    justify-content: center;
  }
}

/* Enhanced Contact Section Styles */
.contact .contact-info-card {
  background: var(--surface-color);
  padding: 30px 25px;
  border-radius: 12px;
  text-align: center;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(90, 0, 99, 0.1);
  position: relative;
  overflow: hidden;
}

.contact .contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  transition: left 0.5s ease;
}

.contact .contact-info-card:hover::before {
  left: 0;
}

.contact .contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--accent-color);
}

.contact .contact-info-card .card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
}

.contact .contact-info-card .card-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease;
}

.contact .contact-info-card:hover .card-icon::after {
  opacity: 1;
  transform: scale(1.2);
}

.contact .contact-info-card .card-icon i {
  font-size: 28px;
  color: white;
  transition: all 0.4s ease;
}

.contact .contact-info-card:hover .card-icon {
  transform: rotateY(360deg);
  background: var(--gradient-secondary);
}

.contact .contact-info-card .card-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.contact .contact-info-card .card-content p {
  margin: 0;
  color: var(--default-color);
  line-height: 1.6;
  font-size: 14px;
}

.contact .contact-info-card .card-content a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact .contact-info-card .card-content a:hover {
  color: var(--secondary-color);
  transform: translateX(3px);
}

/* Enhanced Map Container */
.contact .map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  position: relative;
  height: 450px;
}

.contact .map-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(90, 0, 99, 0.1), rgba(255, 215, 0, 0.1));
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact .map-container:hover::before {
  opacity: 1;
}

.contact .map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.contact .map-container:hover iframe {
  filter: grayscale(0%);
}

/* Enhanced Contact Form */
.contact .contact-form-wrapper {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(90, 0, 99, 0.1);
  height: 100%;
}

.contact .contact-form-wrapper h3 {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
}

.contact .contact-form-wrapper h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.contact .contact-form-wrapper p {
  color: rgba(68, 68, 68, 0.8);
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact .modern-contact-form .form-floating {
  margin-bottom: 20px;
}

/* Enhanced Contact Button Styles */
.contact .btn-send-message {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.contact .btn-send-message::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-secondary);
  transition: left 0.5s ease;
  z-index: 0;
}

.contact .btn-send-message:hover::before {
  left: 0;
}

.contact .btn-send-message:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(90, 0, 99, 0.3);
}

.contact .btn-send-message span,
.contact .btn-send-message i {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.contact .btn-send-message:hover i {
  transform: translateX(5px);
}

/* Form Status Styles */
.contact .form-status {
  margin-bottom: 20px;
  min-height: 20px;
}

.contact .form-status .loading,
.contact .form-status .error-message,
.contact .form-status .sent-message {
  display: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 500;
  text-align: center;
}

.contact .form-status .loading {
  background: rgba(255, 215, 0, 0.1);
  color: var(--accent-color);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.contact .form-status .error-message {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.3);
}

.contact .form-status .sent-message {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

/* Enhanced Form Controls */
.contact .modern-contact-form .form-floating {
  margin-bottom: 20px;
}

.contact .modern-contact-form .form-control {
  border: 2px solid rgba(90, 0, 99, 0.15);
  border-radius: 8px;
  background: var(--background-color);
  color: var(--default-color);
  font-size: 15px;
  padding: 12px 16px;
  transition: all 0.3s ease;
  box-shadow: none;
}

.contact .modern-contact-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(90, 0, 99, 0.15);
  background: var(--surface-color);
}

.contact .modern-contact-form .form-floating label {
  color: rgba(68, 68, 68, 0.7);
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact .modern-contact-form .form-control:focus + label,
.contact .modern-contact-form .form-control:not(:placeholder-shown) + label {
  color: var(--accent-color);
  font-weight: 600;
}

/* Responsive Button Styles */
@media (max-width: 576px) {
  .contact .btn-send-message {
    width: 100%;
    justify-content: center;
    padding: 16px 30px;
    font-size: 15px;
  }
}

/* Enhanced Services Page Styles */
.services-page .page-title {
  position: relative;
  overflow: hidden;
}

.services-page .page-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(90, 0, 99, 0.95), rgba(138, 79, 255, 0.9));
  z-index: -1;
}

.services-page .page-title-content {
  position: relative;
  z-index: 2;
}

.services-page .page-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 400;
}

/* Services Hero Section */
.services-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #fafbfc 0%, #f8f6fb 100%);
  position: relative;
}

.services-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(90, 0, 99, 0.05), rgba(255, 215, 0, 0.05));
  z-index: 1;
}

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

.services-hero h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.services-hero .lead {
  font-size: 20px;
  color: rgba(68, 68, 68, 0.8);
  margin-bottom: 40px;
  line-height: 1.6;
}

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

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

.services-hero .stat-number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 5px;
}

.services-hero .stat-label {
  font-size: 14px;
  color: rgba(68, 68, 68, 0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.services-hero .hero-image {
  position: relative;
}

.services-hero .hero-image img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(90, 0, 99, 0.2);
}

.services-hero .floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.services-hero .floating-card {
  position: absolute;
  background: white;
  padding: 15px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(90, 0, 99, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--heading-color);
}

.services-hero .floating-card:first-child {
  top: 20%;
  right: -10%;
}

.services-hero .floating-card:last-child {
  bottom: 20%;
  left: -10%;
}

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

/* Enhanced Section Headers */
.section-header {
  margin-bottom: 60px;
  position: relative;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(90, 0, 99, 0.1), rgba(255, 215, 0, 0.1));
  color: var(--accent-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  border: 1px solid rgba(90, 0, 99, 0.2);
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-description {
  font-size: 18px;
  color: rgba(68, 68, 68, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* SAP Solutions Grid */
.sap-solutions {
  padding: 100px 0;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.solution-card {
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(90, 0, 99, 0.08);
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transition: left 0.5s ease;
}

.solution-card:hover::before {
  left: 0;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(90, 0, 99, 0.15);
}

/* Additional Services Section */
.additional-services {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
}

.additional-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.service-detail-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(90, 0, 99, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  border: 2px solid transparent;
}

.service-detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

/* Fix for text visibility issues across all tabs and states */

/* Ensure all solution card text is visible */
.solution-card .card-content h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color) !important;
  margin-bottom: 15px;
  line-height: 1.3;
}

.solution-card .card-content p {
  color: rgba(68, 68, 68, 0.8) !important;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Featured card text colors */
.solution-card.featured .card-content h4 {
  color: white !important;
}

.solution-card.featured .card-content p {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Service card text in tabs */
.service-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color) !important;
  margin-bottom: 15px;
  line-height: 1.3;
}

.service-card p {
  color: rgba(68, 68, 68, 0.8) !important;
  line-height: 1.6;
  margin: 0;
  font-size: 14px;
}

/* Tab content visibility */
.tab-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tab-content.active {
  display: block;
  opacity: 1;
}

/* Ensure all text in tab content is visible */
.tab-content * {
  visibility: visible;
}

.tab-content h4,
.tab-content .service-card h4 {
  color: var(--heading-color) !important;
}

.tab-content p,
.tab-content .service-card p {
  color: rgba(68, 68, 68, 0.8) !important;
}

/* Additional services text visibility */
.service-detail-card .service-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color) !important;
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-detail-card .service-content p {
  color: rgba(68, 68, 68, 0.8) !important;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-detail-card .service-features li {
  color: rgba(68, 68, 68, 0.8) !important;
}

/* Force visibility for all headings and text */
.services-page h1,
.services-page h2,
.services-page h3,
.services-page h4,
.services-page h5,
.services-page h6 {
  color: var(--heading-color) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.services-page p,
.services-page li,
.services-page span:not(.feature-tag):not(.service-category) {
  color: rgba(68, 68, 68, 0.8) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Specific fix for SRM and other solution titles */
.solution-card:nth-child(7) .card-content h4,
.solutions-grid .solution-card .card-content h4 {
  color: var(--heading-color) !important;
  opacity: 1 !important;
  visibility: visible !important;
  text-shadow: none !important;
}

/* Override any potential inherited issues */
.services-page * {
  text-rendering: optimizeLegibility;
}

/* Ensure proper contrast */
:root {
  --heading-color: #2d1847 !important;
  --default-color: #444444 !important;
}

/* Light background sections */
.light-background .solution-card .card-content h4,
.light-background .service-card h4 {
  color: var(--heading-color) !important;
}

.light-background .solution-card .card-content p,
.light-background .service-card p {
  color: rgba(68, 68, 68, 0.8) !important;
}

/* Dark/accent background sections */
.accent-background h1,
.accent-background h2,
.accent-background h3,
.accent-background h4 {
  color: white !important;
}

.accent-background p {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Responsive text visibility */
@media (max-width: 768px) {
  .solution-card .card-content h4,
  .service-card h4,
  .service-detail-card .service-header h3 {
    color: var(--heading-color) !important;
    font-size: 18px;
  }
  
  .solution-card .card-content p,
  .service-card p,
  .service-detail-card .service-content p {
    color: rgba(68, 68, 68, 0.8) !important;
    font-size: 14px;
  }
}

/* Debug helper - remove after fixing */
.solution-card:nth-child(7) {
  background: white !important;
}

.solution-card:nth-child(7) .card-content h4 {
  background: rgba(45, 24, 71, 0.1);
  padding: 2px 4px;
  border-radius: 4px;
}

/* Fix for white text on white background issue */

/* Reset all service card text colors to ensure visibility */
.solution-card .card-content h4,
.service-card h4,
.service-detail-card .service-header h3 {
  color: #2d1847 !important;
  opacity: 1 !important;
  visibility: visible !important;
  text-shadow: none !important;
  background: transparent !important;
}

.solution-card .card-content p,
.service-card p,
.service-detail-card .service-content p {
  color: #444444 !important;
  opacity: 1 !important;
  visibility: visible !important;
  text-shadow: none !important;
  background: transparent !important;
}

/* Specifically fix Business Intelligence and all other solution cards */
.solution-card:not(.featured) {
  background: white !important;
  color: #2d1847 !important;
}

.solution-card:not(.featured) * {
  color: inherit !important;
}

.solution-card:not(.featured) .card-content h4 {
  color: #2d1847 !important;
}

.solution-card:not(.featured) .card-content p {
  color: #444444 !important;
}

/* Featured card specific styling (only for ECC card) */
.solution-card.featured {
  background: linear-gradient(135deg, #5a0063 0%, #8A4FFF 100%) !important;
  color: white !important;
}

.solution-card.featured .card-content h4 {
  color: white !important;
}

.solution-card.featured .card-content p {
  color: rgba(255, 255, 255, 0.9) !important;
}

.solution-card.featured .feature-tag {
  background: rgba(255, 255, 255, 0.2) !important;
  color: white !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

/* Service cards in tabs */
.service-card {
  background: white !important;
  color: #2d1847 !important;
}

.service-card * {
  color: inherit !important;
}

.service-card h4 {
  color: #2d1847 !important;
}

.service-card p {
  color: #444444 !important;
}

/* Additional service detail cards */
.service-detail-card {
  background: white !important;
  color: #2d1847 !important;
}

.service-detail-card * {
  color: inherit !important;
}

.service-detail-card .service-header h3 {
  color: #2d1847 !important;
}

.service-detail-card .service-content p {
  color: #444444 !important;
}

.service-detail-card .service-features li {
  color: #444444 !important;
}

/* Override any inherited white text */
.services-page .section:not(.accent-background) h1,
.services-page .section:not(.accent-background) h2,
.services-page .section:not(.accent-background) h3,
.services-page .section:not(.accent-background) h4,
.services-page .section:not(.accent-background) h5,
.services-page .section:not(.accent-background) h6 {
  color: #2d1847 !important;
}

.services-page .section:not(.accent-background) p,
.services-page .section:not(.accent-background) li {
  color: #444444 !important;
}

/* Fix for specific cards by position */
.solution-card:nth-child(1) .card-content h4, /* Business Intelligence */
.solution-card:nth-child(2) .card-content h4, /* MDM */
.solution-card:nth-child(3) .card-content h4, /* CRM */
.solution-card:nth-child(4) .card-content h4, /* SCM */
.solution-card:nth-child(5) .card-content h4, /* HCM */
.solution-card:nth-child(6) .card-content h4, /* PLM */
.solution-card:nth-child(7) .card-content h4, /* SRM */
.solution-card:nth-child(8) .card-content h4, /* SEM */
.solution-card:nth-child(10) .card-content h4 { /* NetWeaver */
  color: #2d1847 !important;
  background: transparent !important;
}

.solution-card:nth-child(1) .card-content p,
.solution-card:nth-child(2) .card-content p,
.solution-card:nth-child(3) .card-content p,
.solution-card:nth-child(4) .card-content p,
.solution-card:nth-child(5) .card-content p,
.solution-card:nth-child(6) .card-content p,
.solution-card:nth-child(7) .card-content p,
.solution-card:nth-child(8) .card-content p,
.solution-card:nth-child(10) .card-content p {
  color: #444444 !important;
  background: transparent !important;
}

/* Feature tags */
.solution-card:not(.featured) .feature-tag {
  background: rgba(90, 0, 99, 0.05) !important;
  color: #5a0063 !important;
  border-color: rgba(90, 0, 99, 0.1) !important;
}

/* Service category badges */
.service-category {
  background: linear-gradient(135deg, rgba(90, 0, 99, 0.1), rgba(255, 215, 0, 0.1)) !important;
  color: #5a0063 !important;
  border-color: rgba(90, 0, 99, 0.2) !important;
}

/* Tab content text */
.tab-content h4 {
  color: #2d1847 !important;
}

.tab-content p {
  color: #444444 !important;
}

/* Remove any conflicting styles that might cause white text */
.services-page * {
  text-rendering: optimizeLegibility !important;
}

/* Light background sections - ensure dark text */
.light-background * {
  color: inherit !important;
}

.light-background h1,
.light-background h2,
.light-background h3,
.light-background h4,
.light-background h5,
.light-background h6 {
  color: #2d1847 !important;
}

.light-background p,
.light-background li {
  color: #444444 !important;
}

/* Regular sections - ensure dark text */
.section:not(.accent-background):not(.services-cta) * {
  color: inherit !important;
}

.section:not(.accent-background):not(.services-cta) h1,
.section:not(.accent-background):not(.services-cta) h2,
.section:not(.accent-background):not(.services-cta) h3,
.section:not(.accent-background):not(.services-cta) h4,
.section:not(.accent-background):not(.services-cta) h5,
.section:not(.accent-background):not(.services-cta) h6 {
  color: #dfc41f !important
}

.section:not(.accent-background):not(.services-cta) p,
.section:not(.accent-background):not(.services-cta) li {
  color: #444444 !important;
}

/* Debugging helper - add temporary border to see card boundaries */
.solution-card {
  border: 1px solid rgba(90, 0, 99, 0.1) !important;
}

/* Force text contrast */
@media screen {
  .solution-card .card-content h4 {
    -webkit-text-fill-color: #2d1847 !important;
    text-fill-color: #2d1847 !important;
  }
  
  .solution-card:not(.featured) .card-content p {
    -webkit-text-fill-color: #444444 !important;
    text-fill-color: #444444 !important;
  }
  
  .solution-card.featured .card-content h4 {
    -webkit-text-fill-color: white !important;
    text-fill-color: white !important;
  }
  
  .solution-card.featured .card-content p {
    -webkit-text-fill-color: rgba(255, 255, 255, 0.9) !important;
    text-fill-color: rgba(255, 255, 255, 0.9) !important;
  }
}

/* Enhanced Consulting Services Section */
.consulting-services {
  padding: 120px 0;
  background: linear-gradient(135deg, #fafbfc 0%, #f8f6fb 100%);
  position: relative;
  overflow: hidden;
}

.consulting-services::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(90, 0, 99, 0.03) 0%, transparent 70%);
  border-radius: 50%;
}

.consulting-services::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
  border-radius: 50%;
}

/* Service Stats */
.service-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.service-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.service-stats .stat-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 3s ease-in-out infinite;
}

.service-stats .stat-icon i {
  font-size: 24px;
  color: white;
}

.service-stats .stat-content {
  display: flex;
  flex-direction: column;
}

.service-stats .stat-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 5px;
}

.service-stats .stat-label {
  font-size: 14px;
  color: rgba(68, 68, 68, 0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Enhanced Services Navigation */
.services-navigation {
  margin: 80px 0 60px 0;
}

.nav-container {
  display: flex;
  justify-content: center;
  gap: 0;
  background: white;
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 15px 50px rgba(90, 0, 99, 0.1);
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.nav-btn {
  background: transparent;
  border: none;
  padding: 25px 30px;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 100px;
}

.nav-btn.active {
  background: var(--gradient-primary);
  box-shadow: 0 8px 30px rgba(90, 0, 99, 0.3);
  transform: translateY(-2px);
}

.nav-btn.active .nav-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.nav-btn.active .nav-content h4 {
  color: white;
}

.nav-btn.active .nav-content span {
  color: rgba(255, 255, 255, 0.8);
}

.nav-btn:not(.active):hover {
  background: rgba(90, 0, 99, 0.05);
  transform: translateY(-1px);
}

.nav-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(90, 0, 99, 0.1), rgba(255, 215, 0, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

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

.nav-content {
  text-align: left;
}

.nav-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 5px;
  transition: color 0.4s ease;
}

.nav-content span {
  font-size: 14px;
  color: rgba(68, 68, 68, 0.6);
  font-weight: 500;
  transition: color 0.4s ease;
}

.nav-indicator {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gradient-secondary);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.nav-btn.active .nav-indicator {
  width: 80%;
}

/* Service Categories Content */
.service-categories-wrapper {
  margin-top: 60px;
}

.service-category {
  display: none;
  opacity: 0;
  transition: all 0.5s ease;
}

.service-category.active {
  display: block;
  opacity: 1;
}

.category-header {
  text-align: center;
  margin-bottom: 50px;
}

.category-header h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.category-header p {
  font-size: 18px;
  color: rgba(68, 68, 68, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* Services Flow (Implementation) */
.services-flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  padding: 20px 0;
}

.flow-step {
  flex: 1;
  min-width: 280px;
  position: relative;
}

.flow-connector {
  display: flex;
  align-items: center;
  padding: 0 20px;
  position: relative;
}

.connector-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, var(--accent-color), var(--secondary-color));
  position: relative;
}

.connector-line::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -3px;
  width: 8px;
  height: 8px;
  background: var(--gradient-primary);
  border-radius: 50%;
}

.connector-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(90, 0, 99, 0.2);
}

.connector-icon i {
  color: var(--accent-color);
  font-size: 14px;
  animation: pulse 2s ease-in-out infinite;
}

/* Enhanced Service Cards */
.enhanced-service-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(90, 0, 99, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.enhanced-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

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

.enhanced-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(90, 0, 99, 0.15);
  border-color: rgba(90, 0, 99, 0.1);
}

.enhanced-service-card.featured {
  background: linear-gradient(135deg, rgba(90, 0, 99, 0.05), rgba(255, 215, 0, 0.05));
  border-color: rgba(90, 0, 99, 0.2);
}

.enhanced-service-card .card-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}

.enhanced-service-card .service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(90, 0, 99, 0.1), rgba(255, 215, 0, 0.1));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.enhanced-service-card:hover .service-icon {
  background: var(--gradient-primary);
  transform: scale(1.1);
}

.enhanced-service-card .service-icon i {
  font-size: 24px;
  color: var(--accent-color);
  transition: color 0.4s ease;
}

.enhanced-service-card:hover .service-icon i {
  color: white;
}

.enhanced-service-card .service-meta {
  flex: 1;
}

.enhanced-service-card .service-type {
  display: inline-block;
  background: rgba(90, 0, 99, 0.1);
  color: var(--accent-color);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.enhanced-service-card .service-meta h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color) !important;
  margin: 0;
  line-height: 1.3;
}

.enhanced-service-card .card-content {
  flex: 1;
  margin-bottom: 25px;
}

.enhanced-service-card .card-content p {
  color: rgba(68, 68, 68, 0.8) !important;
  line-height: 1.6;
  margin-bottom: 20px;
}

.enhanced-service-card .service-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.enhanced-service-card .service-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 14px;
  color: rgba(68, 68, 68, 0.7) !important;
}

.enhanced-service-card .service-benefits li i {
  color: var(--accent-color);
  font-size: 14px;
  flex-shrink: 0;
}

.enhanced-service-card .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(90, 0, 99, 0.1);
}

.enhanced-service-card .duration {
  font-size: 14px;
  color: rgba(68, 68, 68, 0.6);
  font-weight: 500;
}

.enhanced-service-card .service-level {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(68, 68, 68, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.level-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.level-indicator.advanced {
  background: #28a745;
}

.level-indicator.expert {
  background: #ffc107;
}

.level-indicator.strategic {
  background: #6f42c1;
}

/* Feature Highlights */
.feature-highlights {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(90, 0, 99, 0.05);
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-color);
}

.highlight-item i {
  font-size: 14px;
}

/* Services Grid Enhanced (Optimization) */
.services-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Support Services Layout */
.support-services-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.support-tier {
  background: white;
  border-radius: 25px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
  transition: all 0.4s ease;
}

.support-tier.platinum {
  background: linear-gradient(135deg, rgba(90, 0, 99, 0.03), rgba(255, 215, 0, 0.03));
  border-color: var(--accent-color);
}

.support-tier.gold {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.03), rgba(90, 0, 99, 0.03));
  border-color: var(--secondary-color);
}

.support-tier:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(90, 0, 99, 0.15);
}

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

.tier-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.tier-icon i {
  font-size: 28px;
  color: white;
}

.tier-header h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color) !important;
  margin-bottom: 8px;
}

.tier-subtitle {
  font-size: 14px;
  color: rgba(68, 68, 68, 0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tier-content .service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 30px;
}

.support-service {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.support-service i {
  font-size: 24px;
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 5px;
}

.support-service h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color) !important;
  margin-bottom: 8px;
}

.support-service p {
  color: rgba(68, 68, 68, 0.7) !important;
  margin: 0;
  line-height: 1.5;
  font-size: 14px;
}

.tier-features {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tier-features .feature {
  background: rgba(90, 0, 99, 0.1);
  color: var(--accent-color);
  padding: 6px 14px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .services-flow {
    flex-direction: column;
    gap: 30px;
  }
  
  .flow-connector {
    transform: rotate(90deg);
    height: 40px;
    padding: 20px 0;
  }
  
  .nav-container {
    flex-direction: column;
    gap: 10px;
  }
  
  .nav-btn {
    min-height: 80px;
  }
}

@media (max-width: 768px) {
  .service-stats {
    gap: 30px;
  }
  
  .service-stats .stat-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .services-grid-enhanced {
    grid-template-columns: 1fr;
  }
  
  .support-services-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .support-tier {
    padding: 30px 25px;
  }
}

@media (max-width: 576px) {
  .flow-step {
    min-width: 100%;
  }
  
  .enhanced-service-card {
    padding: 25px 20px;
  }
  
  .nav-btn {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    min-height: 120px;
  }
  
  .nav-content {
    text-align: center;
  }
}

/* Help Desk Page Styles */
.helpdesk-page {
  background: #fafafa;
}

/* Help Desk Hero Section */
.helpdesk-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #2d1847 0%, #8b5cf6 100%);
  color: white;
}

.helpdesk-hero .hero-content {
  padding-right: 2rem;
}

.helpdesk-hero .section-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.helpdesk-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: white;
}

.helpdesk-hero .hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
}

.helpdesk-hero .hero-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

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

.helpdesk-hero .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
}

.helpdesk-hero .stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.helpdesk-hero .hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.helpdesk-hero .btn {
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.helpdesk-hero .btn-primary {
  background: #ffd700;
  color: #2d1847;
  border: 2px solid #ffd700;
}

.helpdesk-hero .btn-primary:hover {
  background: transparent;
  color: #ffd700;
  transform: translateY(-2px);
}

.helpdesk-hero .btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.helpdesk-hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

.helpdesk-hero .hero-image {
  position: relative;
}

.helpdesk-hero .hero-image img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.helpdesk-hero .support-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #ffd700;
  color: #2d1847;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Support Services Cards */
.support-services .service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #f0f0f0;
}

.support-services .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(45, 24, 71, 0.15);
  border-color: #8b5cf6;
}

.support-services .service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2d1847 0%, #8b5cf6 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.support-services .service-icon i {
  font-size: 2rem;
  color: white;
}

.support-services .service-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d1847;
  margin-bottom: 15px;
}

.support-services .service-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.support-services .service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.support-services .service-features li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  color: #555;
}

.support-services .service-features i {
  color: #ffd700;
  margin-right: 10px;
  font-size: 1.1rem;
}

/* Support Tiers */
.support-tiers .tier-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid #f0f0f0;
  position: relative;
}

.support-tiers .tier-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(45, 24, 71, 0.15);
}

.support-tiers .tier-card.featured {
  border-color: #8b5cf6;
  background: linear-gradient(135deg, #2d1847 0%, #8b5cf6 100%);
  color: white;
  transform: scale(1.05);
}

.support-tiers .tier-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.support-tiers .tier-header {
  text-align: center;
  margin-bottom: 30px;
}

.support-tiers .tier-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #2d1847;
}

.support-tiers .tier-card.featured .tier-header h3 {
  color: white;
}

.support-tiers .tier-badge {
  background: #ffd700;
  color: #2d1847;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.support-tiers .tier-card.featured .tier-badge {
  background: white;
  color: #2d1847;
}

.support-tiers .tier-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.support-tiers .tier-features li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
}

.support-tiers .tier-card.featured .tier-features li {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.support-tiers .tier-features i {
  color: #ffd700;
  margin-right: 12px;
  font-size: 1.1rem;
}

.support-tiers .tier-action {
  text-align: center;
  margin-top: 30px;
}

.support-tiers .btn {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.support-tiers .btn-primary {
  background: #ffd700;
  color: #2d1847;
  border: 2px solid #ffd700;
}

.support-tiers .btn-outline {
  background: transparent;
  color: #2d1847;
  border: 2px solid #2d1847;
}

.support-tiers .tier-card.featured .btn-outline {
  color: white;
  border-color: white;
}

/* Support Request Form */
.support-request {
  padding: 80px 0;
}

.support-request .request-info {
  padding-right: 2rem;
}

.support-request .section-badge {
  background: linear-gradient(135deg, #2d1847 0%, #8b5cf6 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.support-request h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d1847;
  margin-bottom: 20px;
}

.support-request .request-info p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 40px;
}

.support-request .contact-methods {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.support-request .contact-method {
  display: flex;
  align-items: center;
  gap: 20px;
}

.support-request .method-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2d1847 0%, #8b5cf6 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.support-request .method-icon i {
  font-size: 1.5rem;
  color: white;
}

.support-request .method-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2d1847;
  margin-bottom: 5px;
}

.support-request .method-info p {
  color: #666;
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.support-request .contact-detail {
  font-weight: 600;
  color: #8b5cf6;
  font-size: 1.1rem;
}

.support-request .support-form {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.support-request .form-label {
  font-weight: 600;
  color: #2d1847;
  margin-bottom: 8px;
}

.support-request .form-control {
  padding: 12px 16px;
  border: 2px solid #f0f0f0;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.support-request .form-control:focus {
  border-color: #8b5cf6;
  box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25);
}

.support-request .btn-submit-request {
  background: linear-gradient(135deg, #2d1847 0%, #8b5cf6 100%);
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}

.support-request .btn-submit-request:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background: white;
}

.faq .accordion-item {
  border: none;
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.faq .accordion-button {
  background: #f8f9fa;
  border: none;
  padding: 20px 25px;
  font-weight: 600;
  color: #2d1847;
  font-size: 1.1rem;
}

.faq .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #2d1847 0%, #8b5cf6 100%);
  color: white;
  box-shadow: none;
}

.faq .accordion-button:focus {
  box-shadow: none;
  border: none;
}

.faq .accordion-body {
  padding: 25px;
  background: white;
  color: #666;
  line-height: 1.6;
  border-top: 1px solid #f0f0f0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .helpdesk-hero .hero-title {
    font-size: 2.5rem;
  }
  
  .helpdesk-hero .hero-stats {
    justify-content: center;
  }
  
  .helpdesk-hero .hero-actions {
    justify-content: center;
  }
  
  .support-request .request-info {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .support-request .contact-methods {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .helpdesk-hero .hero-title {
    font-size: 2rem;
  }
  
  .helpdesk-hero .hero-stats {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .helpdesk-hero
}

/* Fix for helpdesk page scrolling issues */
.helpdesk-page {
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}

.helpdesk-page body {
  overflow-x: hidden;
  overflow-y: auto;
}

.helpdesk-page .main {
  min-height: calc(100vh - 100px);
}

/* Ensure all sections have proper spacing */
.helpdesk-page .section {
  padding: 60px 0;
  min-height: auto;
}

.helpdesk-page .helpdesk-hero {
  padding: 100px 0;
}

/* Fix any height constraints */
.helpdesk-page * {
  box-sizing: border-box;
}

/* Ensure proper container behavior */
.helpdesk-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.main {
  overflow-x: auto !important;
  overflow-y: auto !important;
}

function toggleScrolled() {
  const selectBody = document.querySelector('body');
  const selectHeader = document.querySelector('#header');
  
  // Always allow scrolling, regardless of header classes
  if (window.scrollY > 100) {
    selectBody.classList.add('scrolled');
    selectHeader.classList.add('header-scrolled');
  } else {
    selectBody.classList.remove('scrolled');
    selectHeader.classList.remove('header-scrolled');
  }
}

/* Ensure Full Page Scrolling */
html, body {
  overflow-x: auto !important;
  overflow-y: auto !important;
  overscroll-behavior: auto !important;
  max-width: 100%;
  max-height: 100%;
}

.main {
  overflow-x: auto !important;
  overflow-y: auto !important;
}

body {
  position: relative;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  /* Potential layout changes */
  .services .service-item {
    /* Possible alignment modifications */
  }
}

@media (max-width: 900px) {
  .solutions-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
  }
  .solution-card {
    padding: 18px;
  }
}

.solution-card .card-content h4,
.solution-card .card-content p {
  word-break: break-word;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.card-arrow {
  position: absolute;
  right: 24px;
  bottom: 24px;
  font-size: 1.5rem;
  color: #6f42c1;
}

/* --- SAP Solutions Section UI Fixes --- */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.solution-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(90,0,99,0.08);
  padding: 32px 24px 32px 24px;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
  border: 1.5px solid #f0e6fa;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.solution-card:hover {
  box-shadow: 0 12px 32px rgba(90,0,99,0.15);
  transform: translateY(-6px) scale(1.02);
  border-color: #6f42c1;
}

.card-icon {
  font-size: 2.2rem;
  color: #6f42c1;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-content h4 {
  font-size: 1.18rem;
  font-weight: 700;
  color: #2d1847;
  margin-bottom: 10px;
}

.card-content p {
  color: #444;
  font-size: 1rem;
  margin-bottom: 12px;
  line-height: 1.5;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 8px;
}

.feature-tag {
  background: #f3eaff;
  color: #6f42c1;
  font-size: 0.85rem;
  border-radius: 12px;
  padding: 3px 12px;
  font-weight: 500;
}

.card-arrow {
  position: absolute;
  right: 18px;
  bottom: 18px;
  font-size: 1.3rem;
  color: #6f42c1;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.solution-card:hover .card-arrow {
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .solutions-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
  }
  .solution-card {
    padding: 18px 10px 28px 10px;
    min-height: 260px;
  }
  .card-content h4 {
    font-size: 1rem;
  }
}

.methodology {
  padding: 80px 0;
}

.methodology .section-header {
  margin-bottom: 50px;
}

.methodology .methodology-card {
  background: #ffffff;
  border: 2px solid #5a0063;
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(90, 0, 99, 0.1);
  overflow: hidden;
}

.methodology .methodology-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(90, 0, 99, 0.15);
  border-color: #FFD700;
}

.methodology .methodology-card .card-body {
  padding: 2rem;
}

.methodology .methodology-card .methodology-icon {
  width: 70px;
  height: 70px;
  background: rgba(90, 0, 99, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.methodology .methodology-card:hover .methodology-icon {
  background: #5a0063;
  color: #ffffff;
}

.methodology .methodology-card .methodology-icon i {
  font-size: 2rem;
  color: #5a0063;
  transition: all 0.3s ease;
}

.methodology .methodology-card:hover .methodology-icon i {
  color: #ffffff;
}

.methodology .methodology-card h4 {
  color: #2d1847;
  margin-bottom: 1rem;
  font-weight: 600;
}

.methodology .methodology-card p {
  color: #666666;
  margin-bottom: 1.5rem;
}

.methodology .methodology-card ul {
  margin-bottom: 0;
}

.methodology .methodology-card ul li {
  color: #444444;
  margin-bottom: 0.5rem;
}

.methodology .methodology-card ul li:last-child {
  margin-bottom: 0;
}

/* Service Cards Enhanced Styles */
.service-card {
  transform: translateY(0);
  transition: all 0.3s ease-in-out !important;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(168, 131, 236, 0.15) !important;
}

.service-card .icon-bg {
  transition: all 0.3s ease-in-out;
}

.service-card:hover .icon-bg {
  transform: scale(1.1);
  background: rgba(168, 131, 236, 0.2) !important;
}

.service-card .feature-item {
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 8px;
}

.service-card .feature-item:hover {
  background: rgba(168, 131, 236, 0.05);
  transform: translateX(5px);
}

.service-card:hover .card-overlay {
  opacity: 1 !important;
  transform: translateY(0);
}

.service-card .card-overlay {
  transform: translateY(20px);
  transition: all 0.3s ease !important;
}

.service-card .btn-primary {
  transition: all 0.3s ease;
  background: #a883ec;
  border-color: #a883ec;
}

.service-card .btn-primary:hover {
  background: #8a5ad1;
  border-color: #8a5ad1;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(138, 90, 209, 0.3);
}

/* Badge Animations */
.badge {
  animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Section Background Enhancement */
.service-section {
  position: relative;
  overflow: hidden;
}

.service-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 0% 0%, rgba(255,255,255,0.1) 0%, transparent 50%),
              radial-gradient(circle at 100% 100%, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Enhanced Text Styles */
.section-title {
  letter-spacing: -0.02em;
}

.card-title {
  letter-spacing: -0.01em;
}

/* List Item Enhancements */
.service-features li i {
  transition: transform 0.3s ease;
}

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

/* Navigation Menu Styles */
.navmenu ul li a {
  position: relative;
  transition: all 0.3s ease;
}

.navmenu ul li a:hover,
.navmenu ul li a.active {
  color: #a883ec !important;
}

.navmenu ul li a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: #a883ec;
  left: 0;
  bottom: -5px;
  transition: width 0.3s ease;
}

.navmenu ul li a:hover:after,
.navmenu ul li a.active:after {
  width: 100%;
}

/* Dropdown Menu Styles */
.navmenu .dropdown ul li a:hover {
  color: #a883ec !important;
  padding-left: 20px;
}

.navmenu .dropdown ul li a:after {
  display: none;
}

.navmenu .dropdown > a:after {
  bottom: -2px;
}

/* Mobile Navigation */
.mobile-nav-active .navmenu ul li a:hover,
.mobile-nav-active .navmenu ul li a.active {
  color: #a883ec !important;
}
