/**
* Template Name: KnightOne
* Template URL: https://bootstrapmade.com/knight-simple-one-page-bootstrap-template/
* Updated: Oct 16 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: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #111111; /* Dark background for the entire website */
  --default-color: #e0e0e0; /* Light text color for better contrast on dark background */
  --heading-color: #ffffff; /* White for headings to pop against dark background */
  --accent-color: #5741A5; /* Keep the existing purple accent color */
  --surface-color: #1a1a1a; /* Slightly lighter than background for cards and elements */
  --contrast-color: #ffffff; /* White text for contrast against accent color */
  
  /* Additional modern dark theme colors */
  --dark-bg: #0a0a0a; /* Even darker bg for some sections */
  --card-bg: #212121; /* Card background color */
  --text-muted: #a0a0a0; /* Muted text color */
  --border-color: rgba(255, 255, 255, 0.1); /* Subtle borders */
  --gradient-primary: linear-gradient(135deg, #5741A5, #7A67C7); /* Purple gradient */
  --gradient-dark: linear-gradient(135deg, #212121, #5741A5); /* Dark to purple gradient */
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4); /* Deeper shadows for depth */
  --glass-bg: rgba(255, 255, 255, 0.05); /* Glass morphism background */
  --glass-border: rgba(255, 255, 255, 0.1); /* Glass morphism border */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* White nav links for visibility */
  --nav-hover-color: #5741A5; /* Purple highlight on hover */
  --nav-mobile-background-color: #1a1a1a; /* Dark mobile nav background */
  --nav-dropdown-background-color: #1a1a1a; /* Dark dropdown background */
  --nav-dropdown-color: #e0e0e0; /* Light text for dropdown items */
  --nav-dropdown-hover-color: #5741A5; /* Purple highlight on dropdown hover */
}

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

.light-background {
  --background-color: #1a1a1a; /* Still dark but slightly lighter than default */
  --surface-color: #212121; /* Slightly lighter surface for contrast */
}

.dark-background {
  --background-color: #060606; /* Very dark background */
  --default-color: #ffffff; /* White text */
  --heading-color: #ffffff; /* White headings */
  --surface-color: #111111; /* Dark surface */
  --contrast-color: #ffffff; /* White contrast */
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(10, 10, 10, 0.9);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

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

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

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

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--accent-color);
  background: transparent;
  border: 1px solid var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(87, 65, 165, 0.3);
}

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

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

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

  .header .navmenu {
    order: 3;
  }
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(40, 40, 40, 0.9);
}

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(87, 65, 165, 0.1);
    border-radius: 50%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    position: relative;
    z-index: 9998;
  }
  
  .mobile-nav-toggle:hover {
    background: rgba(87, 65, 165, 0.2);
    transform: scale(1.05);
  }

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

  .navmenu ul {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
    transition: all 0.3s ease;
  }

  .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: center;
    white-space: nowrap;
    transition: all 0.3s ease;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 16px;
    line-height: 0;
    margin-left: 10px;
    transition: all 0.3s ease;
  }

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

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

  .navmenu .dropdown ul {
    position: relative;
    display: none;
    margin: 10px auto;
    max-width: 90%;
    background-color: rgba(15, 15, 15, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(10, 10, 10, 0.8);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: transparent;
  }

  .mobile-nav-active {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    background: var(--accent-color);
    position: fixed;
    font-size: 28px;
    top: 20px;
    right: 20px;
    margin-right: 0;
    z-index: 9999;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  }
  
  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(20, 20, 20, 0.98));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 9995;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-nav-active .navmenu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(87, 65, 165, 0.2), transparent 50%);
    z-index: -1;
  }
  
  .mobile-nav-active .navmenu > ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70vh;
    padding: 0;
    max-height: 600px;
  }
  
  .mobile-nav-active .navmenu ul li {
    margin: 20px 0;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
    width: 100%;
  }
  
  .mobile-nav-active .navmenu ul li:nth-child(1) { animation-delay: 0.1s; }
  .mobile-nav-active .navmenu ul li:nth-child(2) { animation-delay: 0.2s; }
  .mobile-nav-active .navmenu ul li:nth-child(3) { animation-delay: 0.3s; }
  .mobile-nav-active .navmenu ul li:nth-child(4) { animation-delay: 0.4s; }
  .mobile-nav-active .navmenu ul li:nth-child(5) { animation-delay: 0.5s; }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .mobile-nav-active .navmenu ul li a {
    font-size: 36px;
    font-weight: 600;
    color: var(--contrast-color);
    padding: 10px 0;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
  }
  
  .mobile-nav-active .navmenu ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background: var(--accent-color);
    transition: width 0.3s ease;
  }
  
  .mobile-nav-active .navmenu ul li a:hover::after,
  .mobile-nav-active .navmenu ul li a.active::after {
    width: 100%;
  }
  
  .mobile-nav-active .navmenu ul li a:hover {
    color: var(--accent-color);
  }
  
  .mobile-nav-active .mobile-nav-toggle.bi-x {
    transform: rotate(180deg);
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background: linear-gradient(to top, #0a0a0a, #111111);
  color: var(--default-color);
  font-size: 14px;
  text-align: center;
  padding: 60px 0 30px 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
}

.footer::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top center, rgba(87, 65, 165, 0.1), transparent 70%);
  z-index: 0;
}

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

.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 25px 0;
  background: linear-gradient(to right, #ffffff, #a0a0a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer p {
  font-size: 16px;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
  color: var(--text-muted);
}

.footer .social-links {
  margin: 0 0 40px 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.footer .social-links a {
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(87, 65, 165, 0.1);
  color: var(--accent-color);
  line-height: 1;
  border-radius: 50%;
  text-align: center;
  width: 44px;
  height: 44px;
  transition: 0.3s;
  border: 1px solid rgba(87, 65, 165, 0.3);
}

.footer .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(87, 65, 165, 0.3);
}

.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.footer .credits {
  font-size: 13px;
  padding-top: 5px;
  color: rgba(255, 255, 255, 0.4);
}

.footer .credits a {
  color: var(--accent-color);
  transition: 0.3s;
}

.footer .credits a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: 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 var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s 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: 44px;
  height: 44px;
  border-radius: 50px;
  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;
  bottom: 15px;
}

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

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

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

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

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

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

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

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #5741A5;
  left: 50%;
  right: auto;
  bottom: -10px;
  transform: translateX(-50%);
}

.section-title p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto;
}

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

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(87, 65, 165, 0.3) 0%, transparent 60%);
  z-index: 1;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.2); /* Updated from 0.4 to 0.7 for 40% brighter */
  z-index: 0;
}

.hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.4); /* Updated from 0.7 to 0.4 for brightness */
  position: absolute;
  inset: 0;
  z-index: 1;
}

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

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(to right, #ffffff, #5741A5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientText 3s ease infinite;
  background-size: 200% auto;
}

@keyframes gradientText {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

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

.hero .btn-primary {
  background: linear-gradient(45deg, #5741A5, #7A67C7);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 10px 20px rgba(87, 65, 165, 0.3);
}

.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin-left: 15px;
}

.hero .btn-primary:hover,
.hero .btn-secondary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(87, 65, 165, 0.4);
}

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

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

/* Ensure right side of background is shown on mobile */
@media (max-width: 767px) {
  .hero img {
    object-position: right center; /* Show the right side of the image on mobile */
  }
}

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background: rgba(33, 33, 33, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  padding: 40px 30px;
  transition: all ease-in-out 0.4s;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  height: 100%;
  color: var(--text-color);
  position: relative;
  overflow: hidden;
}

.services .service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #5741A5, transparent);
}

.services .service-item .icon {
  color: var(--contrast-color);
  background: linear-gradient(135deg, #5741A5, #7A67C7);
  margin: 0;
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 30px;
  transition: ease-in-out 0.3s;
  box-shadow: 0 10px 20px rgba(87, 65, 165, 0.2);
}

.services .service-item h3 {
  font-weight: 700;
  margin: 15px 0 20px 0;
  font-size: 24px;
  transition: ease-in-out 0.3s;
  color: var(--heading-color);
}

.services .service-item p {
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 0;
  color: var(--text-muted);
}

@media (min-width: 1365px) {
  .services .service-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(87, 65, 165, 0.3);
  }

  .services .service-item:hover h3 {
    color: var(--accent-color);
  }
  
  .services .service-item:hover .icon {
    transform: scale(1.1);
  }
}

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

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

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

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

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

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

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

.call-to-action .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-image {
  position: relative;
  min-height: 400px;
}

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

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

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

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

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .clients-wrap {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.clients .client-logo {
  background: #212121;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  padding: 15px;
}

.clients .client-logo img {
  padding: 50px;
  max-width: 80%;
  transition: 0.3s;
}

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

.clients .client-logo:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  position: relative;
}

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

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

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

.stats .subheading {
  text-align: center;
}

.stats .subheading h3 {
  font-weight: 700;
  font-size: 36px;
}

.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--default-color);
  font-weight: 700;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

/*--------------------------------------------------------------
# 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: 50px;
  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;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  background: linear-gradient(135deg, #0a0a0a, #111111);
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom left, rgba(87, 65, 165, 0.15), transparent 70%);
  z-index: 0;
}

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

.pricing .pricing-item {
  background: rgba(26, 26, 26, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  padding: 40px 30px;
  text-align: center;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
  height: 100%;
  z-index: 1;
}

.pricing .pricing-item::before {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(87, 65, 165, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

.pricing .pricing-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(87, 65, 165, 0.3);
  border-color: rgba(87, 65, 165, 0.2);
}

.pricing .pricing-item h3 {
  padding: 15px;
  margin-top: 15px;
  font-size: 22px;
  font-weight: 600;
  color: var(--heading-color);
  position: relative;
  margin-bottom: 25px;
}

.pricing .pricing-item h3::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: linear-gradient(to right, transparent, #5741A5, transparent);
}

.pricing .pricing-item h4 {
  color: #5741A5;
  font-size: 42px;
  font-family: var(--heading-font);
  font-weight: 700;
  margin-bottom: 20px;
}

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

.pricing .pricing-item h4 span {
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 300;
}

.pricing .pricing-item ul {
  padding: 20px 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 15px;
}

.pricing .pricing-item ul li {
  padding: 12px 0;
  color: var(--default-color);
  position: relative;
  margin-bottom: 5px;
}

.pricing .pricing-item ul li::before {
  content: "\F270";
  font-family: "bootstrap-icons", sans-serif;
  color: #5741A5;
  font-size: 18px;
  margin-right: 8px;
  vertical-align: middle;
}

.pricing .pricing-item ul .na {
  color: var(--text-muted);
  text-decoration: line-through;
}

.pricing .pricing-item ul .na::before {
  content: "\F623";
  color: rgba(255, 255, 255, 0.2);
}

.pricing .pricing-item .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .pricing-item .btn-buy {
  color: #ffffff;
  background: linear-gradient(45deg, #5741A5, #7A67C7);
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-family: var(--heading-font);
  font-weight: 500;
  transition: 0.3s;
  box-shadow: 0 10px 20px rgba(87, 65, 165, 0.2);
  border: none;
}

.pricing .pricing-item .btn-buy:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(87, 65, 165, 0.3);
}

.pricing .recommended {
  border-color: rgba(87, 65, 165, 0.3);
  background: linear-gradient(135deg, rgba(33, 33, 33, 0.8), rgba(87, 65, 165, 0.2));
}

.pricing .recommended .btn-buy {
  background: linear-gradient(45deg, #5741A5, #7A67C7);
  color: var(--contrast-color);
}

.pricing .recommended .btn-buy:hover {
  background: linear-gradient(45deg, #7A67C7, #5741A5);
}

.pricing .recommended-badge {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 13px;
  padding: 5px 25px;
  background: rgba(87, 65, 165, 0.1);
  color: #ffffff;
  border-radius: 50px;
  border: 1px solid rgba(87, 65, 165, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts article {
  background: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.recent-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.recent-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 10px;
}

.recent-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.recent-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.recent-posts .title a:hover {
  color: var(--accent-color);
}

.recent-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.recent-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

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

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  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 button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

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

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

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

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

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.blog-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.blog-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.blog-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# 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: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
}

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

/*--------------------------------------------------------------
# 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: 120px;
  margin-right: 20px;
}

.blog-author-widget h4 {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 0px;
  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-right: 5px;
  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);
}

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

.categories-widget ul li {
  padding-bottom: 10px;
}

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

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

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

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

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

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  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;
}

/* Modern AI-Inspired Dark Theme */
:root {
  --primary-color: #4B388D;
  --secondary-color: #4B388D;
  --accent-color: #4B388D;
  --dark-bg: #111111;
  --darker-bg: #0a0a0a;
  --card-bg: #212121;
  --text-color: #ffffff;
  --text-muted: #a0a0a0;
  --border-color: rgba(255, 255, 255, 0.1);
  --gradient-primary: linear-gradient(135deg, #4B388D, #4B388D);
  --gradient-dark: linear-gradient(135deg, #212121, #2B428E);
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  --transition: all 0.3s ease;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  background: var(--dark-bg);
}

.section {
  padding: 80px 0;
  overflow: hidden;
  background: var(--dark-bg);
}

.bg-light {
  background: var(--darker-bg) !important;
}

/* Header Styles */
.header {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header .logo h1 {
  color: var(--text-color);
}

.navmenu a {
  color: var(--text-color) !important;
  opacity: 0.9;
}

.navmenu a:hover {
  opacity: 1;
}

/* Cards and Sections */
.sector-card {
  background: #212121;
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
  color: var(--text-color);
}

.services .service-item {
  background: #212121;
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 30px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  border: 1px solid var(--border-color);
  height: 100%;
  color: var(--text-color);
}

.clients .client-logo {
  background: #212121;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  padding: 15px;
}

/* Update hover effects */
.sector-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(53, 83, 184, 0.2);
  border-color: var(--primary-color);
}

.services .service-item:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
}

/* Ensure text colors are visible */
.sector-card h4 {
  color: var(--primary-color);
}

.services .service-item h3 {
  color: var(--primary-color);
}

.services .service-item p {
  color: var(--text-color);
}

.sector-card ul li {
  color: var(--text-color);
}

/* Section Titles */
.section-title h2 {
  color: var(--text-color);
}

.section-title p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto;
}

/* Buttons */
.btn-primary {
  background: var(--primary-color);
  color: var(--text-color);
}

.btn-secondary {
  background: rgba(53, 83, 184, 0.1);
  color: var(--text-color);
  border: 1px solid rgba(53, 83, 184, 0.2);
}

.cta-btn {
  background: var(--primary-color);
  color: var(--text-color);
}

/* Plans Section */
.plans-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  color: var(--text-color);
  border-radius: 15px;
  padding: 30px;
}

.plans-item h3, .plans-item h4 {
  color: var(--primary-color);
}

.plans-item .description {
  color: var(--text-muted);
}

.plans-item ul li {
  color: var(--text-color);
}

.plans-item.recommended {
  background: var(--gradient-dark);
  border: 1px solid var(--primary-color);
}

/* FAQ Section */
.faq .content h3 {
  color: var(--text-color);
}

.faq .faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
}

.faq .faq-item h3 {
  color: var(--text-color);
}

.faq .faq-content p {
  color: var(--text-muted);
}

/* Footer */
.footer {
  background: var(--darker-bg);
  color: var(--text-color);
}

/* Modern Sectors List */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

.sector-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.sector-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(53, 83, 184, 0.15);
}

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

.feature-card .icon {
  width: 65px;
  height: 65px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card .icon i {
  font-size: 28px;
  color: var(--light-text);
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.feature-card p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Module Cards */
.module-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(53, 83, 184, 0.1);
}

.module-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(53, 83, 184, 0.15);
  border-color: var(--primary-color);
}

.module-card h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.module-card h3 i {
  font-size: 1.4em;
}

.module-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.module-card ul li {
  padding: 10px 0;
  color: #666;
  position: relative;
  padding-left: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.module-card ul li:last-child {
  border-bottom: none;
}

.module-card ul li::before {
  content: '\F26D';
  font-family: 'bootstrap-icons', sans-serif;
  color: #5741A5;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  transition: all 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .feature-card,
  .module-card {
    padding: 25px 20px;
  }

  .feature-card .icon {
    width: 55px;
    height: 55px;
  }

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

  .module-card h3 {
    font-size: 1.2rem;
  }
}

/* Hero Section Buttons */
.hero .btn-primary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  background: var(--gradient-primary);
  color: var(--text-color);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.hero .btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-color);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  margin-left: 15px;
}

.hero .btn-primary:hover,
.hero .btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
  color: var(--text-color);
}

.sector-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(53, 83, 184, 0.2);
  border-color: var(--primary-color);
}

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

.sector-card h4 {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.sector-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sector-card ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-color);
  border-bottom: 1px solid var(--border-color);
}

.sector-card ul li:last-child {
  border-bottom: none;
}

.sector-card ul li i {
  color: var(--primary-color);
  font-size: 1.1em;
}

.sectors .sector-card,
.sectors-grid .sector-card {
  background: #212121 !important;
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
  color: var(--text-color);
}

.sectors .sector-card:hover,
.sectors-grid .sector-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(53, 83, 184, 0.2);
  border-color: var(--primary-color);
}

.sectors .sector-card h4,
.sectors-grid .sector-card h4 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.sectors .sector-card ul,
.sectors-grid .sector-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sectors .sector-card ul li,
.sectors-grid .sector-card ul li {
  color: var(--text-color);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sectors .sector-card ul li i,
.sectors-grid .sector-card ul li i {
  color: var(--primary-color);
  font-size: 1.2em;
}

/* About Section Styles */
.about-vision {
  position: relative;
  padding: 20px;
}

.vision-card {
  background: rgba(33, 33, 33, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

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

.vision-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.vision-icon i {
  font-size: 28px;
  color: var(--text-color);
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  background: rgba(33, 33, 33, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.stat-item i {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat-item h5 {
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--text-muted);
}

.stat-item .counter {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
}

.about-features {
  padding: 20px;
}

.features-title {
  margin-bottom: 30px;
  color: var(--text-color);
  font-size: 24px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.feature-item {
  background: rgba(33, 33, 33, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.feature-item i {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.feature-item h5 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-color);
}

.feature-item p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

.tech-stack {
  margin-top: 60px;
  text-align: center;
}

.tech-stack h4 {
  margin-bottom: 30px;
  color: var(--text-color);
}

.tech-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.tech-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
}

.tech-icon:hover {
  transform: translateY(-5px);
}

.tech-icon i {
  font-size: 32px;
  color: var(--primary-color);
  background: rgba(33, 33, 33, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.tech-icon:hover i {
  background: var(--primary-color);
  color: var(--text-color);
}

.tech-icon span {
  font-size: 14px;
  color: var(--text-muted);
}

/* Modern Variables */
:root {
  --primary-gradient: linear-gradient(135deg, #2193b0, #6dd5ed);
  --secondary-gradient: linear-gradient(135deg, #753a88, #cc2b5e);
  --accent-gradient: linear-gradient(135deg, #11998e, #38ef7d);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --neo-shadow: 20px 20px 60px #1a1a1a, -20px -20px 60px #262626;
  --text-gradient: linear-gradient(120deg, #eee, #fff);
  --hover-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modules Section Styles */
.modules {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.modules::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('assets/img/grid.svg') center/cover;
  opacity: 0.1;
  animation: gridMove 20s linear infinite;
}

.section-badge {
  background: #5741A5;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #fff; /* Ensure text is white */
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Media query for mobile devices */
@media (max-width: 600px) {
  .section-badge {
    font-size: 12px; /* Adjusted for mobile */
    padding: 6px 12px; /* Slightly smaller padding */
    margin-bottom: 15px; /* Adjusted bottom margin */
    color: #fff !important; /* Ensure text stays white on mobile with higher specificity */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5); /* Add text shadow for better readability */
    background: #5741A5; /* Solid background color */
  }

  /* Adjust heading size for mobile devices */
  .gradient-text {
    font-size: 22px; /* Adjust heading size */
  }

  /* Adjust paragraph size for mobile */
  .section-desc {
    font-size: 14px; /* Smaller font for readability */
  }
}

.section-title {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  padding: 40px 0;
}

.module-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 30px;
  transition: var(--hover-transition);
  position: relative;
  overflow: hidden;
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
  transform: translateY(-100%);
  transition: var(--hover-transition);
}

.module-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.module-card:hover::before {
  transform: translateY(0);
}

.module-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
}

.module-icon i {
  font-size: 36px;
  color: #fff;
  z-index: 1;
}

.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: pulse 2s infinite;
  background: var(--primary-gradient);
}

.module-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.module-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.tech-badge {
  background: var(--secondary-gradient);
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.feature-list li i {
  color: #38ef7d;
  font-size: 20px;
  margin-right: 12px;
  margin-top: 2px;
}

.feature-list li div {
  flex: 1;
}

.feature-list li strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
  color: #fff;
}

.feature-list li span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.module-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
}

.module-link {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: var(--hover-transition);
}

.module-link i {
  margin-left: 8px;
  transition: var(--hover-transition);
}

.module-link:hover {
  color: #38ef7d;
}

.module-link:hover i {
  transform: translateX(5px);
}

.tech-stack {
  display: flex;
  gap: 8px;
}

.tech-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

/* Features Section Styles */
.features {
  background: #111;
  padding: 100px 0;
  position: relative;
}

.features::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(62, 87, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 40px 0;
}

.feature-card {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 30px;
  position: relative;
  transition: var(--hover-transition);
  box-shadow: var(--neo-shadow);
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon.gradient-pulse {
  width: 70px;
  height: 70px;
  background: var(--accent-gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
}

.feature-icon.gradient-pulse::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  opacity: 0.5;
  filter: blur(10px);
}

.feature-icon.gradient-pulse i {
  font-size: 32px;
  color: #fff;
  z-index: 1;
}

.feature-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.feature-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.tech-pill {
  background: var(--accent-gradient);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.feature-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 20px 0;
}

.stat {
  text-align: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.stat .value {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.stat .label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.feature-link.hover-effect {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-top: 20px;
  transition: var(--hover-transition);
}

.feature-link.hover-effect:hover {
  background: var(--accent-gradient);
  transform: translateX(5px);
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.4;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

@keyframes gridMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 100%;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .modules-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .module-card,
  .feature-card {
    padding: 20px;
  }
  
  .feature-stats {
    grid-template-columns: 1fr;
  }
}

/* Glass Morphism Effects */
.glass-morphism {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* Gradient Text Effects */
.gradient-text {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hover Effects */
.hover-scale {
  transition: var(--hover-transition);
}

.hover-scale:hover {
  transform: scale(1.05);
}

/* Contact Section Modern Styles */
.contact {
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle at center, rgba(53, 83, 184, 0.03) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
  z-index: 0;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

.contact .info-item {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.contact .info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(53, 83, 184, 0.1);
  border-color: rgba(53, 83, 184, 0.2);
}

.contact .info-item i {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #4B388D, #4B388D);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  margin-right: 20px;
  position: relative;
  overflow: hidden;
}

.contact .info-item i::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  filter: blur(8px);
  opacity: 0.7;
  z-index: -1;
}

.contact .info-item h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #fff, #e0e0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact .info-item p {
  margin: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.contact .php-email-form {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.3s ease;
}

.contact .php-email-form:hover {
  box-shadow: 0 15px 40px rgba(53, 83, 184, 0.1);
  border-color: rgba(53, 83, 184, 0.2);
}

.contact .php-email-form input,
.contact .php-email-form textarea,
.contact .php-email-form select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 20px;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus,
.contact .php-email-form select:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(53, 83, 184, 0.4);
  box-shadow: 0 0 0 4px rgba(53, 83, 184, 0.1);
}

.contact .php-email-form input::placeholder,
.contact .php-email-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact .php-email-form label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.contact .php-email-form .checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 15px 0;
}

.contact .php-email-form input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  cursor: pointer;
}

.contact .php-email-form button {
  background: linear-gradient(135deg, #4B388D, #4B388D);
  border: none;
  border-radius: 12px;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact .php-email-form button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.contact .php-email-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(53, 83, 184, 0.2);
}

.contact .php-email-form button:hover::before {
  left: 100%;
}

.contact .php-email-form .loading {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
}

.contact .php-email-form .sent-message,
.contact .php-email-form .error-message {
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  background: rgba(53, 83, 184, 0.1);
  color: #4B388D;
}

.contact .php-email-form .error-message {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

/* Module Selection Grid */
.contact .module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 15px 0;
}

.contact .module-option {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact .module-option:hover {
  background: rgba(53, 83, 184, 0.1);
  border-color: rgba(53, 83, 184, 0.2);
}

.contact .module-option input[type="checkbox"] {
  margin: 0;
}

.contact .module-option span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .contact .info-item {
    padding: 20px;
  }
  
  .contact .php-email-form {
    padding: 25px;
  }
  
  .contact .module-grid {
    grid-template-columns: 1fr;
  }
}

/* Typing Animation Styles - New Implementation */
.typing-container {
  display: inline-block;
  position: relative;
  margin-bottom: 10px;
  width: 100%;
}

.typing-text {
  font-size: 48px;
  font-weight: 700;
  margin: 0;
  color: var(--heading-color);
  display: inline-block;
  position: relative;
}

/* Cursor effect for all devices */
.typing-text::after {
  content: '|';
  position: absolute;
  right: -15px;
  color: var(--accent-color);
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .typing-text {
    font-size: 32px;
  }
  
  .typing-text::after {
    right: -12px;
  }
}

@media (max-width: 480px) {
  .typing-text {
    font-size: 28px;
    line-height: 1.3;
  }
  
  .typing-text::after {
    right: -10px;
  }
}

/* Modern Section Title Styles */
.section-badge {
  background: #5741A5;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 10px 20px rgba(53, 83, 184, 0.15);
  position: relative;
  overflow: hidden;
}

.section-badge::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  100% {
    left: 100%;
  }
}

.section-title h2.gradient-text {
  background: linear-gradient(135deg, #4B388D 0%, #4B388D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
}

.section-title h2.gradient-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #4B388D, #4B388D);
  border-radius: 2px;
}

.section-desc {
  font-size: 18px;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-muted);
}

.dark-background .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.stats .subheading {
  text-align: center;
  margin-bottom: 40px;
}

.stats .subheading h3.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 36px;
  font-weight: 700;
  margin: 15px 0;
}

@media (max-width: 768px) {
  .section-title h2.gradient-text {
    font-size: 32px;
  }
  
  .section-desc {
    font-size: 16px;
  }
  
  .stats .subheading h3.gradient-text {
    font-size: 28px;
  }
}

/* Additional Mobile Responsiveness */
@media (max-width: 576px) {
  .header .cta-btn {
    padding: 6px 15px;
    font-size: 13px;
    margin-left: 5px;
  }
  
  .header .logo img {
    max-height: 30px;
  }
  
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .mobile-nav-active .navmenu ul {
    inset: 60px 15px 15px 15px;
    padding: 15px;
  }
  
  .mobile-nav-active .mobile-nav-toggle {
    top: 12px;
    right: 12px;
  }
}

/* Sectors and Industries Section */
.sectors {
  position: relative;
  background: linear-gradient(135deg, #0a0a0a, #111111);
  padding: 80px 0;
  z-index: 1;
}

.sectors::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235741a5' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: -1;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

.sectors .sector-card,
.sectors-grid .sector-card {
  background: rgba(26, 26, 26, 0.7) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.sectors .sector-card::before,
.sectors-grid .sector-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(87, 65, 165, 0.1) 0%, transparent 100%);
  z-index: -1;
}

.sectors .sector-card:hover,
.sectors-grid .sector-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(87, 65, 165, 0.2);
  border-color: rgba(87, 65, 165, 0.3);
}

.sectors .sector-card h4,
.sectors-grid .sector-card h4 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.sectors .sector-card h4::after,
.sectors-grid .sector-card h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, #5741A5, transparent);
}

.sectors .sector-card ul,
.sectors-grid .sector-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sectors .sector-card ul li,
.sectors-grid .sector-card ul li {
  color: #e0e0e0;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.sectors .sector-card ul li:last-child,
.sectors-grid .sector-card ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.sectors .sector-card ul li i,
.sectors-grid .sector-card ul li i {
  color: #5741A5;
  font-size: 24px;
  transition: all 0.3s ease;
}

.sectors .sector-card ul li:hover i,
.sectors-grid .sector-card ul li:hover i {
  color: #7A67C7;
  transform: translateX(5px);
}

/* Modules Section */
.modules {
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.modules::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(87, 65, 165, 0.15), transparent 70%);
  z-index: 1;
}

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

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 30px 0;
}

.module-card {
  background: rgba(33, 33, 33, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.module-card::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(87, 65, 165, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

.module-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(87, 65, 165, 0.2);
  border-color: rgba(87, 65, 165, 0.2);
}

.module-card h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.module-card h3 i {
  color: #5741A5;
  font-size: 28px;
  background: rgba(87, 65, 165, 0.1);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.module-card:hover h3 i {
  background: #5741A5;
  color: #ffffff;
  transform: scale(1.1);
}

.module-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.module-card ul li {
  padding: 12px 0;
  color: #e0e0e0;
  position: relative;
  padding-left: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.module-card ul li:last-child {
  border-bottom: none;
}

.module-card ul li::before {
  content: '\F26D';
  font-family: 'bootstrap-icons', sans-serif;
  color: #5741A5;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  transition: all 0.3s ease;
}

.module-card ul li:hover {
  color: #ffffff;
  padding-left: 30px;
}

.module-card ul li:hover::before {
  color: #7A67C7;
}

/* Custom scrollbar for modern look
--------------------------------------------------------------*/
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 6px;
  border: 3px solid #0a0a0a;
}

::-webkit-scrollbar-thumb:hover {
  background: #5741A5;
}

/* Modern Section Badge Styling 
--------------------------------------------------------------*/
.section-badge {
  background: #5741A5;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  border-left: 3px solid #5741A5;
}

/* Mobile-specific styling for badges */
@media (max-width: 600px) {
  .section-badge {
    background: #5741A5; /* Solid background color */
    color: #ffffff; /* White text color */
    font-weight: 600; /* Bolder text for better visibility */
    border-left-width: 4px; /* Slightly thicker accent border */
  }
}

/* Remove the shimmer animation */
.section-badge::after {
  display: none;
}

@keyframes shimmer {
  100% {
    left: 100%;
  }
}

/* Selection color */
::selection {
  background: rgba(87, 65, 165, 0.3);
  color: #ffffff;
}

/* Focus state for inputs with accent color */
input:focus, 
textarea:focus, 
select:focus {
  border-color: #5741A5 !important;
  box-shadow: 0 0 0 3px rgba(87, 65, 165, 0.2) !important;
  outline: none !important;
}

/* Enhanced button styling */
.btn {
  border-radius: 50px;
  padding: 10px 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(45deg, #5741A5, #7A67C7);
  border: none;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(87, 65, 165, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(87, 65, 165, 0.3);
}

.btn-outline {
  background: transparent;
  border: 1px solid #5741A5;
  color: #5741A5;
}

.btn-outline:hover {
  background: #5741A5;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Card hover effects */
.hover-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(26, 26, 26, 0.7);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hover-card:hover {
  transform: translateY(-10px);
  border-color: rgba(87, 65, 165, 0.3);
  box-shadow: 0 20px 40px rgba(87, 65, 165, 0.2);
}

/* Glass morphism cards */
.glass-card {
  background: rgba(26, 26, 26, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
}

/* Modern Section Title Styling */
.section-title h2.gradient-text {
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title h2.gradient-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 40px;
  height: 3px;
  background: #5741A5;
  border-radius: 2px;
}

/* Mobile Navigation - Fullscreen */
body.mobile-nav-active {
  height: 100vh;
  overflow: hidden;
  touch-action: none;
}

.mobile-nav-active .mobile-nav-toggle {
  color: #fff;
  background: var(--accent-color);
  position: fixed;
  font-size: 28px;
  top: 20px;
  right: 20px;
  margin-right: 0;
  z-index: 9999;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.mobile-nav-active .navmenu {
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(20, 20, 20, 0.98));
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 9995;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-active .navmenu > ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70vh; /* Use percentage of viewport height */
  padding: 0;
  max-height: 600px;
}

/* Special styling for index page badges 
--------------------------------------------------------------*/
.index-badge {
  background: #5741A5;
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Mobile-specific styling for index badges */
@media (max-width: 767px) {
  .index-badge {
    color: #ffffff !important; /* Force white text with higher specificity */
    background: #5741A5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5); /* Enhanced text shadow for better visibility */
    font-weight: 700; /* Bolder text on mobile */
    padding: 7px 14px; /* Slightly larger tap target */
  }
}