/**
 * Blue and White Theme for Grittier Solutions
 * Simple, professional, and security-focused
 */

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts (unchanged) */
:root {
  
  .boldonse-regular {
    font-family: "Boldonse", system-ui;
    font-weight: 400;
    font-style: normal;
  }
  }
  
  /* Blue and White Theme Colors */
  :root { 
    --background-color: #ffffff; /* Pure white */
    --surface-color: #f5f8fa; /* Very light blue-gray for surfaces */
    --default-color: #333333; /* Dark gray for text */
    --heading-color: #1e3a8a; /* Deep blue for headings */
    --accent-color: #54575b; /* Bright blue for accents */
    --accent-light: #dbeafe; /* Light blue for subtle highlights */
    --accent-dark: #1e40af; /* Darker blue for hover states */
    --contrast-color: #ffffff; /* White for contrast */
    --glitter-effect: radial-gradient(circle, rgba(34, 94, 191, 0.681) 0%, transparent 70%);
  }
  
  /* Nav Menu Colors */
  :root {
    --nav-color: #1e3a8a; /* Deep blue for nav text */
    --nav-hover-color: #3b82f6; /* Bright blue on hover */
    --nav-mobile-background-color: #ffffff; /* White for mobile nav */
    --nav-dropdown-background-color: #f5f8fa; /* Light blue-gray for dropdowns */
    --nav-dropdown-color: #1e3a8a; /* Deep blue for dropdown text */
    --nav-dropdown-hover-color: #3b82f6; /* Bright blue for dropdown hover */
  }
  
  /* Animation Variables (unchanged) */
  :root {
    --animation-duration: 0.5s;
    --animation-timing: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-short: 0.2s;
    --transition-medium: 0.3s;
    --transition-long: 0.5s;
  }
  
  /* Smooth scroll (unchanged) */
  :root {
    scroll-behavior: smooth;
  }
  /*--------------------------------------------------------------
  # General Styling
  --------------------------------------------------------------*/
  body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
    line-height: 1.6;
  }
  
  a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all var(--transition-medium) var(--animation-timing);
    position: relative;
  }
  
  a:hover {
    color: var(--accent-dark);
    text-decoration: none;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
  }
  
  /* Animation Classes (Unchanged) */
  .js-animate {
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--animation-duration) var(--animation-timing), 
                transform var(--animation-duration) var(--animation-timing),
                visibility var(--animation-duration) var(--animation-timing);
  }
  
  .js-animate.fade-in {
    opacity: 1;
    visibility: visible;
  }
  
  .js-animate.slide-up {
    transform: translateY(20px);
  }
  
  .js-animate.slide-up.fade-in {
    transform: translateY(0);
  }
  
  .js-animate.slide-down {
    transform: translateY(-20px);
  }
  
  .js-animate.slide-down.fade-in {
    transform: translateY(0);
  }
  
  .js-animate.slide-left {
    transform: translateX(20px);
  }
  
  .js-animate.slide-left.fade-in {
    transform: translateX(0);
  }
  
  .js-animate.slide-right {
    transform: translateX(-20px);
  }
  
  .js-animate.slide-right.fade-in {
    transform: translateX(0);
  }
  
  .js-animate.zoom-in {
    transform: scale(0.95);
  }
  
  .js-animate.zoom-in.fade-in {
    transform: scale(1);
  }
  
  .js-animate.rotate-in {
    transform: rotate(5deg);
  }
  
  .js-animate.rotate-in.fade-in {
    transform: rotate(0);
  }
  
  .js-animate.delay-1 {
    transition-delay: 0.1s;
  }
  
  .js-animate.delay-2 {
    transition-delay: 0.2s;
  }
  
  .js-animate.delay-3 {
    transition-delay: 0.3s;
  }
  
  .js-animate.delay-4 {
    transition-delay: 0.4s;
  }
  
  .js-animate.delay-5 {
    transition-delay: 0.5s;
  }
  
  /* Glitter effect for interactive elements (Updated Colors) */
  .btn, .icon, .services-content, .team-member, .faq-item {
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium) var(--animation-timing);
  }
  
  .btn:before, .icon:before, .services-content:before, .team-member:before, .faq-item:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--glitter-effect);
    transform: translate(0, 0);
    opacity: 0;
    transition: opacity var(--transition-medium) var(--animation-timing), 
                transform var(--transition-long) var(--animation-timing);
  }
  
  .btn:hover:before, .icon:hover:before, 
  .services-content:hover:before, .team-member:hover:before, 
  .faq-item:hover:before {
    opacity: 1;
    transform: translate(25%, 25%);
  }
  
  /*--------------------------------------------------------------
  # Header & Navigation
  --------------------------------------------------------------*/
  .header {
    --background-color: rgba(255, 255, 255, 0.95); /* Updated to light */
    --default-color: #333333; /* Dark gray */
    --heading-color: #1e3a8a; /* Deep blue */
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 15px 0; /* Adjusted padding for better spacing with larger logo */
    transition: all var(--transition-long) var(--animation-timing);
    z-index: 1000;
    position: fixed;
    width: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .scrolled .header {
    --background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 0 18px rgba(49, 10, 10, 0.15);
    padding: 10px 0; /* Slightly smaller padding when scrolled */
  }
  
  /* Logo Styling */
  .header .logo {
    display: flex;
    align-items: center;
    margin-left: 15px; /* Add some margin for spacing from the left edge */
  }
  
  .header .logo img {
    max-height: 100px; /* Increased size for prominence */
    width: auto; /* Maintain aspect ratio */
    transition: transform var(--transition-medium) var(--animation-timing);
  }
  
  .header .logo:hover img {
    transform: scale(1.05); /* Subtle hover effect */
  }
  
  /* Adjust navigation menu alignment */
  .navmenu {
    display: flex;
    align-items: center;
    margin-right: 15px; /* Add some margin for spacing from the right edge */
  }
  
  /* Responsive Adjustments for the Logo */
  @media (max-width: 1199px) {
    .header .logo img {
      max-height: 50px; /* Slightly smaller on medium screens */
    }
  
    .header {
      padding: 10px 0; /* Adjust padding for smaller screens */
    }
  }
  
  @media (max-width: 576px) {
    .header .logo img {
      max-height: 40px; /* Further reduced size for mobile */
    }
  
    .header {
      padding: 8px 0; /* Minimal padding on mobile */
    }
  
    .header .logo {
      margin-left: 10px; /* Adjust margin for smaller screens */
    }
  
    .navmenu {
      margin-right: 10px; /* Adjust margin for smaller screens */
    }
  }
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  @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: 20px 25px;
    }
  
    .navmenu>ul>li:last-child {
      padding-right: 0;
    }
  
    .navmenu a,
    .navmenu a:focus {
      color: var(--nav-color);
      font-size: 18px;
      padding: 0 2px;
      font-family: var(--nav-font);
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: color var(--transition-medium) var(--animation-timing);
      position: relative;
    }
  
    .navmenu>ul>li:after {
      content: '';
      position: absolute;
      bottom: 15px;
      left: 25px;
      right: 25px;
      height: 3px;
      background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
      transform: scaleX(0);
      transform-origin: center;
      transition: transform var(--transition-medium) var(--animation-timing);
    }
  
    .navmenu>ul>li:hover:after,
    .navmenu>ul>li.active:after {
      transform: scaleX(1);
    }
  
    .navmenu>ul>li:hover>a,
    .navmenu>ul>li>a.active,
    .navmenu>ul>li>a.active:focus {
      color: var(--nav-hover-color);
    }
  }
  
  /* Mobile Navigation (Unchanged structure, updated colors) */
  @media (max-width: 1199px) {
    .mobile-nav-toggle {
      display: block !important;
      color: var(--nav-color);
      font-size: 32px;
      line-height: 0;
      margin-right: 10px;
      cursor: pointer;
      transition: color 0.3s;
      position: relative;
      z-index: 9999;
      background: transparent;
      border: none;
      padding: 0;
    }

    .mobile-nav-toggle:hover {
      color: var(--accent-dark);
    }
  
    .navmenu {
      position: relative;
      padding: 0;
      z-index: 9997;
    }
  
    .navmenu ul {
      display: none;
      list-style: none;
      position: absolute;
      inset: 60px 20px 20px 20px;
      padding: 10px 0;
      margin: 0;
      border-radius: 6px;
      background-color: var(--nav-mobile-background-color);
      border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
      box-shadow: none;
      overflow-y: auto;
      transition: 0.3s;
      z-index: 9998;
    }
  
    .navmenu a,
    .navmenu a:focus {
      color: var(--nav-color);
      padding: 10px 20px;
      font-family: var(--nav-font);
      font-size: 18px;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: 0.3s;
      position: relative;
    }
  
    .navmenu a i,
    .navmenu a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
      width: 34px;
      height: 34px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: 0.3s;
      background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }
  
    .navmenu a i:hover,
    .navmenu a:focus i:hover {
      background-color: var(--accent-color);
      color: var(--contrast-color);
    }
  
    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
      color: #ffffff;
      background-color: var(--nav-hover-color);
    }
  
    .navmenu .active i,
    .navmenu .active:focus i {
      background-color: var(--accent-color);
      color: var(--contrast-color);
      transform: rotate(180deg);
    }
  
    .mobile-nav-active {
      overflow: visible;
    }
  
    .mobile-nav-active .mobile-nav-toggle {
      color: #fff;
      position: fixed;
      font-size: 32px;
      top: 15px;
      right: 15px;
      margin-right: 0;
      z-index: 9999;
    }
  
    .mobile-nav-active .navmenu {
      position: fixed;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      overflow: visible;
      inset: 0;
      background: rgba(255, 255, 255, 0.8);
      z-index: 9998;
      display: block !important;
    }
  
    .mobile-nav-active .navmenu>ul {
      display: block;
      position: static;
      opacity: 1;
      visibility: visible;
      padding: 20px;
      margin: 0;
      border-radius: 0;
      background-color: rgb(255, 255, 255);
      box-shadow: none;
      height: auto;
      overflow-y: auto;
    }

    .mobile-nav-active .navmenu a{
      color: var(--nav-color);
      font-size: 18px;
      display: block;
      padding: 10px 15px;
    }
  }
  
  /*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
  .hero {
    background: linear-gradient(135deg, var(--background-color) 0%, var(--accent-light) 100%); /* Updated gradient */
    position: relative;
    z-index: 1;
    margin-top: 80px;
    overflow: hidden;
    padding: 120px;
  }
  
  .hero-img {
    position: relative;
    z-index: 2;
    perspective: 1000px;
  }
  
  .hero-img img {
    animation: float 8s ease-in-out infinite;
    transform-style: preserve-3d;
    filter: drop-shadow(0 20px 15px rgba(0,0,0,0.1)); /* Lighter shadow */
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    max-width: 100%;
    height: auto;
  }
  
  @keyframes float {
    0%, 100% { 
      transform: translateY(0) rotate(1deg) translateZ(0);
    }
    25% { 
      transform: translateY(-15px) rotate(-1deg) translateZ(10px);
    }
    50% { 
      transform: translateY(-10px) rotate(2deg) translateZ(5px);
    }
    75% { 
      transform: translateY(-20px) rotate(-0.5deg) translateZ(15px);
    }
  }
  
  .hero-img:hover img {
    animation-play-state: paused;
    transform: translateY(-10px) rotate(2deg) scale(1.03);
    filter: drop-shadow(0 25px 20px rgba(48, 108, 210, 0.3)) brightness(1.05); /* Updated shadow */
  }
  
  .hero:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(48, 108, 210, 0.3) 0%, transparent 50%); /* Updated gradient */
    z-index: 1;
  }
  
  .hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    position: relative;
    z-index: 2;
    color: var(--accent-dark);
  }
  
  .hero p {
    color: rgba(51, 51, 51, 0.8); /* Updated color */
    margin: 10px 10px 10px 0;
    font-size: 18px;
    font-weight: 400;
    position: relative;
    z-index: 2;
    text-align: justify;
  }
  
  #hs {
    color: var(--accent-dark);
    font-size: 48px;
    font-weight: 700;
    display: inline-block;
    position: relative;
    text-shadow: 0 2px 10px rgba(165, 214, 167, 0.3); /* Updated shadow */
  }
  
  #hs:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    border-radius: 3px;
  }
  
  #hp {
    font-size: 35px;
    color: var(--accent-color);
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(165, 214, 167, 0.3); /* Updated shadow */
    margin-right: 10px;
    text-align: left;
  }
  
  .hero .btn-get-started {
    color: var(--heading-color);
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--contrast-color) 100%);
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 36px;
    border-radius: 4px;
    transition: all var(--transition-medium) var(--animation-timing);
    border: none;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(48, 108, 210, 0.3); /* Updated shadow */
    overflow: hidden;
  }
  
  .hero .btn-get-started:hover {
    background: transparent;
    color: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(48, 108, 210, 0.3); /* Updated shadow */
    border: 2px solid var(--accent-dark);
  }
  
  .hero .btn-watch-video {
    font-size: 16px;
    transition: all var(--transition-medium) var(--animation-timing);
    margin-left: 25px;
    color: var(--default-color);
    font-weight: 600;
    position: relative;
    z-index: 2;
  }
  
  .hero .btn-watch-video i {
    color: var(--accent-dark);
    font-size: 32px;
    transition: all var(--transition-medium) var(--animation-timing);
    line-height: 0;
    margin-right: 8px;
    vertical-align: middle;
  }
  
  .hero .btn-watch-video:hover {
    color: var(--accent-dark);
    transform: translateX(5px);
  }
  
  .hero .btn-watch-video:hover i {
    color: var(--accent-color);
    transform: scale(1.1);
  }
  
  /*--------------------------------------------------------------
  # Global Sections
  --------------------------------------------------------------*/
  section,
  .section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 80px 0;
    scroll-margin-top: 92px;
    overflow: clip;
    position: relative;
  }
  
  section:before,
  .section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(165, 214, 167, 0.05) 0%, transparent 50%); /* Updated gradient */
    z-index: 0;
  }
  
  section.accent-background,
  .section.accent-background {
    background: linear-gradient(135deg, var(--surface-color) 0%, var(--accent-light) 100%); /* Updated gradient */
  }
  
  @media (max-width: 1199px) {
    section,
    .section {
      scroll-margin-top: 77px;
      padding: 60px 0;
    }
  }
  
  /*--------------------------------------------------------------
  # Global Section Titles
  --------------------------------------------------------------*/
  .section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
    z-index: 1;
  }
  
  .section-title h2 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
  }
  
  .section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
  
  .section-title p {
    margin-bottom: 0;
    color: rgba(51, 51, 51, 0.7); /* Updated color */
    font-size: 25px;
  }
  
  /*--------------------------------------------------------------
  # About Section
  --------------------------------------------------------------*/
  .about .about-image {
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
  }
  
  .about .about-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: var(--heading-color);
  }
  
  .about .about-item i {
    font-size: 48px;
    color: var(--accent-dark);
    margin-right: 20px;
    line-height: 0;
    transition: all var(--transition-medium) var(--animation-timing);
  }
  
  .about .about-item:hover i {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(165, 214, 167, 0.5); /* Updated shadow */
  }
  
  .about .about-item p {
    font-size: 18px;
    color: rgba(51, 51, 51, 0.8); /* Updated color */
    margin: 0;
    text-align: justify;
  }
  
  /*--------------------------------------------------------------
  # Stats Section
  --------------------------------------------------------------*/
  .stats {
    position: relative;
    padding: 100px 0;
    background: url("../img/stats-bg.png") center center no-repeat;
    background-size: cover;
    overflow: hidden;
  }
  
  .stats:before {
    content: "";
    background-image: url("stats-bg.jpg");
    position: absolute;
    inset: 0;
    z-index: 2;
  }
  
  .stats .container {
    position: relative;
    z-index: 3;
  }
  
  .stats .stats-item {
    padding: 30px;
    width: 100%;
    text-align: center;
    transition: all var(--transition-medium) var(--animation-timing);
  }
  
  .stats .stats-item:hover {
    transform: translateY(-5px);
  }
  
  .stats .stats-item span {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-dark);
    display: block;
    margin-bottom: 10px;
    font-family: var(--heading-font);
    transition: all var(--transition-medium) var(--animation-timing);
  }
  
  .stats .stats-item:hover span {
    text-shadow: 0 0 10px rgba(165, 214, 167, 0.5); /* Updated shadow */
  }
  
  .stats .stats-item p {
    padding: 0;
    margin: 0;
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 700;
    color: rgba(51, 51, 51, 0.6); /* Updated color */
    transition: all var(--transition-medium) var(--animation-timing);
  }
  
  .stats .stats-item:hover p {
    color: var(--default-color);
  }
  
  /*--------------------------------------------------------------
  # WhyUs Section
  --------------------------------------------------------------*/
  .whyus .whyus-item {
    position: relative;
    padding-top: 20px;
    transition: all var(--transition-medium) var(--animation-timing);
  }
  
  .whyus .whyus-item:hover {
    transform: translateY(-5px);
  }
  
  .whyus .whyus-item .icon {
    background-color: rgba(165, 214, 167, 0.1); /* Updated background */
    width: 72px;
    height: 72px;
    position: relative;
    margin-right: 15px;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-long) var(--animation-timing);
    border-radius: 10px;
  }
  
  .whyus .whyus-item .icon i {
    color: var(--accent-dark);
    font-size: 35px;
    z-index: 2;
    position: relative;
    transition: all var(--transition-medium) var(--animation-timing);
  }
  
  .whyus .whyus-item .title {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 20px;
    color: var(--heading-color);
  }
  
  .whyus .whyus-item .title a {
    color: var(--heading-color);
    transition: all var(--transition-medium) var(--animation-timing);
  }
  
  .whyus .whyus-item .title a:hover {
    color: var(--accent-dark);
  }
  
  .whyus .whyus-item .description {
    font-size: 18px;
    text-align: justify;
    color: rgba(51, 51, 51, 0.7); /* Updated color */
  }
  
  .whyus .whyus-item:hover .icon {
    background-color: var(--accent-color);
    transform: rotate(5deg);
    box-shadow: 0 5px 15px rgba(165, 214, 167, 0.3); /* Updated shadow */
  }
  
  .whyus .whyus-item:hover .icon i {
    color: var(--contrast-color);
    transform: scale(1.1);
  }
  
  /*--------------------------------------------------------------
  # Services Section
  --------------------------------------------------------------*/
  .services .services-filters {
    padding: 0 0 20px 0;
    margin: 0 auto;
    list-style: none;
    text-align: center;
  }
  
  .services .services-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 0;
    font-size: 25px;
    font-weight: 500;
    margin: 0 10px;
    line-height: 1;
    transition: all var(--transition-long) var(--animation-timing);
    color: rgba(51, 51, 51, 0.7); /* Updated color */
    position: relative;
  }
  
  .services .services-filters li:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    transition: width var(--transition-medium) var(--animation-timing);
  }
  
  .services .services-filters li:hover,
  .services .services-filters li.filter-active {
    color: var(--accent-dark);
  }
  
  .services .services-filters li:hover:after,
  .services .services-filters li.filter-active:after {
    width: 100%;
  }
  
  .services .services-filters li:first-child {
    margin-left: 0;
  }
  
  .services .services-filters li:last-child {
    margin-right: 0;
  }
  
  @media (max-width: 575px) {
    .services .services-filters li {
      font-size: 18px;
      margin: 0 5px;
    }
  }
  
  .services .services-content {
    background-color: var(--surface-color);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    overflow: hidden;
    transition: all var(--transition-medium) var(--animation-timing);
    border-radius: 5px;
    border: 1px solid rgba(165, 214, 167, 0.1); /* Updated border */
  }
  
  .services .services-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(165, 214, 167, 0.3); /* Updated border */
  }
  
  .services .services-content img {
    transition: all var(--transition-medium) var(--animation-timing);
    position: relative;
    z-index: 1;
  }
  
  .services .services-content .services-info {
    background-color: var(--background-color);
    border-top: 1px solid rgba(165, 214, 167, 0.1); /* Updated border */
    padding: 25px 20px;
    position: relative;
    z-index: 2;
  }
  
  .services .services-content .services-info h4 {
    font-size: 20px;
    font-weight: 600;
    padding-right: 50px;
    margin-bottom: 15px;
    color: var(--heading-color);
  }
  
  .services .services-content .services-info h4 a {
    color: var(--heading-color);
    transition: all var(--transition-medium) var(--animation-timing);
  }
  
  .services .services-content .services-info h4 a:hover {
    color: var(--accent-dark);
  }
  
  .services .services-content .services-info p {
    color: rgba(51, 51, 51, 0.7); /* Updated color */
    font-size: 18px;
    margin-bottom: 0;
    padding-right: 50px;
    text-align: justify;
  }
  
  .services .services-content:hover img {
    transform: scale(1.1);
  }
  
  
  /*--------------------------------------------------------------
  # Product Section
  --------------------------------------------------------------*/
  .product .product-item {
    background-color: var(--surface-color);
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    border-radius: 5px;
    transition: 0.3s;
  }
  
  .product .product-item .item-img {
    position: relative;
    overflow: hidden;
  }
  
  .product .product-item .item-img:after {
    position: absolute;
    content: "";
    left: -1px;
    right: -1px;
    bottom: -1px;
    height: 100%;
    background-color: var(--surface-color);
    -webkit-mask: url("../img/team-shape.svg") no-repeat center bottom;
    mask: url("../img/team-shape.svg") no-repeat center bottom;
    -webkit-mask-size: contain;
    mask-size: contain;
    z-index: 1;
  }
  
  .product .product-item .item-info {
    padding: 10px 15px 20px 15px;
  }
  
  .product .product-item .item-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
  }
  
  .product .product-item .item-info p {
    font-size: 18px;
    padding-top: 15px;
    line-height: 26px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    text-align: justify;
  }
  
  .product .product-item:hover {
    transform: scale(1.08);
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  }
  
  /*------------------------------------------------------------
  # Gallery Section
  --------------------------------------------------------------*/
  .gallery {
    overflow: hidden;
    position: relative;
  }
  
  .gallery:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(165, 214, 167, 0.05) 0%, transparent 70%); /* Updated gradient */
    z-index: 0;
  }
  
  .gallery .swiper-wrapper {
    height: auto;
    padding: 20px 0;
  }
  
  .gallery .swiper-pagination {
    margin-top: 20px;
    position: relative;
    z-index: 2;
  }
  
  .gallery .swiper-pagination .swiper-pagination-bullet {
    background-color: rgba(51, 51, 51, 0.3); /* Updated color */
    border: 0;
    width: 12px;
    height: 12px;
    opacity: 1;
    transition: all var(--transition-medium) var(--animation-timing);
  }
  
  .gallery .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-dark);
    opacity: 1;
    transform: scale(1.2);
  }
  
  .gallery .swiper-slide {
    transition: all var(--transition-medium) var(--animation-timing);
  }
  
  .gallery .swiper-slide-active {
    text-align: center;
  }
  
  .gallery .swiper-slide a {
    display: block;
    overflow: hidden;
    border-radius: 5px;
  }
  
  .gallery .swiper-slide img {
    transition: all var(--transition-long) var(--animation-timing);
    filter: brightness(0.9);
  }
  
  .gallery .swiper-slide:hover img {
    filter: brightness(1);
    transform: scale(1.05);
  }
  
  @media (min-width: 992px) {
    .gallery .swiper-wrapper {
      padding: 40px 0;
    }
  
    .gallery .swiper-slide-active {
      background: var(--background-color);
      border: 6px solid var(--accent-dark);
      padding: 4px;
      z-index: 1;
      transform: scale(1.2);
      transition: none;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
  }
  
  /*--------------------------------------------------------------
  # Faq Section
  --------------------------------------------------------------*/
  .faq .faq-container .faq-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid rgba(129, 144, 210, 0.1); /* Updated border */
    border-radius: 5px;
    overflow: hidden;
    transition: all var(--transition-medium) var(--animation-timing);
  }
  
  .faq .faq-container .faq-item:last-child {
    margin-bottom: 0;
  }
  
  .faq .faq-container .faq-item h3 {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    margin: 0 30px 0 0;
    transition: all var(--transition-medium) var(--animation-timing);
    cursor: pointer;
    display: flex;
    align-items: center;
    color: var(--default-color);
  }
  
  .faq .faq-container .faq-item h3 .num {
    color: var(--accent-dark);
    padding-right: 5px;
    font-weight: 700;
  }
  
  .faq .faq-container .faq-item h3:hover {
    color: var(--accent-dark);
  }
  
  .faq .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: all var(--transition-long) var(--animation-timing);
    visibility: hidden;
    opacity: 0;
  }
  
  .faq .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
    color: rgba(51, 51, 51, 0.8); /* Updated color */
  }
  
  .faq .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 20px;
    line-height: 0;
    transition: all var(--transition-medium) var(--animation-timing);
    cursor: pointer;
    color: var(--default-color);
  }
  
  .faq .faq-container .faq-item .faq-toggle:hover {
    color: var(--accent-dark);
  }
  
  .faq .faq-container .faq-active {
    background-color: rgba(129, 144, 210, 0.1); /* Updated background */
    border-color: rgba(129, 144, 210, 0.1); /* Updated border */
  }
  
  .faq .faq-container .faq-active h3 {
    color: var(--accent-dark);
  }
  
  .faq .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
    font-size: 18px;
  }
  
  .faq .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--accent-dark);
  }
  
  /*--------------------------------------------------------------
  # Contact Section
  --------------------------------------------------------------*/
  .contact .info-item {
    background: rgba(255, 255, 255, 0.6); /* Updated background */
    padding: 20px;
    border-radius: 5px;
    transition: all var(--transition-medium) var(--animation-timing);
    border: 1px solid rgba(165, 214, 167, 0.1); /* Updated border */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    height: 100%;
  }
  
  .contact .info-item:hover {
    transform: translateY(-5px);
    border-color: rgba(165, 214, 167, 0.3); /* Updated border */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
  
  .contact .info-item i {
    font-size: 35px;
    line-height: 0;
    color: var(--accent-dark);
    transition: all var(--transition-medium) var(--animation-timing);
  }
  
  .contact .info-item:hover i {
    transform: scale(1.1);
  }
  
  .contact .info-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 20px 0 10px 0;
    color: var(--heading-color);
  }
  
  .contact .info-item p {
    padding: 0;
    line-height: 24px;
    font-size: 18px;
    margin-bottom: 0;
    color: rgba(51, 51, 51, 0.8); /* Updated color */
  }
  
  .contact .php-email-form {
    background: rgba(255, 255, 255, 0.6); /* Updated background */
    padding: 30px;
    height: 100%;
    border-radius: 5px;
    transition: all var(--transition-medium) var(--animation-timing);
    border: 1px solid rgba(165, 214, 167, 0.1); /* Updated border */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }
  
  .contact .php-email-form:hover {
    border-color: rgba(165, 214, 167, 0.3); /* Updated border */
  }
  
  .contact .php-email-form input[type=text],
  .contact .php-email-form input[type=email],
  .contact .php-email-form textarea {
    font-size: 18px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: rgba(255, 255, 255, 0.5); /* Updated background */
    border: 1px solid rgba(51, 51, 51, 0.1); /* Updated border */
    transition: all var(--transition-medium) var(--animation-timing);
    width: 100%;
    margin-bottom: 15px;
  }
  
  .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-dark);
    background-color: rgba(255, 255, 255, 0.7); /* Updated background */
    outline: none;
  }
  
  .contact .php-email-form textarea {
    min-height: 150px;
  }
  
  .contact .php-email-form button[type=submit] {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--contrast-color) 100%);
    color: var(--heading-color);
    border: 0;
    padding: 12px 40px;
    transition: all var(--transition-medium) var(--animation-timing);
    border-radius: 4px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(129, 144, 210, 0.1); /* Updated shadow */
    cursor: pointer;
    font-size: 18px;
  }
  
  .contact .php-email-form button[type=submit]:hover {
    background: linear-gradient(135deg, var(--contrast-color) 0%, var(--accent-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(129, 144, 210, 0.1); /* Updated shadow */
  }
  
  /*--------------------------------------------------------------
  # Global Footer
  --------------------------------------------------------------*/
  .footer {
    color: var(--default-color);
    background: linear-gradient(135deg, var(--background-color) 0%, var(--accent-light) 100%); /* Updated gradient */
    font-size: 18px;
    padding-bottom: 50px;
    position: relative;
    overflow: hidden;
  }
  
  .footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(165, 214, 167, 0.05) 0%, transparent 50%); /* Updated gradient */
    z-index: 1;
  }
  
  .footer .footer-top {
    padding-top: 50px;
    border-top: 1px solid rgba(165, 214, 167, 0.1); /* Updated border */
    position: relative;
    z-index: 2;
  }
  
  .footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
  }
  
  .footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 6px;
    transition: transform var(--transition-medium) var(--animation-timing);
  }
  
  .footer .footer-about .logo span {
    color: var(--heading-color);
    font-size: 35px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--heading-font);
    text-shadow: 0 0 10px rgba(165, 214, 167, 0.3); /* Updated shadow */
  }
  
  .footer .footer-about p {
    font-size: 18px;
    font-family: var(--heading-font);
    position: relative;
    z-index: 2;
    text-align: justify;
    margin-right: 70px;
  }
  
  .footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(165, 214, 167, 0.3); /* Updated border */
    font-size: 18px;
    color: var(--default-color);
    margin-right: 10px;
    transition: all var(--transition-medium) var(--animation-timing);
    position: relative;
    overflow: hidden;
    z-index: 2;
  }
  
  .footer .social-links a:hover {
    color: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(165, 214, 167, 0.3); /* Updated shadow */
  }
  
  .footer h4 {
    font-size: 20px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
    color: var(--heading-color);
    font-family: var(--heading-font);
  }
  
  .footer h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
  }
  
  .footer .footer-links {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    font-family: var(--heading-font);
  }
  
  .footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: var(--heading-font);
  }
  
  .footer .footer-links ul i {
    padding-right: 2px;
    font-size: 18px;
    line-height: 0;
    color: var(--accent-dark);
  }
  
  .footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    transition: all var(--transition-medium) var(--animation-timing);
  }
  
  .footer .footer-links ul li:first-child {
    padding-top: 0;
  }
  
  .footer .footer-links ul li:hover {
    padding-left: 5px;
  }
  
  .footer .footer-links ul a {
    color: rgba(51, 51, 51, 0.7); /* Updated color */
    display: inline-block;
    line-height: 1;
    transition: all var(--transition-medium) var(--animation-timing);
  }
  
  .footer .footer-links ul a:hover {
    color: var(--accent-dark);
    text-shadow: 0 0 5px rgba(165, 214, 167, 0.3); /* Updated shadow */
  }
  
  .footer .footer-contact p {
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
    text-align: justify;
    font-family: var(--heading-font);
  }
  
  .footer .copyright {
    padding-top: 25px;
    padding-bottom: 25px;
    background-color: rgba(0, 0, 0, 0.05); /* Lighter background */
    position: relative;
    z-index: 2;
    font-family: var(--heading-font);
  }
  
  .footer .copyright p {
    margin-bottom: 0;
    font-family: var(--heading-font);
  }
  
  .footer .credits {
    margin-top: 6px;
    font-size: 18px;
    font-family: var(--heading-font);
  }
  
  .footer .credits a {
    color: var(--accent-dark);
    transition: all var(--transition-medium) var(--animation-timing);
  }
  
  .footer .credits a:hover {
    color: var(--accent-color);
  }
  
  /*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/
  #preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  #preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid rgba(165, 214, 167, 0.2); /* Updated border */
    border-color: var(--accent-dark) transparent var(--accent-dark) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
  }
  
  #preloader:after {
    content: "";
    position: fixed;
    top: calc(50% - 15px);
    left: calc(50% - 15px);
    border: 3px solid rgba(165, 214, 167, 0.2); /* Updated border */
    border-color: transparent transparent var(--accent-color) var(--accent-color);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: animate-preloader-reverse 1.5s linear infinite;
  }
  
  @keyframes animate-preloader {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  @keyframes animate-preloader-reverse {
    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: linear-gradient(135deg, var(--accent-color) 0%, var(--contrast-color) 100%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: all var(--transition-medium) var(--animation-timing);
    box-shadow: 0 2px 15px rgba(165, 214, 167, 0.4); /* Updated shadow */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .scroll-top i {
    font-size: 24px;
    color: var(--heading-color);
    line-height: 0;
  }
  
  .scroll-top:hover {
    background: linear-gradient(135deg, var(--contrast-color) 0%, var(--accent-color) 100%);
    transform: translateY(-3px);
  }
  
  .scroll-top.active {
    visibility: visible;
    opacity: 1;
  }
  
  /*--------------------------------------------------------------
  # Animations (Unchanged)
  --------------------------------------------------------------*/
  @keyframes up-down {
    0% { transform: translateY(10px); }
    100% { transform: translateY(-10px); }
  }
  
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(165, 214, 167, 0.4); } /* Updated color */
    70% { box-shadow: 0 0 0 10px rgba(165, 214, 167, 0); }
    100% { box-shadow: 0 0 0 0 rgba(165, 214, 167, 0); }
  }
  
  .pulse {
    animation: pulse 2s infinite;
  }
  
  @keyframes glow {
    0% { text-shadow: 0 0 5px rgba(165, 214, 167, 0.5); } /* Updated color */
    50% { text-shadow: 0 0 20px rgba(165, 214, 167, 0.8); }
    100% { text-shadow: 0 0 5px rgba(165, 214, 167, 0.5); }
  }
  
  .glow {
    animation: glow 3s infinite;
  }
  
  /*--------------------------------------------------------------
  # Responsive Adjustments (Unchanged)
  --------------------------------------------------------------*/
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 36px;
      line-height: 42px;
    }
    
    #hs {
      font-size: 36px;
    }
    
    #hp {
      font-size: 28px;
    }
    
    .section-title h2 {
      font-size: 28px;
    }
    
    .stats .stats-item span {
      font-size: 36px;
    }
  }
  
  @media (max-width: 576px) {
    .hero h1 {
      font-size: 32px;
      line-height: 38px;
    }
    
    #hs {
      font-size: 32px;
    }
    
    #hp {
      font-size: 24px;
    }
    
    .hero .btn-get-started,
    .hero .btn-watch-video {
      font-size: 14px;
      padding: 10px 24px;
    }
    
    .section-title h2 {
      font-size: 24px;
    }
    
    .stats .stats-item span {
      font-size: 32px;
    }
  }
  #intro-video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  
  #intro-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
   
    
  